[
  {
    "path": ".github/dependabot.yml",
    "content": "version: 2\nupdates:\n- package-ecosystem: pip\n  directory: \"/\"\n  schedule:\n    interval: daily\n  open-pull-requests-limit: 10\n- package-ecosystem: \"github-actions\"\n  directory: \"/\"\n  schedule:\n    interval: \"monthly\"\n"
  },
  {
    "path": ".github/workflows/build-release.yml",
    "content": "name: build\non:\n  push:\n    branches: [\"dev\"]\n    tags: [\"*\"]\n  pull_request:\n\njobs:\n  tests:\n    name: ${{ matrix.name }}\n    runs-on: ubuntu-latest\n    strategy:\n      fail-fast: false\n      matrix:\n        include:\n          - { name: \"3.9\", python: \"3.9\", tox: py39 }\n          - { name: \"3.13\", python: \"3.13\", tox: py313 }\n          - { name: \"lowest\", python: \"3.9\", tox: py39-lowest }\n    steps:\n      - uses: actions/checkout@v6\n      - uses: actions/setup-python@v6\n        with:\n          python-version: ${{ matrix.python }}\n      - name: Download nltk data\n        run: |\n          pip install .\n          python -m textblob.download_corpora\n      - run: python -m pip install tox\n      - run: python -m tox -e${{ matrix.tox }}\n  build:\n    name: Build package\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v6\n      - uses: actions/setup-python@v6\n        with:\n          python-version: \"3.11\"\n      - name: Install pypa/build\n        run: python -m pip install build\n      - name: Build a binary wheel and a source tarball\n        run: python -m build\n      - name: Install twine\n        run: python -m pip install twine\n      - name: Check build\n        run: python -m twine check --strict dist/*\n      - name: Store the distribution packages\n        uses: actions/upload-artifact@v7\n        with:\n          name: python-package-distributions\n          path: dist/\n  # this duplicates pre-commit.ci, so only run it on tags\n  # it guarantees that linting is passing prior to a release\n  lint-pre-release:\n    if: startsWith(github.ref, 'refs/tags')\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v6\n      - uses: actions/setup-python@v6\n        with:\n          python-version: \"3.11\"\n      - run: python -m pip install tox\n      - run: python -m tox -e lint\n  publish-to-pypi:\n    name: PyPI release\n    if: startsWith(github.ref, 'refs/tags/')\n    needs: [build, tests, lint-pre-release]\n    runs-on: ubuntu-latest\n    environment:\n      name: pypi\n      url: https://pypi.org/p/textblob\n    permissions:\n      id-token: write\n    steps:\n      - name: Download all the dists\n        uses: actions/download-artifact@v8\n        with:\n          name: python-package-distributions\n          path: dist/\n      - name: Publish distribution to PyPI\n        uses: pypa/gh-action-pypi-publish@release/v1\n"
  },
  {
    "path": ".gitignore",
    "content": "*.py[cod]\n\n# virtualenv\n.venv/\nvenv/\n\n# C extensions\n*.so\n\n# Packages\n*.egg\n*.egg-info\ndist\nbuild\neggs\nparts\nbin\nvar\nsdist\ndevelop-eggs\n.installed.cfg\nlib\nlib64\n\n# pip\npip-log.txt\npip-wheel-metadata\n\n# Unit test / coverage reports\n.coverage\n.tox\nnosetests.xml\ntest-output/\n.pytest_cache\n\n# Translations\n*.mo\n\n# Mr Developer\n.mr.developer.cfg\n.project\n.pydevproject\n\n# Complexity\noutput/*.html\noutput/*/index.html\n\n# Sphinx\ndocs/_build\nREADME.html\n\n# mypy\n\n.mypy_cache\n\n!tests/.env\n\n# ruff\n.ruff_cache\n"
  },
  {
    "path": ".konchrc",
    "content": "# -*- coding: utf-8 -*-\n# vi: set ft=python :\nimport konch\nfrom textblob import TextBlob, Blobber, Word, Sentence\n\nkonch.config({\n    'context': {\n        'tb': TextBlob,\n        'Blobber': Blobber,\n        'Word': Word,\n        'Sentence': Sentence,\n    },\n    'prompt': '>>> ',\n    'ipy_autoreload': True,\n})\n"
  },
  {
    "path": ".pre-commit-config.yaml",
    "content": "repos:\n- repo: https://github.com/astral-sh/ruff-pre-commit\n  rev: v0.15.6\n  hooks:\n    - id: ruff\n    - id: ruff-format\n- repo: https://github.com/python-jsonschema/check-jsonschema\n  rev: 0.37.0\n  hooks:\n    - id: check-github-workflows\n- repo: https://github.com/asottile/blacken-docs\n  rev: 1.20.0\n  hooks:\n  - id: blacken-docs\n    additional_dependencies: [black==24.10.0]\n"
  },
  {
    "path": ".readthedocs.yml",
    "content": "version: 2\nsphinx:\n  configuration: docs/conf.py\nformats:\n  - pdf\nbuild:\n  os: ubuntu-22.04\n  tools:\n    python: \"3.11\"\npython:\n  install:\n    - method: pip\n      path: .\n      extra_requirements:\n        - docs\n"
  },
  {
    "path": "AUTHORS.rst",
    "content": "*******\nAuthors\n*******\n\nDevelopment Lead\n================\n\n- Steven Loria <sloria1@gmail.com> `@sloria <https://github.com/sloria>`_\n\nContributors (chronological)\n============================\n\n- Pete Keen `@peterkeen <https://github.com/peterkeen>`_\n- Matthew Honnibal `@syllog1sm <https://github.com/syllog1sm>`_\n- Roman Yankovsky `@RomanYankovsky <https://github.com/RomanYankovsky>`_\n- David Karesh `@davidnk <https://github.com/davidnk>`_\n- Evan Dempsey `@evandempsey <https://github.com/evandempsey>`_\n- Wesley Childs `@mrchilds <https://github.com/mrchilds>`_\n- Jeff Schnurr `@jschnurr <https://github.com/jschnurr>`_\n- Adel Qalieh `@adelq <https://github.com/adelq>`_\n- Lage Ragnarsson `@lragnarsson <https://github.com/lragnarsson>`_\n- Jonathon Coe `@jonmcoe <https://github.com/jonmcoe>`_\n- Adrián López Calvo `@AdrianLC <https://github.com/AdrianLC>`_\n- Nitish Kulshrestha `@nitkul <https://github.com/nitkul>`_\n- Jhon Eslava `@EpicJhon <https://github.com/EpicJhon>`_\n- `@jcalbert <https://github.com/jcalbert>`_\n- Tyler James Harden `@tylerjharden <https://github.com/tylerjharden>`_\n- `@pavelmalai <https://github.com/pavelmalai>`_\n- Jeff Kolb `@jeffakolb <https://github.com/jeffakolb>`_\n- Daniel Ong `@danong <https://github.com/danong>`_\n- Jamie Moschella `@jammmo <https://github.com/jammmo>`_\n- Roman Korolev `@roman-y-korolev <https://github.com/roman-y-korolev>`_\n- Ram Rachum `@cool-RR <https://github.com/cool-RR>`_\n- Romain Casati `@casatir <https://github.com/casatir>`_\n- Evgeny Kemerov `@sudoguy <https://github.com/sudoguy>`_\n- Karthikeyan Singaravelan `@tirkarthi <https://github.com/tirkarthi>`_\n- John Franey `@johnfraney <https://github.com/johnfraney>`_\n"
  },
  {
    "path": "CHANGELOG.rst",
    "content": "Changelog\n=========\n\n0.19.0 (2025-01-13)\n___________________\n\nBug fixes:\n\n- Fix ``textblob.download_corpora`` script (:issue:`474`).\n  Thanks :user:`cagan-elden` for reporting.\n\nChanges:\n\n- Remove vendorized ``unicodecsv`` module, as it's no longer used.\n- Support Python 3.9-3.13 and nltk>=3.9 (:pr:`486`)\n  Thanks :user:`johnfraney` for the PR.\n\n0.18.0 (2024-02-15)\n-------------------\n\nBug fixes:\n\n- Remove usage of deprecated cElementTree (:issue:`339`).\n  Thanks :user:`tirkarthi` for reporting and for the PR.\n- Address ``SyntaxWarning`` on Python 3.12 (:pr:`418`).\n  Thanks :user:`smontanaro` for the PR.\n\nRemovals:\n\n- ``TextBlob.translate()`` and ``TextBlob.detect_language``, and ``textblob.translate`` \n  are removed. Use the official Google Translate API instead (:issue:`215`).\n- Remove ``textblob.compat``.\n\nSupport:\n\n- Support Python 3.8-3.12. Older versions are no longer supported.\n- Support nltk>=3.8.\n\n0.17.1 (2021-10-21)\n-------------------\n\nBug fixes:\n\n- Fix translation and language detection (:issue:`395`).\n  Thanks :user:`sudoguy` for the patch.\n\n0.17.0 (2021-02-17)\n-------------------\n\nFeatures:\n\n- Performance improvement: Use ``chain.from_iterable`` in ``_text.py``\n  to improve runtime and memory usage (:pr:`333`). Thanks :user:`cool-RR` for the PR.\n\nOther changes:\n\n- Remove usage of `ctypes` (:pr:`354`). Thanks :user:`casatir`.\n\n0.16.0 (2020-04-26)\n-------------------\n\nDeprecations:\n\n- ``TextBlob.translate()`` and ``TextBlob.detect_language`` are deprecated. Use the official Google Translate API instead (:issue:`215`).\n\nOther changes:\n\n- *Backwards-incompatible*: Drop support for Python 3.4.\n- Test against Python 3.7 and Python 3.8.\n- Pin NLTK to ``nltk<3.5`` on Python 2 (:issue:`315`).\n\n0.15.3 (2019-02-24)\n-------------------\n\nBug fixes:\n\n- Fix bug when ``Word`` string type after pos_tags is not a ``str``\n  (:pr:`255`). Thanks :user:`roman-y-korolev` for the patch.\n\n0.15.2 (2018-11-21)\n-------------------\n\nBug fixes:\n\n- Fix bug that raised a ``RuntimeError`` when executing methods that\n  delegate to ``pattern.en`` (:issue:`230`). Thanks :user:`vvaezian`\n  for the report and thanks :user:`danong` for the fix.\n- Fix methods of ``WordList`` that modified the list in-place by\n  removing the internal `_collection` variable (:pr:`235`). Thanks\n  :user:`jammmo` for the PR.\n\n0.15.1 (2018-01-20)\n-------------------\n\nBug fixes:\n\n- Convert POS tags from treebank to wordnet when calling ``lemmatize``\n  to prevent ``MissingCorpusError`` (:issue:`160`). Thanks\n  :user:`jschnurr`.\n\n0.15.0 (2017-12-02)\n-------------------\n\nFeatures:\n\n- Add `TextBlob.sentiment_assessments` property which exposes pattern's\n  sentiment assessments (:issue:`170`). Thanks :user:`jeffakolb`.\n\n0.14.0 (2017-11-20)\n-------------------\n\nFeatures:\n\n- Use specified tokenizer when tagging (:issue:`167`). Thanks\n  :user:`jschnurr` for the PR.\n\n0.13.1 (2017-11-11)\n-------------------\n\nBug fixes:\n\n- Avoid AttributeError when using pattern's sentiment analyzer\n  (:issue:`178`). Thanks :user:`tylerjharden` for the catch and patch.\n- Correctly pass ``format`` argument to ``NLTKClassifier.accuracy``\n  (:issue:`177`). Thanks :user:`pavelmalai` for the catch and patch.\n\n0.13.0 (2017-08-15)\n-------------------\n\nFeatures:\n\n- Performance improvements to `NaiveBayesClassifier` (:issue:`63`, :issue:`77`,\n  :issue:`123`). Thanks :user:`jcalbert` for the PR.\n\n0.12.0 (2017-02-27)\n-------------------\n\nFeatures:\n\n- Add `Word.stem` and `WordList.stem` methods (:issue:`145`). Thanks :user:`nitkul`.\n\nBug fixes:\n\n- Fix translation and language detection (:issue:`137`). Thanks :user:`EpicJhon` for the fix.\n\nChanges:\n\n- *Backwards-incompatible*: Remove Python 2.6 and 3.3 support.\n\n0.11.1 (2016-02-17)\n-------------------\n\nBug fixes:\n\n- Fix translation and language detection (:issue:`115`, :issue:`117`, :issue:`119`). Thanks :user:`AdrianLC` and :user:`jschnurr` for the fix. Thanks :user:`AdrianLC`, :user:`edgaralts`, and :user:`pouya-cognitiv` for reporting.\n\n0.11.0 (2015-11-01)\n-------------------\n\nChanges:\n\n- Compatible with nltk>=3.1. NLTK versions < 3.1 are no longer supported.\n- Change default tagger to NLTKTagger (uses NLTK's averaged perceptron tagger).\n- Tested on Python 3.5.\n\nBug fixes:\n\n- Fix singularization of a number of words. Thanks :user:`jonmcoe`.\n- Fix spelling correction when nltk>=3.1 is installed (:issue:`99`). Thanks :user:`shubham12101` for reporting.\n\n0.10.0 (2015-10-04)\n-------------------\n\nChanges:\n\n- Unchanged text is now considered a translation error. Raises ``NotTranslated`` (:issue:`76`). Thanks :user:`jschnurr`.\n\nBug fixes:\n\n- ``Translator.translate`` will detect language of input text by default (:issue:`85`). Thanks again :user:`jschnurr`.\n- Fix matching of tagged phrases with CFG in ``ConllExtractor``. Thanks :user:`lragnarsson`.\n- Fix inflection of a few irregular English nouns. Thanks :user:`jonmcoe`.\n\n0.9.1 (2015-06-10)\n------------------\n\nBug fixes:\n\n- Fix ``DecisionTreeClassifier.pprint`` for compatibility with nltk>=3.0.2.\n- Translation no longer adds erroneous whitespace around punctuation characters (:issue:`83`). Thanks :user:`AdrianLC` for reporting and thanks :user:`jschnurr` for the patch.\n\n0.9.0 (2014-09-15)\n------------------\n\n- TextBlob now depends on NLTK 3. The vendorized version of NLTK has been removed.\n- Fix bug that raised a `SyntaxError` when translating text with non-ascii characters on Python 3.\n- Fix bug that showed \"double-escaped\" unicode characters in translator output (issue #56). Thanks Evan Dempsey.\n- *Backwards-incompatible*: Completely remove ``import text.blob``. You should ``import textblob`` instead.\n- *Backwards-incompatible*: Completely remove ``PerceptronTagger``. Install ``textblob-aptagger`` instead.\n- *Backwards-incompatible*: Rename ``TextBlobException`` to ``TextBlobError`` and ``MissingCorpusException`` to ``MissingCorpusError``.\n- *Backwards-incompatible*: ``Format`` classes are passed a file object rather than a file path.\n- *Backwards-incompatible*: If training a classifier with data from a file, you must pass a file object (rather than a file path).\n- Updated English sentiment corpus.\n- Add ``feature_extractor`` parameter to ``NaiveBayesAnalyzer``.\n- Add ``textblob.formats.get_registry()`` and ``textblob.formats.register()`` which allows users to register custom data source formats.\n- Change ``BaseClassifier.detect`` from a ``staticmethod`` to a ``classmethod``.\n- Improved docs.\n- Tested on Python 3.4.\n\n\n0.8.4 (2014-02-02)\n------------------\n- Fix display (``__repr__``) of WordList slices on Python 3.\n- Add download_corpora module. Corpora must now be downloaded using ``python -m textblob.download_corpora``.\n\n0.8.3 (2013-12-29)\n------------------\n- Sentiment analyzers return namedtuples, e.g. ``Sentiment(polarity=0.12, subjectivity=0.34)``.\n- Memory usage improvements to NaiveBayesAnalyzer and basic_extractor (default feature extractor for classifiers module).\n- Add ``textblob.tokenizers.sent_tokenize`` and ``textblob.tokenizers.word_tokenize`` convenience functions.\n- Add ``textblob.classifiers.MaxEntClassifer``.\n- Improved NLTKTagger.\n\n0.8.2 (2013-12-21)\n------------------\n- Fix bug in spelling correction that stripped some punctuation (Issue #48).\n- Various improvements to spelling correction: preserves whitespace characters (Issue #12); handle contractions and punctuation between words. Thanks @davidnk.\n- Make ``TextBlob.words`` more memory-efficient.\n- Translator now sends POST instead of GET requests. This allows for larger bodies of text to be translated (Issue #49).\n- Update pattern tagger for better accuracy.\n\n0.8.1 (2013-11-16)\n------------------\n- Fix bug that caused ``ValueError`` upon sentence tokenization. This removes modifications made to the NLTK sentence tokenizer.\n- Add ``Word.lemmatize()`` method that allows passing in a part-of-speech argument.\n- ``Word.lemma`` returns correct part of speech for Word objects that have their ``pos`` attribute set. Thanks @RomanYankovsky.\n\n\n0.8.0 (2013-10-23)\n------------------\n- *Backwards-incompatible*: Renamed package to ``textblob``. This avoids clashes with other namespaces called `text`. TextBlob should now be imported with ``from textblob import TextBlob``.\n- Update pattern resources for improved parser accuracy.\n- Update NLTK.\n- Allow Translator to connect to proxy server.\n- PerceptronTagger completely deprecated. Install the ``textblob-aptagger`` extension instead.\n\n0.7.1 (2013-09-30)\n------------------\n- Bugfix updates.\n- Fix bug in feature extraction for ``NaiveBayesClassifier``.\n- ``basic_extractor`` is now case-sensitive, e.g. contains(I) != contains(i)\n- Fix ``repr`` output when a TextBlob contains non-ascii characters.\n- Fix part-of-speech tagging with ``PatternTagger`` on Windows.\n- Suppress warning about not having scikit-learn installed.\n\n0.7.0 (2013-09-25)\n------------------\n- Wordnet integration. ``Word`` objects have ``synsets`` and ``definitions`` properties. The ``text.wordnet`` module allows you to create ``Synset`` and ``Lemma`` objects directly.\n- Move all English-specific code to its own module, ``text.en``.\n- Basic extensions framework in place. TextBlob has been refactored to make it easier to develop extensions.\n- Add ``text.classifiers.PositiveNaiveBayesClassifier``.\n- Update NLTK.\n- ``NLTKTagger`` now working on Python 3.\n- Fix ``__str__`` behavior. ``print(blob)`` should now print non-ascii text correctly in both Python 2 and 3.\n- *Backwards-incompatible*: All abstract base classes have been moved to the ``text.base`` module.\n- *Backwards-incompatible*: ``PerceptronTagger`` will now be maintained as an extension, ``textblob-aptagger``. Instantiating a ``text.taggers.PerceptronTagger()`` will raise a ``DeprecationWarning``.\n\n0.6.3 (2013-09-15)\n------------------\n- Word tokenization fix: Words that stem from a contraction will still have an apostrophe, e.g. ``\"Let's\" => [\"Let\", \"'s\"]``.\n- Fix bug with comparing blobs to strings.\n- Add ``text.taggers.PerceptronTagger``, a fast and accurate POS tagger. Thanks `@syllog1sm <http://github.com/syllog1sm>`_.\n- Note for Python 3 users: You may need to update your corpora, since NLTK master has reorganized its corpus system. Just run ``curl https://raw.github.com/sloria/TextBlob/master/download_corpora.py | python`` again.\n- Add ``download_corpora_lite.py`` script for getting the minimum corpora requirements for TextBlob's basic features.\n\n0.6.2 (2013-09-05)\n------------------\n- Fix bug that resulted in a ``UnicodeEncodeError`` when tagging text with non-ascii characters.\n- Add ``DecisionTreeClassifier``.\n- Add ``labels()`` and ``train()`` methods to classifiers.\n\n0.6.1 (2013-09-01)\n------------------\n- Classifiers can be trained and tested on CSV, JSON, or TSV data.\n- Add basic WordNet lemmatization via the ``Word.lemma`` property.\n- ``WordList.pluralize()`` and ``WordList.singularize()`` methods return ``WordList`` objects.\n\n0.6.0 (2013-08-25)\n------------------\n- Add Naive Bayes classification. New ``text.classifiers`` module, ``TextBlob.classify()``, and ``Sentence.classify()`` methods.\n- Add parsing functionality via the ``TextBlob.parse()`` method. The ``text.parsers`` module currently has one implementation (``PatternParser``).\n- Add spelling correction. This includes the ``TextBlob.correct()`` and ``Word.spellcheck()`` methods.\n- Update NLTK.\n- Backwards incompatible: ``clean_html`` has been deprecated, just as it has in NLTK. Use Beautiful Soup's ``soup.get_text()`` method for HTML-cleaning instead.\n- Slight API change to language translation: if ``from_lang`` isn't specified, attempts to detect the language.\n- Add ``itokenize()`` method to tokenizers that returns a generator instead of a list of tokens.\n\n0.5.3 (2013-08-21)\n------------------\n- Unicode fixes: This fixes a bug that sometimes raised a ``UnicodeEncodeError`` upon creating accessing ``sentences`` for TextBlobs with non-ascii characters.\n- Update NLTK\n\n0.5.2 (2013-08-14)\n------------------\n- `Important patch update for NLTK users`: Fix bug with importing TextBlob if local NLTK is installed.\n- Fix bug with computing start and end indices of sentences.\n\n\n0.5.1 (2013-08-13)\n------------------\n- Fix bug that disallowed display of non-ascii characters in the Python REPL.\n- Backwards incompatible: Restore ``blob.json`` property for backwards compatibility with textblob<=0.3.10. Add a ``to_json()`` method that takes the same arguments as ``json.dumps``.\n- Add ``WordList.append`` and ``WordList.extend`` methods that append Word objects.\n\n0.5.0 (2013-08-10)\n------------------\n- Language translation and detection API!\n- Add ``text.sentiments`` module. Contains the ``PatternAnalyzer`` (default implementation) as well as a ``NaiveBayesAnalyzer``.\n- Part-of-speech tags can be accessed via ``TextBlob.tags`` or ``TextBlob.pos_tags``.\n- Add ``polarity`` and ``subjectivity`` helper properties.\n\n0.4.0 (2013-08-05)\n------------------\n- New ``text.tokenizers`` module with ``WordTokenizer`` and ``SentenceTokenizer``. Tokenizer instances (from either textblob itself or NLTK) can be passed to TextBlob's constructor. Tokens are accessed through the new ``tokens`` property.\n- New ``Blobber`` class for creating TextBlobs that share the same tagger, tokenizer, and np_extractor.\n- Add ``ngrams`` method.\n- `Backwards-incompatible`: ``TextBlob.json()`` is now a method, not a property. This allows you to pass arguments (the same that you would pass to ``json.dumps()``).\n- New home for documentation: https://textblob.readthedocs.io/\n- Add parameter for cleaning HTML markup from text.\n- Minor improvement to word tokenization.\n- Updated NLTK.\n- Fix bug with adding blobs to bytestrings.\n\n0.3.10 (2013-08-02)\n-------------------\n- Bundled NLTK no longer overrides local installation.\n- Fix sentiment analysis of text with non-ascii characters.\n\n0.3.9 (2013-07-31)\n------------------\n- Updated nltk.\n- ConllExtractor is now Python 3-compatible.\n- Improved sentiment analysis.\n- Blobs are equal (with `==`) to their string counterparts.\n- Added instructions to install textblob without nltk bundled.\n- Dropping official 3.1 and 3.2 support.\n\n0.3.8 (2013-07-30)\n------------------\n- Importing TextBlob is now **much faster**. This is because the noun phrase parsers are trained only on the first call to ``noun_phrases`` (instead of training them every time you import TextBlob).\n- Add text.taggers module which allows user to change which POS tagger implementation to use. Currently supports PatternTagger and NLTKTagger (NLTKTagger only works with Python 2).\n- NPExtractor and Tagger objects can be passed to TextBlob's constructor.\n- Fix bug with POS-tagger not tagging one-letter words.\n- Rename text/np_extractor.py -> text/np_extractors.py\n- Add run_tests.py script.\n\n0.3.7 (2013-07-28)\n------------------\n\n- Every word in a ``Blob`` or ``Sentence`` is a ``Word`` instance which has methods for inflection, e.g ``word.pluralize()`` and ``word.singularize()``.\n\n- Updated the ``np_extractor`` module. Now has an new implementation, ``ConllExtractor`` that uses the Conll2000 chunking corpus. Only works on Py2.\n"
  },
  {
    "path": "CONTRIBUTING.rst",
    "content": "Contributing guidelines\n=======================\n\nIn General\n----------\n\n- `PEP 8`_, when sensible.\n- Conventions *and* configuration.\n- TextBlob wraps functionality in NLTK and pattern.en. Anything outside of that should be written as an extension.\n- Test ruthlessly. Write docs for new features.\n- Even more important than Test-Driven Development--*Human-Driven Development*.\n- These guidelines may--and probably will--change.\n\n.. _`PEP 8`: http://www.python.org/dev/peps/pep-0008/\n\n\nIn Particular\n-------------\n\nQuestions, Feature Requests, Bug Reports, and Feedback. . .\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\n. . .should all be reported on the `Github Issue Tracker`_ .\n\n.. _`Github Issue Tracker`: https://github.com/sloria/TextBlob/issues?state=open\n\nSetting Up for Local Development\n++++++++++++++++++++++++++++++++\n\n1. Fork TextBlob_ on Github. ::\n\n    $ git clone https://github.com/sloria/TextBlob.git\n    $ cd TextBlob\n\n2. Install development requirements. It is highly recommended that you use a virtualenv. ::\n\n    # After activating your virtualenv\n    $ pip install -e '.[tests]'\n\n.. _extension-development:\n\nDeveloping Extensions\n+++++++++++++++++++++\n\nExtensions are packages with the name ``textblob-something``, where \"something\" is the name of your extension. Extensions should be imported with ``import textblob_something``.\n\nModel Extensions\n++++++++++++++++\n\nTo create a new extension for a part-of-speech tagger, sentiment analyzer, noun phrase extractor, classifier, tokenizer, or parser, simply create a module that has a class that implements the correct interface from ``textblob.base``. For example, a tagger might look like this:\n\n.. code-block:: python\n\n    from textblob.base import BaseTagger\n\n\n    class MyTagger(BaseTagger):\n        def tag(self, text):\n            pass\n            # Your implementation goes here\n\nLanguage Extensions\n+++++++++++++++++++\n\nThe process for developing language extensions is the same as developing model extensions. Create your part-of-speech taggers, tokenizers, parsers, etc. in the language of your choice. Packages should be named ``textblob-xx`` where \"xx\" is the two- or three-letter language code (`Language code reference`_).\n\n.. _Language code reference: http://www.loc.gov/standards/iso639-2/php/code_list.php\n\nTo see examples of existing extensions, visit the :ref:`Extensions <extensions>` page.\n\nCheck out the :ref:`API reference <api_base_classes>` for more info on the model interfaces.\n\n\nGit Branch Structure\n++++++++++++++++++++\n\nTextBlob loosely follows Vincent Driessen's `Successful Git Branching Model <http://http://nvie.com/posts/a-successful-git-branching-model/>`_ . In practice, the following branch conventions are used:\n\n``dev``\n    The next release branch.\n\n``master``\n    Current production release on PyPI.\n\nPull Requests\n++++++++++++++\n\n1. Create a new local branch.\n::\n\n    $ git checkout -b name-of-feature\n\n2. Commit your changes. Write `good commit messages <http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html>`_.\n::\n\n    $ git commit -m \"Detailed commit message\"\n    $ git push origin name-of-feature\n\n3. Before submitting a pull request, check the following:\n\n- If the pull request adds functionality, it is tested and the docs are updated.\n- If you've developed an extension, it is on the :ref:`Extensions List <extensions>`.\n- You've added yourself to ``AUTHORS.rst``.\n\n4. Submit a pull request to the ``sloria:dev`` branch.\n\nRunning tests\n+++++++++++++\n\nTo run all the tests: ::\n\n    $ pytest\n\nTo skip slow tests: ::\n\n    $ pytest -m 'not slow'\n\nDocumentation\n+++++++++++++\n\nContributions to the documentation are welcome. Documentation is written in `reStructuredText`_ (rST). A quick rST reference can be found `here <https://docutils.sourceforge.io/docs/user/rst/quickref.html>`_. Builds are powered by Sphinx_.\n\nTo build docs and run in watch mode: ::\n\n    $ tox -e docs-serve\n\n.. _Sphinx: http://sphinx.pocoo.org/\n\n.. _`reStructuredText`: https://docutils.sourceforge.io/rst.html\n\n.. _TextBlob: https://github.com/sloria/TextBlob\n"
  },
  {
    "path": "LICENSE",
    "content": "Copyright Steven Loria and contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
  },
  {
    "path": "NOTICE",
    "content": "TextBlob includes some vendorized python libraries, including parts of pattern.\n\npattern License\n===============\n\nCopyright (c) 2011-2013 University of Antwerp, Belgium\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n  * Redistributions of source code must retain the above copyright\n    notice, this list of conditions and the following disclaimer.\n  * Redistributions in binary form must reproduce the above copyright\n    notice, this list of conditions and the following disclaimer in\n    the documentation and/or other materials provided with the\n    distribution.\n  * Neither the name of Pattern nor the names of its\n    contributors may be used to endorse or promote products\n    derived from this software without specific prior written\n    permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\nFOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE\nCOPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\nBUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN\nANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE.\n"
  },
  {
    "path": "README.rst",
    "content": "\nTextBlob: Simplified Text Processing\n====================================\n\n.. image:: https://badgen.net/pypi/v/TextBlob\n    :target: https://pypi.org/project/textblob/\n    :alt: Latest version\n\n.. image:: https://github.com/sloria/TextBlob/actions/workflows/build-release.yml/badge.svg\n    :target: https://github.com/sloria/TextBlob/actions/workflows/build-release.yml\n    :alt: Build status\n\n\nHomepage: `https://textblob.readthedocs.io/ <https://textblob.readthedocs.io/>`_\n\n`TextBlob` is a Python library for processing textual data. It provides a simple API for diving into common natural language processing (NLP) tasks such as part-of-speech tagging, noun phrase extraction, sentiment analysis, classification, and more.\n\n\n.. code-block:: python\n\n    from textblob import TextBlob\n\n    text = \"\"\"\n    The titular threat of The Blob has always struck me as the ultimate movie\n    monster: an insatiably hungry, amoeba-like mass able to penetrate\n    virtually any safeguard, capable of--as a doomed doctor chillingly\n    describes it--\"assimilating flesh on contact.\n    Snide comparisons to gelatin be damned, it's a concept with the most\n    devastating of potential consequences, not unlike the grey goo scenario\n    proposed by technological theorists fearful of\n    artificial intelligence run rampant.\n    \"\"\"\n\n    blob = TextBlob(text)\n    blob.tags  # [('The', 'DT'), ('titular', 'JJ'),\n    #  ('threat', 'NN'), ('of', 'IN'), ...]\n\n    blob.noun_phrases  # WordList(['titular threat', 'blob',\n    #            'ultimate movie monster',\n    #            'amoeba-like mass', ...])\n\n    for sentence in blob.sentences:\n        print(sentence.sentiment.polarity)\n    # 0.060\n    # -0.341\n\n\nTextBlob stands on the giant shoulders of `NLTK`_ and `pattern`_, and plays nicely with both.\n\nFeatures\n--------\n\n- Noun phrase extraction\n- Part-of-speech tagging\n- Sentiment analysis\n- Classification (Naive Bayes, Decision Tree)\n- Tokenization (splitting text into words and sentences)\n- Word and phrase frequencies\n- Parsing\n- `n`-grams\n- Word inflection (pluralization and singularization) and lemmatization\n- Spelling correction\n- Add new models or languages through extensions\n- WordNet integration\n\nGet it now\n----------\n::\n\n    $ pip install -U textblob\n    $ python -m textblob.download_corpora\n\nExamples\n--------\n\nSee more examples at the `Quickstart guide`_.\n\n.. _`Quickstart guide`: https://textblob.readthedocs.io/en/latest/quickstart.html#quickstart\n\n\nDocumentation\n-------------\n\nFull documentation is available at https://textblob.readthedocs.io/.\n\nProject Links\n-------------\n\n- Docs: https://textblob.readthedocs.io/\n- Changelog: https://textblob.readthedocs.io/en/latest/changelog.html\n- PyPI: https://pypi.python.org/pypi/TextBlob\n- Issues: https://github.com/sloria/TextBlob/issues\n\nLicense\n-------\n\nMIT licensed. See the bundled `LICENSE <https://github.com/sloria/TextBlob/blob/master/LICENSE>`_ file for more details.\n\n.. _pattern: https://github.com/clips/pattern/\n.. _NLTK: http://nltk.org/\n"
  },
  {
    "path": "RELEASING.md",
    "content": "# Releasing\n\n1. Bump version in `pyproject.toml` and update the changelog\n   with today's date.\n2. Commit: `git commit -m \"Bump version and update changelog\"`\n3. Tag the commit: `git tag x.y.z`\n4. Push: `git push --tags origin dev`. CI will take care of the\n   PyPI release.\n"
  },
  {
    "path": "SECURITY.md",
    "content": "# Security Contact Information\n\nTo report a security vulnerability, please use the\n[Tidelift security contact](https://tidelift.com/security).\nTidelift will coordinate the fix and disclosure.\n"
  },
  {
    "path": "docs/Makefile",
    "content": "# Makefile for Sphinx documentation\n#\n\n# You can set these variables from the command line.\nSPHINXOPTS    =\nSPHINXBUILD   = sphinx-build\nPAPER         =\nBUILDDIR      = _build\n\n# User-friendly check for sphinx-build\nifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1)\n$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http://sphinx-doc.org/)\nendif\n\n# Internal variables.\nPAPEROPT_a4     = -D latex_paper_size=a4\nPAPEROPT_letter = -D latex_paper_size=letter\nALLSPHINXOPTS   = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .\n# the i18n builder cannot share the environment and doctrees with the others\nI18NSPHINXOPTS  = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .\n\n.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext\n\nhelp:\n\t@echo \"Please use \\`make <target>' where <target> is one of\"\n\t@echo \"  html       to make standalone HTML files\"\n\t@echo \"  dirhtml    to make HTML files named index.html in directories\"\n\t@echo \"  singlehtml to make a single large HTML file\"\n\t@echo \"  pickle     to make pickle files\"\n\t@echo \"  json       to make JSON files\"\n\t@echo \"  htmlhelp   to make HTML files and a HTML help project\"\n\t@echo \"  qthelp     to make HTML files and a qthelp project\"\n\t@echo \"  devhelp    to make HTML files and a Devhelp project\"\n\t@echo \"  epub       to make an epub\"\n\t@echo \"  latex      to make LaTeX files, you can set PAPER=a4 or PAPER=letter\"\n\t@echo \"  latexpdf   to make LaTeX files and run them through pdflatex\"\n\t@echo \"  latexpdfja to make LaTeX files and run them through platex/dvipdfmx\"\n\t@echo \"  text       to make text files\"\n\t@echo \"  man        to make manual pages\"\n\t@echo \"  texinfo    to make Texinfo files\"\n\t@echo \"  info       to make Texinfo files and run them through makeinfo\"\n\t@echo \"  gettext    to make PO message catalogs\"\n\t@echo \"  changes    to make an overview of all changed/added/deprecated items\"\n\t@echo \"  xml        to make Docutils-native XML files\"\n\t@echo \"  pseudoxml  to make pseudoxml-XML files for display purposes\"\n\t@echo \"  linkcheck  to check all external links for integrity\"\n\t@echo \"  doctest    to run all doctests embedded in the documentation (if enabled)\"\n\nclean:\n\trm -rf $(BUILDDIR)/*\n\nhtml:\n\t$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html\n\t@echo\n\t@echo \"Build finished. The HTML pages are in $(BUILDDIR)/html.\"\n\ndirhtml:\n\t$(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml\n\t@echo\n\t@echo \"Build finished. The HTML pages are in $(BUILDDIR)/dirhtml.\"\n\nsinglehtml:\n\t$(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml\n\t@echo\n\t@echo \"Build finished. The HTML page is in $(BUILDDIR)/singlehtml.\"\n\npickle:\n\t$(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle\n\t@echo\n\t@echo \"Build finished; now you can process the pickle files.\"\n\njson:\n\t$(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json\n\t@echo\n\t@echo \"Build finished; now you can process the JSON files.\"\n\nhtmlhelp:\n\t$(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp\n\t@echo\n\t@echo \"Build finished; now you can run HTML Help Workshop with the\" \\\n\t      \".hhp project file in $(BUILDDIR)/htmlhelp.\"\n\nqthelp:\n\t$(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp\n\t@echo\n\t@echo \"Build finished; now you can run \"qcollectiongenerator\" with the\" \\\n\t      \".qhcp project file in $(BUILDDIR)/qthelp, like this:\"\n\t@echo \"# qcollectiongenerator $(BUILDDIR)/qthelp/textblob.qhcp\"\n\t@echo \"To view the help file:\"\n\t@echo \"# assistant -collectionFile $(BUILDDIR)/qthelp/textblob.qhc\"\n\ndevhelp:\n\t$(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp\n\t@echo\n\t@echo \"Build finished.\"\n\t@echo \"To view the help file:\"\n\t@echo \"# mkdir -p $$HOME/.local/share/devhelp/textblob\"\n\t@echo \"# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/textblob\"\n\t@echo \"# devhelp\"\n\nepub:\n\t$(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub\n\t@echo\n\t@echo \"Build finished. The epub file is in $(BUILDDIR)/epub.\"\n\nlatex:\n\t$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex\n\t@echo\n\t@echo \"Build finished; the LaTeX files are in $(BUILDDIR)/latex.\"\n\t@echo \"Run \\`make' in that directory to run these through (pdf)latex\" \\\n\t      \"(use \\`make latexpdf' here to do that automatically).\"\n\nlatexpdf:\n\t$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex\n\t@echo \"Running LaTeX files through pdflatex...\"\n\t$(MAKE) -C $(BUILDDIR)/latex all-pdf\n\t@echo \"pdflatex finished; the PDF files are in $(BUILDDIR)/latex.\"\n\nlatexpdfja:\n\t$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex\n\t@echo \"Running LaTeX files through platex and dvipdfmx...\"\n\t$(MAKE) -C $(BUILDDIR)/latex all-pdf-ja\n\t@echo \"pdflatex finished; the PDF files are in $(BUILDDIR)/latex.\"\n\ntext:\n\t$(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text\n\t@echo\n\t@echo \"Build finished. The text files are in $(BUILDDIR)/text.\"\n\nman:\n\t$(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man\n\t@echo\n\t@echo \"Build finished. The manual pages are in $(BUILDDIR)/man.\"\n\ntexinfo:\n\t$(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo\n\t@echo\n\t@echo \"Build finished. The Texinfo files are in $(BUILDDIR)/texinfo.\"\n\t@echo \"Run \\`make' in that directory to run these through makeinfo\" \\\n\t      \"(use \\`make info' here to do that automatically).\"\n\ninfo:\n\t$(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo\n\t@echo \"Running Texinfo files through makeinfo...\"\n\tmake -C $(BUILDDIR)/texinfo info\n\t@echo \"makeinfo finished; the Info files are in $(BUILDDIR)/texinfo.\"\n\ngettext:\n\t$(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale\n\t@echo\n\t@echo \"Build finished. The message catalogs are in $(BUILDDIR)/locale.\"\n\nchanges:\n\t$(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes\n\t@echo\n\t@echo \"The overview file is in $(BUILDDIR)/changes.\"\n\nlinkcheck:\n\t$(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck\n\t@echo\n\t@echo \"Link check complete; look for any errors in the above output \" \\\n\t      \"or in $(BUILDDIR)/linkcheck/output.txt.\"\n\ndoctest:\n\t$(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest\n\t@echo \"Testing of doctests in the sources finished, look at the \" \\\n\t      \"results in $(BUILDDIR)/doctest/output.txt.\"\n\nxml:\n\t$(SPHINXBUILD) -b xml $(ALLSPHINXOPTS) $(BUILDDIR)/xml\n\t@echo\n\t@echo \"Build finished. The XML files are in $(BUILDDIR)/xml.\"\n\npseudoxml:\n\t$(SPHINXBUILD) -b pseudoxml $(ALLSPHINXOPTS) $(BUILDDIR)/pseudoxml\n\t@echo\n\t@echo \"Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml.\"\n"
  },
  {
    "path": "docs/_templates/side-primary.html",
    "content": "<p class=\"logo\">\n  <a href=\"{{ pathto(master_doc) }}\"\n    ><img\n      class=\"logo\"\n      src=\"{{ pathto('_static/textblob-logo.png', 1) }}\"\n      height=\"200\"\n      width=\"230\"\n      alt=\"Logo\"\n  /></a>\n</p>\n\n<p>\n  <iframe\n    src=\"https://ghbtns.com/github-btn.html?user=sloria&repo=TextBlob&type=watch&count=true&size=large\"\n    allowtransparency=\"true\"\n    frameborder=\"0\"\n    scrolling=\"0\"\n    width=\"200px\"\n    height=\"35px\"\n  ></iframe>\n</p>\n\n<p>\n  TextBlob is a Python library for processing textual data. It\n  provides a consistent API for diving into common natural language processing\n  (NLP) tasks such as part-of-speech tagging, noun phrase extraction, sentiment\n  analysis, and more.\n</p>\n\n<h3>Useful Links</h3>\n<ul>\n  <li><a href=\"https://pypi.python.org/pypi/textblob\">TextBlob @ PyPI</a></li>\n  <li><a href=\"https://github.com/sloria/textblob\">TextBlob @ GitHub</a></li>\n  <li><a href=\"https://github.com/sloria/textblob/issues\">Issue Tracker</a></li>\n</ul>\n\n<h3>Stay Informed</h3>\n\n<p>\n  <iframe\n    src=\"https://ghbtns.com/github-btn.html?user=sloria&type=follow\"\n    allowtransparency=\"true\"\n    frameborder=\"0\"\n    scrolling=\"0\"\n    width=\"165\"\n    height=\"20\"\n  ></iframe>\n</p>\n"
  },
  {
    "path": "docs/_templates/side-secondary.html",
    "content": "<p class=\"logo\">\n  <a href=\"{{ pathto(master_doc) }}\"\n    ><img\n      class=\"logo\"\n      src=\"{{ pathto('_static/textblob-logo.png', 1) }}\"\n      height=\"200\"\n      width=\"230\"\n      alt=\"Logo\"\n  /></a>\n</p>\n\n<p>\n  <iframe\n    src=\"https://ghbtns.com/github-btn.html?user=sloria&repo=TextBlob&type=watch&count=true&size=large\"\n    allowtransparency=\"true\"\n    frameborder=\"0\"\n    scrolling=\"0\"\n    width=\"200px\"\n    height=\"35px\"\n  ></iframe>\n</p>\n\n<p>\n  TextBlob is a Python library for processing textual data. It provides a\n  consistent API for diving into common natural language processing (NLP) tasks\n  such as part-of-speech tagging, noun phrase extraction, sentiment analysis,\n  and more.\n</p>\n\n<h3>Useful Links</h3>\n<ul>\n  <li><a href=\"https://pypi.python.org/pypi/textblob\">TextBlob @ PyPI</a></li>\n  <li><a href=\"https://github.com/sloria/textblob\">TextBlob @ GitHub</a></li>\n  <li><a href=\"https://github.com/sloria/textblob/issues\">Issue Tracker</a></li>\n</ul>\n"
  },
  {
    "path": "docs/_themes/.gitignore",
    "content": "*.pyc\n*.pyo\n.DS_Store\n"
  },
  {
    "path": "docs/_themes/LICENSE",
    "content": "Modifications: \n\nCopyright (c) 2010 Kenneth Reitz.\n\n\nOriginal Project: \n\nCopyright (c) 2010 by Armin Ronacher.\n\n\nSome rights reserved.\n\nRedistribution and use in source and binary forms of the theme, with or\nwithout modification, are permitted provided that the following conditions\nare met:\n\n* Redistributions of source code must retain the above copyright\n  notice, this list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above\n  copyright notice, this list of conditions and the following\n  disclaimer in the documentation and/or other materials provided\n  with the distribution.\n\n* The names of the contributors may not be used to endorse or\n  promote products derived from this software without specific\n  prior written permission.\n\nWe kindly ask you to only use these themes in an unmodified manner just\nfor Flask and Flask-related products, not for unrelated projects.  If you\nlike the visual style and want to use it for your own projects, please\nconsider making some larger changes to the themes (such as changing\nfont faces, sizes, colors or margins).\n\nTHIS THEME IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS THEME, EVEN IF ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE.\n"
  },
  {
    "path": "docs/_themes/flask_theme_support.py",
    "content": "# flasky extensions.  flasky pygments style based on tango style\nfrom pygments.style import Style\nfrom pygments.token import (\n    Comment,\n    Error,\n    Generic,\n    Keyword,\n    Literal,\n    Name,\n    Number,\n    Operator,\n    Other,\n    Punctuation,\n    String,\n    Whitespace,\n)\n\n\nclass FlaskyStyle(Style):\n    background_color = \"#f8f8f8\"\n    default_style = \"\"\n\n    styles = {\n        # No corresponding class for the following:\n        # Text:                     \"\", # class:  ''\n        Whitespace: \"underline #f8f8f8\",  # class: 'w'\n        Error: \"#a40000 border:#ef2929\",  # class: 'err'\n        Other: \"#000000\",  # class 'x'\n        Comment: \"italic #8f5902\",  # class: 'c'\n        Comment.Preproc: \"noitalic\",  # class: 'cp'\n        Keyword: \"bold #004461\",  # class: 'k'\n        Keyword.Constant: \"bold #004461\",  # class: 'kc'\n        Keyword.Declaration: \"bold #004461\",  # class: 'kd'\n        Keyword.Namespace: \"bold #004461\",  # class: 'kn'\n        Keyword.Pseudo: \"bold #004461\",  # class: 'kp'\n        Keyword.Reserved: \"bold #004461\",  # class: 'kr'\n        Keyword.Type: \"bold #004461\",  # class: 'kt'\n        Operator: \"#582800\",  # class: 'o'\n        Operator.Word: \"bold #004461\",  # class: 'ow' - like keywords\n        Punctuation: \"bold #000000\",  # class: 'p'\n        # because special names such as Name.Class, Name.Function, etc.\n        # are not recognized as such later in the parsing, we choose them\n        # to look the same as ordinary variables.\n        Name: \"#000000\",  # class: 'n'\n        Name.Attribute: \"#c4a000\",  # class: 'na' - to be revised\n        Name.Builtin: \"#004461\",  # class: 'nb'\n        Name.Builtin.Pseudo: \"#3465a4\",  # class: 'bp'\n        Name.Class: \"#000000\",  # class: 'nc' - to be revised\n        Name.Constant: \"#000000\",  # class: 'no' - to be revised\n        Name.Decorator: \"#888\",  # class: 'nd' - to be revised\n        Name.Entity: \"#ce5c00\",  # class: 'ni'\n        Name.Exception: \"bold #cc0000\",  # class: 'ne'\n        Name.Function: \"#000000\",  # class: 'nf'\n        Name.Property: \"#000000\",  # class: 'py'\n        Name.Label: \"#f57900\",  # class: 'nl'\n        Name.Namespace: \"#000000\",  # class: 'nn' - to be revised\n        Name.Other: \"#000000\",  # class: 'nx'\n        Name.Tag: \"bold #004461\",  # class: 'nt' - like a keyword\n        Name.Variable: \"#000000\",  # class: 'nv' - to be revised\n        Name.Variable.Class: \"#000000\",  # class: 'vc' - to be revised\n        Name.Variable.Global: \"#000000\",  # class: 'vg' - to be revised\n        Name.Variable.Instance: \"#000000\",  # class: 'vi' - to be revised\n        Number: \"#990000\",  # class: 'm'\n        Literal: \"#000000\",  # class: 'l'\n        Literal.Date: \"#000000\",  # class: 'ld'\n        String: \"#4e9a06\",  # class: 's'\n        String.Backtick: \"#4e9a06\",  # class: 'sb'\n        String.Char: \"#4e9a06\",  # class: 'sc'\n        String.Doc: \"italic #8f5902\",  # class: 'sd' - like a comment\n        String.Double: \"#4e9a06\",  # class: 's2'\n        String.Escape: \"#4e9a06\",  # class: 'se'\n        String.Heredoc: \"#4e9a06\",  # class: 'sh'\n        String.Interpol: \"#4e9a06\",  # class: 'si'\n        String.Other: \"#4e9a06\",  # class: 'sx'\n        String.Regex: \"#4e9a06\",  # class: 'sr'\n        String.Single: \"#4e9a06\",  # class: 's1'\n        String.Symbol: \"#4e9a06\",  # class: 'ss'\n        Generic: \"#000000\",  # class: 'g'\n        Generic.Deleted: \"#a40000\",  # class: 'gd'\n        Generic.Emph: \"italic #000000\",  # class: 'ge'\n        Generic.Error: \"#ef2929\",  # class: 'gr'\n        Generic.Heading: \"bold #000080\",  # class: 'gh'\n        Generic.Inserted: \"#00A000\",  # class: 'gi'\n        Generic.Output: \"#888\",  # class: 'go'\n        Generic.Prompt: \"#745334\",  # class: 'gp'\n        Generic.Strong: \"bold #000000\",  # class: 'gs'\n        Generic.Subheading: \"bold #800080\",  # class: 'gu'\n        Generic.Traceback: \"bold #a40000\",  # class: 'gt'\n    }\n"
  },
  {
    "path": "docs/_themes/kr/layout.html",
    "content": "{%- extends \"basic/layout.html\" %} {%- block extrahead %} {{ super() }} {% if\ntheme_touch_icon %}\n<link\n  rel=\"apple-touch-icon\"\n  href=\"{{ pathto('_static/' ~ theme_touch_icon, 1) }}\"\n/>\n{% endif %}\n<meta\n  name=\"viewport\"\n  content=\"width=device-width, initial-scale=0.9, maximum-scale=0.9\"\n/>\n{% endblock %} {%- block relbar2 %}{% endblock %} {%- block footer %}\n<div class=\"footer\">&copy; Copyright {{ copyright }}.</div>\n<a href=\"https://github.com/sloria/textblob\" class=\"github\">\n  <img\n    style=\"position: absolute; top: 0; right: 0; border: 0\"\n    src=\"https://github.blog/wp-content/uploads/2008/12/forkme_right_darkblue_121621.png\"\n    alt=\"Fork me on GitHub\"\n    class=\"github\"\n  />\n</a>\n\n{%- endblock %}\n"
  },
  {
    "path": "docs/_themes/kr/relations.html",
    "content": "<h3>Related Topics</h3>\n<ul>\n  <li><a href=\"{{ pathto(master_doc) }}\">Documentation overview</a><ul>\n  {%- for parent in parents %}\n  <li><a href=\"{{ parent.link|e }}\">{{ parent.title }}</a><ul>\n  {%- endfor %}\n    {%- if prev %}\n      <li>Previous: <a href=\"{{ prev.link|e }}\" title=\"{{ _('previous chapter')\n        }}\">{{ prev.title }}</a></li>\n    {%- endif %}\n    {%- if next %}\n      <li>Next: <a href=\"{{ next.link|e }}\" title=\"{{ _('next chapter')\n        }}\">{{ next.title }}</a></li>\n    {%- endif %}\n  {%- for parent in parents %}\n  </ul></li>\n  {%- endfor %}\n  </ul></li>\n</ul>\n"
  },
  {
    "path": "docs/_themes/kr/static/flasky.css_t",
    "content": "/*\n * flasky.css_t\n * ~~~~~~~~~~~~\n *\n * :copyright: Copyright 2010 by Armin Ronacher. Modifications by Kenneth Reitz.\n * :license: Flask Design License, see LICENSE for details.\n */\n\n{% set page_width = '940px' %}\n{% set sidebar_width = '220px' %}\n\n@import url(\"basic.css\");\n\n/* -- page layout ----------------------------------------------------------- */\n\nbody {\n    font-family: 'goudy old style', 'minion pro', 'bell mt', Georgia, 'Hiragino Mincho Pro';\n    font-size: 17px;\n    background-color: white;\n    color: #000;\n    margin: 0;\n    padding: 0;\n}\n\ndiv.document {\n    width: {{ page_width }};\n    margin: 30px auto 0 auto;\n}\n\ndiv.documentwrapper {\n    float: left;\n    width: 100%;\n}\n\ndiv.bodywrapper {\n    margin: 0 0 0 {{ sidebar_width }};\n}\n\ndiv.sphinxsidebar {\n    width: {{ sidebar_width }};\n}\n\nhr {\n    border: 1px solid #B1B4B6;\n}\n\ndiv.body {\n    background-color: #ffffff;\n    color: #3E4349;\n    padding: 0 30px 0 30px;\n}\n\nimg.floatingflask {\n    padding: 0 0 10px 10px;\n    float: right;\n}\n\ndiv.footer {\n    width: {{ page_width }};\n    margin: 20px auto 30px auto;\n    font-size: 14px;\n    color: #888;\n    text-align: right;\n}\n\ndiv.footer a {\n    color: #888;\n}\n\ndiv.related {\n    display: none;\n}\n\ndiv.sphinxsidebar a {\n    color: #444;\n    text-decoration: none;\n    border-bottom: 1px dotted #999;\n}\n\ndiv.sphinxsidebar a:hover {\n    border-bottom: 1px solid #999;\n}\n\ndiv.sphinxsidebar {\n    font-size: 14px;\n    line-height: 1.5;\n}\n\ndiv.sphinxsidebarwrapper {\n    padding: 18px 10px;\n}\n\ndiv.sphinxsidebarwrapper p.logo {\n    padding: 0;\n    margin: -10px 0 0 -20px;\n    text-align: center;\n}\n\ndiv.sphinxsidebar h3,\ndiv.sphinxsidebar h4 {\n    font-family: 'Garamond', 'Georgia', serif;\n    color: #444;\n    font-size: 24px;\n    font-weight: normal;\n    margin: 0 0 5px 0;\n    padding: 0;\n}\n\ndiv.sphinxsidebar h4 {\n    font-size: 20px;\n}\n\ndiv.sphinxsidebar h3 a {\n    color: #444;\n}\n\ndiv.sphinxsidebar p.logo a,\ndiv.sphinxsidebar h3 a,\ndiv.sphinxsidebar p.logo a:hover,\ndiv.sphinxsidebar h3 a:hover {\n    border: none;\n}\n\ndiv.sphinxsidebar p {\n    color: #555;\n    margin: 10px 0;\n}\n\ndiv.sphinxsidebar ul {\n    margin: 10px 0;\n    padding: 0;\n    color: #000;\n}\n\ndiv.sphinxsidebar input {\n    border: 1px solid #ccc;\n    font-family: 'Georgia', serif;\n    font-size: 1em;\n}\n\n/* -- body styles ----------------------------------------------------------- */\n\na {\n    color: #004B6B;\n    text-decoration: underline;\n}\n\na:hover {\n    color: #6D4100;\n    text-decoration: underline;\n}\n\ndiv.body h1,\ndiv.body h2,\ndiv.body h3,\ndiv.body h4,\ndiv.body h5,\ndiv.body h6 {\n    font-family: 'Garamond', 'Georgia', serif;\n    font-weight: normal;\n    margin: 30px 0px 10px 0px;\n    padding: 0;\n}\n\ndiv.body h1 { margin-top: 0; padding-top: 0; font-size: 240%; }\ndiv.body h2 { font-size: 180%; }\ndiv.body h3 { font-size: 150%; }\ndiv.body h4 { font-size: 130%; }\ndiv.body h5 { font-size: 100%; }\ndiv.body h6 { font-size: 100%; }\n\na.headerlink {\n    color: #ddd;\n    padding: 0 4px;\n    text-decoration: none;\n}\n\na.headerlink:hover {\n    color: #444;\n    background: #eaeaea;\n}\n\ndiv.body p, div.body dd, div.body li {\n    line-height: 1.4em;\n}\n\ndiv.admonition {\n    background: #fafafa;\n    margin: 20px -30px;\n    padding: 10px 30px;\n    border-top: 1px solid #ccc;\n    border-bottom: 1px solid #ccc;\n}\n\ndiv.admonition tt.xref, div.admonition a tt {\n    border-bottom: 1px solid #fafafa;\n}\n\ndd div.admonition {\n    margin-left: -60px;\n    padding-left: 60px;\n}\n\ndiv.admonition p.admonition-title {\n    font-family: 'Garamond', 'Georgia', serif;\n    font-weight: normal;\n    font-size: 24px;\n    margin: 0 0 10px 0;\n    padding: 0;\n    line-height: 1;\n}\n\ndiv.admonition p.last {\n    margin-bottom: 0;\n}\n\ndiv.highlight {\n    background-color: white;\n}\n\ndt:target, .highlight {\n    background: #FAF3E8;\n}\n\ndiv.note {\n    background-color: #eee;\n    border: 1px solid #ccc;\n}\n\ndiv.seealso {\n    background-color: #ffc;\n    border: 1px solid #ff6;\n}\n\ndiv.topic {\n    background-color: #eee;\n}\n\np.admonition-title {\n    display: inline;\n}\n\np.admonition-title:after {\n    content: \":\";\n}\n\npre, tt {\n    font-family: 'Consolas', 'Menlo', 'Deja Vu Sans Mono', 'Bitstream Vera Sans Mono', monospace;\n    font-size: 0.9em;\n}\n\nimg.screenshot {\n}\n\ntt.descname, tt.descclassname {\n    font-size: 0.95em;\n}\n\ntt.descname {\n    padding-right: 0.08em;\n}\n\nimg.screenshot {\n    -moz-box-shadow: 2px 2px 4px #eee;\n    -webkit-box-shadow: 2px 2px 4px #eee;\n    box-shadow: 2px 2px 4px #eee;\n}\n\ntable.docutils {\n    border: 1px solid #888;\n    -moz-box-shadow: 2px 2px 4px #eee;\n    -webkit-box-shadow: 2px 2px 4px #eee;\n    box-shadow: 2px 2px 4px #eee;\n}\n\ntable.docutils td, table.docutils th {\n    border: 1px solid #888;\n    padding: 0.25em 0.7em;\n}\n\ntable.field-list, table.footnote {\n    border: none;\n    -moz-box-shadow: none;\n    -webkit-box-shadow: none;\n    box-shadow: none;\n}\n\ntable.footnote {\n    margin: 15px 0;\n    width: 100%;\n    border: 1px solid #eee;\n    background: #fdfdfd;\n    font-size: 0.9em;\n}\n\ntable.footnote + table.footnote {\n    margin-top: -15px;\n    border-top: none;\n}\n\ntable.field-list th {\n    padding: 0 0.8em 0 0;\n}\n\ntable.field-list td {\n    padding: 0;\n}\n\ntable.footnote td.label {\n    width: 0px;\n    padding: 0.3em 0 0.3em 0.5em;\n}\n\ntable.footnote td {\n    padding: 0.3em 0.5em;\n}\n\ndl {\n    margin: 0;\n    padding: 0;\n}\n\ndl dd {\n    margin-left: 30px;\n}\n\nblockquote {\n    margin: 0 0 0 30px;\n    padding: 0;\n}\n\nul, ol {\n    margin: 10px 0 10px 30px;\n    padding: 0;\n}\n\npre {\n    background: #eee;\n    padding: 7px 30px;\n    margin: 15px -30px;\n    line-height: 1.3em;\n}\n\ndl pre, blockquote pre, li pre {\n    margin-left: -60px;\n    padding-left: 60px;\n}\n\ndl dl pre {\n    margin-left: -90px;\n    padding-left: 90px;\n}\n\ntt {\n    background-color: #ecf0f3;\n    color: #222;\n    /* padding: 1px 2px; */\n}\n\ntt.xref, a tt {\n    background-color: #FBFBFB;\n    border-bottom: 1px solid white;\n}\n\na.reference {\n    text-decoration: none;\n    border-bottom: 1px dotted #004B6B;\n}\n\na.reference:hover {\n    border-bottom: 1px solid #6D4100;\n}\n\na.footnote-reference {\n    text-decoration: none;\n    font-size: 0.7em;\n    vertical-align: top;\n    border-bottom: 1px dotted #004B6B;\n}\n\na.footnote-reference:hover {\n    border-bottom: 1px solid #6D4100;\n}\n\na:hover tt {\n    background: #EEE;\n}\n\n\n@media screen and (max-width: 870px) {\n\n    div.sphinxsidebar {\n        display: none;\n    }\n\n    div.document {\n       width: 100%;\n\n    }\n\n    div.documentwrapper {\n        margin-left: 0;\n        margin-top: 0;\n        margin-right: 0;\n        margin-bottom: 0;\n    }\n\n    div.bodywrapper {\n        margin-top: 0;\n        margin-right: 0;\n        margin-bottom: 0;\n        margin-left: 0;\n    }\n\n    ul {\n        margin-left: 0;\n    }\n\n    .document {\n        width: auto;\n    }\n\n    .footer {\n        width: auto;\n    }\n\n    .bodywrapper {\n        margin: 0;\n    }\n\n    .footer {\n        width: auto;\n    }\n\n    .github {\n        display: none;\n    }\n\n\n\n}\n\n\n\n@media screen and (max-width: 875px) {\n\n    body {\n        margin: 0;\n        padding: 20px 30px;\n    }\n\n    div.documentwrapper {\n        float: none;\n        background: white;\n    }\n\n    div.sphinxsidebar {\n        display: block;\n        float: none;\n        width: 102.5%;\n        margin: 50px -30px -20px -30px;\n        padding: 10px 20px;\n        background: #333;\n        color: white;\n    }\n\n    div.sphinxsidebar h3, div.sphinxsidebar h4, div.sphinxsidebar p,\n    div.sphinxsidebar h3 a {\n        color: white;\n    }\n\n    div.sphinxsidebar a {\n        color: #aaa;\n    }\n\n    div.sphinxsidebar p.logo {\n        display: none;\n    }\n\n    div.document {\n        width: 100%;\n        margin: 0;\n    }\n\n    div.related {\n        display: block;\n        margin: 0;\n        padding: 10px 0 20px 0;\n    }\n\n    div.related ul,\n    div.related ul li {\n        margin: 0;\n        padding: 0;\n    }\n\n    div.footer {\n        display: none;\n    }\n\n    div.bodywrapper {\n        margin: 0;\n    }\n\n    div.body {\n        min-height: 0;\n        padding: 0;\n    }\n\n    .rtd_doc_footer {\n        display: none;\n    }\n\n    .document {\n        width: auto;\n    }\n\n    .footer {\n        width: auto;\n    }\n\n    .footer {\n        width: auto;\n    }\n\n    .github {\n        display: none;\n    }\n}\n\n\n/* misc. */\n\n.revsys-inline {\n    display: none!important;\n}\n\ndiv.sphinxsidebar a.flattr-button {\n    text-decoration: none;\n    border-bottom: none;\n}"
  },
  {
    "path": "docs/_themes/kr/static/small_flask.css",
    "content": "/*\n * small_flask.css_t\n * ~~~~~~~~~~~~~~~~~\n *\n * :copyright: Copyright 2010 by Armin Ronacher.\n * :license: Flask Design License, see LICENSE for details.\n */\n\nbody {\n    margin: 0;\n    padding: 20px 30px;\n}\n\ndiv.documentwrapper {\n    float: none;\n    background: white;\n}\n\ndiv.sphinxsidebar {\n    display: block;\n    float: none;\n    width: 102.5%;\n    margin: 50px -30px -20px -30px;\n    padding: 10px 20px;\n    background: #333;\n    color: white;\n}\n\ndiv.sphinxsidebar h3, div.sphinxsidebar h4, div.sphinxsidebar p,\ndiv.sphinxsidebar h3 a {\n    color: white;\n}\n\ndiv.sphinxsidebar a {\n    color: #aaa;\n}\n\ndiv.sphinxsidebar p.logo {\n    display: none;\n}\n\ndiv.document {\n    width: 100%;\n    margin: 0;\n}\n\ndiv.related {\n    display: block;\n    margin: 0;\n    padding: 10px 0 20px 0;\n}\n\ndiv.related ul,\ndiv.related ul li {\n    margin: 0;\n    padding: 0;\n}\n\ndiv.footer {\n    display: none;\n}\n\ndiv.bodywrapper {\n    margin: 0;\n}\n\ndiv.body {\n    min-height: 0;\n    padding: 0;\n}\n\n.rtd_doc_footer {\n    display: none;\n}\n\n.document {\n    width: auto;\n}\n\n.footer {\n\twidth: auto;\n}\n\n.footer {\n\twidth: auto;\n}\n\n.github {\n    display: none;\n}\n\nimg {\n    border: 0px 0px;\n}"
  },
  {
    "path": "docs/_themes/kr/theme.conf",
    "content": "[theme]\ninherit = basic\nstylesheet = flasky.css\npygments_style = flask_theme_support.FlaskyStyle\n\n[options]\ntouch_icon = \n"
  },
  {
    "path": "docs/_themes/kr_small/layout.html",
    "content": "{% extends \"basic/layout.html\" %} {% block header %} {{ super() }} {% if\npagename == 'index' %}\n<div class=\"indexwrapper\">\n  {% endif %} {% endblock %} {% block footer %} {% if pagename == 'index' %}\n</div>\n{% endif %} {% endblock %} {# do not display relbars #} {% block relbar1 %}{%\nendblock %} {% block relbar2 %} {% if theme_github_fork %}\n<a href=\"http://github.com/{{ theme_github_fork }}\"\n  ><img\n    style=\"position: fixed; top: 0; right: 0; border: 0\"\n    src=\"https://github.blog/wp-content/uploads/2008/12/forkme_right_darkblue_121621.png\"\n    alt=\"Fork me on GitHub\"\n/></a>\n{% endif %} {% endblock %} {% block sidebar1 %}{% endblock %} {% block sidebar2\n%}{% endblock %}\n"
  },
  {
    "path": "docs/_themes/kr_small/static/flasky.css_t",
    "content": "/*\n * flasky.css_t\n * ~~~~~~~~~~~~\n *\n * Sphinx stylesheet -- flasky theme based on nature theme.\n *\n * :copyright: Copyright 2007-2010 by the Sphinx team, see AUTHORS.\n * :license: BSD, see LICENSE for details.\n *\n */\n \n@import url(\"basic.css\");\n \n/* -- page layout ----------------------------------------------------------- */\n \nbody {\n    font-family: 'Georgia', serif;\n    font-size: 17px;\n    color: #000;\n    background: white;\n    margin: 0;\n    padding: 0;\n}\n\ndiv.documentwrapper {\n    float: left;\n    width: 100%;\n}\n\ndiv.bodywrapper {\n    margin: 40px auto 0 auto;\n    width: 700px;\n}\n\nhr {\n    border: 1px solid #B1B4B6;\n}\n \ndiv.body {\n    background-color: #ffffff;\n    color: #3E4349;\n    padding: 0 30px 30px 30px;\n}\n\nimg.floatingflask {\n    padding: 0 0 10px 10px;\n    float: right;\n}\n \ndiv.footer {\n    text-align: right;\n    color: #888;\n    padding: 10px;\n    font-size: 14px;\n    width: 650px;\n    margin: 0 auto 40px auto;\n}\n \ndiv.footer a {\n    color: #888;\n    text-decoration: underline;\n}\n \ndiv.related {\n    line-height: 32px;\n    color: #888;\n}\n\ndiv.related ul {\n    padding: 0 0 0 10px;\n}\n \ndiv.related a {\n    color: #444;\n}\n \n/* -- body styles ----------------------------------------------------------- */\n \na {\n    color: #004B6B;\n    text-decoration: underline;\n}\n \na:hover {\n    color: #6D4100;\n    text-decoration: underline;\n}\n\ndiv.body {\n    padding-bottom: 40px; /* saved for footer */\n}\n \ndiv.body h1,\ndiv.body h2,\ndiv.body h3,\ndiv.body h4,\ndiv.body h5,\ndiv.body h6 {\n    font-family: 'Garamond', 'Georgia', serif;\n    font-weight: normal;\n    margin: 30px 0px 10px 0px;\n    padding: 0;\n}\n\n{% if theme_index_logo %}\ndiv.indexwrapper h1 {\n    text-indent: -999999px;\n    background: url({{ theme_index_logo }}) no-repeat center center;\n    height: {{ theme_index_logo_height }};\n}\n{% endif %}\n \ndiv.body h2 { font-size: 180%; }\ndiv.body h3 { font-size: 150%; }\ndiv.body h4 { font-size: 130%; }\ndiv.body h5 { font-size: 100%; }\ndiv.body h6 { font-size: 100%; }\n \na.headerlink {\n    color: white;\n    padding: 0 4px;\n    text-decoration: none;\n}\n \na.headerlink:hover {\n    color: #444;\n    background: #eaeaea;\n}\n \ndiv.body p, div.body dd, div.body li {\n    line-height: 1.4em;\n}\n\ndiv.admonition {\n    background: #fafafa;\n    margin: 20px -30px;\n    padding: 10px 30px;\n    border-top: 1px solid #ccc;\n    border-bottom: 1px solid #ccc;\n}\n\ndiv.admonition p.admonition-title {\n    font-family: 'Garamond', 'Georgia', serif;\n    font-weight: normal;\n    font-size: 24px;\n    margin: 0 0 10px 0;\n    padding: 0;\n    line-height: 1;\n}\n\ndiv.admonition p.last {\n    margin-bottom: 0;\n}\n\ndiv.highlight{\n    background-color: white;\n}\n\ndt:target, .highlight {\n    background: #FAF3E8;\n}\n\ndiv.note {\n    background-color: #eee;\n    border: 1px solid #ccc;\n}\n \ndiv.seealso {\n    background-color: #ffc;\n    border: 1px solid #ff6;\n}\n \ndiv.topic {\n    background-color: #eee;\n}\n \ndiv.warning {\n    background-color: #ffe4e4;\n    border: 1px solid #f66;\n}\n \np.admonition-title {\n    display: inline;\n}\n \np.admonition-title:after {\n    content: \":\";\n}\n\npre, tt {\n    font-family: 'Consolas', 'Menlo', 'Deja Vu Sans Mono', 'Bitstream Vera Sans Mono', monospace;\n    font-size: 0.85em;\n}\n\nimg.screenshot {\n}\n\ntt.descname, tt.descclassname {\n    font-size: 0.95em;\n}\n\ntt.descname {\n    padding-right: 0.08em;\n}\n\nimg.screenshot {\n    -moz-box-shadow: 2px 2px 4px #eee;\n    -webkit-box-shadow: 2px 2px 4px #eee;\n    box-shadow: 2px 2px 4px #eee;\n}\n\ntable.docutils {\n    border: 1px solid #888;\n    -moz-box-shadow: 2px 2px 4px #eee;\n    -webkit-box-shadow: 2px 2px 4px #eee;\n    box-shadow: 2px 2px 4px #eee;\n}\n\ntable.docutils td, table.docutils th {\n    border: 1px solid #888;\n    padding: 0.25em 0.7em;\n}\n\ntable.field-list, table.footnote {\n    border: none;\n    -moz-box-shadow: none;\n    -webkit-box-shadow: none;\n    box-shadow: none;\n}\n\ntable.footnote {\n    margin: 15px 0;\n    width: 100%;\n    border: 1px solid #eee;\n}\n\ntable.field-list th {\n    padding: 0 0.8em 0 0;\n}\n\ntable.field-list td {\n    padding: 0;\n}\n\ntable.footnote td {\n    padding: 0.5em;\n}\n\ndl {\n    margin: 0;\n    padding: 0;\n}\n\ndl dd {\n    margin-left: 30px;\n}\n \npre {\n    padding: 0;\n    margin: 15px -30px;\n    padding: 8px;\n    line-height: 1.3em;\n    padding: 7px 30px;\n    background: #eee;\n    border-radius: 2px;\n    -moz-border-radius: 2px;\n    -webkit-border-radius: 2px;\n}\n\ndl pre {\n    margin-left: -60px;\n    padding-left: 60px;\n}\n\ntt {\n    background-color: #ecf0f3;\n    color: #222;\n    /* padding: 1px 2px; */\n}\n\ntt.xref, a tt {\n    background-color: #FBFBFB;\n}\n\na:hover tt {\n    background: #EEE;\n}\n"
  },
  {
    "path": "docs/_themes/kr_small/theme.conf",
    "content": "[theme]\ninherit = basic\nstylesheet = flasky.css\nnosidebar = true\npygments_style = flask_theme_support.FlaskyStyle\n\n[options]\nindex_logo = ''\nindex_logo_height = 120px\ngithub_fork = ''\n"
  },
  {
    "path": "docs/advanced_usage.rst",
    "content": ".. _advanced:\n\nAdvanced Usage: Overriding Models and the Blobber Class\n=======================================================\n\nTextBlob allows you to specify which algorithms you want to use under the hood of its simple API.\n\nSentiment Analyzers\n-------------------\n\nNew in version `0.5.0`.\n\nThe ``textblob.sentiments`` module contains two sentiment analysis implementations, ``PatternAnalyzer`` (based on the pattern_ library) and ``NaiveBayesAnalyzer`` (an NLTK_ classifier trained on a movie reviews corpus).\n\nThe default implementation is ``PatternAnalyzer``, but you can override the analyzer by passing another implementation into a TextBlob's constructor.\n\nFor instance, the ``NaiveBayesAnalyzer`` returns its result as a namedtuple of the form: ``Sentiment(classification, p_pos, p_neg)``.\n\n::\n\n    >>> from textblob import TextBlob\n    >>> from textblob.sentiments import NaiveBayesAnalyzer\n    >>> blob = TextBlob(\"I love this library\", analyzer=NaiveBayesAnalyzer())\n    >>> blob.sentiment\n    Sentiment(classification='pos', p_pos=0.7996209910191279, p_neg=0.2003790089808724)\n\nTokenizers\n----------\n\nNew in version `0.4.0`.\n\nThe ``words`` and ``sentences`` properties are helpers that use the ``textblob.tokenizers.WordTokenizer`` and ``textblob.tokenizers.SentenceTokenizer`` classes, respectively.\n\nYou can use other tokenizers, such as those provided by NLTK, by passing them into the ``TextBlob`` constructor then accessing the ``tokens`` property.\n\n.. doctest::\n\n    >>> from textblob import TextBlob\n    >>> from nltk.tokenize import TabTokenizer\n    >>> tokenizer = TabTokenizer()\n    >>> blob = TextBlob(\"This is\\ta rather tabby\\tblob.\", tokenizer=tokenizer)\n    >>> blob.tokens\n    WordList(['This is', 'a rather tabby', 'blob.'])\n\nYou can also use the ``tokenize([tokenizer])`` method.\n\n.. doctest::\n\n    >>> from textblob import TextBlob\n    >>> from nltk.tokenize import BlanklineTokenizer\n    >>> tokenizer = BlanklineTokenizer()\n    >>> blob = TextBlob(\"A token\\n\\nof appreciation\")\n    >>> blob.tokenize(tokenizer)\n    WordList(['A token', 'of appreciation'])\n\nNoun Phrase Chunkers\n--------------------\n\nTextBlob currently has two noun phrases chunker implementations,\n``textblob.np_extractors.FastNPExtractor`` (default, based on Shlomi Babluki's implementation from\n`this blog post <http://thetokenizer.com/2013/05/09/efficient-way-to-extract-the-main-topics-of-a-sentence/>`_)\nand ``textblob.np_extractors.ConllExtractor``, which uses the CoNLL 2000 corpus to train a tagger.\n\nYou can change the chunker implementation (or even use your own) by explicitly passing an instance of a noun phrase extractor to a TextBlob's constructor.\n\n.. doctest::\n\n    >>> from textblob import TextBlob\n    >>> from textblob.np_extractors import ConllExtractor\n    >>> extractor = ConllExtractor()\n    >>> blob = TextBlob(\"Python is a high-level programming language.\", np_extractor=extractor)\n    >>> blob.noun_phrases\n    WordList(['python', 'high-level programming language'])\n\nPOS Taggers\n-----------\n\nTextBlob currently has two POS tagger implementations, located in ``textblob.taggers``. The default is the ``PatternTagger`` which uses the same implementation as the pattern_ library.\n\nThe second implementation is ``NLTKTagger`` which uses NLTK_'s TreeBank tagger. *Numpy is required to use the NLTKTagger*.\n\nSimilar to the tokenizers and noun phrase chunkers, you can explicitly specify which POS tagger to use by passing a tagger instance to the constructor.\n\n::\n\n    >>> from textblob import TextBlob\n    >>> from textblob.taggers import NLTKTagger\n    >>> nltk_tagger = NLTKTagger()\n    >>> blob = TextBlob(\"Tag! You're It!\", pos_tagger=nltk_tagger)\n    >>> blob.pos_tags\n    [(Word('Tag'), u'NN'), (Word('You'), u'PRP'), (Word('''), u'VBZ'), (Word('re'), u'NN'), (Word('It')\n    , u'PRP')]\n\n.. _pattern: http://www.clips.ua.ac.be/pattern\n.. _NLTK: http://nltk.org/\n\nParsers\n-------\n\nNew in version `0.6.0`.\n\nParser implementations can also be passed to the TextBlob constructor.\n\n::\n\n    >>> from textblob import TextBlob\n    >>> from textblob.parsers import PatternParser\n    >>> blob = TextBlob(\"Parsing is fun.\", parser=PatternParser())\n    >>> blob.parse()\n    'Parsing/VBG/B-VP/O is/VBZ/I-VP/O fun/VBG/I-VP/O ././O/O'\n\n\nBlobber: A TextBlob Factory\n---------------------------\n\nNew in `0.4.0`.\n\nIt can be tedious to repeatedly pass taggers, NP extractors, sentiment analyzers, classifiers, and tokenizers to  multiple TextBlobs. To keep your code `DRY <https://en.wikipedia.org/wiki/DRY_principle>`_, you can use the ``Blobber`` class to create TextBlobs that share the same models.\n\nFirst, instantiate a ``Blobber`` with the tagger, NP extractor, sentiment analyzer, classifier, and/or tokenizer of your choice.\n\n.. doctest::\n\n    >>> from textblob import Blobber\n    >>> from textblob.taggers import NLTKTagger\n    >>> tb = Blobber(pos_tagger=NLTKTagger())\n\nYou can now create new TextBlobs like so:\n\n.. doctest::\n\n    >>> blob1 = tb(\"This is a blob.\")\n    >>> blob2 = tb(\"This is another blob.\")\n    >>> blob1.pos_tagger is blob2.pos_tagger\n    True\n\n"
  },
  {
    "path": "docs/api_reference.rst",
    "content": ".. _api:\n\nAPI Reference\n=============\n\nBlob Classes\n------------\n\n.. automodule:: textblob.blob\n    :members:\n    :inherited-members:\n\n.. _api_base_classes:\n\nBase Classes\n------------\n\n.. automodule:: textblob.base\n    :members:\n\nTokenizers\n----------\n\n.. automodule:: textblob.tokenizers\n    :members:\n    :inherited-members:\n\nPOS Taggers\n-----------\n\n.. automodule:: textblob.en.taggers\n    :members:\n    :inherited-members:\n\nNoun Phrase Extractors\n----------------------\n\n.. automodule:: textblob.en.np_extractors\n    :members: BaseNPExtractor, ConllExtractor, FastNPExtractor\n    :inherited-members:\n\n\nSentiment Analyzers\n-------------------\n\n.. automodule:: textblob.en.sentiments\n    :members:\n    :inherited-members:\n\n\nParsers\n-------\n\n.. automodule:: textblob.en.parsers\n    :members:\n    :inherited-members:\n\n.. _api_classifiers:\n\nClassifiers\n-----------\n\n.. automodule:: textblob.classifiers\n    :members:\n    :inherited-members:\n\nBlobber\n-------\n\n.. autoclass:: textblob.blob.Blobber\n    :members:\n    :special-members:\n    :exclude-members: __weakref__\n\nFile Formats\n------------\n\n.. automodule:: textblob.formats\n    :members:\n    :inherited-members:\n\nWordnet\n-------\n\n.. automodule:: textblob.wordnet\n    :members:\n\nExceptions\n----------\n.. module:: textblob.exceptions\n\n.. autoexception:: textblob.exceptions.TextBlobError\n.. autoexception:: textblob.exceptions.MissingCorpusError\n.. autoexception:: textblob.exceptions.DeprecationError\n.. autoexception:: textblob.exceptions.TranslatorError\n.. autoexception:: textblob.exceptions.NotTranslated\n.. autoexception:: textblob.exceptions.FormatError\n"
  },
  {
    "path": "docs/authors.rst",
    "content": ".. include:: ../AUTHORS.rst"
  },
  {
    "path": "docs/changelog.rst",
    "content": ".. _changelog:\n\n.. include:: ../CHANGELOG.rst\n"
  },
  {
    "path": "docs/classifiers.rst",
    "content": ".. _classifiers:\n\nTutorial: Building a Text Classification System\n***********************************************\n\nThe ``textblob.classifiers`` module makes it simple to create custom classifiers.\n\nAs an example, let's create a custom sentiment analyzer.\n\nLoading Data and Creating a Classifier\n======================================\n\nFirst we'll create some training and test data.\n\n\n.. doctest::\n\n    >>> train = [\n    ...     (\"I love this sandwich.\", \"pos\"),\n    ...     (\"this is an amazing place!\", \"pos\"),\n    ...     (\"I feel very good about these beers.\", \"pos\"),\n    ...     (\"this is my best work.\", \"pos\"),\n    ...     (\"what an awesome view\", \"pos\"),\n    ...     (\"I do not like this restaurant\", \"neg\"),\n    ...     (\"I am tired of this stuff.\", \"neg\"),\n    ...     (\"I can't deal with this\", \"neg\"),\n    ...     (\"he is my sworn enemy!\", \"neg\"),\n    ...     (\"my boss is horrible.\", \"neg\"),\n    ... ]\n    >>> test = [\n    ...     (\"the beer was good.\", \"pos\"),\n    ...     (\"I do not enjoy my job\", \"neg\"),\n    ...     (\"I ain't feeling dandy today.\", \"neg\"),\n    ...     (\"I feel amazing!\", \"pos\"),\n    ...     (\"Gary is a friend of mine.\", \"pos\"),\n    ...     (\"I can't believe I'm doing this.\", \"neg\"),\n    ... ]\n\nNow we'll create a Naive Bayes classifier, passing the training data into the constructor.\n\n.. doctest::\n\n    >>> from textblob.classifiers import NaiveBayesClassifier\n    >>> cl = NaiveBayesClassifier(train)\n\n.. _data_files:\n\nLoading Data from Files\n-----------------------\n\nYou can also load data from common file formats including CSV, JSON, and TSV.\n\nCSV files should be formatted like so:\n::\n\n    I love this sandwich.,pos\n    This is an amazing place!,pos\n    I do not like this restaurant,neg\n\nJSON files should be formatted like so:\n\n::\n\n    [\n        {\"text\": \"I love this sandwich.\", \"label\": \"pos\"},\n        {\"text\": \"This is an amazing place!\", \"label\": \"pos\"},\n        {\"text\": \"I do not like this restaurant\", \"label\": \"neg\"}\n    ]\n\nYou can then pass the opened file into the constructor.\n\n::\n\n    >>> with open('train.json', 'r') as fp:\n    ...     cl = NaiveBayesClassifier(fp, format=\"json\")\n\nClassifying Text\n================\n\nCall the ``classify(text)`` method to use the classifier.\n\n.. doctest::\n\n    >>> cl.classify(\"This is an amazing library!\")\n    'pos'\n\nYou can get the label probability distribution with the ``prob_classify(text)`` method.\n\n.. doctest::\n\n    >>> prob_dist = cl.prob_classify(\"This one's a doozy.\")\n    >>> prob_dist.max()\n    'pos'\n    >>> round(prob_dist.prob(\"pos\"), 2)\n    0.63\n    >>> round(prob_dist.prob(\"neg\"), 2)\n    0.37\n\nClassifying TextBlobs\n=====================\n\nAnother way to classify text is to pass a classifier into the constructor of ``TextBlob`` and call its ``classify()`` method.\n\n.. doctest::\n\n    >>> from textblob import TextBlob\n    >>> blob = TextBlob(\"The beer is good. But the hangover is horrible.\", classifier=cl)\n    >>> blob.classify()\n    'pos'\n\nThe advantage of this approach is that you can classify sentences within a ``TextBlob``.\n\n.. doctest::\n\n    >>> for s in blob.sentences:\n    ...     print(s)\n    ...     print(s.classify())\n    ...\n    The beer is good.\n    pos\n    But the hangover is horrible.\n    neg\n\nEvaluating Classifiers\n======================\n\nTo compute the accuracy on our test set, use the ``accuracy(test_data)`` method.\n\n.. doctest::\n\n    >>> cl.accuracy(test)\n    0.8333333333333334\n\n.. note::\n\n    You can also pass in a file object into the ``accuracy`` method. The file can be in any of the formats listed in the :ref:`Loading Data <data_files>` section.\n\nUse the ``show_informative_features()`` method to display a listing of the most informative features.\n\n.. doctest::\n\n    >>> cl.show_informative_features(5)  # doctest: +SKIP\n    Most Informative Features\n                contains(my) = True              neg : pos    =      1.7 : 1.0\n                contains(an) = False             neg : pos    =      1.6 : 1.0\n                 contains(I) = True              neg : pos    =      1.4 : 1.0\n                 contains(I) = False             pos : neg    =      1.4 : 1.0\n                contains(my) = False             pos : neg    =      1.3 : 1.0\n\nUpdating Classifiers with New Data\n==================================\n\nUse the ``update(new_data)`` method to update a classifier with new training data.\n\n.. doctest::\n\n    >>> new_data = [\n    ...     (\"She is my best friend.\", \"pos\"),\n    ...     (\"I'm happy to have a new friend.\", \"pos\"),\n    ...     (\"Stay thirsty, my friend.\", \"pos\"),\n    ...     (\"He ain't from around here.\", \"neg\"),\n    ... ]\n    >>> cl.update(new_data)\n    True\n    >>> cl.accuracy(test)\n    1.0\n\nFeature Extractors\n==================\n\nBy default, the ``NaiveBayesClassifier`` uses a simple feature extractor that indicates which words in the training set are contained in a document.\n\nFor example, the sentence *\"I feel happy\"* might have the features ``contains(happy): True`` or ``contains(angry): False``.\n\nYou can override this feature extractor by writing your own. A feature extractor is simply a function with ``document`` (the text to extract features from) as the first argument. The function may include a second argument, ``train_set`` (the training dataset), if necessary.\n\nThe function should return a dictionary of features for ``document``.\n\nFor example, let's create a feature extractor that just uses the first and last words of a document as its features.\n\n.. doctest::\n\n    >>> def end_word_extractor(document):\n    ...     tokens = document.split()\n    ...     first_word, last_word = tokens[0], tokens[-1]\n    ...     feats = {}\n    ...     feats[\"first({0})\".format(first_word)] = True\n    ...     feats[\"last({0})\".format(last_word)] = False\n    ...     return feats\n    ...\n    >>> features = end_word_extractor(\"I feel happy\")\n    >>> assert features == {\"last(happy)\": False, \"first(I)\": True}\n\nWe can then use the feature extractor in a classifier by passing it as the second argument of the constructor.\n\n.. doctest::\n\n    >>> cl2 = NaiveBayesClassifier(test, feature_extractor=end_word_extractor)\n    >>> blob = TextBlob(\"I'm excited to try my new classifier.\", classifier=cl2)\n    >>> blob.classify()\n    'pos'\n\nNext Steps\n==========\n\nBe sure to check out the :ref:`API Reference <api_classifiers>` for the :ref:`classifiers module <api_classifiers>`.\n\nWant to try different POS taggers or noun phrase chunkers with TextBlobs? Check out the :ref:`Advanced Usage <advanced>` guide.\n"
  },
  {
    "path": "docs/conf.py",
    "content": "import importlib.metadata\nimport os\nimport sys\n\nsys.path.append(os.path.abspath(\"_themes\"))\n\n# -- General configuration -----------------------------------------------------\n\n# Add any Sphinx extension module names here, as strings. They can be extensions\n# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.\nextensions = [\n    \"sphinx.ext.autodoc\",\n    \"sphinx.ext.doctest\",\n    \"sphinx.ext.viewcode\",\n    \"sphinx_issues\",\n]\n\nprimary_domain = \"py\"\ndefault_role = \"py:obj\"\n\nissues_github_path = \"sloria/TextBlob\"\n\n# Add any paths that contain templates here, relative to this directory.\ntemplates_path = [\"_templates\"]\n\n# The suffix of source filenames.\nsource_suffix = \".rst\"\n\n# The master toctree document.\nmaster_doc = \"index\"\n\n# General information about the project.\nproject = \"TextBlob\"\ncopyright = '<a href=\"http://stevenloria.com/\">Steven Loria</a> and contributors'\n\n# The version info for the project you're documenting, acts as replacement for\n# |version| and |release|, also used in various other places throughout the\n# built documents.\n#\n# The short X.Y version.\nversion = release = importlib.metadata.version(\"textblob\")\nexclude_patterns = [\"_build\"]\npygments_style = \"flask_theme_support.FlaskyStyle\"\nhtml_theme = \"kr\"\nhtml_theme_path = [\"_themes\"]\n\nhtml_static_path = [\"_static\"]\n\n# Custom sidebar templates, maps document names to template names.\nhtml_sidebars = {\n    \"index\": [\"side-primary.html\", \"searchbox.html\"],\n    \"**\": [\"side-secondary.html\", \"localtoc.html\", \"relations.html\", \"searchbox.html\"],\n}\n# Output file base name for HTML help builder.\nhtmlhelp_basename = \"textblobdoc\"\n\n\n# -- Options for LaTeX output --------------------------------------------------\n\n# Grouping the document tree into LaTeX files. List of tuples\n# (source start file, target name, title, author, documentclass [howto/manual]).\nlatex_documents = [\n    (\"index\", \"TextBlob.tex\", \"textblob Documentation\", \"Steven Loria\", \"manual\"),\n]\n\n# One entry per manual page. List of tuples\n# (source start file, name, description, authors, manual section).\nman_pages = [(\"index\", \"textblob\", \"textblob Documentation\", [\"Steven Loria\"], 1)]\n# -- Options for Texinfo output ------------------------------------------------\n\n# Grouping the document tree into Texinfo files. List of tuples\n# (source start file, target name, title, author,\n#  dir menu entry, description, category)\ntexinfo_documents = [\n    (\n        \"index\",\n        \"textblob\",\n        \"TextBlob Documentation\",\n        \"Steven Loria\",\n        \"textblob\",\n        \"Simplified Python text-processing.\",\n        \"Natural Language Processing\",\n    ),\n]\n"
  },
  {
    "path": "docs/contributing.rst",
    "content": ".. include:: ../CONTRIBUTING.rst"
  },
  {
    "path": "docs/extensions.rst",
    "content": ".. _extensions:\n\n**********\nExtensions\n**********\n\nTextBlob supports adding custom models and new languages through \"extensions\".\n\nExtensions can be installed from the PyPI. ::\n\n    $ pip install textblob-name\n\nwhere \"name\" is the name of the package.\n\n\nAvailable extensions\n====================\n\nLanguages\n---------\n\n* `textblob-fr <https://github.com/sloria/textblob-fr>`_: French\n* `textblob-de <https://github.com/markuskiller/textblob-de>`_: German\n\nPart-of-speech Taggers\n----------------------\n\n* `textblob-aptagger <https://github.com/sloria/textblob-aptagger>`_: A fast and accurate tagger based on the Averaged Perceptron.\n\n\n.. admonition:: Interested in creating an extension?\n\n    See the :ref:`Contributing guide <extension-development>`.\n"
  },
  {
    "path": "docs/index.rst",
    "content": ".. textblob documentation master file, created by\n   sphinx-quickstart on Mon Aug  5 01:41:33 2013.\n   You can adapt this file completely to your liking, but it should at least\n   contain the root `toctree` directive.\n\nTextBlob: Simplified Text Processing\n====================================\n\nRelease v\\ |version|. (:ref:`Changelog`)\n\n*TextBlob* is a Python library for processing textual data. It provides a simple API for diving into common natural language processing (NLP) tasks such as part-of-speech tagging, noun phrase extraction, sentiment analysis, classification, and more.\n\n\n.. code-block:: python\n\n    from textblob import TextBlob\n\n    text = \"\"\"\n    The titular threat of The Blob has always struck me as the ultimate movie\n    monster: an insatiably hungry, amoeba-like mass able to penetrate\n    virtually any safeguard, capable of--as a doomed doctor chillingly\n    describes it--\"assimilating flesh on contact.\n    Snide comparisons to gelatin be damned, it's a concept with the most\n    devastating of potential consequences, not unlike the grey goo scenario\n    proposed by technological theorists fearful of\n    artificial intelligence run rampant.\n    \"\"\"\n\n    blob = TextBlob(text)\n    blob.tags  # [('The', 'DT'), ('titular', 'JJ'),\n    #  ('threat', 'NN'), ('of', 'IN'), ...]\n\n    blob.noun_phrases  # WordList(['titular threat', 'blob',\n    #            'ultimate movie monster',\n    #            'amoeba-like mass', ...])\n\n    for sentence in blob.sentences:\n        print(sentence.sentiment.polarity)\n    # 0.060\n    # -0.341\n\n\nTextBlob stands on the giant shoulders of `NLTK`_ and `pattern`_, and plays nicely with both.\n\nFeatures\n--------\n\n- Noun phrase extraction\n- Part-of-speech tagging\n- Sentiment analysis\n- Classification (Naive Bayes, Decision Tree)\n- Tokenization (splitting text into words and sentences)\n- Word and phrase frequencies\n- Parsing\n- `n`-grams\n- Word inflection (pluralization and singularization) and lemmatization\n- Spelling correction\n- Add new models or languages through extensions\n- WordNet integration\n\nGet it now\n----------\n::\n\n    $ pip install -U textblob\n    $ python -m textblob.download_corpora\n\nReady to dive in? Go on to the :ref:`Quickstart guide <quickstart>`.\n\nGuide\n=====\n\n.. toctree::\n   :maxdepth: 2\n\n   license\n   install\n   quickstart\n   classifiers\n   advanced_usage\n   extensions\n   api_reference\n\nProject info\n============\n\n.. toctree::\n   :maxdepth: 1\n\n   changelog\n   authors\n   contributing\n\n\n.. _NLTK: http://www.nltk.org\n.. _pattern: https://github.com/clips/pattern\n"
  },
  {
    "path": "docs/install.rst",
    "content": ".. _install:\n\nInstallation\n============\n\nInstalling/Upgrading From the PyPI\n----------------------------------\n::\n\n    $ pip install -U textblob\n    $ python -m textblob.download_corpora\n\nThis will install TextBlob and download the necessary NLTK corpora. If you need to change the default download directory set the ``NLTK_DATA`` environment variable.\n\n.. admonition:: Downloading the minimum corpora\n\n    If you only intend to use TextBlob's default models (no model overrides), you can pass the ``lite`` argument. This downloads only those corpora needed for basic functionality.\n    ::\n\n        $ python -m textblob.download_corpora lite\n\nWith conda\n----------\n\nTextBlob is also available as a `conda <http://conda.pydata.org/>`_ package. To install with ``conda``, run ::\n\n    $ conda install -c conda-forge textblob\n    $ python -m textblob.download_corpora\n\nFrom Source\n-----------\n\nTextBlob is actively developed on Github_.\n\nYou can clone the public repo: ::\n\n    $ git clone https://github.com/sloria/TextBlob.git\n\nOr download one of the following:\n\n* tarball_\n* zipball_\n\nOnce you have the source, you can install it into your site-packages with ::\n\n    $ python setup.py install\n\n.. _Github: https://github.com/sloria/TextBlob\n.. _tarball: https://github.com/sloria/TextBlob/tarball/master\n.. _zipball: https://github.com/sloria/TextBlob/zipball/master\n\n\nGet the bleeding edge version\n-----------------------------\n\nTo get the latest development version of TextBlob, run\n::\n\n    $ pip install -U git+https://github.com/sloria/TextBlob.git@dev\n\n\nMigrating from older versions (<=0.7.1)\n---------------------------------------\n\nAs of TextBlob 0.8.0, TextBlob's core package was renamed to ``textblob``, whereas earlier versions used a package called ``text``. Therefore, migrating to newer versions should be as simple as rewriting your imports, like so:\n\nNew:\n::\n\n    from textblob import TextBlob, Word, Blobber\n    from textblob.classifiers import NaiveBayesClassifier\n    from textblob.taggers import NLTKTagger\n\nOld:\n::\n\n    from text.blob import TextBlob, Word, Blobber\n    from text.classifiers import NaiveBayesClassifier\n    from text.taggers import NLTKTagger\n\n\nDependencies\n++++++++++++\n\nTextBlob depends on NLTK 3. NLTK will be installed automatically when you run ``pip install textblob``.\n\nSome features, such as the maximum entropy classifier, require `numpy`_, but it is not required for basic usage.\n\n.. _numpy: http://www.numpy.org/\n\n.. _NLTK: http://nltk.org/\n"
  },
  {
    "path": "docs/license.rst",
    "content": "License\n=======\n\n.. literalinclude:: ../LICENSE\n"
  },
  {
    "path": "docs/make.bat",
    "content": "@ECHO OFF\r\n\r\nREM Command file for Sphinx documentation\r\n\r\nif \"%SPHINXBUILD%\" == \"\" (\r\n\tset SPHINXBUILD=sphinx-build\r\n)\r\nset BUILDDIR=_build\r\nset ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .\r\nset I18NSPHINXOPTS=%SPHINXOPTS% .\r\nif NOT \"%PAPER%\" == \"\" (\r\n\tset ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%\r\n\tset I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%\r\n)\r\n\r\nif \"%1\" == \"\" goto help\r\n\r\nif \"%1\" == \"help\" (\r\n\t:help\r\n\techo.Please use `make ^<target^>` where ^<target^> is one of\r\n\techo.  html       to make standalone HTML files\r\n\techo.  dirhtml    to make HTML files named index.html in directories\r\n\techo.  singlehtml to make a single large HTML file\r\n\techo.  pickle     to make pickle files\r\n\techo.  json       to make JSON files\r\n\techo.  htmlhelp   to make HTML files and a HTML help project\r\n\techo.  qthelp     to make HTML files and a qthelp project\r\n\techo.  devhelp    to make HTML files and a Devhelp project\r\n\techo.  epub       to make an epub\r\n\techo.  latex      to make LaTeX files, you can set PAPER=a4 or PAPER=letter\r\n\techo.  text       to make text files\r\n\techo.  man        to make manual pages\r\n\techo.  texinfo    to make Texinfo files\r\n\techo.  gettext    to make PO message catalogs\r\n\techo.  changes    to make an overview over all changed/added/deprecated items\r\n\techo.  xml        to make Docutils-native XML files\r\n\techo.  pseudoxml  to make pseudoxml-XML files for display purposes\r\n\techo.  linkcheck  to check all external links for integrity\r\n\techo.  doctest    to run all doctests embedded in the documentation if enabled\r\n\tgoto end\r\n)\r\n\r\nif \"%1\" == \"clean\" (\r\n\tfor /d %%i in (%BUILDDIR%\\*) do rmdir /q /s %%i\r\n\tdel /q /s %BUILDDIR%\\*\r\n\tgoto end\r\n)\r\n\r\n\r\n%SPHINXBUILD% 2> nul\r\nif errorlevel 9009 (\r\n\techo.\r\n\techo.The 'sphinx-build' command was not found. Make sure you have Sphinx\r\n\techo.installed, then set the SPHINXBUILD environment variable to point\r\n\techo.to the full path of the 'sphinx-build' executable. Alternatively you\r\n\techo.may add the Sphinx directory to PATH.\r\n\techo.\r\n\techo.If you don't have Sphinx installed, grab it from\r\n\techo.http://sphinx-doc.org/\r\n\texit /b 1\r\n)\r\n\r\nif \"%1\" == \"html\" (\r\n\t%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html\r\n\tif errorlevel 1 exit /b 1\r\n\techo.\r\n\techo.Build finished. The HTML pages are in %BUILDDIR%/html.\r\n\tgoto end\r\n)\r\n\r\nif \"%1\" == \"dirhtml\" (\r\n\t%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml\r\n\tif errorlevel 1 exit /b 1\r\n\techo.\r\n\techo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.\r\n\tgoto end\r\n)\r\n\r\nif \"%1\" == \"singlehtml\" (\r\n\t%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml\r\n\tif errorlevel 1 exit /b 1\r\n\techo.\r\n\techo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.\r\n\tgoto end\r\n)\r\n\r\nif \"%1\" == \"pickle\" (\r\n\t%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle\r\n\tif errorlevel 1 exit /b 1\r\n\techo.\r\n\techo.Build finished; now you can process the pickle files.\r\n\tgoto end\r\n)\r\n\r\nif \"%1\" == \"json\" (\r\n\t%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json\r\n\tif errorlevel 1 exit /b 1\r\n\techo.\r\n\techo.Build finished; now you can process the JSON files.\r\n\tgoto end\r\n)\r\n\r\nif \"%1\" == \"htmlhelp\" (\r\n\t%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp\r\n\tif errorlevel 1 exit /b 1\r\n\techo.\r\n\techo.Build finished; now you can run HTML Help Workshop with the ^\r\n.hhp project file in %BUILDDIR%/htmlhelp.\r\n\tgoto end\r\n)\r\n\r\nif \"%1\" == \"qthelp\" (\r\n\t%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp\r\n\tif errorlevel 1 exit /b 1\r\n\techo.\r\n\techo.Build finished; now you can run \"qcollectiongenerator\" with the ^\r\n.qhcp project file in %BUILDDIR%/qthelp, like this:\r\n\techo.^> qcollectiongenerator %BUILDDIR%\\qthelp\\textblob.qhcp\r\n\techo.To view the help file:\r\n\techo.^> assistant -collectionFile %BUILDDIR%\\qthelp\\textblob.ghc\r\n\tgoto end\r\n)\r\n\r\nif \"%1\" == \"devhelp\" (\r\n\t%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp\r\n\tif errorlevel 1 exit /b 1\r\n\techo.\r\n\techo.Build finished.\r\n\tgoto end\r\n)\r\n\r\nif \"%1\" == \"epub\" (\r\n\t%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub\r\n\tif errorlevel 1 exit /b 1\r\n\techo.\r\n\techo.Build finished. The epub file is in %BUILDDIR%/epub.\r\n\tgoto end\r\n)\r\n\r\nif \"%1\" == \"latex\" (\r\n\t%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex\r\n\tif errorlevel 1 exit /b 1\r\n\techo.\r\n\techo.Build finished; the LaTeX files are in %BUILDDIR%/latex.\r\n\tgoto end\r\n)\r\n\r\nif \"%1\" == \"latexpdf\" (\r\n\t%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex\r\n\tcd %BUILDDIR%/latex\r\n\tmake all-pdf\r\n\tcd %BUILDDIR%/..\r\n\techo.\r\n\techo.Build finished; the PDF files are in %BUILDDIR%/latex.\r\n\tgoto end\r\n)\r\n\r\nif \"%1\" == \"latexpdfja\" (\r\n\t%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex\r\n\tcd %BUILDDIR%/latex\r\n\tmake all-pdf-ja\r\n\tcd %BUILDDIR%/..\r\n\techo.\r\n\techo.Build finished; the PDF files are in %BUILDDIR%/latex.\r\n\tgoto end\r\n)\r\n\r\nif \"%1\" == \"text\" (\r\n\t%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text\r\n\tif errorlevel 1 exit /b 1\r\n\techo.\r\n\techo.Build finished. The text files are in %BUILDDIR%/text.\r\n\tgoto end\r\n)\r\n\r\nif \"%1\" == \"man\" (\r\n\t%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man\r\n\tif errorlevel 1 exit /b 1\r\n\techo.\r\n\techo.Build finished. The manual pages are in %BUILDDIR%/man.\r\n\tgoto end\r\n)\r\n\r\nif \"%1\" == \"texinfo\" (\r\n\t%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo\r\n\tif errorlevel 1 exit /b 1\r\n\techo.\r\n\techo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.\r\n\tgoto end\r\n)\r\n\r\nif \"%1\" == \"gettext\" (\r\n\t%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale\r\n\tif errorlevel 1 exit /b 1\r\n\techo.\r\n\techo.Build finished. The message catalogs are in %BUILDDIR%/locale.\r\n\tgoto end\r\n)\r\n\r\nif \"%1\" == \"changes\" (\r\n\t%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes\r\n\tif errorlevel 1 exit /b 1\r\n\techo.\r\n\techo.The overview file is in %BUILDDIR%/changes.\r\n\tgoto end\r\n)\r\n\r\nif \"%1\" == \"linkcheck\" (\r\n\t%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck\r\n\tif errorlevel 1 exit /b 1\r\n\techo.\r\n\techo.Link check complete; look for any errors in the above output ^\r\nor in %BUILDDIR%/linkcheck/output.txt.\r\n\tgoto end\r\n)\r\n\r\nif \"%1\" == \"doctest\" (\r\n\t%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest\r\n\tif errorlevel 1 exit /b 1\r\n\techo.\r\n\techo.Testing of doctests in the sources finished, look at the ^\r\nresults in %BUILDDIR%/doctest/output.txt.\r\n\tgoto end\r\n)\r\n\r\nif \"%1\" == \"xml\" (\r\n\t%SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml\r\n\tif errorlevel 1 exit /b 1\r\n\techo.\r\n\techo.Build finished. The XML files are in %BUILDDIR%/xml.\r\n\tgoto end\r\n)\r\n\r\nif \"%1\" == \"pseudoxml\" (\r\n\t%SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml\r\n\tif errorlevel 1 exit /b 1\r\n\techo.\r\n\techo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml.\r\n\tgoto end\r\n)\r\n\r\n:end\r\n"
  },
  {
    "path": "docs/quickstart.rst",
    "content": ".. _quickstart:\n\nTutorial: Quickstart\n====================\n\n.. module:: textblob.blob\n\nTextBlob aims to provide access to common text-processing operations through a familiar interface. You can treat :class:`TextBlob <TextBlob>` objects as if they were Python strings that learned how to do Natural Language Processing.\n\nCreate a TextBlob\n-----------------\n\nFirst, the import.\n\n.. doctest::\n\n    >>> from textblob import TextBlob\n\nLet's create our first :class:`TextBlob <TextBlob>`.\n\n.. doctest::\n\n    >>> wiki = TextBlob(\"Python is a high-level, general-purpose programming language.\")\n\nPart-of-speech Tagging\n----------------------\n\nPart-of-speech tags can be accessed through the :meth:`tags <TextBlob.tags>` property.\n\n.. doctest::\n\n    >>> wiki.tags\n    [('Python', 'NNP'), ('is', 'VBZ'), ('a', 'DT'), ('high-level', 'JJ'), ('general-purpose', 'JJ'), ('programming', 'NN'), ('language', 'NN')]\n\nNoun Phrase Extraction\n----------------------\n\nSimilarly, noun phrases are accessed through the :meth:`noun_phrases <TextBlob.noun_phrases>` property.\n\n.. doctest::\n\n    >>> wiki.noun_phrases\n    WordList(['python'])\n\nSentiment Analysis\n------------------\n\nThe :meth:`sentiment <TextBlob.sentiment>` property returns a namedtuple of the form ``Sentiment(polarity, subjectivity)``. The polarity score is a float within the range [-1.0, 1.0]. The subjectivity is a float within the range [0.0, 1.0] where 0.0 is very objective and 1.0 is very subjective.\n\n.. doctest::\n\n    >>> testimonial = TextBlob(\"Textblob is amazingly simple to use. What great fun!\")\n    >>> testimonial.sentiment\n    Sentiment(polarity=0.39166666666666666, subjectivity=0.4357142857142857)\n    >>> testimonial.sentiment.polarity\n    0.39166666666666666\n\n\nTokenization\n------------\n\nYou can break TextBlobs into words or sentences.\n\n.. doctest::\n\n    >>> zen = TextBlob(\n    ...     \"Beautiful is better than ugly. \"\n    ...     \"Explicit is better than implicit. \"\n    ...     \"Simple is better than complex.\"\n    ... )\n    >>> zen.words\n    WordList(['Beautiful', 'is', 'better', 'than', 'ugly', 'Explicit', 'is', 'better', 'than', 'implicit', 'Simple', 'is', 'better', 'than', 'complex'])\n    >>> zen.sentences\n    [Sentence(\"Beautiful is better than ugly.\"), Sentence(\"Explicit is better than implicit.\"), Sentence(\"Simple is better than complex.\")]\n\n:class:`Sentence <Sentence>` objects have the same properties and methods as TextBlobs.\n\n::\n\n    >>> for sentence in zen.sentences:\n    ...     print(sentence.sentiment)\n\nFor more advanced tokenization, see the :ref:`Advanced Usage <advanced>` guide.\n\n\nWords Inflection and Lemmatization\n----------------------------------\n\nEach word in :meth:`TextBlob.words <TextBlob.words>` or :meth:`Sentence.words <Sentence.words>` is a :class:`Word <Word>`\nobject (a subclass of ``unicode``) with useful methods, e.g. for word inflection.\n\n.. doctest::\n\n    >>> sentence = TextBlob(\"Use 4 spaces per indentation level.\")\n    >>> sentence.words\n    WordList(['Use', '4', 'spaces', 'per', 'indentation', 'level'])\n    >>> sentence.words[2].singularize()\n    'space'\n    >>> sentence.words[-1].pluralize()\n    'levels'\n\nWords can be lemmatized by calling the :meth:`lemmatize <Word.lemmatize>` method.\n\n.. doctest::\n\n    >>> from textblob import Word\n    >>> w = Word(\"octopi\")\n    >>> w.lemmatize()\n    'octopus'\n    >>> w = Word(\"went\")\n    >>> w.lemmatize(\"v\")  # Pass in WordNet part of speech (verb)\n    'go'\n\nWordNet Integration\n-------------------\n\nYou can access the synsets for a :class:`Word <Word>` via the :meth:`synsets <Word.synsets>` property or the :meth:`get_synsets <Word.get_synsets>` method, optionally passing in a part of speech.\n\n.. doctest::\n\n    >>> from textblob import Word\n    >>> from textblob.wordnet import VERB\n    >>> word = Word(\"octopus\")\n    >>> word.synsets\n    [Synset('octopus.n.01'), Synset('octopus.n.02')]\n    >>> Word(\"hack\").get_synsets(pos=VERB)\n    [Synset('chop.v.05'), Synset('hack.v.02'), Synset('hack.v.03'), Synset('hack.v.04'), Synset('hack.v.05'), Synset('hack.v.06'), Synset('hack.v.07'), Synset('hack.v.08')]\n\nYou can access the definitions for each synset via the :meth:`definitions <Word.definitions>` property or the :meth:`define() <Word.define>` method, which can also take an optional part-of-speech argument.\n\n.. doctest::\n\n    >>> Word(\"octopus\").definitions\n    ['tentacles of octopus prepared as food', 'bottom-living cephalopod having a soft oval body with eight long tentacles']\n\nYou can also create synsets directly.\n\n.. doctest::\n\n    >>> from textblob.wordnet import Synset\n    >>> octopus = Synset(\"octopus.n.02\")\n    >>> shrimp = Synset(\"shrimp.n.03\")\n    >>> octopus.path_similarity(shrimp)\n    0.1111111111111111\n\nFor more information on the WordNet API, see the NLTK documentation on the `Wordnet Interface <http://www.nltk.org/howto/wordnet.html>`_.\n\nWordLists\n---------\n\nA :class:`WordList <textblob.WordList>` is just a Python list with additional methods.\n\n.. doctest::\n\n    >>> animals = TextBlob(\"cat dog octopus\")\n    >>> animals.words\n    WordList(['cat', 'dog', 'octopus'])\n    >>> animals.words.pluralize()\n    WordList(['cats', 'dogs', 'octopodes'])\n\nSpelling Correction\n-------------------\n\nUse the :meth:`correct() <TextBlob.correct>` method to attempt spelling correction.\n\n.. doctest::\n\n    >>> b = TextBlob(\"I havv goood speling!\")\n    >>> print(b.correct())\n    I have good spelling!\n\n:class:`Word <Word>` objects have a :meth:`spellcheck() Word.spellcheck` method that returns a list of ``(word, confidence)`` tuples with spelling suggestions.\n\n.. doctest::\n\n    >>> from textblob import Word\n    >>> w = Word(\"falibility\")\n    >>> w.spellcheck()\n    [('fallibility', 1.0)]\n\nSpelling correction is based on Peter Norvig's \"How to Write a Spelling Corrector\"[#]_ as implemented in the pattern library. It is about 70% accurate [#]_.\n\n\nGet Word and Noun Phrase Frequencies\n------------------------------------\n\nThere are two ways to get the frequency of a word or noun phrase in a :class:`TextBlob <TextBlob>`.\n\nThe first is through the ``word_counts`` dictionary. ::\n\n    >>> monty = TextBlob(\"We are no longer the Knights who say Ni. \"\n    ...                     \"We are now the Knights who say Ekki ekki ekki PTANG.\")\n    >>> monty.word_counts['ekki']\n    3\n\nIf you access the frequencies this way, the search will *not* be case sensitive, and words that are not found will have a frequency of 0.\n\nThe second way is to use the ``count()`` method. ::\n\n    >>> monty.words.count('ekki')\n    3\n\nYou can specify whether or not the search should be case-sensitive (default is ``False``). ::\n\n    >>> monty.words.count('ekki', case_sensitive=True)\n    2\n\nEach of these methods can also be used with noun phrases. ::\n\n    >>> wiki.noun_phrases.count('python')\n    1\n\nParsing\n-------\n\nUse the :meth:`parse() <TextBlob.parse>` method to parse the text.\n\n.. doctest::\n\n    >>> b = TextBlob(\"And now for something completely different.\")\n    >>> print(b.parse())\n    And/CC/O/O now/RB/B-ADVP/O for/IN/B-PP/B-PNP something/NN/B-NP/I-PNP completely/RB/B-ADJP/O different/JJ/I-ADJP/O ././O/O\n\nBy default, TextBlob uses pattern's parser [#]_.\n\n\nTextBlobs Are Like Python Strings!\n----------------------------------\n\nYou can use Python's substring syntax.\n\n.. doctest::\n\n    >>> zen[0:19]\n    TextBlob(\"Beautiful is better\")\n\nYou can use common string methods.\n\n.. doctest::\n\n    >>> zen.upper()\n    TextBlob(\"BEAUTIFUL IS BETTER THAN UGLY. EXPLICIT IS BETTER THAN IMPLICIT. SIMPLE IS BETTER THAN COMPLEX.\")\n    >>> zen.find(\"Simple\")\n    65\n\nYou can make comparisons between TextBlobs and strings.\n\n.. doctest::\n\n    >>> apple_blob = TextBlob(\"apples\")\n    >>> banana_blob = TextBlob(\"bananas\")\n    >>> apple_blob < banana_blob\n    True\n    >>> apple_blob == \"apples\"\n    True\n\nYou can concatenate and interpolate TextBlobs and strings.\n\n.. doctest::\n\n    >>> apple_blob + \" and \" + banana_blob\n    TextBlob(\"apples and bananas\")\n    >>> \"{0} and {1}\".format(apple_blob, banana_blob)\n    'apples and bananas'\n\n`n`-grams\n---------\n\nThe :class:`TextBlob.ngrams() <TextBlob.ngrams>` method returns a list of tuples of `n` successive words.\n\n.. doctest::\n\n    >>> blob = TextBlob(\"Now is better than never.\")\n    >>> blob.ngrams(n=3)\n    [WordList(['Now', 'is', 'better']), WordList(['is', 'better', 'than']), WordList(['better', 'than', 'never'])]\n\n\nGet Start and End Indices of Sentences\n--------------------------------------\n\nUse ``sentence.start`` and ``sentence.end`` to get the indices where a sentence starts and ends within a :class:`TextBlob <TextBlob>`.\n\n.. doctest::\n\n    >>> for s in zen.sentences:\n    ...     print(s)\n    ...     print(\"---- Starts at index {}, Ends at index {}\".format(s.start, s.end))\n    ...\n    Beautiful is better than ugly.\n    ---- Starts at index 0, Ends at index 30\n    Explicit is better than implicit.\n    ---- Starts at index 31, Ends at index 64\n    Simple is better than complex.\n    ---- Starts at index 65, Ends at index 95\n\nNext Steps\n++++++++++\n\nWant to build your own text classification system? Check out the :ref:`Classifiers Tutorial <classifiers>`.\n\nWant to use a different POS tagger or noun phrase chunker implementation? Check out the :ref:`Advanced Usage <advanced>` guide.\n\n.. [#]  http://norvig.com/spell-correct.html\n.. [#]  http://www.clips.ua.ac.be/pages/pattern-en#spelling\n.. [#]  http://www.clips.ua.ac.be/pages/pattern-en#parser\n"
  },
  {
    "path": "pyproject.toml",
    "content": "[project]\nname = \"textblob\"\nversion = \"0.19.0\"\ndescription = \"Simple, Pythonic text processing. Sentiment analysis, part-of-speech tagging, noun phrase parsing, and more.\"\nreadme = \"README.rst\"\nlicense = { file = \"LICENSE\" }\nauthors = [{ name = \"Steven Loria\", email = \"sloria1@gmail.com\" }]\nclassifiers = [\n  \"Intended Audience :: Developers\",\n  \"License :: OSI Approved :: MIT License\",\n  \"Programming Language :: Python :: 3\",\n  \"Programming Language :: Python :: 3.9\",\n  \"Programming Language :: Python :: 3.10\",\n  \"Programming Language :: Python :: 3.11\",\n  \"Programming Language :: Python :: 3.12\",\n  \"Programming Language :: Python :: 3.13\",\n  \"Topic :: Text Processing :: Linguistic\",\n]\nkeywords = [\"textblob\", \"nlp\", 'linguistics', 'nltk', 'pattern']\nrequires-python = \">=3.9\"\ndependencies = [\"nltk>=3.9\"]\n\n[project.urls]\nChangelog = \"https://textblob.readthedocs.io/en/latest/changelog.html\"\nIssues = \"https://github.com/sloria/TextBlob/issues\"\nSource = \"https://github.com/sloria/TextBlob\"\n\n[project.optional-dependencies]\ndocs = [\"sphinx==9.1.0\", \"sphinx-issues==5.0.1\", \"PyYAML==6.0.3\"]\ntests = [\"pytest\", \"numpy\"]\ndev = [\"textblob[tests]\", \"tox\", \"pre-commit>=3.5,<5.0\", \"pyright\", \"ruff\"]\n\n[build-system]\nrequires = [\"flit_core<4\"]\nbuild-backend = \"flit_core.buildapi\"\n\n[tool.flit.sdist]\ninclude = [\"tests/\", \"CHANGELOG.rst\", \"CONTRIBUTING.rst\", \"tox.ini\", \"NOTICE\"]\n\n[tool.ruff]\nsrc = [\"src\"]\nfix = true\nshow-fixes = true\nunsafe-fixes = true\nexclude = [\n  # Default excludes from ruff\n  \".bzr\",\n  \".direnv\",\n  \".eggs\",\n  \".git\",\n  \".git-rewrite\",\n  \".hg\",\n  \".ipynb_checkpoints\",\n  \".mypy_cache\",\n  \".nox\",\n  \".pants.d\",\n  \".pyenv\",\n  \".pytest_cache\",\n  \".pytype\",\n  \".ruff_cache\",\n  \".svn\",\n  \".tox\",\n  \".venv\",\n  \".vscode\",\n  \"__pypackages__\",\n  \"_build\",\n  \"buck-out\",\n  \"build\",\n  \"dist\",\n  \"node_modules\",\n  \"site-packages\",\n  \"venv\",\n  # Vendorized code\n  \"src/textblob/en\",\n  \"src/textblob/_text.py\",\n]\n\n[tool.ruff.format]\ndocstring-code-format = true\n\n[tool.ruff.lint]\nselect = [\n  \"B\",  # flake8-bugbear\n  \"E\",  # pycodestyle error\n  \"F\",  # pyflakes\n  \"I\",  # isort\n  \"UP\", # pyupgrade\n  \"W\",  # pycodestyle warning\n  \"TC\", # flake8-typechecking\n]\n\n[tool.ruff.lint.per-file-ignores]\n\"tests/*\" = [\"E721\"]\n\n[tool.pytest.ini_options]\nmarkers = [\n  \"slow: marks tests as slow (deselect with '-m \\\"not slow\\\"')\",\n  \"numpy: marks tests that require numpy\",\n]\n\n[tool.pyright]\ninclude = [\"src/**\", \"tests/**\"]\n"
  },
  {
    "path": "src/textblob/__init__.py",
    "content": "from .blob import Blobber, Sentence, TextBlob, Word, WordList\n\n__all__ = [\n    \"TextBlob\",\n    \"Word\",\n    \"Sentence\",\n    \"Blobber\",\n    \"WordList\",\n]\n"
  },
  {
    "path": "src/textblob/_text.py",
    "content": "\"\"\"This file is adapted from the pattern library.\n\nURL: http://www.clips.ua.ac.be/pages/pattern-web\nLicence: BSD\n\"\"\"\nimport codecs\nimport os\nimport re\nimport string\nimport types\nfrom itertools import chain\nfrom xml.etree import ElementTree\n\nbasestring = (str, bytes)\n\ntry:\n    MODULE = os.path.dirname(os.path.abspath(__file__))\nexcept:\n    MODULE = \"\"\n\nSLASH, WORD, POS, CHUNK, PNP, REL, ANCHOR, LEMMA = (\n    \"&slash;\",\n    \"word\",\n    \"part-of-speech\",\n    \"chunk\",\n    \"preposition\",\n    \"relation\",\n    \"anchor\",\n    \"lemma\",\n)\n\n\n# String functions\ndef decode_string(v, encoding=\"utf-8\"):\n    \"\"\"Returns the given value as a Unicode string (if possible).\"\"\"\n    if isinstance(encoding, basestring):\n        encoding = ((encoding,),) + ((\"windows-1252\",), (\"utf-8\", \"ignore\"))\n    if isinstance(v, bytes):\n        for e in encoding:\n            try:\n                return v.decode(*e)\n            except:\n                pass\n        return v\n    return str(v)\n\n\ndef encode_string(v, encoding=\"utf-8\"):\n    \"\"\"Returns the given value as a Python byte string (if possible).\"\"\"\n    if isinstance(encoding, basestring):\n        encoding = ((encoding,),) + ((\"windows-1252\",), (\"utf-8\", \"ignore\"))\n    if isinstance(v, str):\n        for e in encoding:\n            try:\n                return v.encode(*e)\n            except:\n                pass\n        return v\n    return str(v)\n\n\ndecode_utf8 = decode_string\nencode_utf8 = encode_string\n\n\ndef isnumeric(strg):\n    try:\n        float(strg)\n    except ValueError:\n        return False\n    return True\n\n\n# --- LAZY DICTIONARY -------------------------------------------------------------------------------\n# A lazy dictionary is empty until one of its methods is called.\n# This way many instances (e.g., lexicons) can be created without using memory until used.\n\n\nclass lazydict(dict):\n    def load(self):\n        # Must be overridden in a subclass.\n        # Must load data with dict.__setitem__(self, k, v) instead of lazydict[k] = v.\n        pass\n\n    def _lazy(self, method, *args):\n        \"\"\"If the dictionary is empty, calls lazydict.load().\n        Replaces lazydict.method() with dict.method() and calls it.\n        \"\"\"\n        if dict.__len__(self) == 0:\n            self.load()\n            setattr(self, method, types.MethodType(getattr(dict, method), self))\n        return getattr(dict, method)(self, *args)\n\n    def __repr__(self):\n        return self._lazy(\"__repr__\")\n\n    def __len__(self):\n        return self._lazy(\"__len__\")\n\n    def __iter__(self):\n        return self._lazy(\"__iter__\")\n\n    def __contains__(self, *args):\n        return self._lazy(\"__contains__\", *args)\n\n    def __getitem__(self, *args):\n        return self._lazy(\"__getitem__\", *args)\n\n    def __setitem__(self, *args):\n        return self._lazy(\"__setitem__\", *args)\n\n    def setdefault(self, *args):\n        return self._lazy(\"setdefault\", *args)\n\n    def get(self, *args, **kwargs):\n        return self._lazy(\"get\", *args)\n\n    def items(self):\n        return self._lazy(\"items\")\n\n    def keys(self):\n        return self._lazy(\"keys\")\n\n    def values(self):\n        return self._lazy(\"values\")\n\n    def update(self, *args, **kwargs):\n        return self._lazy(\"update\", *args)\n\n    def pop(self, *args):\n        return self._lazy(\"pop\", *args)\n\n    def popitem(self, *args):\n        return self._lazy(\"popitem\", *args)\n\n\nclass lazylist(list):\n    def load(self):\n        # Must be overridden in a subclass.\n        # Must load data with list.append(self, v) instead of lazylist.append(v).\n        pass\n\n    def _lazy(self, method, *args):\n        \"\"\"If the list is empty, calls lazylist.load().\n        Replaces lazylist.method() with list.method() and calls it.\n        \"\"\"\n        if list.__len__(self) == 0:\n            self.load()\n            setattr(self, method, types.MethodType(getattr(list, method), self))\n        return getattr(list, method)(self, *args)\n\n    def __repr__(self):\n        return self._lazy(\"__repr__\")\n\n    def __len__(self):\n        return self._lazy(\"__len__\")\n\n    def __iter__(self):\n        return self._lazy(\"__iter__\")\n\n    def __contains__(self, *args):\n        return self._lazy(\"__contains__\", *args)\n\n    def insert(self, *args):\n        return self._lazy(\"insert\", *args)\n\n    def append(self, *args):\n        return self._lazy(\"append\", *args)\n\n    def extend(self, *args):\n        return self._lazy(\"extend\", *args)\n\n    def remove(self, *args):\n        return self._lazy(\"remove\", *args)\n\n    def pop(self, *args):\n        return self._lazy(\"pop\", *args)\n\n\n# --- UNIVERSAL TAGSET ------------------------------------------------------------------------------\n# The default part-of-speech tagset used in Pattern is Penn Treebank II.\n# However, not all languages are well-suited to Penn Treebank (which was developed for English).\n# As more languages are implemented, this is becoming more problematic.\n#\n# A universal tagset is proposed by Slav Petrov (2012):\n# http://www.petrovi.de/data/lrec.pdf\n#\n# Subclasses of Parser should start implementing\n# Parser.parse(tagset=UNIVERSAL) with a simplified tagset.\n# The names of the constants correspond to Petrov's naming scheme, while\n# the value of the constants correspond to Penn Treebank.\n\nUNIVERSAL = \"universal\"\n\nNOUN, VERB, ADJ, ADV, PRON, DET, PREP, ADP, NUM, CONJ, INTJ, PRT, PUNC, X = (\n    \"NN\",\n    \"VB\",\n    \"JJ\",\n    \"RB\",\n    \"PR\",\n    \"DT\",\n    \"PP\",\n    \"PP\",\n    \"NO\",\n    \"CJ\",\n    \"UH\",\n    \"PT\",\n    \".\",\n    \"X\",\n)\n\n\ndef penntreebank2universal(token, tag):\n    \"\"\"Returns a (token, tag)-tuple with a simplified universal part-of-speech tag.\"\"\"\n    if tag.startswith((\"NNP-\", \"NNPS-\")):\n        return (token, \"{}-{}\".format(NOUN, tag.split(\"-\")[-1]))\n    if tag in (\"NN\", \"NNS\", \"NNP\", \"NNPS\", \"NP\"):\n        return (token, NOUN)\n    if tag in (\"MD\", \"VB\", \"VBD\", \"VBG\", \"VBN\", \"VBP\", \"VBZ\"):\n        return (token, VERB)\n    if tag in (\"JJ\", \"JJR\", \"JJS\"):\n        return (token, ADJ)\n    if tag in (\"RB\", \"RBR\", \"RBS\", \"WRB\"):\n        return (token, ADV)\n    if tag in (\"PRP\", \"PRP$\", \"WP\", \"WP$\"):\n        return (token, PRON)\n    if tag in (\"DT\", \"PDT\", \"WDT\", \"EX\"):\n        return (token, DET)\n    if tag in (\"IN\",):\n        return (token, PREP)\n    if tag in (\"CD\",):\n        return (token, NUM)\n    if tag in (\"CC\",):\n        return (token, CONJ)\n    if tag in (\"UH\",):\n        return (token, INTJ)\n    if tag in (\"POS\", \"RP\", \"TO\"):\n        return (token, PRT)\n    if tag in (\"SYM\", \"LS\", \".\", \"!\", \"?\", \",\", \":\", \"(\", \")\", '\"', \"#\", \"$\"):\n        return (token, PUNC)\n    return (token, X)\n\n\n# --- TOKENIZER -------------------------------------------------------------------------------------\n\nTOKEN = re.compile(r\"(\\S+)\\s\")\n\n# Handle common punctuation marks.\nPUNCTUATION = punctuation = \".,;:!?()[]{}`''\\\"@#$^&*+-|=~_\"\n\n# Handle common abbreviations.\nABBREVIATIONS = abbreviations = set(\n    (\n        \"a.\",\n        \"adj.\",\n        \"adv.\",\n        \"al.\",\n        \"a.m.\",\n        \"c.\",\n        \"cf.\",\n        \"comp.\",\n        \"conf.\",\n        \"def.\",\n        \"ed.\",\n        \"e.g.\",\n        \"esp.\",\n        \"etc.\",\n        \"ex.\",\n        \"f.\",\n        \"fig.\",\n        \"gen.\",\n        \"id.\",\n        \"i.e.\",\n        \"int.\",\n        \"l.\",\n        \"m.\",\n        \"Med.\",\n        \"Mil.\",\n        \"Mr.\",\n        \"n.\",\n        \"n.q.\",\n        \"orig.\",\n        \"pl.\",\n        \"pred.\",\n        \"pres.\",\n        \"p.m.\",\n        \"ref.\",\n        \"v.\",\n        \"vs.\",\n        \"w/\",\n    )\n)\n\nRE_ABBR1 = re.compile(r\"^[A-Za-z]\\.$\")  # single letter, \"T. De Smedt\"\nRE_ABBR2 = re.compile(r\"^([A-Za-z]\\.)+$\")  # alternating letters, \"U.S.\"\nRE_ABBR3 = re.compile(\n    \"^[A-Z][\"\n    + \"|\".join(  # capital followed by consonants, \"Mr.\"\n        \"bcdfghjklmnpqrstvwxz\"\n    )\n    + \"]+.$\"\n)\n\n# Handle emoticons.\nEMOTICONS = {  # (facial expression, sentiment)-keys\n    (\"love\", +1.00): set((\"<3\", \"♥\")),\n    (\"grin\", +1.00): set(\n        (\">:D\", \":-D\", \":D\", \"=-D\", \"=D\", \"X-D\", \"x-D\", \"XD\", \"xD\", \"8-D\")\n    ),\n    (\"taunt\", +0.75): set(\n        (\">:P\", \":-P\", \":P\", \":-p\", \":p\", \":-b\", \":b\", \":c)\", \":o)\", \":^)\")\n    ),\n    (\"smile\", +0.50): set(\n        (\">:)\", \":-)\", \":)\", \"=)\", \"=]\", \":]\", \":}\", \":>\", \":3\", \"8)\", \"8-)\")\n    ),\n    (\"wink\", +0.25): set((\">;]\", \";-)\", \";)\", \";-]\", \";]\", \";D\", \";^)\", \"*-)\", \"*)\")),\n    (\"gasp\", +0.05): set((\">:o\", \":-O\", \":O\", \":o\", \":-o\", \"o_O\", \"o.O\", \"°O°\", \"°o°\")),\n    (\"worry\", -0.25): set(\n        (\">:/\", \":-/\", \":/\", \":\\\\\", \">:\\\\\", \":-.\", \":-s\", \":s\", \":S\", \":-S\", \">.>\")\n    ),\n    (\"frown\", -0.75): set(\n        (\">:[\", \":-(\", \":(\", \"=(\", \":-[\", \":[\", \":{\", \":-<\", \":c\", \":-c\", \"=/\")\n    ),\n    (\"cry\", -1.00): set((\":'(\", \":'''(\", \";'(\")),\n}\n\nTEMP_RE_EMOTICONS = [\n    r\" ?\".join([re.escape(each) for each in e]) for v in EMOTICONS.values() for e in v\n]\nRE_EMOTICONS = re.compile(r\"(%s)($|\\s)\" % \"|\".join(TEMP_RE_EMOTICONS))\n\n# Handle sarcasm punctuation (!).\nRE_SARCASM = re.compile(r\"\\( ?\\! ?\\)\")\n\n# Handle common contractions.\nreplacements = {\n    \"'d\": \" 'd\",\n    \"'m\": \" 'm\",\n    \"'s\": \" 's\",\n    \"'ll\": \" 'll\",\n    \"'re\": \" 're\",\n    \"'ve\": \" 've\",\n    \"n't\": \" n't\",\n}\n\n# Handle paragraph line breaks (\\n\\n marks end of sentence).\nEOS = \"END-OF-SENTENCE\"\n\n\ndef find_tokens(\n    string,\n    punctuation=PUNCTUATION,\n    abbreviations=ABBREVIATIONS,\n    replace=replacements,\n    linebreak=r\"\\n{2,}\",\n):\n    \"\"\"Returns a list of sentences. Each sentence is a space-separated string of tokens (words).\n    Handles common cases of abbreviations (e.g., etc., ...).\n    Punctuation marks are split from other words. Periods (or ?!) mark the end of a sentence.\n    Headings without an ending period are inferred by line breaks.\n    \"\"\"\n    # Handle periods separately.\n    punctuation = tuple(punctuation.replace(\".\", \"\"))\n    # Handle replacements (contractions).\n    for a, b in list(replace.items()):\n        string = re.sub(a, b, string)\n    # Handle Unicode quotes.\n    if isinstance(string, str):\n        string = (\n            str(string)\n            .replace(\"“\", \" “ \")\n            .replace(\"”\", \" ” \")\n            .replace(\"‘\", \" ‘ \")\n            .replace(\"’\", \" ’ \")\n            .replace(\"'\", \" ' \")\n            .replace('\"', ' \" ')\n        )\n    # Collapse whitespace.\n    string = re.sub(\"\\r\\n\", \"\\n\", string)\n    string = re.sub(linebreak, \" %s \" % EOS, string)\n    string = re.sub(r\"\\s+\", \" \", string)\n    tokens = []\n    for t in TOKEN.findall(string + \" \"):\n        if len(t) > 0:\n            tail = []\n            while t.startswith(punctuation) and t not in replace:\n                # Split leading punctuation.\n                if t.startswith(punctuation):\n                    tokens.append(t[0])\n                    t = t[1:]\n            while t.endswith(punctuation + (\".\",)) and t not in replace:\n                # Split trailing punctuation.\n                if t.endswith(punctuation):\n                    tail.append(t[-1])\n                    t = t[:-1]\n                # Split ellipsis (...) before splitting period.\n                if t.endswith(\"...\"):\n                    tail.append(\"...\")\n                    t = t[:-3].rstrip(\".\")\n                # Split period (if not an abbreviation).\n                if t.endswith(\".\"):\n                    if (\n                        t in abbreviations\n                        or RE_ABBR1.match(t) is not None\n                        or RE_ABBR2.match(t) is not None\n                        or RE_ABBR3.match(t) is not None\n                    ):\n                        break\n                    else:\n                        tail.append(t[-1])\n                        t = t[:-1]\n            if t != \"\":\n                tokens.append(t)\n            tokens.extend(reversed(tail))\n    sentences, i, j = [[]], 0, 0\n    while j < len(tokens):\n        if tokens[j] in (\"...\", \".\", \"!\", \"?\", EOS):\n            # Handle citations, trailing parenthesis, repeated punctuation (!?).\n            while j < len(tokens) and tokens[j] in (\n                \"'\",\n                '\"',\n                \"”\",\n                \"’\",\n                \"...\",\n                \".\",\n                \"!\",\n                \"?\",\n                \")\",\n                EOS,\n            ):\n                if tokens[j] in (\"'\", '\"') and sentences[-1].count(tokens[j]) % 2 == 0:\n                    break  # Balanced quotes.\n                j += 1\n            sentences[-1].extend(t for t in tokens[i:j] if t != EOS)\n            sentences.append([])\n            i = j\n        j += 1\n    sentences[-1].extend(tokens[i:j])\n    sentences = (\" \".join(s) for s in sentences if len(s) > 0)\n    sentences = (RE_SARCASM.sub(\"(!)\", s) for s in sentences)\n    sentences = [\n        RE_EMOTICONS.sub(lambda m: m.group(1).replace(\" \", \"\") + m.group(2), s)\n        for s in sentences\n    ]\n    return sentences\n\n\n#### LEXICON #######################################################################################\n\n# --- LEXICON ---------------------------------------------------------------------------------------\n# Pattern's text parsers are based on Brill's algorithm.\n# Brill's algorithm automatically acquires a lexicon of known words,\n# and a set of rules for tagging unknown words from a training corpus.\n# Lexical rules are used to tag unknown words, based on the word morphology (prefix, suffix, ...).\n# Contextual rules are used to tag all words, based on the word's role in the sentence.\n# Named entity rules are used to discover proper nouns (NNP's).\n\n\ndef _read(path, encoding=\"utf-8\", comment=\";;;\"):\n    \"\"\"Returns an iterator over the lines in the file at the given path,\n    stripping comments and decoding each line to Unicode.\n    \"\"\"\n    if path:\n        if isinstance(path, basestring) and os.path.exists(path):\n            # From file path.\n            f = open(path, encoding=\"utf-8\")\n        elif isinstance(path, basestring):\n            # From string.\n            f = path.splitlines()\n        elif hasattr(path, \"read\"):\n            # From string buffer.\n            f = path.read().splitlines()\n        else:\n            f = path\n        for i, line in enumerate(f):\n            line = (\n                line.strip(codecs.BOM_UTF8)\n                if i == 0 and isinstance(line, bytes)\n                else line\n            )\n            line = line.strip()\n            line = decode_utf8(line)\n            if not line or (comment and line.startswith(comment)):\n                continue\n            yield line\n    return\n\n\nclass Lexicon(lazydict):\n    def __init__(\n        self,\n        path=\"\",\n        morphology=\"\",\n        context=\"\",\n        entities=\"\",\n        NNP=\"NNP\",\n        language=None,\n    ):\n        \"\"\"A dictionary of words and their part-of-speech tags.\n        For unknown words, rules for word morphology, context and named entities can be used.\n        \"\"\"\n        self._path = path\n        self._language = language\n        self.morphology = Morphology(self, path=morphology)\n        self.context = Context(self, path=context)\n        self.entities = Entities(self, path=entities, tag=NNP)\n\n    def load(self):\n        # Arnold NNP x\n        dict.update(self, (x.split(\" \")[:2] for x in _read(self._path) if x.strip()))\n\n    @property\n    def path(self):\n        return self._path\n\n    @property\n    def language(self):\n        return self._language\n\n\n# --- MORPHOLOGICAL RULES ---------------------------------------------------------------------------\n# Brill's algorithm generates lexical (i.e., morphological) rules in the following format:\n# NN s fhassuf 1 NNS x => unknown words ending in -s and tagged NN change to NNS.\n#     ly hassuf 2 RB x => unknown words ending in -ly change to RB.\n\n\nclass Rules:\n    def __init__(self, lexicon=None, cmd=None):\n        if cmd is None:\n            cmd = {}\n        if lexicon is None:\n            lexicon = {}\n        self.lexicon, self.cmd = lexicon, cmd\n\n    def apply(self, x):\n        \"\"\"Applies the rule to the given token or list of tokens.\"\"\"\n        return x\n\n\nclass Morphology(lazylist, Rules):\n    def __init__(self, lexicon=None, path=\"\"):\n        \"\"\"A list of rules based on word morphology (prefix, suffix).\"\"\"\n        if lexicon is None:\n            lexicon = {}\n        cmd = (\n            \"char\",  # Word contains x.\n            \"haspref\",  # Word starts with x.\n            \"hassuf\",  # Word end with x.\n            \"addpref\",  # x + word is in lexicon.\n            \"addsuf\",  # Word + x is in lexicon.\n            \"deletepref\",  # Word without x at the start is in lexicon.\n            \"deletesuf\",  # Word without x at the end is in lexicon.\n            \"goodleft\",  # Word preceded by word x.\n            \"goodright\",  # Word followed by word x.\n        )\n        cmd = dict.fromkeys(cmd, True)\n        cmd.update((\"f\" + k, v) for k, v in list(cmd.items()))\n        Rules.__init__(self, lexicon, cmd)\n        self._path = path\n\n    @property\n    def path(self):\n        return self._path\n\n    def load(self):\n        # [\"NN\", \"s\", \"fhassuf\", \"1\", \"NNS\", \"x\"]\n        list.extend(self, (x.split() for x in _read(self._path)))\n\n    def apply(self, token, previous=(None, None), next=(None, None)):\n        \"\"\"Applies lexical rules to the given token, which is a [word, tag] list.\"\"\"\n        w = token[0]\n        for r in self:\n            if r[1] in self.cmd:  # Rule = ly hassuf 2 RB x\n                f, x, pos, cmd = bool(0), r[0], r[-2], r[1].lower()\n            if r[2] in self.cmd:  # Rule = NN s fhassuf 1 NNS x\n                f, x, pos, cmd = bool(1), r[1], r[-2], r[2].lower().lstrip(\"f\")\n            if f and token[1] != r[0]:\n                continue\n            if (\n                (cmd == \"char\" and x in w)\n                or (cmd == \"haspref\" and w.startswith(x))\n                or (cmd == \"hassuf\" and w.endswith(x))\n                or (cmd == \"addpref\" and x + w in self.lexicon)\n                or (cmd == \"addsuf\" and w + x in self.lexicon)\n                or (\n                    cmd == \"deletepref\"\n                    and w.startswith(x)\n                    and w[len(x) :] in self.lexicon\n                )\n                or (\n                    cmd == \"deletesuf\"\n                    and w.endswith(x)\n                    and w[: -len(x)] in self.lexicon\n                )\n                or (cmd == \"goodleft\" and x == next[0])\n                or (cmd == \"goodright\" and x == previous[0])\n            ):\n                token[1] = pos\n        return token\n\n    def insert(self, i, tag, affix, cmd=\"hassuf\", tagged=None):\n        \"\"\"Inserts a new rule that assigns the given tag to words with the given affix,\n        e.g., Morphology.append(\"RB\", \"-ly\").\n        \"\"\"\n        if affix.startswith(\"-\") and affix.endswith(\"-\"):\n            affix, cmd = affix[+1:-1], \"char\"\n        if affix.startswith(\"-\"):\n            affix, cmd = affix[+1:-0], \"hassuf\"\n        if affix.endswith(\"-\"):\n            affix, cmd = affix[+0:-1], \"haspref\"\n        if tagged:\n            r = [tagged, affix, \"f\" + cmd.lstrip(\"f\"), tag, \"x\"]\n        else:\n            r = [affix, cmd.lstrip(\"f\"), tag, \"x\"]\n        lazylist.insert(self, i, r)\n\n    def append(self, *args, **kwargs):\n        self.insert(len(self) - 1, *args, **kwargs)\n\n    def extend(self, rules=None):\n        if rules is None:\n            rules = []\n        for r in rules:\n            self.append(*r)\n\n\n# --- CONTEXT RULES ---------------------------------------------------------------------------------\n# Brill's algorithm generates contextual rules in the following format:\n# VBD VB PREVTAG TO => unknown word tagged VBD changes to VB if preceded by a word tagged TO.\n\n\nclass Context(lazylist, Rules):\n    def __init__(self, lexicon=None, path=\"\"):\n        \"\"\"A list of rules based on context (preceding and following words).\"\"\"\n        if lexicon is None:\n            lexicon = {}\n        cmd = (\n            \"prevtag\",  # Preceding word is tagged x.\n            \"nexttag\",  # Following word is tagged x.\n            \"prev2tag\",  # Word 2 before is tagged x.\n            \"next2tag\",  # Word 2 after is tagged x.\n            \"prev1or2tag\",  # One of 2 preceding words is tagged x.\n            \"next1or2tag\",  # One of 2 following words is tagged x.\n            \"prev1or2or3tag\",  # One of 3 preceding words is tagged x.\n            \"next1or2or3tag\",  # One of 3 following words is tagged x.\n            \"surroundtag\",  # Preceding word is tagged x and following word is tagged y.\n            \"curwd\",  # Current word is x.\n            \"prevwd\",  # Preceding word is x.\n            \"nextwd\",  # Following word is x.\n            \"prev1or2wd\",  # One of 2 preceding words is x.\n            \"next1or2wd\",  # One of 2 following words is x.\n            \"next1or2or3wd\",  # One of 3 preceding words is x.\n            \"prev1or2or3wd\",  # One of 3 following words is x.\n            \"prevwdtag\",  # Preceding word is x and tagged y.\n            \"nextwdtag\",  # Following word is x and tagged y.\n            \"wdprevtag\",  # Current word is y and preceding word is tagged x.\n            \"wdnexttag\",  # Current word is x and following word is tagged y.\n            \"wdand2aft\",  # Current word is x and word 2 after is y.\n            \"wdand2tagbfr\",  # Current word is y and word 2 before is tagged x.\n            \"wdand2tagaft\",  # Current word is x and word 2 after is tagged y.\n            \"lbigram\",  # Current word is y and word before is x.\n            \"rbigram\",  # Current word is x and word after is y.\n            \"prevbigram\",  # Preceding word is tagged x and word before is tagged y.\n            \"nextbigram\",  # Following word is tagged x and word after is tagged y.\n        )\n        Rules.__init__(self, lexicon, dict.fromkeys(cmd, True))\n        self._path = path\n\n    @property\n    def path(self):\n        return self._path\n\n    def load(self):\n        # [\"VBD\", \"VB\", \"PREVTAG\", \"TO\"]\n        list.extend(self, (x.split() for x in _read(self._path)))\n\n    def apply(self, tokens):\n        \"\"\"Applies contextual rules to the given list of tokens,\n        where each token is a [word, tag] list.\n        \"\"\"\n        o = [(\"STAART\", \"STAART\")] * 3  # Empty delimiters for look ahead/back.\n        t = o + tokens + o\n        for i, token in enumerate(t):\n            for r in self:\n                if token[1] == \"STAART\":\n                    continue\n                if token[1] != r[0] and r[0] != \"*\":\n                    continue\n                cmd, x, y = r[2], r[3], r[4] if len(r) > 4 else \"\"\n                cmd = cmd.lower()\n                if (\n                    (cmd == \"prevtag\" and x == t[i - 1][1])\n                    or (cmd == \"nexttag\" and x == t[i + 1][1])\n                    or (cmd == \"prev2tag\" and x == t[i - 2][1])\n                    or (cmd == \"next2tag\" and x == t[i + 2][1])\n                    or (cmd == \"prev1or2tag\" and x in (t[i - 1][1], t[i - 2][1]))\n                    or (cmd == \"next1or2tag\" and x in (t[i + 1][1], t[i + 2][1]))\n                    or (\n                        cmd == \"prev1or2or3tag\"\n                        and x in (t[i - 1][1], t[i - 2][1], t[i - 3][1])\n                    )\n                    or (\n                        cmd == \"next1or2or3tag\"\n                        and x in (t[i + 1][1], t[i + 2][1], t[i + 3][1])\n                    )\n                    or (cmd == \"surroundtag\" and x == t[i - 1][1] and y == t[i + 1][1])\n                    or (cmd == \"curwd\" and x == t[i + 0][0])\n                    or (cmd == \"prevwd\" and x == t[i - 1][0])\n                    or (cmd == \"nextwd\" and x == t[i + 1][0])\n                    or (cmd == \"prev1or2wd\" and x in (t[i - 1][0], t[i - 2][0]))\n                    or (cmd == \"next1or2wd\" and x in (t[i + 1][0], t[i + 2][0]))\n                    or (cmd == \"prevwdtag\" and x == t[i - 1][0] and y == t[i - 1][1])\n                    or (cmd == \"nextwdtag\" and x == t[i + 1][0] and y == t[i + 1][1])\n                    or (cmd == \"wdprevtag\" and x == t[i - 1][1] and y == t[i + 0][0])\n                    or (cmd == \"wdnexttag\" and x == t[i + 0][0] and y == t[i + 1][1])\n                    or (cmd == \"wdand2aft\" and x == t[i + 0][0] and y == t[i + 2][0])\n                    or (cmd == \"wdand2tagbfr\" and x == t[i - 2][1] and y == t[i + 0][0])\n                    or (cmd == \"wdand2tagaft\" and x == t[i + 0][0] and y == t[i + 2][1])\n                    or (cmd == \"lbigram\" and x == t[i - 1][0] and y == t[i + 0][0])\n                    or (cmd == \"rbigram\" and x == t[i + 0][0] and y == t[i + 1][0])\n                    or (cmd == \"prevbigram\" and x == t[i - 2][1] and y == t[i - 1][1])\n                    or (cmd == \"nextbigram\" and x == t[i + 1][1] and y == t[i + 2][1])\n                ):\n                    t[i] = [t[i][0], r[1]]\n        return t[len(o) : -len(o)]\n\n    def insert(self, i, tag1, tag2, cmd=\"prevtag\", x=None, y=None, *args):\n        \"\"\"Inserts a new rule that updates words with tag1 to tag2,\n        given constraints x and y, e.g., Context.append(\"TO < NN\", \"VB\")\n        \"\"\"\n        if \" < \" in tag1 and not x and not y:\n            tag1, x = tag1.split(\" < \")\n            cmd = \"prevtag\"\n        if \" > \" in tag1 and not x and not y:\n            x, tag1 = tag1.split(\" > \")\n            cmd = \"nexttag\"\n        lazylist.insert(self, i, [tag1, tag2, cmd, x or \"\", y or \"\"])\n\n    def append(self, *args, **kwargs):\n        self.insert(len(self) - 1, *args, **kwargs)\n\n    def extend(self, rules=None, *args):\n        if rules is None:\n            rules = []\n        for r in rules:\n            self.append(*r)\n\n\n# --- NAMED ENTITY RECOGNIZER -----------------------------------------------------------------------\n\nRE_ENTITY1 = re.compile(r\"^http://\")  # http://www.domain.com/path\nRE_ENTITY2 = re.compile(r\"^www\\..*?\\.[com|org|net|edu|de|uk]$\")  # www.domain.com\nRE_ENTITY3 = re.compile(r\"^[\\w\\-\\.\\+]+@(\\w[\\w\\-]+\\.)+[\\w\\-]+$\")  # name@domain.com\n\n\nclass Entities(lazydict, Rules):\n    def __init__(self, lexicon=None, path=\"\", tag=\"NNP\"):\n        \"\"\"A dictionary of named entities and their labels.\n        For domain names and e-mail adresses, regular expressions are used.\n        \"\"\"\n        if lexicon is None:\n            lexicon = {}\n        cmd = (\n            \"pers\",  # Persons: George/NNP-PERS\n            \"loc\",  # Locations: Washington/NNP-LOC\n            \"org\",  # Organizations: Google/NNP-ORG\n        )\n        Rules.__init__(self, lexicon, cmd)\n        self._path = path\n        self.tag = tag\n\n    @property\n    def path(self):\n        return self._path\n\n    def load(self):\n        # [\"Alexander\", \"the\", \"Great\", \"PERS\"]\n        # {\"alexander\": [[\"alexander\", \"the\", \"great\", \"pers\"], ...]}\n        for x in _read(self.path):\n            x = [x.lower() for x in x.split()]\n            dict.setdefault(self, x[0], []).append(x)\n\n    def apply(self, tokens):\n        \"\"\"Applies the named entity recognizer to the given list of tokens,\n        where each token is a [word, tag] list.\n        \"\"\"\n        # Note: we could also scan for patterns, e.g.,\n        # \"my|his|her name is|was *\" => NNP-PERS.\n        i = 0\n        while i < len(tokens):\n            w = tokens[i][0].lower()\n            if RE_ENTITY1.match(w) or RE_ENTITY2.match(w) or RE_ENTITY3.match(w):\n                tokens[i][1] = self.tag\n            if w in self:\n                for e in self[w]:\n                    # Look ahead to see if successive words match the named entity.\n                    e, tag = (\n                        (e[:-1], \"-\" + e[-1].upper()) if e[-1] in self.cmd else (e, \"\")\n                    )\n                    b = True\n                    for j, e in enumerate(e):\n                        if i + j >= len(tokens) or tokens[i + j][0].lower() != e:\n                            b = False\n                            break\n                    if b:\n                        for token in tokens[i : i + j + 1]:\n                            token[1] = (\n                                token[1] == \"NNPS\" and token[1] or self.tag\n                            ) + tag\n                        i += j\n                        break\n            i += 1\n        return tokens\n\n    def append(self, entity, name=\"pers\"):\n        \"\"\"Appends a named entity to the lexicon,\n        e.g., Entities.append(\"Hooloovoo\", \"PERS\")\n        \"\"\"\n        e = [s.lower() for s in entity.split(\" \") + [name]]\n        self.setdefault(e[0], []).append(e)\n\n    def extend(self, entities):\n        for entity, name in entities:\n            self.append(entity, name)\n\n\n### SENTIMENT POLARITY LEXICON #####################################################################\n# A sentiment lexicon can be used to discern objective facts from subjective opinions in text.\n# Each word in the lexicon has scores for:\n# 1)     polarity: negative vs. positive    (-1.0 => +1.0)\n# 2) subjectivity: objective vs. subjective (+0.0 => +1.0)\n# 3)    intensity: modifies next word?      (x0.5 => x2.0)\n\n# For English, adverbs are used as modifiers (e.g., \"very good\").\n# For Dutch, adverbial adjectives are used as modifiers\n# (\"hopeloos voorspelbaar\", \"ontzettend spannend\", \"verschrikkelijk goed\").\n# Negation words (e.g., \"not\") reverse the polarity of the following word.\n\n# Sentiment()(txt) returns an averaged (polarity, subjectivity)-tuple.\n# Sentiment().assessments(txt) returns a list of (chunk, polarity, subjectivity, label)-tuples.\n\n# Semantic labels are useful for fine-grained analysis, e.g.,\n# negative words + positive emoticons could indicate cynicism.\n\n# Semantic labels:\nMOOD = \"mood\"  # emoticons, emojis\nIRONY = \"irony\"  # sarcasm mark (!)\n\nNOUN, VERB, ADJECTIVE, ADVERB = \"NN\", \"VB\", \"JJ\", \"RB\"\n\nRE_SYNSET = re.compile(r\"^[acdnrv][-_][0-9]+$\")\n\n\ndef avg(list):\n    return sum(list) / float(len(list) or 1)\n\n\nclass Score(tuple):\n    def __new__(self, polarity, subjectivity, assessments=None):\n        \"\"\"A (polarity, subjectivity)-tuple with an assessments property.\"\"\"\n        if assessments is None:\n            assessments = []\n        return tuple.__new__(self, [polarity, subjectivity])\n\n    def __init__(self, polarity, subjectivity, assessments=None):\n        if assessments is None:\n            assessments = []\n        self.assessments = assessments\n\n\nclass Sentiment(lazydict):\n    def __init__(self, path=\"\", language=None, synset=None, confidence=None, **kwargs):\n        \"\"\"A dictionary of words (adjectives) and polarity scores (positive/negative).\n        The value for each word is a dictionary of part-of-speech tags.\n        The value for each word POS-tag is a tuple with values for\n        polarity (-1.0-1.0), subjectivity (0.0-1.0) and intensity (0.5-2.0).\n        \"\"\"\n        self._path = path  # XML file path.\n        self._language = None  # XML language attribute (\"en\", \"fr\", ...)\n        self._confidence = None  # XML confidence attribute threshold (>=).\n        self._synset = synset  # XML synset attribute (\"wordnet_id\", \"cornetto_id\", ...)\n        self._synsets = {}  # {\"a-01123879\": (1.0, 1.0, 1.0)}\n        self.labeler = {}  # {\"dammit\": \"profanity\"}\n        self.tokenizer = kwargs.get(\"tokenizer\", find_tokens)\n        self.negations = kwargs.get(\"negations\", (\"no\", \"not\", \"n't\", \"never\"))\n        self.modifiers = kwargs.get(\"modifiers\", (\"RB\",))\n        self.modifier = kwargs.get(\"modifier\", lambda w: w.endswith(\"ly\"))\n\n    @property\n    def path(self):\n        return self._path\n\n    @property\n    def language(self):\n        return self._language\n\n    @property\n    def confidence(self):\n        return self._confidence\n\n    def load(self, path=None):\n        \"\"\"Loads the XML-file (with sentiment annotations) from the given path.\n        By default, Sentiment.path is lazily loaded.\n        \"\"\"\n        # <word form=\"great\" wordnet_id=\"a-01123879\" pos=\"JJ\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" />\n        # <word form=\"damnmit\" polarity=\"-0.75\" subjectivity=\"1.0\" label=\"profanity\" />\n        if not path:\n            path = self._path\n        if not os.path.exists(path):\n            return\n        words, synsets, labels = {}, {}, {}\n        xml = ElementTree.parse(path)\n        xml = xml.getroot()\n        for w in xml.findall(\"word\"):\n            if self._confidence is None or self._confidence <= float(\n                w.attrib.get(\"confidence\", 0.0)\n            ):\n                w, pos, p, s, i, label, synset = (\n                    w.attrib.get(\"form\"),\n                    w.attrib.get(\"pos\"),\n                    w.attrib.get(\"polarity\", 0.0),\n                    w.attrib.get(\"subjectivity\", 0.0),\n                    w.attrib.get(\"intensity\", 1.0),\n                    w.attrib.get(\"label\"),\n                    w.attrib.get(self._synset),  # wordnet_id, cornetto_id, ...\n                )\n                psi = (float(p), float(s), float(i))\n                if w:\n                    words.setdefault(w, {}).setdefault(pos, []).append(psi)\n                if w and label:\n                    labels[w] = label\n                if synset:\n                    synsets.setdefault(synset, []).append(psi)\n        self._language = xml.attrib.get(\"language\", self._language)\n        # Average scores of all word senses per part-of-speech tag.\n        for w in words:\n            words[w] = dict(\n                (pos, [avg(each) for each in zip(*psi)])\n                for pos, psi in words[w].items()\n            )\n        # Average scores of all part-of-speech tags.\n        for w, pos in list(words.items()):\n            words[w][None] = [avg(each) for each in zip(*pos.values())]\n        # Average scores of all synonyms per synset.\n        for id, psi in synsets.items():\n            synsets[id] = [avg(each) for each in zip(*psi)]\n        dict.update(self, words)\n        dict.update(self.labeler, labels)\n        dict.update(self._synsets, synsets)\n\n    def synset(self, id, pos=ADJECTIVE):\n        \"\"\"Returns a (polarity, subjectivity)-tuple for the given synset id.\n        For example, the adjective \"horrible\" has id 193480 in WordNet:\n        Sentiment.synset(193480, pos=\"JJ\") => (-0.6, 1.0, 1.0).\n        \"\"\"\n        id = str(id).zfill(8)\n        if not id.startswith((\"n-\", \"v-\", \"a-\", \"r-\")):\n            if pos == NOUN:\n                id = \"n-\" + id\n            if pos == VERB:\n                id = \"v-\" + id\n            if pos == ADJECTIVE:\n                id = \"a-\" + id\n            if pos == ADVERB:\n                id = \"r-\" + id\n        if dict.__len__(self) == 0:\n            self.load()\n        return tuple(self._synsets.get(id, (0.0, 0.0))[:2])\n\n    def __call__(self, s, negation=True, **kwargs):\n        \"\"\"Returns a (polarity, subjectivity)-tuple for the given sentence,\n        with polarity between -1.0 and 1.0 and subjectivity between 0.0 and 1.0.\n        The sentence can be a string, Synset, Text, Sentence, Chunk, Word, Document, Vector.\n        An optional weight parameter can be given,\n        as a function that takes a list of words and returns a weight.\n        \"\"\"\n\n        def avg(assessments, weighted=lambda w: 1):\n            s, n = 0, 0\n            for words, score in assessments:\n                w = weighted(words)\n                s += w * score\n                n += w\n            return s / float(n or 1)\n\n        # A pattern.en.wordnet.Synset.\n        # Sentiment(synsets(\"horrible\", \"JJ\")[0]) => (-0.6, 1.0)\n        if hasattr(s, \"gloss\"):\n            a = [(s.synonyms[0],) + self.synset(s.id, pos=s.pos) + (None,)]\n        # A synset id.\n        # Sentiment(\"a-00193480\") => horrible => (-0.6, 1.0)   (English WordNet)\n        # Sentiment(\"c_267\") => verschrikkelijk => (-0.9, 1.0) (Dutch Cornetto)\n        elif (\n            isinstance(s, basestring) and RE_SYNSET.match(s) and hasattr(s, \"synonyms\")\n        ):\n            a = [(s.synonyms[0],) + self.synset(s.id, pos=s.pos) + (None,)]\n        # A string of words.\n        # Sentiment(\"a horrible movie\") => (-0.6, 1.0)\n        elif isinstance(s, basestring):\n            a = self.assessments(\n                ((w.lower(), None) for w in \" \".join(self.tokenizer(s)).split()),\n                negation,\n            )\n        # A pattern.en.Text.\n        elif hasattr(s, \"sentences\"):\n            a = self.assessments(\n                (\n                    (w.lemma or w.string.lower(), w.pos[:2])\n                    for w in chain.from_iterable(s)\n                ),\n                negation,\n            )\n        # A pattern.en.Sentence or pattern.en.Chunk.\n        elif hasattr(s, \"lemmata\"):\n            a = self.assessments(\n                ((w.lemma or w.string.lower(), w.pos[:2]) for w in s.words), negation\n            )\n        # A pattern.en.Word.\n        elif hasattr(s, \"lemma\"):\n            a = self.assessments(((s.lemma or s.string.lower(), s.pos[:2]),), negation)\n        # A pattern.vector.Document.\n        # Average score = weighted average using feature weights.\n        # Bag-of words is unordered: inject None between each two words\n        # to stop assessments() from scanning for preceding negation & modifiers.\n        elif hasattr(s, \"terms\"):\n            a = self.assessments(\n                chain.from_iterable(((w, None), (None, None)) for w in s), negation\n            )\n            kwargs.setdefault(\"weight\", lambda w: s.terms[w[0]])\n        # A dict of (word, weight)-items.\n        elif isinstance(s, dict):\n            a = self.assessments(\n                chain.from_iterable(((w, None), (None, None)) for w in s), negation\n            )\n            kwargs.setdefault(\"weight\", lambda w: s[w[0]])\n        # A list of words.\n        elif isinstance(s, list):\n            a = self.assessments(((w, None) for w in s), negation)\n        else:\n            a = []\n        weight = kwargs.get(\"weight\", lambda w: 1)  # [(w, p) for w, p, s, x in a]\n        return Score(\n            polarity=avg([(w, p) for w, p, s, x in a], weight),\n            subjectivity=avg([(w, s) for w, p, s, x in a], weight),\n            assessments=a,\n        )\n\n    def assessments(self, words=None, negation=True):\n        \"\"\"Returns a list of (chunk, polarity, subjectivity, label)-tuples for the given list of words:\n        where chunk is a list of successive words: a known word optionally\n        preceded by a modifier (\"very good\") or a negation (\"not good\").\n        \"\"\"\n        if words is None:\n            words = []\n        a = []\n        m = None  # Preceding modifier (i.e., adverb or adjective).\n        n = None  # Preceding negation (e.g., \"not beautiful\").\n        for w, pos in words:\n            # Only assess known words, preferably by part-of-speech tag.\n            # Including unknown words (polarity 0.0 and subjectivity 0.0) lowers the average.\n            if w is None:\n                continue\n            if w in self and pos in self[w]:\n                p, s, i = self[w][pos]\n                # Known word not preceded by a modifier (\"good\").\n                if m is None:\n                    a.append(dict(w=[w], p=p, s=s, i=i, n=1, x=self.labeler.get(w)))\n                # Known word preceded by a modifier (\"really good\").\n                if m is not None:\n                    a[-1][\"w\"].append(w)\n                    a[-1][\"p\"] = max(-1.0, min(p * a[-1][\"i\"], +1.0))\n                    a[-1][\"s\"] = max(-1.0, min(s * a[-1][\"i\"], +1.0))\n                    a[-1][\"i\"] = i\n                    a[-1][\"x\"] = self.labeler.get(w)\n                # Known word preceded by a negation (\"not really good\").\n                if n is not None:\n                    a[-1][\"w\"].insert(0, n)\n                    a[-1][\"i\"] = 1.0 / a[-1][\"i\"]\n                    a[-1][\"n\"] = -1\n                # Known word may be a negation.\n                # Known word may be modifying the next word (i.e., it is a known adverb).\n                m = None\n                n = None\n                if (\n                    pos\n                    and pos in self.modifiers\n                    or any(map(self[w].__contains__, self.modifiers))\n                ):\n                    m = (w, pos)\n                if negation and w in self.negations:\n                    n = w\n            else:\n                # Unknown word may be a negation (\"not good\").\n                if negation and w in self.negations:\n                    n = w\n                # Unknown word. Retain negation across small words (\"not a good\").\n                elif n and len(w.strip(\"'\")) > 1:\n                    n = None\n                # Unknown word may be a negation preceded by a modifier (\"really not good\").\n                if (\n                    n is not None\n                    and m is not None\n                    and (pos in self.modifiers or self.modifier(m[0]))\n                ):\n                    a[-1][\"w\"].append(n)\n                    a[-1][\"n\"] = -1\n                    n = None\n                # Unknown word. Retain modifier across small words (\"really is a good\").\n                elif m and len(w) > 2:\n                    m = None\n                # Exclamation marks boost previous word.\n                if w == \"!\" and len(a) > 0:\n                    a[-1][\"w\"].append(\"!\")\n                    a[-1][\"p\"] = max(-1.0, min(a[-1][\"p\"] * 1.25, +1.0))\n                # Exclamation marks in parentheses indicate sarcasm.\n                if w == \"(!)\":\n                    a.append(dict(w=[w], p=0.0, s=1.0, i=1.0, n=1, x=IRONY))\n                # EMOTICONS: {(\"grin\", +1.0): set((\":-D\", \":D\"))}\n                if (\n                    w.isalpha() is False and len(w) <= 5 and w not in PUNCTUATION\n                ):  # speedup\n                    for (_type, p), e in EMOTICONS.items():\n                        if w in map(lambda e: e.lower(), e):\n                            a.append(dict(w=[w], p=p, s=1.0, i=1.0, n=1, x=MOOD))\n                            break\n        for i in range(len(a)):\n            w = a[i][\"w\"]\n            p = a[i][\"p\"]\n            s = a[i][\"s\"]\n            n = a[i][\"n\"]\n            x = a[i][\"x\"]\n            # \"not good\" = slightly bad, \"not bad\" = slightly good.\n            a[i] = (w, p * -0.5 if n < 0 else p, s, x)\n        return a\n\n    def annotate(\n        self, word, pos=None, polarity=0.0, subjectivity=0.0, intensity=1.0, label=None\n    ):\n        \"\"\"Annotates the given word with polarity, subjectivity and intensity scores,\n        and optionally a semantic label (e.g., MOOD for emoticons, IRONY for \"(!)\").\n        \"\"\"\n        w = self.setdefault(word, {})\n        w[pos] = w[None] = (polarity, subjectivity, intensity)\n        if label:\n            self.labeler[word] = label\n\n\n# --- PART-OF-SPEECH TAGGER -------------------------------------------------------------------------\n\n# Unknown words are recognized as numbers if they contain only digits and -,.:/%$\nCD = re.compile(r\"^[0-9\\-\\,\\.\\:\\/\\%\\$]+$\")\n\n\ndef _suffix_rules(token, tag=\"NN\"):\n    \"\"\"Default morphological tagging rules for English, based on word suffixes.\"\"\"\n    if isinstance(token, (list, tuple)):\n        token, tag = token\n    if token.endswith(\"ing\"):\n        tag = \"VBG\"\n    if token.endswith(\"ly\"):\n        tag = \"RB\"\n    if token.endswith(\"s\") and not token.endswith((\"is\", \"ous\", \"ss\")):\n        tag = \"NNS\"\n    if (\n        token.endswith(\n            (\"able\", \"al\", \"ful\", \"ible\", \"ient\", \"ish\", \"ive\", \"less\", \"tic\", \"ous\")\n        )\n        or \"-\" in token\n    ):\n        tag = \"JJ\"\n    if token.endswith(\"ed\"):\n        tag = \"VBN\"\n    if token.endswith((\"ate\", \"ify\", \"ise\", \"ize\")):\n        tag = \"VBP\"\n    return [token, tag]\n\n\ndef find_tags(\n    tokens,\n    lexicon=None,\n    model=None,\n    morphology=None,\n    context=None,\n    entities=None,\n    default=(\"NN\", \"NNP\", \"CD\"),\n    language=\"en\",\n    map=None,\n    **kwargs,\n):\n    \"\"\"Returns a list of [token, tag]-items for the given list of tokens:\n    [\"The\", \"cat\", \"purs\"] => [[\"The\", \"DT\"], [\"cat\", \"NN\"], [\"purs\", \"VB\"]]\n    Words are tagged using the given lexicon of (word, tag)-items.\n    Unknown words are tagged NN by default.\n    Unknown words that start with a capital letter are tagged NNP (unless language=\"de\").\n    Unknown words that consist only of digits and punctuation marks are tagged CD.\n    Unknown words are then improved with morphological rules.\n    All words are improved with contextual rules.\n    If a model is given, uses model for unknown words instead of morphology and context.\n    If map is a function, it is applied to each (token, tag) after applying all rules.\n    \"\"\"\n    if lexicon is None:\n        lexicon = {}\n    tagged = []\n    # Tag known words.\n    for i, token in enumerate(tokens):\n        tagged.append(\n            [token, lexicon.get(token, i == 0 and lexicon.get(token.lower()) or None)]\n        )\n    # Tag unknown words.\n    for i, (token, tag) in enumerate(tagged):\n        prev, next = (None, None), (None, None)\n        if i > 0:\n            prev = tagged[i - 1]\n        if i < len(tagged) - 1:\n            next = tagged[i + 1]\n        if tag is None or token in (model is not None and model.unknown or ()):\n            # Use language model (i.e., SLP).\n            if model is not None:\n                tagged[i] = model.apply([token, None], prev, next)\n            # Use NNP for capitalized words (except in German).\n            elif token.istitle() and language != \"de\":\n                tagged[i] = [token, default[1]]\n            # Use CD for digits and numbers.\n            elif CD.match(token) is not None:\n                tagged[i] = [token, default[2]]\n            # Use suffix rules (e.g., -ly = RB).\n            elif morphology is not None:\n                tagged[i] = morphology.apply([token, default[0]], prev, next)\n            # Use suffix rules (English default).\n            elif language == \"en\":\n                tagged[i] = _suffix_rules([token, default[0]])\n            # Use most frequent tag (NN).\n            else:\n                tagged[i] = [token, default[0]]\n    # Tag words by context.\n    if context is not None and model is None:\n        tagged = context.apply(tagged)\n    # Tag named entities.\n    if entities is not None:\n        tagged = entities.apply(tagged)\n    # Map tags with a custom function.\n    if map is not None:\n        tagged = [list(map(token, tag)) or [token, default[0]] for token, tag in tagged]\n    return tagged\n\n\n# --- PHRASE CHUNKER --------------------------------------------------------------------------------\n\nSEPARATOR = \"/\"\n\nNN = r\"NN|NNS|NNP|NNPS|NNPS?\\-[A-Z]{3,4}|PR|PRP|PRP\\$\"\nVB = r\"VB|VBD|VBG|VBN|VBP|VBZ\"\nJJ = r\"JJ|JJR|JJS\"\nRB = r\"(?<!W)RB|RBR|RBS\"\n\n# Chunking rules.\n# CHUNKS[0] = Germanic: RB + JJ precedes NN (\"the round table\").\n# CHUNKS[1] = Romance: RB + JJ precedes or follows NN (\"la table ronde\", \"une jolie fille\").\nCHUNKS = [\n    [\n        # Germanic languages: en, de, nl, ...\n        (\n            \"NP\",\n            re.compile(\n                r\"((\"\n                + NN\n                + \")/)*((DT|CD|CC|CJ)/)*((\"\n                + RB\n                + \"|\"\n                + JJ\n                + \")/)*((\"\n                + NN\n                + \")/)+\"\n            ),\n        ),\n        (\"VP\", re.compile(r\"(((MD|\" + RB + \")/)*((\" + VB + \")/)+)+\")),\n        (\"VP\", re.compile(r\"((MD)/)\")),\n        (\"PP\", re.compile(r\"((IN|PP|TO)/)+\")),\n        (\"ADJP\", re.compile(r\"((CC|CJ|\" + RB + \"|\" + JJ + \")/)*((\" + JJ + \")/)+\")),\n        (\"ADVP\", re.compile(r\"((\" + RB + \"|WRB)/)+\")),\n    ],\n    [\n        # Romance languages: es, fr, it, ...\n        (\n            \"NP\",\n            re.compile(\n                r\"((\"\n                + NN\n                + \")/)*((DT|CD|CC|CJ)/)*((\"\n                + RB\n                + \"|\"\n                + JJ\n                + \")/)*((\"\n                + NN\n                + \")/)+((\"\n                + RB\n                + \"|\"\n                + JJ\n                + \")/)*\"\n            ),\n        ),\n        (\"VP\", re.compile(r\"(((MD|\" + RB + \")/)*((\" + VB + \")/)+((\" + RB + \")/)*)+\")),\n        (\"VP\", re.compile(r\"((MD)/)\")),\n        (\"PP\", re.compile(r\"((IN|PP|TO)/)+\")),\n        (\"ADJP\", re.compile(r\"((CC|CJ|\" + RB + \"|\" + JJ + \")/)*((\" + JJ + \")/)+\")),\n        (\"ADVP\", re.compile(r\"((\" + RB + \"|WRB)/)+\")),\n    ],\n]\n\n# Handle ADJP before VP, so that\n# RB prefers next ADJP over previous VP.\nCHUNKS[0].insert(1, CHUNKS[0].pop(3))\nCHUNKS[1].insert(1, CHUNKS[1].pop(3))\n\n\ndef find_chunks(tagged, language=\"en\"):\n    \"\"\"The input is a list of [token, tag]-items.\n    The output is a list of [token, tag, chunk]-items:\n    The/DT nice/JJ fish/NN is/VBZ dead/JJ ./. =>\n    The/DT/B-NP nice/JJ/I-NP fish/NN/I-NP is/VBZ/B-VP dead/JJ/B-ADJP ././O\n    \"\"\"\n    chunked = [x for x in tagged]\n    tags = \"\".join(f\"{tag}{SEPARATOR}\" for token, tag in tagged)\n    # Use Germanic or Romance chunking rules according to given language.\n    for tag, rule in CHUNKS[\n        int(language in (\"ca\", \"es\", \"pt\", \"fr\", \"it\", \"pt\", \"ro\"))\n    ]:\n        for m in rule.finditer(tags):\n            # Find the start of chunks inside the tags-string.\n            # Number of preceding separators = number of preceding tokens.\n            i = m.start()\n            j = tags[:i].count(SEPARATOR)\n            n = m.group(0).count(SEPARATOR)\n            for k in range(j, j + n):\n                if len(chunked[k]) == 3:\n                    continue\n                if len(chunked[k]) < 3:\n                    # A conjunction can not be start of a chunk.\n                    if k == j and chunked[k][1] in (\"CC\", \"CJ\", \"KON\", \"Conj(neven)\"):\n                        j += 1\n                    # Mark first token in chunk with B-.\n                    elif k == j:\n                        chunked[k].append(\"B-\" + tag)\n                    # Mark other tokens in chunk with I-.\n                    else:\n                        chunked[k].append(\"I-\" + tag)\n    # Mark chinks (tokens outside of a chunk) with O-.\n    for chink in filter(lambda x: len(x) < 3, chunked):\n        chink.append(\"O\")\n    # Post-processing corrections.\n    for i, (_word, tag, chunk) in enumerate(chunked):\n        if tag.startswith(\"RB\") and chunk == \"B-NP\":\n            # \"Very nice work\" (NP) <=> \"Perhaps\" (ADVP) + \"you\" (NP).\n            if i < len(chunked) - 1 and not chunked[i + 1][1].startswith(\"JJ\"):\n                chunked[i + 0][2] = \"B-ADVP\"\n                chunked[i + 1][2] = \"B-NP\"\n    return chunked\n\n\ndef find_prepositions(chunked):\n    \"\"\"The input is a list of [token, tag, chunk]-items.\n    The output is a list of [token, tag, chunk, preposition]-items.\n    PP-chunks followed by NP-chunks make up a PNP-chunk.\n    \"\"\"\n    # Tokens that are not part of a preposition just get the O-tag.\n    for ch in chunked:\n        ch.append(\"O\")\n    for i, chunk in enumerate(chunked):\n        if chunk[2].endswith(\"PP\") and chunk[-1] == \"O\":\n            # Find PP followed by other PP, NP with nouns and pronouns, VP with a gerund.\n            if i < len(chunked) - 1 and (\n                chunked[i + 1][2].endswith((\"NP\", \"PP\"))\n                or chunked[i + 1][1] in (\"VBG\", \"VBN\")\n            ):\n                chunk[-1] = \"B-PNP\"\n                pp = True\n                for ch in chunked[i + 1 :]:\n                    if not (ch[2].endswith((\"NP\", \"PP\")) or ch[1] in (\"VBG\", \"VBN\")):\n                        break\n                    if ch[2].endswith(\"PP\") and pp:\n                        ch[-1] = \"I-PNP\"\n                    if not ch[2].endswith(\"PP\"):\n                        ch[-1] = \"I-PNP\"\n                        pp = False\n    return chunked\n\n\n#### PARSER ########################################################################################\n\n# --- PARSER ----------------------------------------------------------------------------------------\n# A shallow parser can be used to retrieve syntactic-semantic information from text\n# in an efficient way (usually at the expense of deeper configurational syntactic information).\n# The shallow parser in Pattern is meant to handle the following tasks:\n# 1)  Tokenization: split punctuation marks from words and find sentence periods.\n# 2)       Tagging: find the part-of-speech tag of each word (noun, verb, ...) in a sentence.\n# 3)      Chunking: find words that belong together in a phrase.\n# 4) Role labeling: find the subject and object of the sentence.\n# 5) Lemmatization: find the base form of each word (\"was\" => \"is\").\n\n#    WORD     TAG     CHUNK      PNP        ROLE        LEMMA\n# ------------------------------------------------------------------\n#     The      DT      B-NP        O        NP-SBJ-1      the\n#   black      JJ      I-NP        O        NP-SBJ-1      black\n#     cat      NN      I-NP        O        NP-SBJ-1      cat\n#     sat      VB      B-VP        O        VP-1          sit\n#      on      IN      B-PP      B-PNP      PP-LOC        on\n#     the      DT      B-NP      I-PNP      NP-OBJ-1      the\n#     mat      NN      I-NP      I-PNP      NP-OBJ-1      mat\n#       .      .        O          O          O           .\n\n# The example demonstrates what information can be retrieved:\n#\n# - the period is split from \"mat.\" = the end of the sentence,\n# - the words are annotated: NN (noun), VB (verb), JJ (adjective), DT (determiner), ...\n# - the phrases are annotated: NP (noun phrase), VP (verb phrase), PNP (preposition), ...\n# - the phrases are labeled: SBJ (subject), OBJ (object), LOC (location), ...\n# - the phrase start is marked: B (begin), I (inside), O (outside),\n# - the past tense \"sat\" is lemmatized => \"sit\".\n# By default, the English parser uses the Penn Treebank II tagset:\n# http://www.clips.ua.ac.be/pages/penn-treebank-tagset\nPTB = PENN = \"penn\"\n\n\nclass Parser:\n    def __init__(self, lexicon=None, default=(\"NN\", \"NNP\", \"CD\"), language=None):\n        \"\"\"A simple shallow parser using a Brill-based part-of-speech tagger.\n        The given lexicon is a dictionary of known words and their part-of-speech tag.\n        The given default tags are used for unknown words.\n        Unknown words that start with a capital letter are tagged NNP (except for German).\n        Unknown words that contain only digits and punctuation are tagged CD.\n        The given language can be used to discern between\n        Germanic and Romance languages for phrase chunking.\n        \"\"\"\n        if lexicon is None:\n            lexicon = {}\n        self.lexicon = lexicon\n        self.default = default\n        self.language = language\n\n    def find_tokens(self, string, **kwargs):\n        \"\"\"Returns a list of sentences from the given string.\n        Punctuation marks are separated from each word by a space.\n        \"\"\"\n        # \"The cat purs.\" => [\"The cat purs .\"]\n        return find_tokens(\n            str(string),\n            punctuation=kwargs.get(\"punctuation\", PUNCTUATION),\n            abbreviations=kwargs.get(\"abbreviations\", ABBREVIATIONS),\n            replace=kwargs.get(\"replace\", replacements),\n            linebreak=r\"\\n{2,}\",\n        )\n\n    def find_tags(self, tokens, **kwargs):\n        \"\"\"Annotates the given list of tokens with part-of-speech tags.\n        Returns a list of tokens, where each token is now a [word, tag]-list.\n        \"\"\"\n        # [\"The\", \"cat\", \"purs\"] => [[\"The\", \"DT\"], [\"cat\", \"NN\"], [\"purs\", \"VB\"]]\n        return find_tags(\n            tokens,\n            language=kwargs.get(\"language\", self.language),\n            lexicon=kwargs.get(\"lexicon\", self.lexicon),\n            default=kwargs.get(\"default\", self.default),\n            map=kwargs.get(\"map\", None),\n        )\n\n    def find_chunks(self, tokens, **kwargs):\n        \"\"\"Annotates the given list of tokens with chunk tags.\n        Several tags can be added, for example chunk + preposition tags.\n        \"\"\"\n        # [[\"The\", \"DT\"], [\"cat\", \"NN\"], [\"purs\", \"VB\"]] =>\n        # [[\"The\", \"DT\", \"B-NP\"], [\"cat\", \"NN\", \"I-NP\"], [\"purs\", \"VB\", \"B-VP\"]]\n        return find_prepositions(\n            find_chunks(tokens, language=kwargs.get(\"language\", self.language))\n        )\n\n    def find_prepositions(self, tokens, **kwargs):\n        \"\"\"Annotates the given list of tokens with prepositional noun phrase tags.\"\"\"\n        return find_prepositions(tokens)  # See also Parser.find_chunks().\n\n    def find_labels(self, tokens, **kwargs):\n        \"\"\"Annotates the given list of tokens with verb/predicate tags.\"\"\"\n        return find_relations(tokens)\n\n    def find_lemmata(self, tokens, **kwargs):\n        \"\"\"Annotates the given list of tokens with word lemmata.\"\"\"\n        return [token + [token[0].lower()] for token in tokens]\n\n    def parse(\n        self,\n        s,\n        tokenize=True,\n        tags=True,\n        chunks=True,\n        relations=False,\n        lemmata=False,\n        encoding=\"utf-8\",\n        **kwargs,\n    ):\n        \"\"\"Takes a string (sentences) and returns a tagged Unicode string (TaggedString).\n        Sentences in the output are separated by newlines.\n        With tokenize=True, punctuation is split from words and sentences are separated by \\n.\n        With tags=True, part-of-speech tags are parsed (NN, VB, IN, ...).\n        With chunks=True, phrase chunk tags are parsed (NP, VP, PP, PNP, ...).\n        With relations=True, semantic role labels are parsed (SBJ, OBJ).\n        With lemmata=True, word lemmata are parsed.\n        Optional parameters are passed to\n        the tokenizer, tagger, chunker, labeler and lemmatizer.\n        \"\"\"\n        # Tokenizer.\n        if tokenize:\n            s = self.find_tokens(s, **kwargs)\n        if isinstance(s, (list, tuple)):\n            s = [isinstance(s, basestring) and s.split(\" \") or s for s in s]\n        if isinstance(s, basestring):\n            s = [s.split(\" \") for s in s.split(\"\\n\")]\n        # Unicode.\n        for i in range(len(s)):\n            for j in range(len(s[i])):\n                if isinstance(s[i][j], bytes):\n                    s[i][j] = decode_string(s[i][j], encoding)\n            # Tagger (required by chunker, labeler & lemmatizer).\n            if tags or chunks or relations or lemmata:\n                s[i] = self.find_tags(s[i], **kwargs)\n            else:\n                s[i] = [[w] for w in s[i]]\n            # Chunker.\n            if chunks or relations:\n                s[i] = self.find_chunks(s[i], **kwargs)\n            # Labeler.\n            if relations:\n                s[i] = self.find_labels(s[i], **kwargs)\n            # Lemmatizer.\n            if lemmata:\n                s[i] = self.find_lemmata(s[i], **kwargs)\n        # Slash-formatted tagged string.\n        # With collapse=False (or split=True), returns raw list\n        # (this output is not usable by tree.Text).\n        if not kwargs.get(\"collapse\", True) or kwargs.get(\"split\", False):\n            return s\n        # Construct TaggedString.format.\n        # (this output is usable by tree.Text).\n        format = [\"word\"]\n        if tags:\n            format.append(\"part-of-speech\")\n        if chunks:\n            format.extend((\"chunk\", \"preposition\"))\n        if relations:\n            format.append(\"relation\")\n        if lemmata:\n            format.append(\"lemma\")\n        # Collapse raw list.\n        # Sentences are separated by newlines, tokens by spaces, tags by slashes.\n        # Slashes in words are encoded with &slash;\n        for i in range(len(s)):\n            for j in range(len(s[i])):\n                s[i][j][0] = s[i][j][0].replace(\"/\", \"&slash;\")\n                s[i][j] = \"/\".join(s[i][j])\n            s[i] = \" \".join(s[i])\n        s = \"\\n\".join(s)\n        s = TaggedString(\n            str(s), format, language=kwargs.get(\"language\", self.language)\n        )\n        return s\n\n\n# --- TAGGED STRING ---------------------------------------------------------------------------------\n# Pattern.parse() returns a TaggedString: a Unicode string with \"tags\" and \"language\" attributes.\n# The pattern.text.tree.Text class uses this attribute to determine the token format and\n# transform the tagged string to a parse tree of nested Sentence, Chunk and Word objects.\n\nTOKENS = \"tokens\"\n\nclass TaggedString(str):\n    def __new__(cls, string, tags=None, language=None):\n        \"\"\"Unicode string with tags and language attributes.\n        For example: TaggedString(\"cat/NN/NP\", tags=[\"word\", \"pos\", \"chunk\"]).\n        \"\"\"\n        # From a TaggedString:\n        if tags is None:\n            tags = [\"word\"]\n        if isinstance(string, str) and hasattr(string, \"tags\"):\n            tags, language = string.tags, string.language\n        # From a TaggedString.split(TOKENS) list:\n        if isinstance(string, list):\n            string = [\n                [[x.replace(\"/\", \"&slash;\") for x in token] for token in s]\n                for s in string\n            ]\n            string = \"\\n\".join(\" \".join(\"/\".join(token) for token in s) for s in string)\n        s = str.__new__(cls, string)\n        s.tags = list(tags)\n        s.language = language\n        return s\n\n    def split(self, sep=TOKENS):\n        \"\"\"Returns a list of sentences, where each sentence is a list of tokens,\n        where each token is a list of word + tags.\n        \"\"\"\n        if sep != TOKENS:\n            return str.split(self, sep)\n        if len(self) == 0:\n            return []\n        return [\n            [\n                [x.replace(\"&slash;\", \"/\") for x in token.split(\"/\")]\n                for token in sentence.split(\" \")\n            ]\n            for sentence in str.split(self, \"\\n\")\n        ]\n\n\n#### SPELLING CORRECTION ###########################################################################\n# Based on: Peter Norvig, \"How to Write a Spelling Corrector\", http://norvig.com/spell-correct.html\n\n\nclass Spelling(lazydict):\n    ALPHA = \"abcdefghijklmnopqrstuvwxyz\"\n\n    def __init__(self, path=\"\"):\n        self._path = path\n\n    def load(self):\n        for x in _read(self._path):\n            x = x.split()\n            dict.__setitem__(self, x[0], int(x[1]))\n\n    @property\n    def path(self):\n        return self._path\n\n    @property\n    def language(self):\n        return self._language\n\n    @classmethod\n    def train(cls, s, path=\"spelling.txt\"):\n        \"\"\"Counts the words in the given string and saves the probabilities at the given path.\n        This can be used to generate a new model for the Spelling() constructor.\n        \"\"\"\n        model = {}\n        for w in re.findall(\"[a-z]+\", s.lower()):\n            model[w] = w in model and model[w] + 1 or 1\n        model = (f\"{k} {v}\" for k, v in sorted(model.items()))\n        model = \"\\n\".join(model)\n        f = open(path, \"w\")\n        f.write(model)\n        f.close()\n\n    def _edit1(self, w):\n        \"\"\"Returns a set of words with edit distance 1 from the given word.\"\"\"\n        # Of all spelling errors, 80% is covered by edit distance 1.\n        # Edit distance 1 = one character deleted, swapped, replaced or inserted.\n        split = [(w[:i], w[i:]) for i in range(len(w) + 1)]\n        delete, transpose, replace, insert = (\n            [a + b[1:] for a, b in split if b],\n            [a + b[1] + b[0] + b[2:] for a, b in split if len(b) > 1],\n            [a + c + b[1:] for a, b in split for c in Spelling.ALPHA if b],\n            [a + c + b[0:] for a, b in split for c in Spelling.ALPHA],\n        )\n        return set(delete + transpose + replace + insert)\n\n    def _edit2(self, w):\n        \"\"\"Returns a set of words with edit distance 2 from the given word\"\"\"\n        # Of all spelling errors, 99% is covered by edit distance 2.\n        # Only keep candidates that are actually known words (20% speedup).\n        return set(e2 for e1 in self._edit1(w) for e2 in self._edit1(e1) if e2 in self)\n\n    def _known(self, words=None):\n        \"\"\"Returns the given list of words filtered by known words.\"\"\"\n        if words is None:\n            words = []\n        return set(w for w in words if w in self)\n\n    def suggest(self, w):\n        \"\"\"Return a list of (word, confidence) spelling corrections for the given word,\n        based on the probability of known words with edit distance 1-2 from the given word.\n        \"\"\"\n        if len(self) == 0:\n            self.load()\n        if len(w) == 1:\n            return [(w, 1.0)]  # I\n        if w in PUNCTUATION:\n            return [(w, 1.0)]  # .?!\n        if w in string.whitespace:\n            return [(w, 1.0)]  # \\n\n        if w.replace(\".\", \"\").isdigit():\n            return [(w, 1.0)]  # 1.5\n        candidates = (\n            self._known([w])\n            or self._known(self._edit1(w))\n            or self._known(self._edit2(w))\n            or [w]\n        )\n        candidates = [(self.get(c, 0.0), c) for c in candidates]\n        s = float(sum(p for p, word in candidates) or 1)\n        candidates = sorted(((p / s, word) for p, word in candidates), reverse=True)\n        if w.istitle():  # Preserve capitalization\n            candidates = [(word.title(), p) for p, word in candidates]\n        else:\n            candidates = [(word, p) for p, word in candidates]\n        return candidates\n"
  },
  {
    "path": "src/textblob/base.py",
    "content": "\"\"\"Abstract base classes for models (taggers, noun phrase extractors, etc.)\nwhich define the interface for descendant classes.\n\n.. versionchanged:: 0.7.0\n    All base classes are defined in the same module, ``textblob.base``.\n\"\"\"\n\nfrom __future__ import annotations\n\nfrom abc import ABCMeta, abstractmethod\nfrom typing import TYPE_CHECKING\n\nimport nltk\n\nif TYPE_CHECKING:\n    from typing import Any, AnyStr\n\n##### POS TAGGERS #####\n\n\nclass BaseTagger(metaclass=ABCMeta):\n    \"\"\"Abstract tagger class from which all taggers\n    inherit from. All descendants must implement a\n    ``tag()`` method.\n    \"\"\"\n\n    @abstractmethod\n    def tag(self, text: str, tokenize=True) -> list[tuple[str, str]]:\n        \"\"\"Return a list of tuples of the form (word, tag)\n        for a given set of text or BaseBlob instance.\n        \"\"\"\n        ...\n\n\n##### NOUN PHRASE EXTRACTORS #####\n\n\nclass BaseNPExtractor(metaclass=ABCMeta):\n    \"\"\"Abstract base class from which all NPExtractor classes inherit.\n    Descendant classes must implement an ``extract(text)`` method\n    that returns a list of noun phrases as strings.\n    \"\"\"\n\n    @abstractmethod\n    def extract(self, text: str) -> list[str]:\n        \"\"\"Return a list of noun phrases (strings) for a body of text.\"\"\"\n        ...\n\n\n##### TOKENIZERS #####\n\n\nclass BaseTokenizer(nltk.tokenize.api.TokenizerI, metaclass=ABCMeta):  # pyright: ignore\n    \"\"\"Abstract base class from which all Tokenizer classes inherit.\n    Descendant classes must implement a ``tokenize(text)`` method\n    that returns a list of noun phrases as strings.\n    \"\"\"\n\n    @abstractmethod\n    def tokenize(self, text: str) -> list[str]:\n        \"\"\"Return a list of tokens (strings) for a body of text.\n\n        :rtype: list\n        \"\"\"\n        ...\n\n    def itokenize(self, text: str, *args, **kwargs):\n        \"\"\"Return a generator that generates tokens \"on-demand\".\n\n        .. versionadded:: 0.6.0\n\n        :rtype: generator\n        \"\"\"\n        return (t for t in self.tokenize(text, *args, **kwargs))\n\n\n##### SENTIMENT ANALYZERS ####\n\n\nDISCRETE = \"ds\"\nCONTINUOUS = \"co\"\n\n\nclass BaseSentimentAnalyzer(metaclass=ABCMeta):\n    \"\"\"Abstract base class from which all sentiment analyzers inherit.\n    Should implement an ``analyze(text)`` method which returns either the\n    results of analysis.\n    \"\"\"\n\n    _trained: bool\n\n    kind = DISCRETE\n\n    def __init__(self):\n        self._trained = False\n\n    def train(self):\n        # Train me\n        self._trained = True\n\n    @abstractmethod\n    def analyze(self, text) -> Any:\n        \"\"\"Return the result of of analysis. Typically returns either a\n        tuple, float, or dictionary.\n        \"\"\"\n        # Lazily train the classifier\n        if not self._trained:\n            self.train()\n        # Analyze text\n        return None\n\n\n##### PARSERS #####\n\n\nclass BaseParser(metaclass=ABCMeta):\n    \"\"\"Abstract parser class from which all parsers inherit from. All\n    descendants must implement a ``parse()`` method.\n    \"\"\"\n\n    @abstractmethod\n    def parse(self, text: AnyStr):\n        \"\"\"Parses the text.\"\"\"\n        ...\n"
  },
  {
    "path": "src/textblob/blob.py",
    "content": "\"\"\"Wrappers for various units of text, including the main\n:class:`TextBlob <textblob.blob.TextBlob>`, :class:`Word <textblob.blob.Word>`,\nand :class:`WordList <textblob.blob.WordList>` classes.\nExample usage: ::\n\n    >>> from textblob import TextBlob\n    >>> b = TextBlob(\"Simple is better than complex.\")\n    >>> b.tags\n    [(u'Simple', u'NN'), (u'is', u'VBZ'), (u'better', u'JJR'), (u'than', u'IN'), (u'complex', u'NN')]\n    >>> b.noun_phrases\n    WordList([u'simple'])\n    >>> b.words\n    WordList([u'Simple', u'is', u'better', u'than', u'complex'])\n    >>> b.sentiment\n    (0.06666666666666667, 0.41904761904761906)\n    >>> b.words[0].synsets()[0]\n    Synset('simple.n.01')\n\n.. versionchanged:: 0.8.0\n    These classes are now imported from ``textblob`` rather than ``text.blob``.\n\"\"\"  # noqa: E501\n\nimport json\nimport sys\nfrom collections import defaultdict\n\nimport nltk\n\nfrom textblob.base import (\n    BaseNPExtractor,\n    BaseParser,\n    BaseSentimentAnalyzer,\n    BaseTagger,\n    BaseTokenizer,\n)\nfrom textblob.decorators import cached_property, requires_nltk_corpus\nfrom textblob.en import suggest\nfrom textblob.inflect import pluralize as _pluralize\nfrom textblob.inflect import singularize as _singularize\nfrom textblob.mixins import BlobComparableMixin, StringlikeMixin\nfrom textblob.np_extractors import FastNPExtractor\nfrom textblob.parsers import PatternParser\nfrom textblob.sentiments import PatternAnalyzer\nfrom textblob.taggers import NLTKTagger\nfrom textblob.tokenizers import WordTokenizer, sent_tokenize, word_tokenize\nfrom textblob.utils import PUNCTUATION_REGEX, lowerstrip\n\n# Wordnet interface\n# NOTE: textblob.wordnet is not imported so that the wordnet corpus can be lazy-loaded\n_wordnet = nltk.corpus.wordnet\n\nbasestring = (str, bytes)\n\n\ndef _penn_to_wordnet(tag):\n    \"\"\"Converts a Penn corpus tag into a Wordnet tag.\"\"\"\n    if tag in (\"NN\", \"NNS\", \"NNP\", \"NNPS\"):\n        return _wordnet.NOUN\n    if tag in (\"JJ\", \"JJR\", \"JJS\"):\n        return _wordnet.ADJ\n    if tag in (\"VB\", \"VBD\", \"VBG\", \"VBN\", \"VBP\", \"VBZ\"):\n        return _wordnet.VERB\n    if tag in (\"RB\", \"RBR\", \"RBS\"):\n        return _wordnet.ADV\n    return None\n\n\nclass Word(str):\n    \"\"\"A simple word representation. Includes methods for inflection,\n    and WordNet integration.\n    \"\"\"\n\n    def __new__(cls, string, pos_tag=None):\n        \"\"\"Return a new instance of the class. It is necessary to override\n        this method in order to handle the extra pos_tag argument in the\n        constructor.\n        \"\"\"\n        return super().__new__(cls, string)\n\n    def __init__(self, string, pos_tag=None):\n        self.string = string\n        self.pos_tag = pos_tag\n\n    def __repr__(self):\n        return repr(self.string)\n\n    def __str__(self):\n        return self.string\n\n    def singularize(self):\n        \"\"\"Return the singular version of the word as a string.\"\"\"\n        return Word(_singularize(self.string))\n\n    def pluralize(self):\n        \"\"\"Return the plural version of the word as a string.\"\"\"\n        return Word(_pluralize(self.string))\n\n    def spellcheck(self):\n        \"\"\"Return a list of (word, confidence) tuples of spelling corrections.\n\n        Based on: Peter Norvig, \"How to Write a Spelling Corrector\"\n        (http://norvig.com/spell-correct.html) as implemented in the pattern\n        library.\n\n        .. versionadded:: 0.6.0\n        \"\"\"\n        return suggest(self.string)\n\n    def correct(self):\n        \"\"\"Correct the spelling of the word. Returns the word with the highest\n        confidence using the spelling corrector.\n\n        .. versionadded:: 0.6.0\n        \"\"\"\n        return Word(self.spellcheck()[0][0])\n\n    @cached_property\n    @requires_nltk_corpus\n    def lemma(self):\n        \"\"\"Return the lemma of this word using Wordnet's morphy function.\"\"\"\n        return self.lemmatize(pos=self.pos_tag)\n\n    @requires_nltk_corpus\n    def lemmatize(self, pos=None):\n        \"\"\"Return the lemma for a word using WordNet's morphy function.\n\n        :param pos: Part of speech to filter upon. If `None`, defaults to\n            ``_wordnet.NOUN``.\n\n        .. versionadded:: 0.8.1\n        \"\"\"\n        if pos is None:\n            tag = _wordnet.NOUN\n        elif pos in _wordnet._FILEMAP.keys():\n            tag = pos\n        else:\n            tag = _penn_to_wordnet(pos)\n        lemmatizer = nltk.stem.WordNetLemmatizer()\n        return lemmatizer.lemmatize(self.string, tag)\n\n    PorterStemmer = nltk.stem.PorterStemmer()\n    LancasterStemmer = nltk.stem.LancasterStemmer()\n    SnowballStemmer = nltk.stem.SnowballStemmer(\"english\")\n\n    # added 'stemmer' on lines of lemmatizer\n    # based on nltk\n    def stem(self, stemmer=PorterStemmer):\n        \"\"\"Stem a word using various NLTK stemmers. (Default: Porter Stemmer)\n\n        .. versionadded:: 0.12.0\n        \"\"\"\n        return stemmer.stem(self.string)\n\n    @cached_property\n    def synsets(self):\n        \"\"\"The list of Synset objects for this Word.\n\n        :rtype: list of Synsets\n\n        .. versionadded:: 0.7.0\n        \"\"\"\n        return self.get_synsets(pos=None)\n\n    @cached_property\n    def definitions(self):\n        \"\"\"The list of definitions for this word. Each definition corresponds\n        to a synset.\n\n        .. versionadded:: 0.7.0\n        \"\"\"\n        return self.define(pos=None)\n\n    def get_synsets(self, pos=None):\n        \"\"\"Return a list of Synset objects for this word.\n\n        :param pos: A part-of-speech tag to filter upon. If ``None``, all\n            synsets for all parts of speech will be loaded.\n\n        :rtype: list of Synsets\n\n        .. versionadded:: 0.7.0\n        \"\"\"\n        return _wordnet.synsets(self.string, pos)\n\n    def define(self, pos=None):\n        \"\"\"Return a list of definitions for this word. Each definition\n        corresponds to a synset for this word.\n\n        :param pos: A part-of-speech tag to filter upon. If ``None``, definitions\n            for all parts of speech will be loaded.\n        :rtype: List of strings\n\n        .. versionadded:: 0.7.0\n        \"\"\"\n        return [syn.definition() for syn in self.get_synsets(pos=pos)]\n\n\nclass WordList(list):\n    \"\"\"A list-like collection of words.\"\"\"\n\n    def __init__(self, collection):\n        \"\"\"Initialize a WordList. Takes a collection of strings as\n        its only argument.\n        \"\"\"\n        super().__init__([Word(w) for w in collection])\n\n    def __str__(self):\n        \"\"\"Returns a string representation for printing.\"\"\"\n        return super().__repr__()\n\n    def __repr__(self):\n        \"\"\"Returns a string representation for debugging.\"\"\"\n        class_name = self.__class__.__name__\n        return f\"{class_name}({super().__repr__()})\"\n\n    def __getitem__(self, key):\n        \"\"\"Returns a string at the given index.\"\"\"\n        item = super().__getitem__(key)\n        if isinstance(key, slice):\n            return self.__class__(item)\n        else:\n            return item\n\n    def __getslice__(self, i, j):\n        # This is included for Python 2.* compatibility\n        return self.__class__(super().__getslice__(i, j))\n\n    def __setitem__(self, index, obj):\n        \"\"\"Places object at given index, replacing existing item. If the object\n        is a string, inserts a :class:`Word <Word>` object.\n        \"\"\"\n        if isinstance(obj, basestring):\n            super().__setitem__(index, Word(obj))\n        else:\n            super().__setitem__(index, obj)\n\n    def count(self, strg, case_sensitive=False, *args, **kwargs):\n        \"\"\"Get the count of a word or phrase `s` within this WordList.\n\n        :param strg: The string to count.\n        :param case_sensitive: A boolean, whether or not the search is case-sensitive.\n        \"\"\"\n        if not case_sensitive:\n            return [word.lower() for word in self].count(strg.lower(), *args, **kwargs)\n        return super().count(strg, *args, **kwargs)\n\n    def append(self, obj):\n        \"\"\"Append an object to end. If the object is a string, appends a\n        :class:`Word <Word>` object.\n        \"\"\"\n        if isinstance(obj, basestring):\n            super().append(Word(obj))\n        else:\n            super().append(obj)\n\n    def extend(self, iterable):\n        \"\"\"Extend WordList by appending elements from ``iterable``. If an element\n        is a string, appends a :class:`Word <Word>` object.\n        \"\"\"\n        for e in iterable:\n            self.append(e)\n\n    def upper(self):\n        \"\"\"Return a new WordList with each word upper-cased.\"\"\"\n        return self.__class__([word.upper() for word in self])\n\n    def lower(self):\n        \"\"\"Return a new WordList with each word lower-cased.\"\"\"\n        return self.__class__([word.lower() for word in self])\n\n    def singularize(self):\n        \"\"\"Return the single version of each word in this WordList.\"\"\"\n        return self.__class__([word.singularize() for word in self])\n\n    def pluralize(self):\n        \"\"\"Return the plural version of each word in this WordList.\"\"\"\n        return self.__class__([word.pluralize() for word in self])\n\n    def lemmatize(self):\n        \"\"\"Return the lemma of each word in this WordList.\"\"\"\n        return self.__class__([word.lemmatize() for word in self])\n\n    def stem(self, *args, **kwargs):\n        \"\"\"Return the stem for each word in this WordList.\"\"\"\n        return self.__class__([word.stem(*args, **kwargs) for word in self])\n\n\ndef _validated_param(obj, name, base_class, default, base_class_name=None):\n    \"\"\"Validates a parameter passed to __init__. Makes sure that obj is\n    the correct class. Return obj if it's not None or falls back to default\n\n    :param obj: The object passed in.\n    :param name: The name of the parameter.\n    :param base_class: The class that obj must inherit from.\n    :param default: The default object to fall back upon if obj is None.\n    \"\"\"\n    base_class_name = base_class_name if base_class_name else base_class.__name__\n    if obj is not None and not isinstance(obj, base_class):\n        raise ValueError(f\"{name} must be an instance of {base_class_name}\")\n    return obj or default\n\n\ndef _initialize_models(\n    obj, tokenizer, pos_tagger, np_extractor, analyzer, parser, classifier\n):\n    \"\"\"Common initialization between BaseBlob and Blobber classes.\"\"\"\n    # tokenizer may be a textblob or an NLTK tokenizer\n    obj.tokenizer = _validated_param(\n        tokenizer,\n        \"tokenizer\",\n        base_class=(BaseTokenizer, nltk.tokenize.api.TokenizerI),  # pyright: ignore\n        default=BaseBlob.tokenizer,\n        base_class_name=\"BaseTokenizer\",\n    )\n    obj.np_extractor = _validated_param(\n        np_extractor,\n        \"np_extractor\",\n        base_class=BaseNPExtractor,\n        default=BaseBlob.np_extractor,\n    )\n    obj.pos_tagger = _validated_param(\n        pos_tagger, \"pos_tagger\", BaseTagger, BaseBlob.pos_tagger\n    )\n    obj.analyzer = _validated_param(\n        analyzer, \"analyzer\", BaseSentimentAnalyzer, BaseBlob.analyzer\n    )\n    obj.parser = _validated_param(parser, \"parser\", BaseParser, BaseBlob.parser)\n    obj.classifier = classifier\n\n\nclass BaseBlob(StringlikeMixin, BlobComparableMixin):\n    \"\"\"An abstract base class that all textblob classes will inherit from.\n    Includes words, POS tag, NP, and word count properties. Also includes\n    basic dunder and string methods for making objects like Python strings.\n\n    :param text: A string.\n    :param tokenizer: (optional) A tokenizer instance. If ``None``,\n        defaults to :class:`WordTokenizer() <textblob.tokenizers.WordTokenizer>`.\n    :param np_extractor: (optional) An NPExtractor instance. If ``None``,\n        defaults to :class:`FastNPExtractor() <textblob.en.np_extractors.FastNPExtractor>`.\n    :param pos_tagger: (optional) A Tagger instance. If ``None``,\n        defaults to :class:`NLTKTagger <textblob.en.taggers.NLTKTagger>`.\n    :param analyzer: (optional) A sentiment analyzer. If ``None``,\n        defaults to :class:`PatternAnalyzer <textblob.en.sentiments.PatternAnalyzer>`.\n    :param parser: A parser. If ``None``, defaults to\n        :class:`PatternParser <textblob.en.parsers.PatternParser>`.\n    :param classifier: A classifier.\n\n    .. versionchanged:: 0.6.0\n        ``clean_html`` parameter deprecated, as it was in NLTK.\n    \"\"\"  # noqa: E501\n\n    np_extractor = FastNPExtractor()\n    pos_tagger = NLTKTagger()\n    tokenizer = WordTokenizer()\n    analyzer = PatternAnalyzer()\n    parser = PatternParser()\n\n    def __init__(\n        self,\n        text,\n        tokenizer=None,\n        pos_tagger=None,\n        np_extractor=None,\n        analyzer=None,\n        parser=None,\n        classifier=None,\n        clean_html=False,\n    ):\n        if not isinstance(text, basestring):\n            raise TypeError(\n                \"The `text` argument passed to `__init__(text)` \"\n                f\"must be a string, not {type(text)}\"\n            )\n        if clean_html:\n            raise NotImplementedError(\n                \"clean_html has been deprecated. \"\n                \"To remove HTML markup, use BeautifulSoup's \"\n                \"get_text() function\"\n            )\n        self.raw = self.string = text\n        self.stripped = lowerstrip(self.raw, all=True)\n        _initialize_models(\n            self, tokenizer, pos_tagger, np_extractor, analyzer, parser, classifier\n        )\n\n    @cached_property\n    def words(self):\n        \"\"\"Return a list of word tokens. This excludes punctuation characters.\n        If you want to include punctuation characters, access the ``tokens``\n        property.\n\n        :returns: A :class:`WordList <WordList>` of word tokens.\n        \"\"\"\n        return WordList(word_tokenize(self.raw, include_punc=False))\n\n    @cached_property\n    def tokens(self):\n        \"\"\"Return a list of tokens, using this blob's tokenizer object\n        (defaults to :class:`WordTokenizer <textblob.tokenizers.WordTokenizer>`).\n        \"\"\"\n        return WordList(self.tokenizer.tokenize(self.raw))\n\n    def tokenize(self, tokenizer=None):\n        \"\"\"Return a list of tokens, using ``tokenizer``.\n\n        :param tokenizer: (optional) A tokenizer object. If None, defaults to\n            this blob's default tokenizer.\n        \"\"\"\n        t = tokenizer if tokenizer is not None else self.tokenizer\n        return WordList(t.tokenize(self.raw))\n\n    def parse(self, parser=None):\n        \"\"\"Parse the text.\n\n        :param parser: (optional) A parser instance. If ``None``, defaults to\n            this blob's default parser.\n\n        .. versionadded:: 0.6.0\n        \"\"\"\n        p = parser if parser is not None else self.parser\n        return p.parse(self.raw)\n\n    def classify(self):\n        \"\"\"Classify the blob using the blob's ``classifier``.\"\"\"\n        if self.classifier is None:\n            raise NameError(\"This blob has no classifier. Train one first!\")\n        return self.classifier.classify(self.raw)\n\n    @cached_property\n    def sentiment(self):\n        \"\"\"Return a tuple of form (polarity, subjectivity ) where polarity\n        is a float within the range [-1.0, 1.0] and subjectivity is a float\n        within the range [0.0, 1.0] where 0.0 is very objective and 1.0 is\n        very subjective.\n\n        :rtype: namedtuple of the form ``Sentiment(polarity, subjectivity)``\n        \"\"\"\n        return self.analyzer.analyze(self.raw)\n\n    @cached_property\n    def sentiment_assessments(self):\n        \"\"\"Return a tuple of form (polarity, subjectivity, assessments ) where\n        polarity is a float within the range [-1.0, 1.0], subjectivity is a\n        float within the range [0.0, 1.0] where 0.0 is very objective and 1.0\n        is very subjective, and assessments is a list of polarity and\n        subjectivity scores for the assessed tokens.\n\n        :rtype: namedtuple of the form ``Sentiment(polarity, subjectivity,\n            assessments)``\n        \"\"\"\n        return self.analyzer.analyze(self.raw, keep_assessments=True)\n\n    @cached_property\n    def polarity(self):\n        \"\"\"Return the polarity score as a float within the range [-1.0, 1.0]\n\n        :rtype: float\n        \"\"\"\n        return PatternAnalyzer().analyze(self.raw)[0]\n\n    @cached_property\n    def subjectivity(self):\n        \"\"\"Return the subjectivity score as a float within the range [0.0, 1.0]\n        where 0.0 is very objective and 1.0 is very subjective.\n\n        :rtype: float\n        \"\"\"\n        return PatternAnalyzer().analyze(self.raw)[1]\n\n    @cached_property\n    def noun_phrases(self):\n        \"\"\"Returns a list of noun phrases for this blob.\"\"\"\n        return WordList(\n            [\n                phrase.strip().lower()\n                for phrase in self.np_extractor.extract(self.raw)\n                if len(phrase) > 1\n            ]\n        )\n\n    @cached_property\n    def pos_tags(self):\n        \"\"\"Returns an list of tuples of the form (word, POS tag).\n\n        Example:\n        ::\n\n            [\n                (\"At\", \"IN\"),\n                (\"eight\", \"CD\"),\n                (\"o'clock\", \"JJ\"),\n                (\"on\", \"IN\"),\n                (\"Thursday\", \"NNP\"),\n                (\"morning\", \"NN\"),\n            ]\n\n        :rtype: list of tuples\n        \"\"\"\n        if isinstance(self, TextBlob):\n            return [\n                val\n                for sublist in [s.pos_tags for s in self.sentences]\n                for val in sublist\n            ]\n        else:\n            return [\n                (Word(str(word), pos_tag=t), str(t))\n                for word, t in self.pos_tagger.tag(self)\n                if not PUNCTUATION_REGEX.match(str(t))\n            ]\n\n    tags = pos_tags\n\n    @cached_property\n    def word_counts(self):\n        \"\"\"Dictionary of word frequencies in this text.\"\"\"\n        counts = defaultdict(int)\n        stripped_words = [lowerstrip(word) for word in self.words]\n        for word in stripped_words:\n            counts[word] += 1\n        return counts\n\n    @cached_property\n    def np_counts(self):\n        \"\"\"Dictionary of noun phrase frequencies in this text.\"\"\"\n        counts = defaultdict(int)\n        for phrase in self.noun_phrases:\n            counts[phrase] += 1\n        return counts\n\n    def ngrams(self, n=3):\n        \"\"\"Return a list of n-grams (tuples of n successive words) for this\n        blob.\n\n        :rtype: List of :class:`WordLists <WordList>`\n        \"\"\"\n        if n <= 0:\n            return []\n        grams = [\n            WordList(self.words[i : i + n]) for i in range(len(self.words) - n + 1)\n        ]\n        return grams\n\n    def correct(self):\n        \"\"\"Attempt to correct the spelling of a blob.\n\n        .. versionadded:: 0.6.0\n\n        :rtype: :class:`BaseBlob <BaseBlob>`\n        \"\"\"\n        # regex matches: word or punctuation or whitespace\n        tokens = nltk.tokenize.regexp_tokenize(self.raw, r\"\\w+|[^\\w\\s]|\\s\")\n        corrected = (Word(w).correct() for w in tokens)\n        ret = \"\".join(corrected)\n        return self.__class__(ret)\n\n    def _cmpkey(self):\n        \"\"\"Key used by ComparableMixin to implement all rich comparison\n        operators.\n        \"\"\"\n        return self.raw\n\n    def _strkey(self):\n        \"\"\"Key used by StringlikeMixin to implement string methods.\"\"\"\n        return self.raw\n\n    def __hash__(self):\n        return hash(self._cmpkey())\n\n    def __add__(self, other):\n        \"\"\"Concatenates two text objects the same way Python strings are\n        concatenated.\n\n        Arguments:\n        - `other`: a string or a text object\n        \"\"\"\n        if isinstance(other, basestring):\n            return self.__class__(self.raw + other)\n        elif isinstance(other, BaseBlob):\n            return self.__class__(self.raw + other.raw)\n        else:\n            raise TypeError(\n                f\"Operands must be either strings or {self.__class__.__name__} objects\"\n            )\n\n    def split(self, sep=None, maxsplit=sys.maxsize):\n        \"\"\"Behaves like the built-in str.split() except returns a\n        WordList.\n\n        :rtype: :class:`WordList <WordList>`\n        \"\"\"\n        return WordList(self._strkey().split(sep, maxsplit))\n\n\nclass TextBlob(BaseBlob):\n    \"\"\"A general text block, meant for larger bodies of text (esp. those\n    containing sentences). Inherits from :class:`BaseBlob <BaseBlob>`.\n\n    :param str text: A string.\n    :param tokenizer: (optional) A tokenizer instance. If ``None``, defaults to\n        :class:`WordTokenizer() <textblob.tokenizers.WordTokenizer>`.\n    :param np_extractor: (optional) An NPExtractor instance. If ``None``,\n        defaults to :class:`FastNPExtractor() <textblob.en.np_extractors.FastNPExtractor>`.\n    :param pos_tagger: (optional) A Tagger instance. If ``None``, defaults to\n        :class:`NLTKTagger <textblob.en.taggers.NLTKTagger>`.\n    :param analyzer: (optional) A sentiment analyzer. If ``None``, defaults to\n        :class:`PatternAnalyzer <textblob.en.sentiments.PatternAnalyzer>`.\n    :param classifier: (optional) A classifier.\n    \"\"\"  # noqa: E501\n\n    @cached_property\n    def sentences(self):\n        \"\"\"Return list of :class:`Sentence <Sentence>` objects.\"\"\"\n        return self._create_sentence_objects()\n\n    @cached_property\n    def words(self):\n        \"\"\"Return a list of word tokens. This excludes punctuation characters.\n        If you want to include punctuation characters, access the ``tokens``\n        property.\n\n        :returns: A :class:`WordList <WordList>` of word tokens.\n        \"\"\"\n        return WordList(word_tokenize(self.raw, include_punc=False))\n\n    @property\n    def raw_sentences(self):\n        \"\"\"List of strings, the raw sentences in the blob.\"\"\"\n        return [sentence.raw for sentence in self.sentences]\n\n    @property\n    def serialized(self):\n        \"\"\"Returns a list of each sentence's dict representation.\"\"\"\n        return [sentence.dict for sentence in self.sentences]\n\n    def to_json(self, *args, **kwargs):\n        \"\"\"Return a json representation (str) of this blob.\n        Takes the same arguments as json.dumps.\n\n        .. versionadded:: 0.5.1\n        \"\"\"\n        return json.dumps(self.serialized, *args, **kwargs)\n\n    @property\n    def json(self):\n        \"\"\"The json representation of this blob.\n\n        .. versionchanged:: 0.5.1\n            Made ``json`` a property instead of a method to restore backwards\n            compatibility that was broken after version 0.4.0.\n        \"\"\"\n        return self.to_json()\n\n    def _create_sentence_objects(self):\n        \"\"\"Returns a list of Sentence objects from the raw text.\"\"\"\n        sentence_objects = []\n        sentences = sent_tokenize(self.raw)\n        char_index = 0  # Keeps track of character index within the blob\n        for sent in sentences:\n            # Compute the start and end indices of the sentence\n            # within the blob\n            start_index = self.raw.index(sent, char_index)\n            char_index += len(sent)\n            end_index = start_index + len(sent)\n            # Sentences share the same models as their parent blob\n            s = Sentence(\n                sent,\n                start_index=start_index,\n                end_index=end_index,\n                tokenizer=self.tokenizer,\n                np_extractor=self.np_extractor,\n                pos_tagger=self.pos_tagger,\n                analyzer=self.analyzer,\n                parser=self.parser,\n                classifier=self.classifier,\n            )\n            sentence_objects.append(s)\n        return sentence_objects\n\n\nclass Sentence(BaseBlob):\n    \"\"\"A sentence within a TextBlob. Inherits from :class:`BaseBlob <BaseBlob>`.\n\n    :param sentence: A string, the raw sentence.\n    :param start_index: An int, the index where this sentence begins\n                        in a TextBlob. If not given, defaults to 0.\n    :param end_index: An int, the index where this sentence ends in\n                        a TextBlob. If not given, defaults to the\n                        length of the sentence - 1.\n    \"\"\"\n\n    def __init__(self, sentence, start_index=0, end_index=None, *args, **kwargs):\n        super().__init__(sentence, *args, **kwargs)\n        #: The start index within a TextBlob\n        self.start = self.start_index = start_index\n        #: The end index within a textBlob\n        self.end = self.end_index = end_index or len(sentence) - 1\n\n    @property\n    def dict(self):\n        \"\"\"The dict representation of this sentence.\"\"\"\n        return {\n            \"raw\": self.raw,\n            \"start_index\": self.start_index,\n            \"end_index\": self.end_index,\n            \"stripped\": self.stripped,\n            \"noun_phrases\": self.noun_phrases,\n            \"polarity\": self.polarity,\n            \"subjectivity\": self.subjectivity,\n        }\n\n\nclass Blobber:\n    \"\"\"A factory for TextBlobs that all share the same tagger,\n    tokenizer, parser, classifier, and np_extractor.\n\n    Usage:\n\n        >>> from textblob import Blobber\n        >>> from textblob.taggers import NLTKTagger\n        >>> from textblob.tokenizers import SentenceTokenizer\n        >>> tb = Blobber(pos_tagger=NLTKTagger(), tokenizer=SentenceTokenizer())\n        >>> blob1 = tb(\"This is one blob.\")\n        >>> blob2 = tb(\"This blob has the same tagger and tokenizer.\")\n        >>> blob1.pos_tagger is blob2.pos_tagger\n        True\n\n    :param tokenizer: (optional) A tokenizer instance. If ``None``,\n        defaults to :class:`WordTokenizer() <textblob.tokenizers.WordTokenizer>`.\n    :param np_extractor: (optional) An NPExtractor instance. If ``None``,\n        defaults to :class:`FastNPExtractor() <textblob.en.np_extractors.FastNPExtractor>`.\n    :param pos_tagger: (optional) A Tagger instance. If ``None``,\n        defaults to :class:`NLTKTagger <textblob.en.taggers.NLTKTagger>`.\n    :param analyzer: (optional) A sentiment analyzer. If ``None``,\n        defaults to :class:`PatternAnalyzer <textblob.en.sentiments.PatternAnalyzer>`.\n    :param parser: A parser. If ``None``, defaults to\n        :class:`PatternParser <textblob.en.parsers.PatternParser>`.\n    :param classifier: A classifier.\n\n    .. versionadded:: 0.4.0\n    \"\"\"  # noqa: E501\n\n    np_extractor = FastNPExtractor()\n    pos_tagger = NLTKTagger()\n    tokenizer = WordTokenizer()\n    analyzer = PatternAnalyzer()\n    parser = PatternParser()\n\n    def __init__(\n        self,\n        tokenizer=None,\n        pos_tagger=None,\n        np_extractor=None,\n        analyzer=None,\n        parser=None,\n        classifier=None,\n    ):\n        _initialize_models(\n            self, tokenizer, pos_tagger, np_extractor, analyzer, parser, classifier\n        )\n\n    def __call__(self, text):\n        \"\"\"Return a new TextBlob object with this Blobber's ``np_extractor``,\n        ``pos_tagger``, ``tokenizer``, ``analyzer``, and ``classifier``.\n\n        :returns: A new :class:`TextBlob <TextBlob>`.\n        \"\"\"\n        return TextBlob(\n            text,\n            tokenizer=self.tokenizer,\n            pos_tagger=self.pos_tagger,\n            np_extractor=self.np_extractor,\n            analyzer=self.analyzer,\n            parser=self.parser,\n            classifier=self.classifier,\n        )\n\n    def __repr__(self):\n        classifier_name = (\n            self.classifier.__class__.__name__ + \"()\" if self.classifier else \"None\"\n        )\n        return (\n            f\"Blobber(tokenizer={self.tokenizer.__class__.__name__}(), \"\n            f\"pos_tagger={self.pos_tagger.__class__.__name__}(), \"\n            f\"np_extractor={self.np_extractor.__class__.__name__}(), \"\n            f\"analyzer={self.analyzer.__class__.__name__}(), \"\n            f\"parser={self.parser.__class__.__name__}(), \"\n            f\"classifier={classifier_name})\"\n        )\n\n    __str__ = __repr__\n"
  },
  {
    "path": "src/textblob/classifiers.py",
    "content": "\"\"\"Various classifier implementations. Also includes basic feature extractor\nmethods.\n\nExample Usage:\n::\n\n    >>> from textblob import TextBlob\n    >>> from textblob.classifiers import NaiveBayesClassifier\n    >>> train = [\n    ...     ('I love this sandwich.', 'pos'),\n    ...     ('This is an amazing place!', 'pos'),\n    ...     ('I feel very good about these beers.', 'pos'),\n    ...     ('I do not like this restaurant', 'neg'),\n    ...     ('I am tired of this stuff.', 'neg'),\n    ...     (\"I can't deal with this\", 'neg'),\n    ...     (\"My boss is horrible.\", \"neg\")\n    ... ]\n    >>> cl = NaiveBayesClassifier(train)\n    >>> cl.classify(\"I feel amazing!\")\n    'pos'\n    >>> blob = TextBlob(\"The beer is good. But the hangover is horrible.\", classifier=cl)\n    >>> for s in blob.sentences:\n    ...     print(s)\n    ...     print(s.classify())\n    ...\n    The beer is good.\n    pos\n    But the hangover is horrible.\n    neg\n\n.. versionadded:: 0.6.0\n\"\"\"  # noqa: E501\n\nfrom itertools import chain\n\nimport nltk\n\nimport textblob.formats as formats\nfrom textblob.decorators import cached_property\nfrom textblob.exceptions import FormatError\nfrom textblob.tokenizers import word_tokenize\nfrom textblob.utils import is_filelike, strip_punc\n\nbasestring = (str, bytes)\n\n### Basic feature extractors ###\n\n\ndef _get_words_from_dataset(dataset):\n    \"\"\"Return a set of all words in a dataset.\n\n    :param dataset: A list of tuples of the form ``(words, label)`` where\n        ``words`` is either a string of a list of tokens.\n    \"\"\"\n\n    # Words may be either a string or a list of tokens. Return an iterator\n    # of tokens accordingly\n    def tokenize(words):\n        if isinstance(words, basestring):\n            return word_tokenize(words, include_punc=False)\n        else:\n            return words\n\n    all_words = chain.from_iterable(tokenize(words) for words, _ in dataset)\n    return set(all_words)\n\n\ndef _get_document_tokens(document):\n    if isinstance(document, basestring):\n        tokens = set(\n            strip_punc(w, all=False)\n            for w in word_tokenize(document, include_punc=False)\n        )\n    else:\n        tokens = set(strip_punc(w, all=False) for w in document)\n    return tokens\n\n\ndef basic_extractor(document, train_set):\n    \"\"\"A basic document feature extractor that returns a dict indicating\n    what words in ``train_set`` are contained in ``document``.\n\n    :param document: The text to extract features from. Can be a string or an iterable.\n    :param list train_set: Training data set, a list of tuples of the form\n        ``(words, label)`` OR an iterable of strings.\n    \"\"\"\n\n    try:\n        el_zero = next(iter(train_set))  # Infer input from first element.\n    except StopIteration:\n        return {}\n    if isinstance(el_zero, basestring):\n        word_features = [w for w in chain([el_zero], train_set)]\n    else:\n        try:\n            assert isinstance(el_zero[0], basestring)\n            word_features = _get_words_from_dataset(chain([el_zero], train_set))\n        except Exception as error:\n            raise ValueError(\"train_set is probably malformed.\") from error\n\n    tokens = _get_document_tokens(document)\n    features = dict((f\"contains({word})\", (word in tokens)) for word in word_features)\n    return features\n\n\ndef contains_extractor(document):\n    \"\"\"A basic document feature extractor that returns a dict of words that\n    the document contains.\n    \"\"\"\n    tokens = _get_document_tokens(document)\n    features = dict((f\"contains({w})\", True) for w in tokens)\n    return features\n\n\n##### CLASSIFIERS #####\n\n\nclass BaseClassifier:\n    \"\"\"Abstract classifier class from which all classifers inherit. At a\n    minimum, descendant classes must implement a ``classify`` method and have\n    a ``classifier`` property.\n\n    :param train_set: The training set, either a list of tuples of the form\n        ``(text, classification)`` or a file-like object. ``text`` may be either\n        a string or an iterable.\n    :param callable feature_extractor: A feature extractor function that takes one or\n        two arguments: ``document`` and ``train_set``.\n    :param str format: If ``train_set`` is a filename, the file format, e.g.\n        ``\"csv\"`` or ``\"json\"``. If ``None``, will attempt to detect the\n        file format.\n    :param kwargs: Additional keyword arguments are passed to the constructor\n        of the :class:`Format <textblob.formats.BaseFormat>` class used to\n        read the data. Only applies when a file-like object is passed as\n        ``train_set``.\n\n    .. versionadded:: 0.6.0\n    \"\"\"\n\n    def __init__(\n        self, train_set, feature_extractor=basic_extractor, format=None, **kwargs\n    ):\n        self.format_kwargs = kwargs\n        self.feature_extractor = feature_extractor\n        if is_filelike(train_set):\n            self.train_set = self._read_data(train_set, format)\n        else:  # train_set is a list of tuples\n            self.train_set = train_set\n        self._word_set = _get_words_from_dataset(\n            self.train_set\n        )  # Keep a hidden set of unique words.\n        self.train_features = None\n\n    def _read_data(self, dataset, format=None):\n        \"\"\"Reads a data file and returns an iterable that can be used\n        as testing or training data.\n        \"\"\"\n        # Attempt to detect file format if \"format\" isn't specified\n        if not format:\n            format_class = formats.detect(dataset)\n            if not format_class:\n                raise FormatError(\n                    \"Could not automatically detect format for the given data source.\"\n                )\n        else:\n            registry = formats.get_registry()\n            if format not in registry.keys():\n                raise ValueError(f\"'{format}' format not supported.\")\n            format_class = registry[format]\n        return format_class(dataset, **self.format_kwargs).to_iterable()\n\n    @cached_property\n    def classifier(self):\n        \"\"\"The classifier object.\"\"\"\n        raise NotImplementedError('Must implement the \"classifier\" property.')\n\n    def classify(self, text):\n        \"\"\"Classifies a string of text.\"\"\"\n        raise NotImplementedError('Must implement a \"classify\" method.')\n\n    def train(self, labeled_featureset):\n        \"\"\"Trains the classifier.\"\"\"\n        raise NotImplementedError('Must implement a \"train\" method.')\n\n    def labels(self):\n        \"\"\"Returns an iterable containing the possible labels.\"\"\"\n        raise NotImplementedError('Must implement a \"labels\" method.')\n\n    def extract_features(self, text):\n        \"\"\"Extracts features from a body of text.\n\n        :rtype: dictionary of features\n        \"\"\"\n        # Feature extractor may take one or two arguments\n        try:\n            return self.feature_extractor(text, self._word_set)\n        except (TypeError, AttributeError):\n            return self.feature_extractor(text)\n\n\nclass NLTKClassifier(BaseClassifier):\n    \"\"\"An abstract class that wraps around the nltk.classify module.\n\n    Expects that descendant classes include a class variable ``nltk_class``\n    which is the class in the nltk.classify module to be wrapped.\n\n    Example: ::\n\n        class MyClassifier(NLTKClassifier):\n            nltk_class = nltk.classify.svm.SvmClassifier\n    \"\"\"\n\n    #: The NLTK class to be wrapped. Must be a class within nltk.classify\n    nltk_class = None\n\n    def __init__(\n        self, train_set, feature_extractor=basic_extractor, format=None, **kwargs\n    ):\n        super().__init__(train_set, feature_extractor, format, **kwargs)\n        self.train_features = [(self.extract_features(d), c) for d, c in self.train_set]\n\n    def __repr__(self):\n        class_name = self.__class__.__name__\n        return f\"<{class_name} trained on {len(self.train_set)} instances>\"\n\n    @cached_property\n    def classifier(self):\n        \"\"\"The classifier.\"\"\"\n        try:\n            return self.train()\n        except AttributeError as error:  # nltk_class has not been defined\n            raise ValueError(\n                \"NLTKClassifier must have a nltk_class variable that is not None.\"\n            ) from error\n\n    def train(self, *args, **kwargs):\n        \"\"\"Train the classifier with a labeled feature set and return\n        the classifier. Takes the same arguments as the wrapped NLTK class.\n        This method is implicitly called when calling ``classify`` or\n        ``accuracy`` methods and is included only to allow passing in arguments\n        to the ``train`` method of the wrapped NLTK class.\n\n        .. versionadded:: 0.6.2\n\n        :rtype: A classifier\n        \"\"\"\n        try:\n            self.classifier = self.nltk_class.train(\n                self.train_features, *args, **kwargs\n            )\n            return self.classifier\n        except AttributeError as error:\n            raise ValueError(\n                \"NLTKClassifier must have a nltk_class variable that is not None.\"\n            ) from error\n\n    def labels(self):\n        \"\"\"Return an iterable of possible labels.\"\"\"\n        return self.classifier.labels()\n\n    def classify(self, text):\n        \"\"\"Classifies the text.\n\n        :param str text: A string of text.\n        \"\"\"\n        text_features = self.extract_features(text)\n        return self.classifier.classify(text_features)\n\n    def accuracy(self, test_set, format=None):\n        \"\"\"Compute the accuracy on a test set.\n\n        :param test_set: A list of tuples of the form ``(text, label)``, or a\n            file pointer.\n        :param format: If ``test_set`` is a filename, the file format, e.g.\n            ``\"csv\"`` or ``\"json\"``. If ``None``, will attempt to detect the\n            file format.\n        \"\"\"\n        if is_filelike(test_set):\n            test_data = self._read_data(test_set, format)\n        else:  # test_set is a list of tuples\n            test_data = test_set\n        test_features = [(self.extract_features(d), c) for d, c in test_data]\n        return nltk.classify.accuracy(self.classifier, test_features)\n\n    def update(self, new_data, *args, **kwargs):\n        \"\"\"Update the classifier with new training data and re-trains the\n        classifier.\n\n        :param new_data: New data as a list of tuples of the form\n            ``(text, label)``.\n        \"\"\"\n        self.train_set += new_data\n        self._word_set.update(_get_words_from_dataset(new_data))\n        self.train_features = [(self.extract_features(d), c) for d, c in self.train_set]\n        try:\n            self.classifier = self.nltk_class.train(\n                self.train_features, *args, **kwargs\n            )\n        except AttributeError as error:  # Descendant has not defined nltk_class\n            raise ValueError(\n                \"NLTKClassifier must have a nltk_class variable that is not None.\"\n            ) from error\n        return True\n\n\nclass NaiveBayesClassifier(NLTKClassifier):\n    \"\"\"A classifier based on the Naive Bayes algorithm, as implemented in\n    NLTK.\n\n    :param train_set: The training set, either a list of tuples of the form\n        ``(text, classification)`` or a filename. ``text`` may be either\n        a string or an iterable.\n    :param feature_extractor: A feature extractor function that takes one or\n        two arguments: ``document`` and ``train_set``.\n    :param format: If ``train_set`` is a filename, the file format, e.g.\n        ``\"csv\"`` or ``\"json\"``. If ``None``, will attempt to detect the\n        file format.\n\n    .. versionadded:: 0.6.0\n    \"\"\"\n\n    nltk_class = nltk.classify.NaiveBayesClassifier\n\n    def prob_classify(self, text):\n        \"\"\"Return the label probability distribution for classifying a string\n        of text.\n\n        Example:\n        ::\n\n            >>> classifier = NaiveBayesClassifier(train_data)\n            >>> prob_dist = classifier.prob_classify(\"I feel happy this morning.\")\n            >>> prob_dist.max()\n            'positive'\n            >>> prob_dist.prob(\"positive\")\n            0.7\n\n        :rtype: nltk.probability.DictionaryProbDist\n        \"\"\"\n        text_features = self.extract_features(text)\n        return self.classifier.prob_classify(text_features)\n\n    def informative_features(self, *args, **kwargs):\n        \"\"\"Return the most informative features as a list of tuples of the\n        form ``(feature_name, feature_value)``.\n\n        :rtype: list\n        \"\"\"\n        return self.classifier.most_informative_features(*args, **kwargs)\n\n    def show_informative_features(self, *args, **kwargs):\n        \"\"\"Displays a listing of the most informative features for this\n        classifier.\n\n        :rtype: None\n        \"\"\"\n        return self.classifier.show_most_informative_features(*args, **kwargs)\n\n\nclass DecisionTreeClassifier(NLTKClassifier):\n    \"\"\"A classifier based on the decision tree algorithm, as implemented in\n    NLTK.\n\n    :param train_set: The training set, either a list of tuples of the form\n        ``(text, classification)`` or a filename. ``text`` may be either\n        a string or an iterable.\n    :param feature_extractor: A feature extractor function that takes one or\n        two arguments: ``document`` and ``train_set``.\n    :param format: If ``train_set`` is a filename, the file format, e.g.\n        ``\"csv\"`` or ``\"json\"``. If ``None``, will attempt to detect the\n        file format.\n\n    .. versionadded:: 0.6.2\n    \"\"\"\n\n    nltk_class = nltk.classify.decisiontree.DecisionTreeClassifier\n\n    def pretty_format(self, *args, **kwargs):\n        \"\"\"Return a string containing a pretty-printed version of this decision\n        tree. Each line in the string corresponds to a single decision tree node\n        or leaf, and indentation is used to display the structure of the tree.\n\n        :rtype: str\n        \"\"\"\n        return self.classifier.pretty_format(*args, **kwargs)\n\n    # Backwards-compat\n    pprint = pretty_format\n\n    def pseudocode(self, *args, **kwargs):\n        \"\"\"Return a string representation of this decision tree that expresses\n        the decisions it makes as a nested set of pseudocode if statements.\n\n        :rtype: str\n        \"\"\"\n        return self.classifier.pseudocode(*args, **kwargs)\n\n\nclass PositiveNaiveBayesClassifier(NLTKClassifier):\n    \"\"\"A variant of the Naive Bayes Classifier that performs binary\n    classification with partially-labeled training sets, i.e. when only\n    one class is labeled and the other is not. Assuming a prior distribution\n    on the two labels, uses the unlabeled set to estimate the frequencies of\n    the features.\n\n    Example usage:\n    ::\n\n        >>> from text.classifiers import PositiveNaiveBayesClassifier\n        >>> sports_sentences = ['The team dominated the game',\n        ...                   'They lost the ball',\n        ...                   'The game was intense',\n        ...                   'The goalkeeper catched the ball',\n        ...                   'The other team controlled the ball']\n        >>> various_sentences = ['The President did not comment',\n        ...                        'I lost the keys',\n        ...                        'The team won the game',\n        ...                        'Sara has two kids',\n        ...                        'The ball went off the court',\n        ...                        'They had the ball for the whole game',\n        ...                        'The show is over']\n        >>> classifier = PositiveNaiveBayesClassifier(positive_set=sports_sentences,\n        ...                                           unlabeled_set=various_sentences)\n        >>> classifier.classify(\"My team lost the game\")\n        True\n        >>> classifier.classify(\"And now for something completely different.\")\n        False\n\n\n    :param positive_set: A collection of strings that have the positive label.\n    :param unlabeled_set: A collection of unlabeled strings.\n    :param feature_extractor: A feature extractor function.\n    :param positive_prob_prior: A prior estimate of the probability of the\n        label ``True``.\n\n    .. versionadded:: 0.7.0\n    \"\"\"\n\n    nltk_class = nltk.classify.PositiveNaiveBayesClassifier\n\n    def __init__(\n        self,\n        positive_set,\n        unlabeled_set,\n        feature_extractor=contains_extractor,\n        positive_prob_prior=0.5,\n        **kwargs,\n    ):\n        self.feature_extractor = feature_extractor\n        self.positive_set = positive_set\n        self.unlabeled_set = unlabeled_set\n        self.positive_features = [self.extract_features(d) for d in self.positive_set]\n        self.unlabeled_features = [self.extract_features(d) for d in self.unlabeled_set]\n        self.positive_prob_prior = positive_prob_prior\n\n    def __repr__(self):\n        class_name = self.__class__.__name__\n        return (\n            f\"<{class_name} trained on {len(self.positive_set)} labeled \"\n            f\"and {len(self.unlabeled_set)} unlabeled instances>\"\n        )\n\n    # Override\n    def train(self, *args, **kwargs):\n        \"\"\"Train the classifier with a labeled and unlabeled feature sets and return\n        the classifier. Takes the same arguments as the wrapped NLTK class.\n        This method is implicitly called when calling ``classify`` or\n        ``accuracy`` methods and is included only to allow passing in arguments\n        to the ``train`` method of the wrapped NLTK class.\n\n        :rtype: A classifier\n        \"\"\"\n        self.classifier = self.nltk_class.train(\n            self.positive_features, self.unlabeled_features, self.positive_prob_prior\n        )\n        return self.classifier\n\n    def update(\n        self,\n        new_positive_data=None,\n        new_unlabeled_data=None,\n        positive_prob_prior=0.5,\n        *args,\n        **kwargs,\n    ):\n        \"\"\"Update the classifier with new data and re-trains the\n        classifier.\n\n        :param new_positive_data: List of new, labeled strings.\n        :param new_unlabeled_data: List of new, unlabeled strings.\n        \"\"\"\n        self.positive_prob_prior = positive_prob_prior\n        if new_positive_data:\n            self.positive_set += new_positive_data\n            self.positive_features += [\n                self.extract_features(d) for d in new_positive_data\n            ]\n        if new_unlabeled_data:\n            self.unlabeled_set += new_unlabeled_data\n            self.unlabeled_features += [\n                self.extract_features(d) for d in new_unlabeled_data\n            ]\n        self.classifier = self.nltk_class.train(\n            self.positive_features,\n            self.unlabeled_features,\n            self.positive_prob_prior,\n            *args,\n            **kwargs,\n        )\n        return True\n\n\nclass MaxEntClassifier(NLTKClassifier):\n    __doc__ = nltk.classify.MaxentClassifier.__doc__\n    nltk_class = nltk.classify.MaxentClassifier\n\n    def prob_classify(self, text):\n        \"\"\"Return the label probability distribution for classifying a string\n        of text.\n\n        Example:\n        ::\n\n            >>> classifier = MaxEntClassifier(train_data)\n            >>> prob_dist = classifier.prob_classify(\"I feel happy this morning.\")\n            >>> prob_dist.max()\n            'positive'\n            >>> prob_dist.prob(\"positive\")\n            0.7\n\n        :rtype: nltk.probability.DictionaryProbDist\n        \"\"\"\n        feats = self.extract_features(text)\n        return self.classifier.prob_classify(feats)\n"
  },
  {
    "path": "src/textblob/decorators.py",
    "content": "\"\"\"Custom decorators.\"\"\"\n\nfrom __future__ import annotations\n\nfrom functools import wraps\nfrom typing import TYPE_CHECKING\n\nfrom textblob.exceptions import MissingCorpusError\n\nif TYPE_CHECKING:\n    from collections.abc import Callable\n    from typing import TypeVar\n\n    ReturnType = TypeVar(\"ReturnType\")\n\n\nclass cached_property:\n    \"\"\"A property that is only computed once per instance and then replaces\n    itself with an ordinary attribute. Deleting the attribute resets the\n    property.\n\n    Credit to Marcel Hellkamp, author of bottle.py.\n    \"\"\"\n\n    def __init__(self, func):\n        self.__doc__ = func.__doc__\n        self.func = func\n\n    def __get__(self, obj, cls):\n        if obj is None:\n            return self\n        value = obj.__dict__[self.func.__name__] = self.func(obj)\n        return value\n\n\ndef requires_nltk_corpus(\n    func: Callable[..., ReturnType],\n) -> Callable[..., ReturnType]:\n    \"\"\"Wraps a function that requires an NLTK corpus. If the corpus isn't found,\n    raise a :exc:`MissingCorpusError`.\n    \"\"\"\n\n    @wraps(func)\n    def decorated(*args, **kwargs):\n        try:\n            return func(*args, **kwargs)\n        except LookupError as error:\n            raise MissingCorpusError() from error\n\n    return decorated\n"
  },
  {
    "path": "src/textblob/download_corpora.py",
    "content": "#!/usr/bin/env python\n\"\"\"Downloads the necessary NLTK corpora for TextBlob.\n\nUsage: ::\n\n    $ python -m textblob.download_corpora\n\nIf you only intend to use TextBlob's default models, you can use the \"lite\"\noption: ::\n\n    $ python -m textblob.download_corpora lite\n\n\"\"\"\n\nimport sys\n\nimport nltk\n\nMIN_CORPORA = [\n    \"brown\",  # Required for FastNPExtractor\n    \"punkt_tab\",  # Required for WordTokenizer\n    \"wordnet\",  # Required for lemmatization\n    \"averaged_perceptron_tagger_eng\",  # Required for NLTKTagger\n]\n\nADDITIONAL_CORPORA = [\n    \"conll2000\",  # Required for ConllExtractor\n    \"movie_reviews\",  # Required for NaiveBayesAnalyzer\n]\n\nALL_CORPORA = MIN_CORPORA + ADDITIONAL_CORPORA\n\n\ndef download_lite():\n    for each in MIN_CORPORA:\n        nltk.download(each)\n\n\ndef download_all():\n    for each in ALL_CORPORA:\n        nltk.download(each)\n\n\ndef main():\n    if \"lite\" in sys.argv:\n        download_lite()\n    else:\n        download_all()\n    print(\"Finished.\")\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "src/textblob/en/__init__.py",
    "content": "\"\"\"This file is based on pattern.en. See the bundled NOTICE file for\nlicense information.\n\"\"\"\nimport os\n\nfrom textblob._text import CHUNK, PENN, PNP, POS, UNIVERSAL, WORD, Lexicon, Spelling\nfrom textblob._text import Parser as _Parser\nfrom textblob._text import Sentiment as _Sentiment\n\ntry:\n    MODULE = os.path.dirname(os.path.abspath(__file__))\nexcept:\n    MODULE = \"\"\n\nspelling = Spelling(path=os.path.join(MODULE, \"en-spelling.txt\"))\n\n# --- ENGLISH PARSER --------------------------------------------------------------------------------\n\n\ndef find_lemmata(tokens):\n    \"\"\"Annotates the tokens with lemmata for plural nouns and conjugated verbs,\n    where each token is a [word, part-of-speech] list.\n    \"\"\"\n    for token in tokens:\n        word, pos, lemma = token[0], token[1], token[0]\n        # cats => cat\n        if pos == \"NNS\":\n            lemma = singularize(word)\n        # sat => sit\n        if pos.startswith((\"VB\", \"MD\")):\n            lemma = conjugate(word, INFINITIVE) or word\n        token.append(lemma.lower())\n    return tokens\n\n\nclass Parser(_Parser):\n    def find_lemmata(self, tokens, **kwargs):\n        return find_lemmata(tokens)\n\n    def find_tags(self, tokens, **kwargs):\n        if kwargs.get(\"tagset\") in (PENN, None):\n            kwargs.setdefault(\"map\", lambda token, tag: (token, tag))\n        if kwargs.get(\"tagset\") == UNIVERSAL:\n            kwargs.setdefault(\n                \"map\", lambda token, tag: penntreebank2universal(token, tag)\n            )\n        return _Parser.find_tags(self, tokens, **kwargs)\n\n\nclass Sentiment(_Sentiment):\n    def load(self, path=None):\n        _Sentiment.load(self, path)\n        # Map \"terrible\" to adverb \"terribly\" (+1% accuracy)\n        if not path:\n            for w, pos in list(dict.items(self)):\n                if \"JJ\" in pos:\n                    if w.endswith(\"y\"):\n                        w = w[:-1] + \"i\"\n                    if w.endswith(\"le\"):\n                        w = w[:-2]\n                    p, s, i = pos[\"JJ\"]\n                    self.annotate(w + \"ly\", \"RB\", p, s, i)\n\n\nlexicon = Lexicon(\n    path=os.path.join(MODULE, \"en-lexicon.txt\"),\n    morphology=os.path.join(MODULE, \"en-morphology.txt\"),\n    context=os.path.join(MODULE, \"en-context.txt\"),\n    entities=os.path.join(MODULE, \"en-entities.txt\"),\n    language=\"en\",\n)\nparser = Parser(lexicon=lexicon, default=(\"NN\", \"NNP\", \"CD\"), language=\"en\")\n\nsentiment = Sentiment(\n    path=os.path.join(MODULE, \"en-sentiment.xml\"),\n    synset=\"wordnet_id\",\n    negations=(\"no\", \"not\", \"n't\", \"never\"),\n    modifiers=(\"RB\",),\n    modifier=lambda w: w.endswith(\"ly\"),\n    tokenizer=parser.find_tokens,\n    language=\"en\",\n)\n\n\ndef tokenize(s, *args, **kwargs):\n    \"\"\"Returns a list of sentences, where punctuation marks have been split from words.\"\"\"\n    return parser.find_tokens(str(s), *args, **kwargs)\n\n\ndef parse(s, *args, **kwargs):\n    \"\"\"Returns a tagged str string.\"\"\"\n    return parser.parse(str(s), *args, **kwargs)\n\n\ndef parsetree(s, *args, **kwargs):\n    \"\"\"Returns a parsed Text from the given string.\"\"\"\n    return Text(parse(str(s), *args, **kwargs))\n\n\ndef split(s, token=None):\n    \"\"\"Returns a parsed Text from the given parsed string.\"\"\"\n    if token is None:\n        token = [WORD, POS, CHUNK, PNP]\n    return Text(str(s), token)\n\n\ndef tag(s, tokenize=True, encoding=\"utf-8\"):\n    \"\"\"Returns a list of (token, tag)-tuples from the given string.\"\"\"\n    tags = []\n    for sentence in parse(s, tokenize, True, False, False, False, encoding).split():\n        for token in sentence:\n            tags.append((token[0], token[1]))\n    return tags\n\n\ndef suggest(w):\n    \"\"\"Returns a list of (word, confidence)-tuples of spelling corrections.\"\"\"\n    return spelling.suggest(w)\n\n\ndef polarity(s, **kwargs):\n    \"\"\"Returns the sentence polarity (positive/negative) between -1.0 and 1.0.\"\"\"\n    return sentiment(str(s), **kwargs)[0]\n\n\ndef subjectivity(s, **kwargs):\n    \"\"\"Returns the sentence subjectivity (objective/subjective) between 0.0 and 1.0.\"\"\"\n    return sentiment(str(s), **kwargs)[1]\n\n\ndef positive(s, threshold=0.1, **kwargs):\n    \"\"\"Returns True if the given sentence has a positive sentiment (polarity >= threshold).\"\"\"\n    return polarity(str(s), **kwargs) >= threshold\n"
  },
  {
    "path": "src/textblob/en/en-context.txt",
    "content": ";;;   \n;;;   The contextual rules are based on Brill's rule based tagger v1.14,\n;;;   trained on Brown corpus and Penn Treebank.\n;;;   \nIN VB PREVTAG PRP\nNN VB PREVTAG TO\nVBP VB PREV1OR2OR3TAG MD\nNN VB PREV1OR2TAG MD\nVB NN PREV1OR2TAG DT\nVBD VBN PREV1OR2OR3TAG VBZ\nVBN VBD PREVTAG PRP\nVBN VBD PREVTAG NNP\nVBD VBN PREVTAG VBD\nVBP VB PREVTAG TO\nPOS VBZ PREVTAG PRP\nVB VBP PREVTAG NNS\nIN RB WDAND2AFT as as\nVBD VBN PREV1OR2WD have\nIN WDT NEXT1OR2TAG VB\nVB VBP PREVTAG PRP\nVBP VB PREV1OR2WD n't\nIN WDT NEXTTAG VBZ\nJJ NNP NEXTTAG NNP\nIN WDT NEXTTAG VBD\nJJ NN NEXTWD of\nVBD VBN PREV1OR2WD be\nJJR RBR NEXTTAG JJ\nIN WDT NEXTTAG VBP\nJJS RBS WDNEXTTAG most JJ\nVBN VBD SURROUNDTAG NN DT\nNNS VBZ PREVTAG PRP\nPOS VBZ NEXT1OR2TAG DT\nNNP NN SURROUNDTAG STAART NNS\nVBD VBN NEXTWD by\nVB NN PREV1OR2TAG IN\nVB VBP PREVTAG WDT\nVBG NN PREVTAG JJ\nNNS VBZ NEXTTAG DT\nVBN VBD PREVTAG WP\nNN VBP PREVTAG NNS\nVB NN PREVTAG NN\nNN VB PREVWD n't\nNN VBG NEXTTAG DT\nRB JJ NEXTTAG NN\nNN VBP PREVTAG PRP\nVBN VBD SURROUNDTAG NNS DT\nVB NN PREV1OR2TAG POS\nJJ NN NEXTTAG VBD\nRB RP WDNEXTTAG up DT\nJJ VB PREVTAG TO\nVBN VBD SURROUNDTAG , DT\nVBN VBD PREVWD that\nVB VBP PREVBIGRAM NNS RB\nNNP JJ SURROUNDTAG STAART NN\nVB VBN PREVTAG VBZ\nNNP JJ WDNEXTTAG American NNS\nJJ RB NEXTTAG JJR\nNNS NN CURWD yen\nIN WDT NEXTTAG VBD\nDT IN WDAND2TAGAFT that NNS\nPOS VBZ PREVWD that\nJJ VB PREVTAG MD\nVB NN PREVTAG JJ\nJJR RBR NEXTTAG RB\nVBD VBN PREV1OR2WD are\nNN JJ WDNEXTTAG executive NN\nNNP JJ WDNEXTTAG American NN\nVBN VBD PREVTAG WDT\nVBD VBN PREVBIGRAM VBD RB\nJJ NN SURROUNDTAG DT .\nNNP JJ NEXTWD German\nVBN VB PREVTAG TO\nVBN VBD PREVBIGRAM NNP RB\nRB IN RBIGRAM up to\nVB VBP PREVTAG WP\nJJ NN SURROUNDTAG DT IN\nIN DT NEXTWD 's\nVBD VBN WDNEXTTAG ended NNP\nVBD VBN SURROUNDTAG DT NN\nNNS NNP NEXTTAG NNP\nNN NNP NEXTTAG NNP\nVBG NN SURROUNDTAG DT IN\nNNP JJ SURROUNDTAG STAART NNS\nRB RP WDPREVTAG VB up\nVBN VBD PREVBIGRAM PRP RB\nJJ RB NEXTTAG VBN\nNN VBP PREVTAG RB\nNNS VBZ PREVTAG RB\nPOS VBZ PREVTAG WP\nVB VBN PREVWD have\nNN PDT WDNEXTTAG half DT\nIN WDT NEXTTAG MD\nPOS VBZ PREVTAG DT\nNN NNP CURWD Integrated\nPOS '' NEXT1OR2TAG ''\nVBD VBN PREVTAG IN\nJJR RBR NEXT1OR2TAG VBN\nJJS RBS WDNEXTTAG most RB\nJJ NN SURROUNDTAG JJ IN\nVBZ NNS PREVTAG JJ\nNNS VBZ WDPREVTAG JJ is\nJJ NN NEXTTAG VBZ\nVBP NN PREVTAG DT\nJJ NN SURROUNDTAG JJ .\nNNPS NNP NEXTTAG NNP\nWDT DT PREVTAG CC\nRB IN WDNEXTTAG so PRP\nVBP NN PREVWD earnings\nNN VBG PREVWD is\nNNS VBZ PREV1OR2WD Mr.\nVBZ NNS PREVWD the\nRB RP WDPREVTAG VBN up\nNNPS NNS PREVTAG STAART\nVBN VBD SURROUNDTAG NN JJ\nVBP VB PREV2TAG VB\nRBR JJR NEXTTAG NNS\nJJ NN SURROUNDTAG DT ,\nJJ NN SURROUNDTAG IN .\nNN VB PREVTAG TO\nVB NN PREVTAG VB\nNN VBP PREVWD who\nRB RP WDPREVTAG VBG up\nNN RB WDNEXTTAG right RB\nVBZ POS WDPREVTAG NNP 's\nJJ RP WDNEXTTAG up NN\nVBN VBD SURROUNDTAG NN NN\nVBN VBD SURROUNDTAG CC DT\nJJ NN NEXTBIGRAM MD VB\nJJ RB WDNEXTTAG early IN\nJJ VBN SURROUNDTAG STAART IN\nIN RB RBIGRAM though ,\nVBD VBN PREV1OR2WD been\nDT PDT WDNEXTTAG all DT\nVBN VBD PREVBIGRAM NN RB\nNN VB PREVWD help\nVBP VB PREV1OR2WD not\nVBP NN PREVTAG JJ\nDT WDT PREVTAG NNS\nNN VBP PREVTAG WDT\nVB RB RBIGRAM close to\nNNS VBZ PREVBIGRAM , WDT\nIN RP WDNEXTTAG out DT\nDT RB NEXTWD longer\nIN JJ SURROUNDTAG DT NN\nDT WDT SURROUNDTAG NN VBZ\nIN VB NEXT2TAG VB\nIN NN PREVTAG DT\nVBN VBD SURROUNDTAG NNS NNS\nIN RB RBIGRAM about $\nEX RB NEXT1OR2TAG IN\nNN VBG NEXTTAG PRP$\nNN VBG CURWD living\nVBZ NNS PREVTAG PRP$\nRBR JJR NEXTTAG NN\nRBR JJR CURWD higher\nVB VBP PREVBIGRAM PRP RB\nNN VB PREVTAG MD\nVB NN PREV1OR2TAG PRP$\nRP IN PREV1OR2TAG ,\nVB JJ PREVTAG DT\nDT IN PREVWD out\nPOS VBZ PREVTAG EX\nJJ NN NEXTTAG POS\nNN JJ CURWD first\nVBD VBN PREVWD the\nNNS VBZ WDPREVTAG NNP plans\nNNP NNS SURROUNDTAG STAART IN\nRB JJ NEXTTAG NNS\nJJ RB CURWD just\nVBP NN PREVWD sales\nNNS NNPS PREVWD Orange\nVB VBN PREVTAG VBD\nWDT DT PREVTAG IN\nNN JJ WDNEXTTAG right NN\nNN VBG WDNEXTTAG operating IN\nJJ VBN CURWD insured\nJJ NNP LBIGRAM STAART U.S.\nIN DT NEXTTAG STAART\nPOS '' PREV1OR2OR3TAG ``\nNN JJ WDNEXTTAG official NN\nNNP JJ CURWD Irish\nJJ RB NEXTTAG RBR\nVBG NN WDPREVTAG DT selling\nVBP VB PREV1OR2OR3TAG MD\nWDT IN NEXTTAG PRP\nEX RB NEXTTAG .\nVBN VBD SURROUNDTAG NNS PRP$\nVBN VBD CURWD said\nJJ RB PREVTAG MD\nNN VBG NEXTBIGRAM JJ NNS\nJJ RB WDNEXTTAG late IN\nVBG NN PREVTAG PRP$\nVBZ NNS NEXTTAG VBP\nNN NNP WDPREVTAG DT CD\nNN VBN PREVWD be\nJJS RBS NEXTTAG VBN\nVBN VBD SURROUNDTAG NN PRP$\nVBN VBD SURROUNDTAG NNS JJ\nVBN VBD SURROUNDTAG NNS NN\nVBD VBN WDNEXTTAG increased NN\nVBZ NNS NEXTWD of\nIN RP WDAND2TAGAFT out NNS\nJJ NNP NEXTTAG POS\nRB RP WDNEXTTAG down DT\nCD NNS CURWD 1970s\nVBG NNP CURWD Working\nVBN VB PREVTAG MD\nJJ NN NEXTBIGRAM CC NN\nNN JJ SURROUNDTAG STAART NNS\nVBN VBD PREVBIGRAM , CC\nIN RB NEXTBIGRAM . STAART\nNN VBG PREVWD was\nNNP NNPS CURWD Cowboys\nVBZ NNS PREVWD phone\nNNP NNS SURROUNDTAG STAART VBP\nRBR JJR WDNEXTTAG lower JJ\nPRP$ PRP NEXTTAG IN\nVBD VB PREVTAG TO\nJJ NN WDPREVTAG NN chief\nJJ NN SURROUNDTAG JJ ,\nNN JJ WDPREVTAG DT third\nVBN VBD SURROUNDTAG NNS NNP\nNNP NN SURROUNDTAG STAART NN\nNNP NN CURWD HDTV\nVBG NN SURROUNDTAG DT ,\nVBG NN SURROUNDTAG DT .\nNNS VBZ PREVTAG WP\nNN VB SURROUNDTAG CC DT\nNNPS NNP WDAND2TAGBFR IN Securities\nRP IN PREVTAG NNS\nVBP NN LBIGRAM funds rate\nVBP NN WDPREVTAG NNS market\nDT RB RBIGRAM either .\nVBN NN SURROUNDTAG DT IN\nVBD VB PREV1OR2OR3TAG MD\nNN JJ NEXTWD oil\nVBN VBD SURROUNDTAG , $\nVBD VBN PREVBIGRAM DT RB\nVBN JJ PREVWD by\nNNP JJ WDNEXTTAG American JJ\nNN VBG PREVTAG VBP\nJJ RB LBIGRAM very much\nNN VBG RBIGRAM operating officer\nRB IN RBIGRAM up for\nNNS VBZ NEXTBIGRAM JJ NNS\nNNS VBZ SURROUNDTAG , IN\nVB VBP PREVTAG NNPS\nIN RP WDAND2TAGAFT out IN\nNNPS NNP PREVBIGRAM CC NNP\nNN RB RBIGRAM close to\nRBR RB PREVWD no\nJJ VBD NEXTTAG DT\nRB NNP PREVTAG NNP\nMD NN PREVWD good\nJJ NN WDPREVTAG NN giant\nNN JJ WDNEXTTAG official NNS\nVBN VBD SURROUNDTAG , PRP$\nVBN VBD SURROUNDTAG , RB\nVBN VBD SURROUNDTAG NN PRP\nNNP JJ WDNEXTTAG South JJ\nNN VBG PREVTAG RB\nNNS VBZ SURROUNDTAG , TO\nVBZ NNS SURROUNDTAG NN .\nNN VB NEXTTAG PRP$\nVBP VB PREV1OR2WD do\nVB JJ NEXTWD countries\nIN WDT NEXTBIGRAM RB VBZ\nJJ VB NEXTTAG DT\nWDT DT NEXTBIGRAM VBZ ,\nNNP RB RBIGRAM First ,\nDT NNP WDNEXTTAG A VBZ\nJJ RBR RBIGRAM further ,\nCD PRP WDNEXTTAG one MD\nPOS '' PREV1OR2OR3TAG .\nPRP NN PREVTAG -LRB-\nVBN VBD SURROUNDTAG , PRP\nVBN VBD SURROUNDTAG NN NNS\nVBN VBD SURROUNDTAG NN RP\nNNP NN LBIGRAM STAART Business\nVBD VBN PREVTAG VBG\nIN RB RBIGRAM before ,\nIN RB WDAND2AFT As as\nNNP JJ LBIGRAM New York-based\nNNP JJ CURWD Mexican\nNNP NNPS WDNEXTTAG Motors NNP\nNNP NNPS WDPREVTAG NNP Enterprises\nJJ RB WDNEXTTAG long IN\nVBG JJ SURROUNDTAG DT NN\nNN PRP PREVWD are mine\n* IN CURWD with\n* VB CURWD be\n* JJ RBIGRAM such as\n* IN LBIGRAM such as\n* IN CURWD from"
  },
  {
    "path": "src/textblob/en/en-entities.txt",
    "content": "50 Cent PERS\nAIDS\nAK-47\nAT&T ORG\nAbraham Lincoln PERS\nAcropolis LOC\nAdam Sandler PERS\nAdolf Hitler PERS\nAdriana Lima PERS\nAfghanistan LOC\nAfrica LOC\nAl Capone PERS\nAl Pacino PERS\nAlaska LOC\nAlbert Einstein PERS\nAlbert Hofmann PERS\nAlbert Schweitzer PERS\nAlexander the Great PERS\nAlfred Hitchcock PERS\nAlice Cooper PERS\nAlice in Wonderland\nAmazon.com ORG\nAmber Heard PERS\nAmelia Earhart PERS\nAmerican Express\nAmerican Idol\nAmsterdam LOC\nAmy Adams PERS\nAmy Winehouse PERS\nAncient Egypt LOC\nAncient Rome LOC\nAndroid\nAngelina Jolie PERS\nAngry Birds\nAnne Frank PERS\nAnne Hathaway PERS\nAntartica LOC\nApple Inc. ORG\nArchimedes PERS\nAretha Franklin PERS\nArgentina LOC\nAristotle PERS\nArnold Schwarzenegger PERS\nAudi ORG\nAudrey Hepburn PERS\nAung San Suu Kyi PERS\nAustralia LOC\nAustria LOC\nAvatar\nAvril Lavigne PERS\nAyn Rand PERS\nAztec\nBMW ORG\nBabe Ruth PERS\nBacardi ORG\nBackstreet Boys\nBangladesh LOC\nBarack Obama PERS\nBarbra Streisand PERS\nBarcelona LOC\nBatman PERS\nBeethoven PERS\nBelarus LOC\nBelgium LOC\nBen Affleck PERS\nBen Folds PERS\nBen Stiller PERS\nBenazir Bhutto PERS\nBenjamin Franklin PERS\nBenjamin Millepied PERS\nBernard Madoff PERS\nBeyoncé Knowles PERS\nBill Clinton PERS\nBill Gates PERS\nBillie Holiday PERS\nBillie Jean King PERS\nBing Crosby PERS\nBlack Sabbath\nBlake Edwards PERS\nBlake Lively PERS\nBob Dylan PERS\nBob Geldof PERS\nBob Marley PERS\nBrad Pitt PERS\nBradley Manning PERS\nBrazil LOC\nBrett Favre PERS\nBritney Spears PERS\nBruce Lee PERS\nBruce Willis PERS\nBruno Mars PERS\nBuddhism\nBulgaria LOC\nBurger King\nBurma LOC\nC.S. Lewis PERS\nCadillac ORG\nCalifornia LOC\nCameron Diaz PERS\nCameron Newton PERS\nCanada LOC\nCaptain Beefheart PERS\nCarl Lewis PERS\nCharles Darwin PERS\nCharles Dickens PERS\nCharles Kindbergh PERS\nCharles de Gaulle PERS\nCharlie Sheen PERS\nChe Guevara PERS\nCheryl Cole PERS\nChicago LOC\nChina LOC\nChopin PERS\nChris Colfer PERS\nChristian Bale PERS\nChristiano Ronaldo PERS\nChristina Aguilera PERS\nChristmas\nChristopher Nolan PERS\nChuck Norris PERS\nClint Eastwood PERS\nCoca Cola ORG\nCoco Chanel ORG\nColdplay\nColombia LOC\nConan PERS\nCristiano Ronaldo PERS\nCrystal Harris PERS\nCthulhu PERS\nCuba LOC\nDNA\nDaft Punk\nDalai Lama PERS\nDaniel Radcliffe PERS\nDarren Aronofsky PERS\nDarren Criss PERS\nDarth Vader PERS\nDavid Beckham PERS\nDavid Bowie PERS\nDavid Cook PERS\nDemi Lovato PERS\nDemi Moore PERS\nDenmark LOC\nDesmond Tutu PERS\nDexter PERS\nDiana PERS\nDiego Maradona PERS\nDisney ORG\nDmitry Medvedev PERS\nDoctor Who PERS\nDr. Dre PERS\nDr. Seuss PERS\nDragon Ball\nDubai LOC\nDwayne Johnson PERS\nEarth LOC\nEbenezer Scrooge PERS\nEddie Murphy PERS\nEduardo Saverin PERS\nEgypt LOC\nEl Salvador LOC\nElizabeth Edwards PERS\nElizabeth Hurley PERS\nEllen Page PERS\nElton John PERS\nElvis Presley PERS\nEmile Zatopek PERS\nEminem PERS\nEmma Roberts PERS\nEmma Stone PERS\nEmma Watson PERS\nEmmeline Pankhurst PERS\nEngland LOC\nEnrique Iglesias PERS\nErnest Hemingway PERS\nErnest Hemingway PERS\nEurope LOC\nEva Peron PERS\nExxon Mobil PERS\nFC Barcelona ORG\nFIFA ORG\nFacebook ORG\nFahrenheit\nFamily Guy\nFaye Resnick PERS\nFedEx ORG\nFidel Castro PERS\nFinland LOC\nFirefox ORG\nFlorence Nightingale PERS\nFlorida LOC\nFort Wayne LOC\nFrance LOC\nFrank Sinatra PERS\nFranklin D. Roosevelt PERS\nFreddie Mercury PERS\nFrédéric Chopin PERS\nFuturama\nGarrett Hedlund PERS\nGene Simmons PERS\nGeneral Electric\nGenghis Khan PERS\nGeorge Bush PERS\nGeorge Clooney PERS\nGeorge Harrison PERS\nGeorge Orwell PERS\nGeorge W. Bush PERS\nGeorge Washington PERS\nGeorges St-Pierre PERS\nGermany LOC\nGoogle ORG\nGoogle Chrome\nGorillaz\nGrand Theft Auto\nGreece LOC\nGucci ORG\nGulf War\nGulliver's Travels\nGuns N' Roses\nGwyneth Paltrow PERS\nHIV\nHSBC\nHaile Selassie PERS\nHaiti LOC\nHalliburton ORG\nHalloween\nHank Baskett PERS\nHannah Montana PERS\nHanukkah\nHarrison Ford PERS\nHarry Potter PERS\nHawaii LOC\nHe-Man PERS\nHeath Ledger PERS\nHelen Keller PERS\nHelena Bonham Carter PERS\nHenry Ford PERS\nHenry IV PERS\nHenry V PERS\nHenry VIII PERS\nHilary Duff PERS\nHillary Clinton PERS\nHonda ORG\nHong Kong LOC\nHotmail\nHugh Hefner PERS\nHumphrey Bogart PERS\nHungary LOC\nIBM ORG\nIKEA ORG\nIceland LOC\nIndia LOC\nIndiana Jones PERS\nIndira Gandhi PERS\nIndonesia LOC\nInternet Explorer\nIran LOC\nIreland LOC\nIron Man PERS\nIsaac Newton PERS\nIsabelle Caro PERS\nIslam\nIsrael LOC\nItaly LOC\nIvy League ORG\nJ. Robert Oppenheimer PERS \nJ.K. Rowling PERS\nJ.R.R. Tolkien PERS\nJFK PERS\nJack the Ripper PERS\nJackie Chan PERS\nJacqueline Kennedy Onassis PERS\nJaden Smith PERS\nJake Gyllenhaal PERS\nJames Bond PERS\nJames Franco PERS\nJane Austen PERS\nJanet Jackson PERS\nJapan LOC\nJared Leto PERS\nJason Statham PERS\nJawaharlal Nehru PERS\nJay-Z PERS\nJeff Bridges PERS\nJeff Buckley PERS\nJenna Jameson PERS\nJennifer Aniston PERS\nJesse Owens PERS\nJessica Alba PERS\nJesus PERS\nJim Carrey PERS\nJim Morrisson PERS\nJimi Hendrix PERS\nJimmy Wales PERS\nJoaquin Phoenix PERS\nJohn Cena PERS\nJohn Edwards PERS\nJohn F. Kennedy PERS\nJohn Lennon PERS\nJohn M. Keynes PERS\nJohn McCain PERS\nJohn Wayne PERS\nJohnnie Walker PERS\nJohnny Cash PERS\nJohnny Depp PERS\nJoseph Stalin PERS\nJudy Garland PERS\nJulia Roberts PERS\nJulian Assange PERS\nJulie Andrews PERS\nJulius Caesar PERS\nJustin Bieber PERS\nJustin Timberlake PERS\nKFC ORG\nKLM ORG\nKama Sutra\nKanye West PERS\nKate Middleton PERS\nKatherine Hepburn PERS\nKatrina Kaif PERS\nKaty Perry PERS\nKeira Knightley PERS\nKen Livingstone PERS\nKeri Hilson PERS\nKesha PERS\nKevin Bacon PERS\nKid Cudi PERS\nKim Kardashian PERS\nKinect\nKing Arthur PERS\nKobe Bryant PERS\nKosovo LOC\nKristallnacht\nKristen Stewart PERS\nKurt Cobain PERS\nL'Oreal ORG\nL. Ron Hubbard PERS\nLady Gaga PERS\nLea Michele PERS\nLebanon LOC\nLech Walesa PERS\nLed Zeppelin\nLego\nLenin PERS\nLeo Tolstoy PERS\nLeon Trotsky PERS\nLeonardo DiCaprio PERS\nLeonardo da Vinci PERS\nLeslie Nielsen PERS\nLexus ORG\nLiam Neeson PERS\nLil Wayne PERS\nLindsay Lohan PERS\nLinkin Park PERS\nLionel Messi PERS\nLoch Ness LOC\nLondon LOC\nLord Baden Powell PERS\nLos Angeles LOC\nLouis Pasteur PERS\nLouis Vuitton PERS\nLouvre LOC\nLudwig van Beethoven PERS\nLyndon Johnson PERS\nMDMA\nMac OS X\nMacaulay Culkin PERS\nMadagascar LOC\nMadonna PERS\nMahatma Gandhi PERS\nMalaysia LOC\nMalcolm X PERS\nManchester LOC\nManchester United ORG\nMargaret Thatcher PERS\nMariah Carey PERS\nMarilyn Monroe PERS\nMario Gómez PERS\nMario Kart\nMark David Chapman PERS\nMark Wahlberg PERS\nMark Zuckerberg PERS\nMartin Luther King PERS\nMassachussetts LOC\nMata Hari PERS\nMatt Damon PERS\nMattel ORG\nMaya Angelou PERS\nMcDonald's ORG\nMcGill University ORG\nMegan Fox PERS\nMercedes-Benz ORG\nMerlin PERS\nMetallica\nMexico LOC\nMiami LOC\nMiami Vice\nMichael C. Hall PERS\nMichael Jackson PERS\nMichael Jordan PERS\nMichael Vick PERS\nMichelin ORG\nMichigan LOC\nMicky Ward PERS\nMicrosoft ORG\nMicrosoft Windows\nMiddle Ages\nMike Tyson PERS\nMila Kunis PERS\nMiley Cyrus PERS\nMinecraft\nMohammed Ali PERS\nMona Lisa PERS\nMontreal LOC\nMorocco LOC\nMother Teresa PERS\nMother's Day\nMozart PERS\nMozilla Firefox\nMuhammad PERS\nMuhammad Ali PERS\nMyanmar LOC\nNapoleon PERS\nNarnia LOC\nNatalie Portman PERS\nNazi Germany\nNeil Armstrong PERS\nNeil Patrick Harris PERS\nNelson Mandela PERS\nNepal LOC\nNetherlands LOC\nNew York LOC\nNew York City LOC\nNew Zealand LOC\nNicki Minaj PERS\nNicolas Cage PERS\nNicole Scherzinger PERS\nNigeria LOC\nNike ORG\nNivea ORG\nNorth America LOC\nNorth Korea LOC\nNorway LOC\nOlivia Wilde PERS\nOprah Winfrey PERS\nOsama Bin Laden PERS\nOscar Wilde PERS\nOwen Wilson PERS\nOzzfest\nPablo Picasso PERS\nPakistan LOC\nPanasonic ORG\nParis LOC\nPaul McCartney PERS\nPele PERS\nPepsi ORG\nPeter Sellers PERS\nPhiladelphia LOC\nPhilips ORG\nPhillipines LOC\nPink Floyd PERS\nPlayStation 3\nPocahontas PERS\nPokemon\nPokémon\nPoland LOC\nPope John Paul II PERS\nPremier League ORG\nPrince Charles PERS\nPriory of Sion LOC\nProcter & Gamble\nPuerto Rico LOC\nQatar LOC\nQueen Elizabeth II PERS\nQueen Victoria PERS\nRachmaninoff PERS\nRaiders of the Lost Ark\nRaisa Gorbachev PERS\nReal Madrid ORG\nRed Hot Chili Peppers PERS\nReese Witherspoon PERS\nResident Evil\nRichard PERS\nRichard Branson PERS\nRichard Dawkins PERS\nRichard Holbrooke PERS\nRichard Nixon PERS\nRihanna PERS\nRingo Starr PERS\nRobert De Niro PERS\nRobert Pattinson PERS\nRobin Hood PERS\nRoger Federer PERS\nRoman Empire ORG\nRomania LOC\nRome LOC\nRomeo and Juliet\nRonald Reagan PERS\nRonnie O'Sullivan PERS\nRosa Parks PERS\nRussell Brand PERS\nRussia LOC\nRyan Reynolds PERS\nSaddam Hussein PERS\nSahara LOC\nSaint Nicholas PERS\nSalman Khan PERS\nSamsung ORG\nSandra Bullock PERS\nSanta Claus PERS\nSarah Palin PERS\nSasha Grey PERS\nSaudi Arabia LOC\nScarlett Johansson PERS\nScientology ORG\nScotland LOC\nSean Combs PERS\nSean Parker PERS\nSelena Gomez PERS\nSerbia LOC\nSergei Rachmaninoff PERS\nShakira\nShaquille O'Neal PERS\nShaun Ryder PERS\nSherlock Holmes PERS\nShia LaBeouf PERS\nShirley Temple PERS\nSiemens ORG\nSigmund Freud PERS\nSilvio Berlusconi PERS\nSingapore LOC\nSkype\nSmirnoff ORG\nSnoop Dogg PERS\nSnow White PERS\nSocrates PERS\nSomalia LOC\nSony ORG\nSouth Africa LOC\nSouth America LOC\nSouth Korea LOC\nSouth Park\nSoviet Union\nSpain LOC\nSpider-Man PERS\nSpiderman PERS\nSri Lanka LOC\nStar Trek\nStar Wars\nStarbucks ORG\nStephen Hawking PERS\nStephen King PERS\nSteve Jobs PERS\nSteve Nash PERS\nSteven Spielberg PERS\nSudan LOC\nSuper Bowl\nSuperman PERS\nSweden LOC\nSwitzerland LOC\nSylvester Stallone PERS\nTaiwan LOC\nTaj Mahal LOC\nTake That\nTaylor Lautner PERS\nTaylor Momsem PERS\nTaylor Swift PERS\nTeena Marie PERS\nTennessee LOC\nTexas LOC\nThailand LOC\nThe Beatles\nThe Chronicles of Narnia\nThe Godfather\nThe Green Hornet\nThe Lord of the Rings\nThe Rolling Stones\nThe Simpsons\nThe Sims\nTheodore Roosevelt PERS\nThomas Jefferson PERS\nThor PERS\nTiger Woods PERS\nTitanic\nTom Brady PERS\nTom Cruise PERS\nTom Hanks PERS\nToy Story\nToyota ORG\nTransformers\nTron\nTupac Shakur PERS\nTwin Peaks\nTwitter\nUEFA Champions League\nUbuntu\nUkraine LOC\nUnited Kingdom LOC\nUnited Nations\nUnited States LOC\nUsain Bolt PERS\nVanessa Hudgens PERS\nVenus LOC\nVietnam LOC\nVin Diesel PERS\nVirginia Woolf PERS\nVladimir Putin PERS\nVodafone ORG\nVolkswagen ORG\nWalmart ORG\nWalt Disney PERS\nWarren Buffet PERS\nWashington LOC\nWashington D.C. LOC\nWesley Snipes PERS\nWii\nWikiLeaks ORG\nWikipedia ORG\nWill Ferrell PERS\nWill Smith PERS\nWilliam Shakespeare PERS\nWillow Smith PERS\nWindows 7\nWindows 95\nWindows Vista\nWindows XP\nWinona Ryder PERS\nWinston Churchill PERS\nWiz Khalifa PERS\nWolfgang Amadeus Mozart PERS\nWoodrow Wilson PERS\nWorld War I\nWorld War II\nWorld of Warcraft\nWright Brothers PERS\nX-Men\nXbox 360\nYoko Onen PERS\nYoko Ono PERS\nYouTube ORG\namazon.com ORG\neBay ORG\niPad\niPhone\niPod\niPod touch"
  },
  {
    "path": "src/textblob/en/en-lexicon.txt",
    "content": ";;;   \n;;;   The lexicon was taken from Brill's rule based tagger v1.14,\n;;;   trained on Brown corpus and Penn Treebank.\n;;;   \n;;;   Eric Brill (1992). A simple rule-based part of speech tagger.\n;;;   In Proceedings of the workshop on Speech and Natural Language (pp. 112-116).\n;;;   Association for Computational Linguistics.\n;;;   \n;;;   Copyright 1993 by the Massachusetts Institute of Technology and the\n;;;   University of Pennsylvania. All rights reserved. MIT license.\n;;;   \n;;;   Additional words were added from the Twitter Part-of-Speech Annotated Data,\n;;;   available under the Creative Commons Attribution 3.0 Unported license (\"CC-BY\").\n;;;   Carnegie Mellon University. http://www.ark.cs.cmu.edu/TweetNLP\n;;;   \n;;;   Kevin Gimpel, Nathan Schneider, Brendan O'Connor, et al. (2011).\n;;;   Part-of-Speech Tagging for Twitter: Annotation, Features, and Experiments.\n;;;   In Proceedings of the Annual Meeting of the ACL, Portland, OR, June 2011.\n;;;   \n! .\n!! .\n!!! .\n!!!! .\n!!!!! .\n!!!!!! .\n!!!!!!! .\n!!!!!!!! .\n!. .\n!? .\n\" \"\n# #\n#1 CD\n#2 CD\n#GLEE NNP\n#Glee NNP\n#celtics NNPS\n#fail NN\n#fb NNP\n#glee NNP\n#howcome VB\n#lakers NNPS\n#shoutout NN\n#teamceltics NNPS\n#teamlakers NNPS\n#win NN\n$ $\n$200 CD\n$25 CD\n% NN\n%... :\n%CHG NN\n& CC\n&0C. NN\n' POS\n'' ''\n''$ $\n''. NN\n', ,\n'. .\n'/''... :\n'/POS... :\n'13 CD\n'20's CD\n'20s NNPS\n'25 CD\n'30s CD\n'31 CD\n'38 CD\n'40's CD\n'40s NNS\n'48 CD\n'49 CD\n'50 CD\n'50's CD\n'50s NNS\n'51 CD\n'52 CD\n'53 CD\n'54 CD\n'55 CD\n'58 CD\n'60 CD\n'60s NNS\n'61 CD\n'68 CD\n'70s NNS\n'71 CD\n'76 CD\n'78 CD\n'79 CD\n'80's CD\n'80s NNS\n'80s-style JJ\n'81 CD\n'82 CD\n'85 CD\n'86 CD\n'87 CD\n'89 CD\n'89s NNS\n'90s NNS\n'92 CD\n': :\n'A NN\n'All DT\n'Are VBP\n'As RB\n'BS NNP\n'Big JJ\n'Cause IN\n'Channel NN\n'Chief NNP\n'Christian JJ\n'Come VB\n'D NNP\n'Damn VB\n'Dividend NN\n'Do NNP\n'Does VBZ\n'Don't VB\n'Em NNP\n'Europeans NNPS\n'Forget VB\n'God NNP\n'Goodison NNP\n'Guesstimates NNS\n'Hagura NNP\n'Happy NNP\n'Have VB\n'He PRP\n'Hear VB\n'Here's NNS\n'Hey UH\n'Hot JJ\n'How WRB\n'I PRP\n'I'd VB\n'I'm VBP\n'I've NN\n'Il NNP\n'Is VBP\n'It's PRP\n'Just RB\n'K NNP\n'Kick VB\n'Lady NN\n'Let's PRP\n'Look VB\n'MTV NNP\n'Ma NNP\n'My PRP\n'N NNP\n'Nightline NNP\n'No UH\n'OK UH\n'Oh UH\n'Okay UH\n'Onward RB\n'Ounce NNP\n'P JJ\n'People NNS\n'Poltergeist NN\n'Preventive JJ\n'R NNP\n'RED JJ\n'Recovering VBG\n'S VBZ\n'Son NN\n'Sorry JJ\n'Struggling VBG\n'Sweets NNP\n'T- PRP\n'Tahiti NNP\n'That's VBZ\n'The NNP\n'This VBZ\n'Three's NNP\n'Tide NNP\n'To NNP\n'Today NNP\n'Unsolved NNP\n'Wadoo UH\n'War NNP\n'Watch VB\n'We PRP\n'We've PRP\n'Well RB\n'What WP\n'Which NN\n'Who NN\n'Why WRB\n'Will MD\n'X NN\n'Yeah UH\n'Yes UH\n'You NN\n'Yuk UH\n'`` ``\n'bout IN\n'ceptin VBG\n'd MD\n'd. NN\n'ello UH\n'em PRP\n'emselves PRP\n'fess VB\n'fore IN\n'im PRP\n'll MD\n'low VB\n'm VBP\n'mon UH\n'most IN\n'n IN\n'nother DT\n'nough JJ\n'nuff RB\n'pache NN\n're VBP\n're... :\n'round RB\n's POS\n's. POS\n'scuse VB\n'stead IN\n't- PRP\n'thirties NNS\n'till IN\n've VBP\n'way RB\n'we'd MD\n( (\n(!) SYM\n(3/26 1991)\n(9/9 1991)\n(: SYM\n(@ SYM\n) )\n). SYM\n): SYM\n* SYM\n+ SYM\n, ,\n,'cept IN\n,'t- PRP\n,. SYM\n,.. NN\n,... :\n- :\n-$ $\n-- :\n--$ $\n--'cause JJ\n--271,124 CD\n--33 CD\n--4.8 CD\n--Boca NNP\n--Bordeaux NNP\n--China NNP\n--Dell NNP\n--Dorothy NNP\n--George NNP\n--Hitachi NNP\n--Mrs NNP\n--Of IN\n--Thailand NNP\n--Tokyo NNP\n--William NNP\n--a DT\n--about IN\n--agreed NN\n--all DT\n--and CC\n--are VBP\n--at IN\n--awarding VBG\n--changed VBD\n--combined VBN\n--complicated IN\n--consented VBD\n--considered VBN\n--despite IN\n--didn't VBD|RB\n--dividends NNS\n--especially RB\n--even JJ\n--fawning VBG\n--fell VBD\n--for IN\n--forcing JJ\n--grows VBZ\n--had VBD\n--has VBP\n--here RB\n--how WRB\n--if IN\n--in NN\n--including IN\n--it PRP\n--like IN\n--meal NN\n--mortgage-backed JJ\n--of IN\n--offer VBP\n--one CD\n--players NNS\n--plus RB\n--presumably RB\n--products NNS\n--since IN\n--some DT\n--subjects NNS\n--such JJ\n--teetering VBG\n--telegraph VBP\n--the JJ\n--they PRP\n--those DT\n--to IN\n--twice RB\n--unlike JJ\n--vs. IN\n--was VBD\n--were VBD\n--what WP\n--when WRB\n--which WDT\n--who WP\n--will MD\n--wines NN\n--with IN\n--would MD\n--you JJ\n-.10 CD\n-.5 CD\n-.50 CD\n-0.06 CD\n-1 CD\n-16-degrees CD|NNS\n-20-degrees CD|NNS\n-20-degrees-C CD|NN|NP\n-300 CD\n-5 CD\n-500 CD\n-57.6 CD\n-78-degrees CD|NN\n-LCB- (\n-LRB- (\n-RCB- )\n-RRB- )\n-Samuel NNP\n-Yr. NN\n-_- SYM\n-__- SYM\n-aminometha NN\n-axis NN\n-c NN\n-ing JJ\n-ism NN\n. .\n.'crack NN\n.. .\n... :\n.... :\n..... :\n...... :\n........ :\n.01 CD\n.02 CD\n.025 CD\n.027 CD\n.03 CD\n.05 CD\n.054 CD\n.07 CD\n.076 CD\n.09 CD\n.10-a-minute JJ\n.10.07 CD\n.105 CD\n.12 CD\n.125 CD\n.16 CD\n.23 CD\n.270 CD\n.292 CD\n.30 CD\n.337 CD\n.357 CD\n.375 CD\n.38 CD\n.4 CD\n.40 CD\n.45 CD\n.5 CD\n.50 CD\n.50-caliber JJ\n.500 CD\n.6 CD\n.65 CD\n.75 CD\n.8 CD\n.80 CD\n.86 CD\n.9.76 CD\n.9.82 CD\n.9.92 CD\n.90 CD\n.: :\n.Not RB\n.fundamentally RB\n.to TO\n.what WDT\n/ CC\n0 CD\n0-1 CD\n09 CD\n1 CD\n1,000 CD\n1-0 CD\n1/2 CD\n10 CD\n10.27 CD\n106 CD\n11 CD\n12 CD\n15 CD\n17 CD\n17th CD\n1st JJ\n2 IN\n20 CD\n2008 CD\n2010 CD\n2011 CD\n21st JJ\n26 CD\n27 CD\n27th CD\n29 CD\n2day NN\n2nd CD\n3 CD\n30 CD\n31 CD\n4 IN\n40 CD\n48 CD\n4th CD\n5 CD\n6 CD\n7 CD\n7:30 CD\n8 CD\n8:30 CD\n9 CD\n: :\n:( SYM\n:) SYM\n:)) SYM\n:-P SYM\n:/ SYM\n:35.3 CD\n:: :\n:D SYM\n:P SYM\n; :\n;) SYM\n;-) SYM\n< SYM\n<3 SYM\n<333 SYM\n= SYM\n=) SYM\n======================================ll NN\n=D SYM\n=] SYM\n> SYM\n? .\n?! .\n?!? .\n?? .\n??!! .\n??? .\n???? .\n@ IN\n@BarackObama NNP\n@DailySexTips NNP\n@NICKIMINAJ NNP\n@NickiMinaj NNP\n@justinbieber NNP\n@kylieminogue NNP\n@youtube NNP\nA DT\nA$ $\nA&E NNP\nA&M NNP\nA&P NNP\nA&W NNP\nA*/NNP&S NN\nA,B,C,D NNP\nA-1 JJ\nA-1-plus JJ\nA-12 NNP\nA-2 NN\nA-26 CD\nA-300-600 NNP\nA-310-300 NN\nA-320 NN\nA-320-200 NN\nA-320s NNP\nA-321 NN\nA-330 NNP\nA-330s NNS\nA-340s NNS\nA-6 NN\nA-B NNP\nA-D NNP\nA-Team NNP\nA-Z NNP\nA-body JJ\nA-bombs NNS\nA-men NNS\nA-plus JJ\nA. NNP\nA.-controlled JJ\nA.A. NNP\nA.A.U. NNP\nA.B. NNP\nA.C. NNP\nA.D NN\nA.D. NNP\nA.D.L. NNP\nA.E. NNP\nA.F. NNP\nA.G. NNP\nA.H. NNP\nA.I.D. NN\nA.I.R. NNP\nA.J. NNP\nA.J.C. NNP\nA.K.C. NNP\nA.L. NNP\nA.L.A.M. NNP\nA.L/NNP.S/NNP.A.C. NNP\nA.M RB\nA.M. NNP\nA.M.A NNP\nA.M.A. NNP\nA.M.E. NNP\nA.N. NNP\nA.O. NNP\nA.P. NNP\nA.R. NNP\nA.R.A. NNP\nA.S. NNP\nA.T.B. NNP\nA.V. NNP\nA.W. NNP\nA12 NN\nA135 NN\nA3 CD\nA300-600R NNP\nA310-300s NNP\nA320 NN\nA321 CD\nA321s NNS\nA330 NN\nA330-300s NNS\nA340 NN\nA40-AjK NN\nA5 NN\nAA JJ\nAAA NNP\nAARP NNP\nAAb NNP\nAB NNP\nABA NNP\nABB NNP\nABBIE NNP\nABC NNP\nABC-TV NNP\nABCs NNS\nABG-Semca NNP\nABIOMED NNP\nABM NN\nABM. NNP\nABO NNP\nABORTION NN\nABS NNP\nABUSE NN\nAC&R NNP\nAC&R\\/CCL NNP\nAC-130U NN\nACCEPTANCES NNS\nACCO NNP\nACCOUNT NN\nACCOUNTANTS NNS\nACCOUNTING NN\nACCOUNTS NNS\nACLU NNP\nACQUISITION NN\nACQUISITIONS NNS\nACRES NNP\nACS NNP\nACT NNP\nACTH NNP\nACTING JJ\nAD NN\nADB NNP\nADC NNP\nADDED VBD\nADIA NNP\nADMAN NN\nADMINISTRATION'S NN\nADMITTED VBD\nADN NNP\nADOPTED VBD\nADR NNP\nADRs NNS\nADS NNPS\nADT NNP\nADV NNP\nADVANCED NNP\nADVANCEMENT NNP\nADVANCES NNS\nADVERTISERS NNS\nADVERTISING NNP\nAD\\ NNP\nAEC NNP\nAEG NNP\nAEI NNP\nAEP NNP\nAES NNP\nAEW NNP\nAF NNP\nAFDC NNP\nAFFLUENT JJ\nAFL-CIO NNP\nAFP NNP\nAFRICA NNP\nAFRICA'S NNP\nAFRICAN-AMERICAN JJ\nAFTERMATH NNP\nAFTERSHOCKS NNS\nAG NNP\nAGA NNP\nAGAIN RB\nAGE NNP\nAGENCIES NNS\nAGENCY NNP\nAGF NNP\nAGI NNP\nAGIP NNP\nAGREED VBD\nAGREES VBZ\nAGS NNP\nAH-64 NN\nAH6 CD\nAHEAD RB\nAHHHHH UH\nAHSC NNP\nAIA NNP\nAIB NNP\nAIB.PR NNP\nAIChE NNP\nAID NNP\nAIDS NNP\nAIDS-drug JJ\nAIDS-infected JJ\nAIDS-inspired JJ\nAIDS-like JJ\nAIDS-prevention JJ\nAIDS-related JJ\nAIDS-research JJ\nAIDS-treatment NN\nAIEE NNP\nAIG NNP\nAIM NNP\nAIMO NNP\nAIR NNP\nAIR'S NNP\nAIRCOA NNP\nAIRLINES NNPS\nAIW NNP\nAK-47 NNP\nAL NNP\nALAMCO NNP\nALBERTA NNP\nALCEE NNP\nALCOHOL NNP\nALERT NN\nALII NNP\nALL PDT\nALLIANCE NNP\nALLOWED VBD\nALLWASTE NNP\nALLY NN\nALPA NNP\nALQ-135 NN\nALQ-178 NNP\nALT NNP\nALU NNP\nALUMINUM NNP\nAM NNP\nAMA NNP\nAMBASSADOR NN\nAMC NNP\nAMCA NNP\nAMDAHL NNP\nAMERICA'S NNP\nAMERICAN NNP\nAMERICANS NNS\nAMES NNP\nAMEX NNP\nAMF NNP\nAMI NNP\nAMNESTY NN\nAMONG IN\nAMP NNP\nAMR NNP\nAMR-Delta NNP\nAMRO NNP\nAMT NNP\nAMUSEMENT JJ\nAMVISC NNP\nAMs NNS\nAN DT\nANACOMP NNP\nANB NNP\nANC NNP\nANCHORAGE NNP\nAND CC\nANDERSEN NNP\nANF NNP\nANF-Industrie NNP\nANGELES NNP\nANIMAL-RIGHTS NNS\nANN NNP\nANNOUNCED VBD\nANNUAL JJ\nANNUITIES NNS\nANNUITY NNP\nANP NNP\nANR NNP\nANSA NNP\nANTHEM NNP\nANZ NNP\nAON NNP\nAP NNP\nAP-Dow NNP\nAP600 NN\nAPARTHEID NNP\nAPI NNP\nAPM NNP\nAPMS NNP\nAPPB NNP\nAPPEARS VBZ\nAPPELLATE NN\nAPPLE NNP\nAPPLIANCES NNPS\nAPPLIED NNP\nAPPROVED VBD\nAPPROVES VBZ\nAPS NNP\nAPT NNP\nAPV NNP\nARA NNP\nARAL-88 NNP\nARBITRAGE NN\nARCO NNP\nARE VBP\nAREA NN\nARF NNP\nARISE VBP\nARM NNP\nARMs NNS\nARNOLD NNP\nARRESTED VBD\nARRIVED VBD\nARTICLE NN\nARTY NNP\nART\\/artifact NN\nAS NNP\nASA NNP\nASARCO NNP\nASC NNP\nASCAP NNP\nASDA NNP\nASDIC NNP\nASEA NNP\nASEAN NNP\nASHTON-TATE NNP\nASK NNP\nASKO NNP\nASKS VBZ\nASLACTON NNP\nASME NNP\nASP NNP\nASPIS FW\nASPR NNP\nASSETS NNP\nASSOCIATES NNP\nASSOCIATION NNP\nASSOCIATION-COLLEGE NNP\nAST NNP\nASW NN\nAS\\ NNP\nAT IN\nAT&T NNP\nAT&T-sponsored JJ\nAT* NNP\nAT*/NNP&T NN\nATARI NNP\nATHLONE NNP\nATI NNP\nATLANTIC NNP\nATM NN\nATMs NNS\nATP NN\nATS\\ NNP\nATTACK NN\nATTORNEY NNP\nATTRACTS VBZ\nAUDITS NNS\nAUS NNP\nAUSTIN NNP\nAUTO NNP\nAUTOMOBILES NNPS\nAVC NNP\nAVOIDED VBD\nAVON NNP\nAVX NNP\nAWA NNP\nAWAY RP\nAWE NNP\nAWOC NNP\nAYER NNP\nAZT NNP\nAZT-resistant JJ\nAZT-treated JJ\nAZTR NNP\nA[fj] SYM\nA\\ JJ\nA\\/S NNP\nAaa JJ\nAaa-ee UH\nAaawww UH\nAah UH\nAalseth NNP\nAaron NNP\nAaronson NNP\nAarvik NNP\nAb1,040 NNP\nAb4,500 CD\nAb63711-r CD\nAbaba NNP\nAbalkin NNP\nAbandon VB\nAbandoning VBG\nAbatuno NNP\nAbba NNP\nAbbas NNP\nAbbe NNP\nAbbe-Direct NNP\nAbbe-Scotch NNP\nAbbenhaus NNP\nAbbett NNP\nAbbey NNP\nAbbie NNP\nAbbot NNP\nAbbott NNP\nAbboud NNP\nAbby NNP\nAbd-al-Aziz NNP\nAbdallah NNP\nAbderahmane NNP\nAbdul NNP\nAbdul-Raheem NNP\nAbdullah NNP\nAbe NNP\nAbel NNP\nAbell NNP\nAbello NNP\nAbelson NNP\nAbend NNP\nAber FW\nAbercrombie NNP\nAberdeen NNP\nAbernathy NNP\nAbernathys NNPS\nAbex NNP\nAbide NNP\nAbie NNP\nAbigail NNP\nAbilene NNP\nAbingdon NNP\nAbiomed NNP\nAbitibi-Price NNP\nAblard NNP\nAble NNP\nAbner NNP\nAbney NNP\nAbnormal JJ\nAboff NNP\nAbolition NNP\nAbolitionists NNS\nAborted JJ\nAbortion NNP\nAbortion-rights NNS\nAbout IN\nAbove IN\nAboveground JJ\nAbra NNP\nAbraham NNP\nAbrahams NNP\nAbrahamson NNP\nAbramowitz NNP\nAbrams NNP\nAbramson NNP\nAbreaction NN\nAbreast NNP\nAbroad RB\nAbrupt JJ\nAbruptly RB\nAbscam-indicted JJ\nAbsent VB\nAbsent-minded JJ\nAbsenteeism NN\nAbsolute JJ\nAbsolutely RB\nAbsolution NN\nAbsorbed VBN\nAbsorbing VBG\nAbstract NNP\nAbstraction NNP\nAbstractionists NNS\nAbstractions NNS\nAbstracts NNP\nAbt NNP\nAbu NNP\nAbuse NNP\nAbyss NN\nAbyssinians NNPS\nAca NNP\nAcademic NNP\nAcademically RB\nAcademicianship NN\nAcademics NNS\nAcademy NNP\nAcadia NNP\nAcala NNP\nAcapulco NNP\nAcarbose NNP\nAccacia NNP\nAccademia NNP\nAccardo NNP\nAccelerated VBN\nAccept VB\nAcceptable JJ\nAcceptance NNP\nAccepted JJ\nAccepting VBG\nAccess NN\nAccessories NNS\nAccident NNP\nAccidental JJ\nAcclaim NNP\nAccompanied VBN\nAccomplishing VBG\nAccomplishments NNS\nAccor NNP\nAccord NNP\nAccord-fighter JJ\nAccording VBG\nAccordingly RB\nAccords NNPS\nAccount NNP\nAccountants NNPS\nAccountemps NNP\nAccounting NNP\nAccounting-profession NN\nAccounts NNS\nAccounts-a NNP\nAccrued VBN\nAccudyne NNP\nAccumaster NNP\nAccumulation NNP\nAccuracy NN\nAccurate JJ\nAccused NNP\nAccustomed JJ\nAccutane NNP\nAce NNP\nAces NNS\nAcey NNP\nAchaeans NNPS\nAchenbaum NNP\nAcheson NNP\nAchievement NNP\nAchieving VBG\nAchilles NNP\nAcid JJ\nAcid-washed JJ\nAckerley NNP\nAckerly NNP\nAckerman NNP\nAckermann NNP\nAcknowledges VBZ\nAckroyd NNP\nAcme-Cleveland NNP\nAcorn NNP\nAcorns NNS\nAcourse NN\nAcoustic NNP\nAcoustical JJ\nAcquired VBN\nAcquirer NN\nAcquirers NNS\nAcquiring VBG\nAcquisition NNP\nAcquisitions NNS\nAcreage NN\nAcres NNP\nAcropolis NNP\nAcross IN\nAcrylic NNP\nAct NNP\nActing NNP\nActing-President NNP\nAction NNP\nActions NNS\nActive JJ\nActively RB\nActivists NNS\nActivities NNP\nActivity NN\nActon NNP\nActor-Crooner NNP\nActress NNP\nActs NNPS\nActual JJ\nActually RB\nAcura NNP\nAcushnet NNP\nAcustar NNP\nAcuvue NNP\nAd NN\nAd-Unit NN\nAda NNP\nAdagio NNP\nAdair NNP\nAdalbert NNP\nAdam NNP\nAdame NNP\nAdamec NNP\nAdamo NNP\nAdams NNP\nAdamski NNP\nAdamson NNP\nAdaptaplex NNP\nAdaptation NN\nAdaptations NNS\nAdaptec NNP\nAdapted VBN\nAdcock NNP\nAdd VB\nAddabbo NNP\nAdde NNP\nAdded VBD\nAddict NNP\nAddicted NNP\nAddicts NNS\nAdding VBG\nAddington NNP\nAddis NNP\nAddison NNP\nAddiss NNP\nAddition NN\nAdditional JJ\nAdditionally RB\nAdditive NN\nAdditives NNPS\nAddress NNP\nAddressing VBG\nAdds VBZ\nAddwest NNP\nAde NNP\nAdelaide NNP\nAdele NNP\nAdelia NNP\nAdella NNP\nAdelman NNP\nAdelos NNP\nAden NNP\nAdenauer NNP\nAdens NNP\nAdequate JJ\nAderholds NNPS\nAdherence NN\nAdi NNP\nAdia NNP\nAdios NNP\nAdios-Direct NNP\nAdios-On NNP\nAdios-Rena NNP\nAdios-Trustful NNP\nAdirondack NNP\nAdirondacks NNPS\nAdjoining VBG\nAdjournment NN\nAdjust VB\nAdjusted NNP\nAdjusters NNS\nAdjusting VBG\nAdjustment NNP\nAdlai NNP\nAdler NNP\nAdley NNP\nAdm. NNP\nAdmarketing NNP\nAdmassy NNP\nAdministration NNP\nAdministration-insured JJ\nAdministrative NNP\nAdministrator NNP\nAdministrators NNPS\nAdmirably RB\nAdmiralty NN\nAdmirers NNS\nAdmission NN\nAdmissions NNP\nAdmistration NNP\nAdmittedly RB\nAdmitting VBG\nAdnan NNP\nAdo NNP\nAdobe NNP\nAdolescents NNS\nAdolf NNP\nAdolph NNP\nAdolphus NNP\nAdoniram NNP\nAdonis NNP\nAdopting VBG\nAdoption NN\nAdoptions NNS\nAdrar NNP\nAdrian NNP\nAdrianople NN\nAdriatic NNP\nAdrien NNP\nAdrienne NNP\nAds NNS\nAdsi NNP\nAdult NN\nAdultery NNP\nAdults NNS\nAdvance NNP\nAdvanced NNP\nAdvancement NNP\nAdvancers NNS\nAdvances NNS\nAdvancing VBG\nAdvani NNP\nAdvantages NNS\nAdvent NNP\nAdventists NNP\nAdventure NNP\nAdventurers NNS\nAdventures NNS\nAdverbial JJ\nAdverse JJ\nAdvertiser NNP\nAdvertisers NNS\nAdvertising NNP\nAdvertising\\/San NNP\nAdvest NNP\nAdvice NNP\nAdvil NNP\nAdvise NNP\nAdviser NNP\nAdvisers NNPS\nAdvises VBZ\nAdvisor NNP\nAdvisors NNPS\nAdvisory NNP\nAdvocate NNP\nAdvocates NNS\nAegean NNP\nAegis NNP\nAegis-class JJ\nAegon NNP\nAeneid NNP\nAer NNP\nAeritalia NNP\nAermacchi NNP\nAero NNP\nAero-Space NNP\nAerobacter NN\nAeroflot NNP\nAerojet NNP\nAeromexico NNP\nAeronautical NNP\nAeronauticas NNP\nAeronautics NNP\nAeroquip NNP\nAerospace NNP\nAerospace-Thomson NNP\nAerospatiale NNP\nAeschbacher NNP\nAeschylus NNP\nAetna NNP\nAf-fold JJ\nAf-inch JJ\nAf-stage JJ\nAf-values NNS\nAf. NNP\nAfanasyev NNP\nAfanasyeva NNP\nAffair NNP\nAffaire NNP\nAffaires NNP\nAffairs NNP\nAffect VB\nAffected VBN\nAffidavits NNS\nAffiliated NNP\nAffiliates NNP\nAffirmative JJ\nAffirmatively RB\nAffirmed NNP\nAffliction NNP\nAfford VB\nAffordable NNP\nAfghan JJ\nAfghan-Pakistan JJ\nAfghanistan NNP\nAfghanistan\\/Southwest NNP\nAfghans NNPS\nAfield NNP\nAfif NNP\nAflatoxin NN\nAfnasjev NNP\nAfraid JJ\nAfranio NNP\nAfrica NNP\nAfricaine NNP\nAfrican JJ\nAfrican-Americans NNPS\nAfrican-controlled JJ\nAfrican-safari JJ\nAfricanist NNP\nAfricans NNPS\nAfrika NNP\nAfrikaaner NNP\nAfrikaner JJ\nAfrikanerdom NNP\nAfrikaners NNPS\nAfrique NNP\nAfro-Asian NNP\nAfro-Cuban JJ\nAfter IN\nAfter-the-fact JJ\nAftereffects NNS\nAfternoon UH\nAftershocks NNS\nAfterward RB\nAfterwards RB\nAgResource NNP\nAga NNP\nAgain RB\nAgainst IN\nAgamemnon NNP\nAganbegyan NNP\nAgatha NNP\nAge NNP\nAgee NNP\nAgence NNP\nAgencies NNS\nAgency NNP\nAgenda NNP\nAgent NNP\nAgents NNS\nAgeny NNP\nAges NNPS\nAgfa NNP\nAggie NNP\nAggies NNP\nAggregate JJ\nAggressive NNP\nAggressively RB\nAggrieved JJ\nAghanistan NNP\nAghazadeh NNP\nAgile FW\nAgin NNP\nAging NNP\nAgins NNP\nAgip NNP\nAgitato NNP\nAgius NNP\nAgnelli NNP\nAgnelli-related JJ\nAgnellis NNPS\nAgnes NNP\nAgnese NNP\nAgnew NNP\nAgnos NNP\nAgo RB\nAgoeng NNP\nAgoglia NNP\nAgonale NNP\nAgone NNP\nAgoura NNP\nAgouron NNP\nAgree VBP\nAgreeable NNP\nAgreed VBD\nAgreement NNP\nAgreements NNS\nAgrees VBZ\nAgri NNP\nAgricola NNP\nAgricole NNP\nAgricoles NNP\nAgricultural NNP\nAgriculture NNP\nAgriculture-ministry NN\nAgrippa NNP\nAgro NNP\nAgrobacterium NN\nAgua NNP\nAguais NNP\nAguiar NNP\nAguilar NNP\nAguirre NNP\nAguirre-Sacasa NNP\nAgura NNP\nAh UH\nAh-ah UH\nAhah UH\nAhead RB\nAhern NNP\nAhh UH\nAhlerich NNP\nAhm PRP\nAhmad NNP\nAhmanson NNP\nAhmet NNP\nAhmiri NNP\nAho NNP\nAhold NNP\nAhoy NNP\nAhrens NNP\nAhsan NNP\nAi VBP\nAi- NNP\nAichi NNP\nAid NNP\nAida NNP\nAidan NNP\nAide NNP\nAided VBN\nAiden NNP\nAides NNS\nAiding NNP\nAids NNS\nAikawa NNP\nAiken NNP\nAikin NNP\nAikman NNP\nAiles NNP\nAiley NNP\nAiling VBG\nAim VB\nAimed VBN\nAims VBZ\nAinsley NNP\nAinslie NNP\nAinsworth NNP\nAinu NNP\nAinus NNPS\nAir NNP\nAir-drifts CD\nAir-freight NN\nAir-raid JJ\nAir-to-ground JJ\nAir-traffic NN\nAirCal NNP\nAirMalta NNP\nAirTran NNP\nAirborne NNP\nAirbus NNP\nAircoa NNP\nAircraft NNP\nAiredale NNP\nAiredales NNPS\nAires NNP\nAirfone NNP\nAirfones NNS\nAirgas NNP\nAirless JJ\nAirlie NNP\nAirline NNP\nAirlines NNPS\nAirmail NN\nAirman NNP\nAirpark NNP\nAirplanes NNS\nAirport NNP\nAirports NNP\nAirways NNPS\nAiry JJ\nAit-Laoussine NNP\nAitken NNP\nAiwa NNP\nAj. NNP\nAjA NNP\nAjB NNP\nAjax NNP\nAjinomoto NNP\nAjit NNP\nAkademie NNP\nAke NNP\nAkerfeldt NNP\nAkers NNP\nAkerson NNP\nAkin NNP\nAkio NNP\nAkita NNP\nAkiva NNP\nAkron NNP\nAkros NNP\nAktiebolaget NNP\nAktiengesellschaft NNP\nAkzo NNP\nAl NNP\nAl-Chalabi NNP\nAl-Faqih NNP\nAl-Rowas NNP\nAl-Sabah NNP\nAl-Seyassah NNP\nAla NNP\nAla. NNP\nAlabama NNP\nAlabama-Coushatta JJ\nAlabamans NNS\nAlabamas NNPS\nAlabamian NN\nAlacrity NNP\nAladdin NNP\nAlagoas NNP\nAlai NNP\nAlain NNP\nAlakshak NNP\nAlameda NNP\nAlamein NNP\nAlamito NNP\nAlamo NNP\nAlamogordo NNP\nAlamos NNP\nAlan NNP\nAlaouite JJ\nAlar NN\nAlar-style JJ\nAlarcon NNP\nAlarm NNP\nAlarmed JJ\nAlas UH\nAlasdair NNP\nAlaska NNP\nAlaska-based JJ\nAlaskan JJ\nAlastair NNP\nAlastor NNP\nAlba NNP\nAlbacore NNP\nAlbanese NNP\nAlbania NNP\nAlbanian NNP\nAlbanians NNPS\nAlbany NNP\nAlberding NNP\nAlberg NNP\nAlbers NNP\nAlbert NNP\nAlberta NNP\nAlbertine NNP\nAlberto NNP\nAlbertson NNP\nAlbertville NNP\nAlbion NNP\nAlbrecht NNP\nAlbright NNP\nAlbrights NNPS\nAlbum NN\nAlbuquerque NNP\nAlcan NNP\nAlcarria NNP\nAlcatel NNP\nAlcatraz NNP\nAlcee NNP\nAlceste NNP\nAlcibiades NNP\nAlcinous JJ\nAlco NNP\nAlcoa NNP\nAlcohol NN\nAlcoholic NNP\nAlcoholics NNPS\nAlcorn NNP\nAlcott NNP\nAlda NNP\nAlden NNP\nAldermen NNS\nAlderson NNP\nAldo NNP\nAldomet NNP\nAldrich NNP\nAldridge NNP\nAldrin NNP\nAldus NNP\nAlec NNP\nAlejandro NNP\nAleksei NNP\nAlemagna NNP\nAlert NNP\nAlesio NNP\nAlessio NNP\nAlex NNP\nAlexander NNP\nAlexandra NNP\nAlexandre NNP\nAlexandria NNP\nAlexandrine JJ\nAlexei NNP\nAlexeyeva NNP\nAlexia NNP\nAlexis NNP\nAlf NNP\nAlfa NNP\nAlferon NNP\nAlfieri NNP\nAlfons NNP\nAlfonse NNP\nAlfonso NNP\nAlfred NNP\nAlfredo NNP\nAlgemene NNP\nAlger NNP\nAlgeria NNP\nAlgerian JJ\nAlgiers NNP\nAlgol NNP\nAlgom NNP\nAlgonquin NNP\nAli NNP\nAliah NNP\nAliber NNP\nAlice NNP\nAlicia NNP\nAlida NNP\nAlien NNP\nAlienated NNP\nAlienus NNP\nAligning VBG\nAliksanian NNP\nAlisarda NNP\nAlisky NNP\nAlison NN\nAlistair NNP\nAlito NNP\nAlix NNP\nAljian NNP\nAlkylate NNP\nAll DT\nAll-American NNP\nAll-Star NNP\nAll-Union NNP\nAll-You-Can-Eat NNP\nAll-weather JJ\nAlla NNP\nAllah NNP\nAllan NNP\nAllay NN\nAllday NNP\nAllegany NNP\nAlleged JJ\nAlleghany NNP\nAlleghenies NNPS\nAllegheny NNP\nAllegiance NNP\nAllegra NNP\nAllegretti NNP\nAllegro NNP\nAllemands NNP\nAllen NNP\nAllen-film NN\nAllendale NNP\nAllende NNP\nAllenport NNP\nAllentown NNP\nAllergan NNP\nAlley NNP\nAllgemeine NNP\nAlliance NNP\nAlliant NNP\nAllianz NNP\nAllie NNP\nAllied NNP\nAllied-Lyons NNP\nAllied-Signal NNP\nAllies NNPS\nAlligood NNP\nAllingham NNP\nAllis-Chalmers NNP\nAllison NNP\nAllocation NN\nAllons FW\nAllotments NNS\nAllou NNP\nAllow VB\nAllowed VBN\nAllowing VBG\nAlloy NN\nAllso RB\nAllstate NNP\nAllstates NNP\nAllstates-Zenith NNP\nAlltel NNP\nAllumettes NNP\nAllure NN\nAllwaste NNP\nAlly VBP\nAlma NNP\nAlmaden NNP\nAlmagest NNP\nAlmanac NNP\nAlmighty NNP\nAlmond NN\nAlmonds NNS\nAlmost RB\nAloe NNP\nAloft JJ\nAloha NNP\nAlois NNP\nAlokut NNP\nAlone RB\nAlong IN\nAlongside IN\nAlonso NNP\nAlors FW\nAloud RB\nAloys NNP\nAlper NNP\nAlpers NNP\nAlperstein NNP\nAlpert NNP\nAlperts NNS\nAlpha NNP\nAlphametrics NNP\nAlpharetta NNP\nAlphonse NNP\nAlphonsus NNP\nAlpine NNP\nAlpo NNP\nAlps NNP\nAlquist NNP\nAlready RB\nAlsagoray NNP\nAlsatian NNP\nAlsatians NNPS\nAlsing NNP\nAlso RB\nAlso... :\nAlson NNP\nAlsop NNP\nAlsthom NNP\nAlstyne NNP\nAlt NNP\nAlta NNP\nAltair NNP\nAltairians NNPS\nAltama NNP\nAltar NNP\nAltenburg NNP\nAlter VB\nAlterman NNP\nAlternate JJ\nAlternately RB\nAlternating VBG\nAlternative JJ\nAlternative-operator NN\nAlternatively RB\nAlternatives NNP\nAlthaus NNP\nAlthea NNP\nAlthough IN\nAltimari NNP\nAltman NNP\nAlto NNP\nAltogether RB\nAlton NNP\nAltos NNP\nAltron NNP\nAlumina NNP\nAluminium NNP\nAluminum NNP\nAluminum-Bat NN\nAluminum-ingot NN\nAlumni NNPS\nAlun-Jones NNP\nAlunJones NNP\nAlurralde NNP\nAlusik NNP\nAlusuisse NNP\nAlva NNP\nAlvan NNP\nAlvarez NNP\nAlvear NNP\nAlvero-Cruz NNP\nAlvin NNP\nAlvise NNP\nAlways RB\nAlwin NNP\nAlyce NNP\nAlysia NNP\nAlzheimer NNP\nAm NNP\nAmBase NNP\nAmBrit NNP\nAmabile NNP\nAmada NNP\nAmadee NNP\nAmadeus NN\nAmado NNP\nAmador NNP\nAmadou-Mahtar NNP\nAmalgamated NNP\nAmana NNP\nAmando NNP\nAmaral NNP\nAmarillo NNP\nAmatayakul NNP\nAmateur NNP\nAmaury NNP\nAmax NNP\nAmazing JJ\nAmazon NNP\nAmazonia NNP\nAmazonian JJ\nAmbassador NNP\nAmbassador-at-Large NNP\nAmbassador-designate NNP\nAmber NNP\nAmbigua NNP\nAmbiguan JJ\nAmbiguity NN\nAmbler NNP\nAmboy NNP\nAmbridge NNP\nAmbroise NNP\nAmbrose NNP\nAmbrosiano NNP\nAmbulances NNS\nAmbushes NNS\nAmca NNP\nAmcap NNP\nAmcast NNP\nAmclyde NNP\nAmcor NNP\nAmcore NNP\nAmdahl NNP\nAmdec NNP\nAmdura NNP\nAmeaux NNP\nAmee NNP\nAmelia NNP\nAmen UH\nAmending VBG\nAmendment NNP\nAmendments NNPS\nAmenities NNS\nAmenitskii NNP\nAmer NNP\nAmerace NNP\nAmerada NNP\nAmeri-Cable NNP\nAmeriGas NNP\nAmeriTrust NNP\nAmerica NNP\nAmerica. NNP\nAmerica\\/International NNP\nAmerican NNP\nAmerican-China NNP\nAmerican-Jewish JJ\nAmerican-Negro NNP\nAmerican-built JJ\nAmerican-developed JJ\nAmerican-made JJ\nAmerican-style JJ\nAmerican-trained JJ\nAmericana NNS\nAmericanized VBD\nAmericano NNP\nAmericans NNPS\nAmericas NNP\nAmeritas NNP\nAmeritech NNP\nAmerman NNP\nAmeron NNP\nAmerongen NNP\nAmes NNP\nAmetek NNP\nAmex NNP\nAmfac NNP\nAmfesco NNP\nAmgen NNP\nAmharas NNPS\nAmherst NNP\nAmhowitz NNP\nAmicable NNP\nAmicam NNP\nAmici FW\nAmid IN\nAmidst IN\nAmiel NNP\nAmiga NNP\nAmin NNP\nAmira NNP\nAmis NNP\nAmish NNP\nAmitai NNP\nAmityville NNP\nAmityvilles NNPS\nAmman NNP\nAmmann NNP\nAmmonium NN\nAmmunition NNP\nAmneris NNP\nAmoco NNP\nAmoco-led JJ\nAmomng JJ\nAmon NNP\nAmonasro NNP\nAmong IN\nAmor FW\nAmorim NNP\nAmory NNP\nAmos NNP\nAmoskeag NNP\nAmounts NNS\nAmp NNP\nAmparano NNP\nAmperex NNP\nAmra NN\nAmram NNP\nAmro NNP\nAmschel NNP\nAmstel NNP\nAmsterdam NNP\nAmsterdam-Rotterdam NNP\nAmstrad NNP\nAmt FW\nAmtech NNP\nAmtrak NNP\nAmtran NNP\nAmudarya NNP\nAmundsen NNP\nAmusement NN\nAmusements NNPS\nAmusing JJ\nAmvest NNP\nAmway NNP\nAmy NNP\nAmylin NNP\nAn DT\nAn-12 NN\nAna NNP\nAnaMor NNP\nAnabaptist NN\nAnabaptists NNPS\nAnabel NNP\nAnac NNP\nAnacomp NNP\nAnaconda NN\nAnadarko NNP\nAnaheim NNP\nAnaheim-Santa NNP\nAnalog NNP\nAnalogously RB\nAnalyses NNS\nAnalysis NNP\nAnalyst NN\nAnalysts NNS\nAnalytic NNP\nAnalytical NNP\nAnalytrol NNP\nAnalyzer NNP\nAnand NNP\nAnania NNP\nAnarcho-Syndicalists NNPS\nAnastasio NNP\nAnat NNP\nAnatol NNP\nAnatole NNP\nAnatoly NNP\nAnatomically RB\nAncel NNP\nAnchisi NNP\nAnchor NNP\nAnchorage NNP\nAnchorite NN\nAncient NNP\nAncinec NNP\nAncistrodon NNP\nAnctil NNP\nAnd CC\nAndalusians NNPS\nAndean JJ\nAndee NNP\nAndel NNP\nAnderlini NNP\nAnders NNP\nAndersen NNP\nAndersen-Price NNP\nAnderson NNP\nAndersson NNP\nAndes NNPS\nAndi NNP\nAndover NNP\nAndras NNP\nAndre NNP\nAndrea NNP\nAndreas NNP\nAndreassen NNP\nAndree NNP\nAndrei NNP\nAndrena NNP\nAndreotti NNP\nAndres NNP\nAndress NNP\nAndrew NNP\nAndrews NNP\nAndriessen NNP\nAndris NNP\nAndrofski NNP\nAndrogyny NN\nAndromache NNP\nAndrus NNP\nAndruses NNPS\nAndrzej NNP\nAndy NNP\nAnfia NNP\nAngel NNP\nAngel\\ NNP\nAngela NNP\nAngelenos NNP\nAngeles NNP\nAngeles-Pasadena NNP\nAngeles-area JJ\nAngeles-based JJ\nAngelica NNP\nAngelico NNP\nAngelina NNP\nAngell NNP\nAngellism NNP\nAngelo NNP\nAngels NNPS\nAngenics NNP\nAnger VBP\nAngers NNP\nAngevine NNP\nAngie NNP\nAngier NNP\nAngkor NNP\nAngleterre FW\nAnglia NNP\nAnglian JJ\nAnglican NNP\nAnglicanism NN\nAnglicans NNS\nAnglo NNP\nAnglo-American NNP\nAnglo-Americans NNPS\nAnglo-Argentine NNP\nAnglo-Dutch JJ\nAnglo-French JJ\nAnglo-Irish JJ\nAnglo-Jewish JJ\nAnglo-North JJ\nAnglo-Protestant JJ\nAnglo-Saxon NNP\nAnglo-Saxons NNS\nAnglo\\ JJ\nAnglo\\/Dutch NNP\nAnglophilia NNP\nAnglophobia NN\nAngola NNP\nAngolan JJ\nAngotti NNP\nAngrily RB\nAngrist NNP\nAngry JJ\nAngst NN\nAngus NNP\nAnhalt-Bernburg NNP\nAnheuser NNP\nAnheuser-Busch NNP\nAnhwei NNP\nAnimal NN\nAnimals NNS\nAnimated JJ\nAniseikonic JJ\nAniskovich NNP\nAnita NNP\nAnjelica NNP\nAnkara NNP\nAnkeny NNP\nAnker NNP\nAnku NNP\nAnlage NNP\nAnn NNP\nAnna NNP\nAnnalee NNP\nAnnamorena NNP\nAnnandale NNP\nAnnapolis NNP\nAnnaud NNP\nAnne NNP\nAnne-Marie NNP\nAnnenberg NNP\nAnnex NNP\nAnnicchino NNP\nAnnie NNP\nAnnihilate VB\nAnnisberg NNP\nAnniston NNP\nAnniversary NNP\nAnnounced JJ\nAnnouncement NN\nAnnounces VBZ\nAnnual JJ\nAnnualized VBN\nAnnuities NNS\nAnnuity NNP\nAnointing VBG\nAnonymous NNP\nAnother DT\nAnouilh NNP\nAnschluss FW\nAnsco NNP\nAnsel NNP\nAnselm NNP\nAnselmo NNP\nAnsley NNP\nAnson NN\nAnspach NNP\nAnswer NN\nAnswers VBZ\nAnt NN\nAnta NNP\nAntar NNP\nAntarctic NNP\nAntarctica NNP\nAntares NNP\nAnte NN\nAntenne NNP\nAnterior NNP\nAnthea NNP\nAnthem NNP\nAnthology NNP\nAnthong NNP\nAnthony NNP\nAnthropic NNP\nAnthropologists NNS\nAnthropology NNP\nAnti NNP\nAnti-A NNP\nAnti-American JJ\nAnti-Americanism NNP\nAnti-Ballistic NNP\nAnti-Ballistic-Missile JJ\nAnti-Christ NNP\nAnti-Communist JJ\nAnti-Deficiency NNP\nAnti-Jones JJ\nAnti-Semite NN\nAnti-Semitic JJ\nAnti-Swapo JJ\nAnti-Wrinkle NNP\nAnti-abortion JJ\nAnti-apartheid JJ\nAnti-dumping JJ\nAnti-nuclear JJ\nAnti-recession NN\nAnti-union JJ\nAntibody NN\nAnticipated VBN\nAnticipating VBG\nAnticipation NN\nAntietam NNP\nAntigone NNP\nAntigua NNP\nAntilles NNPS\nAntinomians NNS\nAntinori NNP\nAntioquia NNP\nAntique NNP\nAntiques NNPS\nAntiquity NN\nAntisubmarine JJ\nAntithyroid JJ\nAntitrust NNP\nAntler NNP\nAntoine NNP\nAntoinette NNP\nAntolini NNP\nAnton NNP\nAntone NNP\nAntoni NNP\nAntonia NNP\nAntonin NNP\nAntonini NNP\nAntonio NNP\nAntonio-based JJ\nAntonovich NNP\nAntony NNP\nAntori NNP\nAnts NNS\nAntwerp NNP\nAntwerp-based JJ\nAntwerpsche NNP\nAnwar NN\nAnxiety NNP\nAnxious JJ\nAny DT\nAnybody NN\nAnyhow RB\nAnyone NN\nAnything NN\nAnytime RB\nAnyway RB\nAnywhere RB\nAnzilotti NNP\nAoki NNP\nAon NNP\nAouelloul NNP\nAoun NNP\nAoyama NNP\nApache NNP\nApaches NNPS\nApalachicola NNP\nApar NNP\nAparicio NNP\nApart RB\nApartheid NNP\nApartment NN\nApartments NNP\nApe NNP\nApergillus NN\nApex NNP\nAphrodite NNP\nApicella NNP\nApocalypse NNP\nApocalyptic NNP\nApocrypha NNPS\nApogee NNP\nApollinaire NNP\nApollo NNP\nApollonian JJ\nApolo NNP\nApologia NN\nApologie NNP\nApologies NNS\nApology NNP\nApostles NNPS\nApostolakis NNP\nApp NNP\nApp. NNP\nAppalachia NNP\nAppalachian NNP\nAppalachians NNPS\nAppalled JJ\nAppaloosas NNPS\nApparatus NN\nApparel NN\nApparently RB\nAppeal NNP\nAppealing VBG\nAppeals NNPS\nAppear VBP\nAppearance NN\nAppel NNP\nAppelbaum NNP\nAppell NNP\nAppellate NNP\nAppendix NN\nAppendixes NNS\nAppert NNP\nAppian NNP\nAppignanesi NNP\nApplause NN\nApple NNP\nApple-Microsoft NNP\nApplebaum NNP\nApplebee NNP\nAppleby NNP\nApples NNS\nAppleseed NNP\nAppleseeds NNPS\nAppleton NNP\nAppleyard NNP\nAppliances NNPS\nApplication NNP\nApplications NNS\nApplied NNP\nApplying VBG\nAppointed VBN\nAppointment NN\nAppraisers NNPS\nAppreciation NNP\nApprehensively RB\nApprentice NNP\nApproach NNP\nApproached VBN\nApproaches NNS\nApproaching VBG\nAppropriate JJ\nAppropriately RB\nAppropriation NNP\nAppropriations NNP\nApproval NN\nApprovals NNS\nApproved VBN\nApproximately RB\nApril NNP\nApril-June NNP\nAprile NNP\nApropos RB\nAprotinine NNP\nApt JJ\nAptitude NNP\nAqazadeh NNP\nAqua NNP\nAqua-Ban NNP\nAquacutie NNP\nAqualon NNP\nAquidneck NNP\nAquifers NNS\nAquinas NNP\nAquino NNP\nAquitaine NNP\nAra NNP\nArab NNP\nArab-Israeli JJ\nArab-sponsored JJ\nArabia NNP\nArabian NNP\nArabian-American NNP\nArabians NNPS\nArabic NNP\nArabist JJ\nArabs NNPS\nAraby NNP\nArafat NNP\nAragon NNP\nArai NNP\nArakawa NNP\nAral NNP\nAral'sk NNP\nAramis NNP\nAran NNP\nAransas NNP\nArapacis NNP\nAraskog NNP\nArata NNP\nArau NNP\nArbeitskommando NNP\nArbel NNP\nArbitrage NN\nArbitrage-related JJ\nArbitragers NNS\nArbitraging VBG\nArbitrary NNP\nArbitration NN\nArbogast NNP\nArbor NNP\nArboretum NNP\nArbs NNS\nArbuckle NNP\nArby NNP\nArc NNP\nArcadian NNP\nArcadipane NNP\nArcata NNP\nArch NNP\nArchaeology NNP\nArchangel NNP\nArchbishop NNP\nArchbishops NNS\nArcher NNP\nArcher-Daniels-Midland NNP\nArchey NNP\nArchibald NNP\nArchie NNP\nArchimedes NNP\nArchipelago NNP\nArchitect NNP\nArchitects NNS\nArchitecture NNP\nArchive NNP\nArchives NNPS\nArchuleta NNP\nArcilla NNP\nArco NNP\nArctic NNP\nArden NNP\nArdent NNP\nArdito NNP\nArdito-Barletta NNP\nArdmore NNP\nAre VBP\nArea NNP\nAreas NNS\nArena NNP\nArenberg NNP\nArens NNP\nArenula NNP\nArequipa NNP\nAres NNP\nArfeen NNP\nArgabright NNP\nArgas NNP\nArgent NNP\nArgentina NNP\nArgentine JJ\nArgentines NNPS\nArgentinian JJ\nArger NNP\nArgiento NNP\nArgive NNP\nArgoSystems NNPS\nArgon NN\nArgonauts NNPS\nArgonne NNP\nArgos NNP\nArguably RB\nArguing VBG\nArguments NNS\nArgumenty NNP\nArgus NNP\nArgyll NNP\nArgyros NNP\nArhat NNP\nArhats NNPS\nAriadne NNP\nAriail NNP\nAriane NNP\nArianespace NNP\nArianism NNP\nArianist NNP\nArianists NNS\nArias NNP\nAricaras NNPS\nAriel NNP\nArigato FW\nArighi NNP\nAril NNP\nArimathea NNP\nAristech NNP\nAristide NNP\nAristotelean-Thomistic JJ\nAristotelian JJ\nAristotle NNP\nArithmetic NNP\nAriz NNP\nAriz. NNP\nAriz.-based JJ\nArizona NNP\nArizona-related JJ\nArk NNP\nArk. NNP\nArk.-based JJ\nArkabutla NNP\nArkansas NNP\nArkansas-based JJ\nArkhangelsk NNP\nArkhipov NNP\nArkla NNP\nArkoma NNP\nArland NNP\nArlauskas NNP\nArleigh NNP\nArlen NNP\nArlene NNP\nArles NN\nArlin NNP\nArlington NNP\nArlt NNP\nArm NN\nArmada NNP\nArmageddon NN\nArmand NNP\nArmani NNP\nArmas NNP\nArmbro NNP\nArmco NNP\nArmed NNP\nArmen NNP\nArmenia NNP\nArmenian JJ\nArmenians NNPS\nArmentieres NNP\nArmide NN\nArmies NNP\nArmin NNP\nArmisteads NNPS\nArmistice NNP\nArmitage NNP\nArmond NNP\nArmonk NNP\nArmor NNP\nArmored NNP\nArmory NNP\nArmour NNP\nArms NNP\nArmstrong NNP\nArmuelles NNP\nArmy NNP\nArnault NNP\nArne NNP\nArnell NNP\nArnell\\/Bickford NNP\nArney NNP\nArnhem NNP\nArnold NNP\nArnold-Foster NNP\nArnolphe NNP\nArnott NNP\nAro NNP\nAromatiques NNP\nAronson NNP\nAroostook NNP\nAros NNP\nAround IN\nAroused VBN\nArp NNP\nArpanet NNP\nArpege NNP\nArpino NNP\nArps NNP\nArrack NN\nArragon NNP\nArraignment NN\nArraignments NNS\nArrange VB\nArrangement NNP\nArrangements NNS\nArranging VBG\nArrayed VBN\nArrest NN\nArrested VBN\nArrington NNP\nArriving VBG\nArrow NNP\nArrowhead NNP\nArroyo NNP\nArseneault NNP\nArsenio NNP\nArseny NNP\nArshinkoff NNP\nArt NNP\nArte NNP\nArtemis NNP\nArtemisia NNP\nArterial JJ\nArteries NN\nArtesia NNP\nArtfully RB\nArthritis NNP\nArthur NNP\nArthurian JJ\nArticle NN\nArticles NNPS\nArtie NNP\nArtificer NN\nArtificial JJ\nArtillery NN\nArtisans NNS\nArtist NNP\nArtistes NNP\nArtistic JJ\nArtists NNPS\nArtkino NNP\nArtois NNP\nArtra NNP\nArts NNP\nArtur NNP\nArturo NNP\nArtzt NNP\nAruba NNP\nArundel NNP\nArvey NNP\nArvin NNP\nArvind NNP\nArx NNP\nAs IN\nAsada NNP\nAsahi NNP\nAsahipen NNP\nAsarco NNP\nAsbestos NNP\nAsbury NNP\nAscent NNP\nAsch NNP\nAschenbach NNP\nAscii NNP\nAsea NNP\nAsean JJ\nAsensio NNP\nAsh NNP\nAsh-Can NNP\nAshamed JJ\nAshcroft NNP\nAshenberg NNP\nAsher NNP\nAsher\\/Gould NNP\nAsheville NNP\nAshikaga NNP\nAshington-Pickett NNP\nAshkhabad NNP\nAshland NNP\nAshley NNP\nAshman NNP\nAshmolean NNP\nAshok NNP\nAshtabula NN\nAshton NNP\nAshton-Tate NNP\nAshurst NNP\nAshwood NNP\nAsia NNP\nAsia-Pacific NNP\nAsia\\ JJ\nAsia\\/Pacific JJ\nAsian JJ\nAsian-American JJ\nAsian-Americans NNPS\nAsian-owned JJ\nAsians NNPS\nAsiatic JJ\nAside RB\nAsides NNP\nAsil NNP\nAsilomar NNP\nAsilone NNP\nAsimov NNP\nAsk VB\nAska NNP\nAsked VBN\nAskin NNP\nAskington NNP\nAsks VBZ\nAslacton NNP\nAslanian NNP\nAsleep RB\nAsman NNP\nAsmara NNP\nAspe NNP\nAspects NNPS\nAspen NNP\nAspencade NNP\nAspencades NNPS\nAspenstrom NNP\nAspercreme NNP\nAspilia NN\nAspin NNP\nAspirin NNP\nAsquith NNP\nAsra NNP\nAss'n NNP\nAss'ns NNP\nAssab NNP\nAssad NNP\nAssam NNP\nAssassination NNP\nAssemble VB\nAssemblies NNP\nAssembly NNP\nAssemblyman NNP\nAssemblywoman NNP\nAsser NNP\nAsserts VBZ\nAsses NNS\nAssess VB\nAssessment NNP\nAssessors NNS\nAsset NNP\nAsset-Backed JJ\nAsset-backed JJ\nAsset-management JJ\nAssets NNS\nAssicurazioni NNP\nAssign VB\nAssignation NN\nAssimilation NNP\nAssiniboia NNP\nAssiniboine NNP\nAssist NNP\nAssistance NNP\nAssistant NNP\nAssisting VBG\nAssn NNP\nAssn. NNP\nAssociate NNP\nAssociated NNP\nAssociates NNPS\nAssociation NNP\nAssociation-College NNP\nAssociations NNP\nAssonance NN\nAssume VB\nAssuming VBG\nAssumption NN\nAssurance NNP\nAssurances NNP\nAssuredly RB\nAssyrian NNP\nAssyriology NN\nAsta NNP\nAstaires NNPS\nAstarte NNP\nAstec NNP\nAsteria NNP\nAsteroidal JJ\nAsti NNP\nAstin NNP\nAston NNP\nAstonishingly RB\nAstor NNP\nAstoria NNP\nAstra NNP\nAstrid NNP\nAstrodome NNP\nAstronaut NN\nAstronauts NNS\nAstronomy NN\nAstrophysicist NN\nAstros NNPS\nAstwood NNP\nAswara NNP\nAsylum NNP\nAt IN\nAtala NNP\nAtalanta\\/Sosnoff NNP\nAtari NNP\nAtchinson NNP\nAtco NNP\nAte VBD\nAteliers NNP\nAterman NNP\nAth. NNP\nAthabascan NNP\nAthalie NNP\nAthanassiades NNP\nAthearn NNP\nAtheist NNP\nAthena NNP\nAthenaeum NNP\nAthenian JJ\nAthenians NNPS\nAthens NNP\nAtherton NNP\nAthlete NNP\nAthletic NNP\nAthletics NNP\nAthlone NNP\nAtkins NNP\nAtkinson NNP\nAtkisson NNP\nAtkissons NNPS\nAtlanta NNP\nAtlanta-Chicago NNP\nAtlanta-based JJ\nAtlantans NNPS\nAtlantes NN\nAtlantic NNP\nAtlantica NNP\nAtlantis NNP\nAtlas NNP\nAtlas-Centaur NNP\nAtlee NNP\nAtmospheric NNP\nAtomic NNP\nAtomics\\/Combustion NNP\nAtone VB\nAtonement NN\nAtonio NNP\nAtop IN\nAtorino NNP\nAtra NNP\nAtreus NNP\nAtrium NNP\nAtsushi NNP\nAtta NN\nAttack NNP\nAttacks VBZ\nAttakapas NNP\nAttali NNP\nAttanasio NNP\nAttempts NNS\nAttendance NN\nAttendants NNPS\nAttending VBG\nAttention NN\nAttermann NNP\nAttic NNP\nAttica NNP\nAttila NNP\nAttilio NNP\nAttitude NN\nAttitudes NNS\nAttlee NNP\nAttopeu NNP\nAttorney NNP\nAttorneys NNS\nAttorneys-at-Large NNP\nAttracted VBN\nAttraction NNP\nAttractions NNPS\nAttribute NNP\nAttributes NNS\nAttridge NNP\nAttrition NN\nAttu NNP\nAttwood NNP\nAtty. NNP\nAtwell NNP\nAtwells NNP\nAtwood NNP\nAtzez NNP\nAu FW\nAuCoin NNP\nAuberge NNP\nAubr. NNP\nAubrey NNP\nAuburn NN\nAuckland NNP\nAuction NN\nAuctions NNS\nAudi NNP\nAudience NN\nAudio NNP\nAudiovisual NNP\nAudit NNP\nAuditorium NNP\nAuditors NNS\nAudits NNPS\nAudrey NNP\nAudubon NNP\nAuerbach NNP\nAuf NNP\nAug. NNP\nAuger NNP\nAugust NNP\nAugusta NNP\nAugustan NNP\nAugustin NNP\nAugustine NNP\nAugustines NNPS\nAugusto NNP\nAugustus NNP\nAul NNP\nAulnay NNP\nAung NNP\nAunt NNP\nAuntie NNP\nAunts NNS\nAureliano NNP\nAurelius NNP\nAureomycin NN\nAurora NNP\nAuschwitz NNP\nAussedat NNP\nAustin NNP\nAustins NNPS\nAustralasian JJ\nAustralia NNP\nAustralia-based JJ\nAustralia-wide JJ\nAustralian JJ\nAustralian-American JJ\nAustralian-Chinese JJ\nAustralian-based JJ\nAustralians NNS\nAustralites NNS\nAustria NNP\nAustrian JJ\nAustrian-Argentine JJ\nAustro-Hungarian JJ\nAuthenticated VBN\nAuthentication NNP\nAuthor NNP\nAuthorities NNS\nAuthority NNP\nAuthority-Garden NNP\nAuthors NNS\nAuto NN\nAuto-Europe NNP\nAuto-parts JJ\nAutoPacific NNP\nAutoWorld NNP\nAutobiographies NNS\nAutobiography NNP\nAutocamiones NNP\nAutocoder NN\nAutocollimator NN\nAutocracies NNPS\nAutodesk NNP\nAutolatina NNP\nAutomated NNP\nAutomatic NNP\nAutomatically RB\nAutomation NNP\nAutomax NNP\nAutomobile NNP\nAutomobiles NNS\nAutomobili NNP\nAutomotive NNP\nAutorapido NNP\nAutos NNS\nAutosuggestibility NN\nAutozam NNP\nAutry NNP\nAutumnal JJ\nAuvil NNP\nAuxiliaries NNPS\nAuxiliary NNP\nAv NNP\nAv. NNP\nAva NNP\nAvailable JJ\nAvalon NNP\nAvant-garde NN\nAvantor NNP\nAvco NNP\nAvdel NNP\nAve NNP\nAve. NNP\nAvedisian NNP\nAvelar NNP\nAvena NNP\nAventine NNP\nAventino NNP\nAvenue NNP\nAvenues NNP\nAverae NNP\nAverage NNP\nAverages NNP\nAverell NNP\nAvery NNP\nAvi NNP\nAviacion NNP\nAvianca NNP\nAviation NNP\nAviazione NNP\nAviion NNP\nAvions NNP\nAvis NNP\nAviv NNP\nAviva NNP\nAvmark NNP\nAvner NNP\nAvnet NNP\nAvocado NNP\nAvocados NNS\nAvoid VB\nAvoidance NNP\nAvoiding VBG\nAvoids VBZ\nAvon NNP\nAvondale NNP\nAvowed JJ\nAvrett NNP\nAw UH\nAwad NNP\nAwake NNP\nAwakening NNP\nAward NNP\nAwarding VBG\nAwards NNP\nAware JJ\nAwareness NN\nAway RB\nAwe NN\nAwesome JJ\nAwkwardly RB\nAwww UH\nAx NNP\nAxa NNP\nAxa-Midi NNP\nAxe NNP\nAxel NNP\nAxelrod NNP\nAxioms NNS\nAxis NNP\nAxxess NNP\nAyala NNP\nAyatollah NNP\nAycock NNP\nAye-yah-ah-ah UH\nAyer NNP\nAyers NNP\nAylesbury NNP\nAyob NNP\nAyres NNP\nAysshom NNP\nAyub NNP\nAzabu NNP\nAzalea NNP\nAzara NNP\nAzcuenaga NNP\nAzem NNP\nAzerbaijan NNP\nAzerbaijani NNP\nAzioni NNP\nAziz NNP\nAziza NNP\nAzlant NNP\nAzoff NNP\nAztar NNP\nAztec JJ\nAzucena NNP\nAzusa NNP\nB NNP\nB&B NNP\nB&H NNP\nB&W NNP\nB'Gosh NNP\nB'dikkat NNP\nB'dikkat's NNS\nB'nai NNP\nB'rith NNP\nB-1 NNP\nB-1B NNP\nB-1s NNPS\nB-2 NNP\nB-2s NNPS\nB-3 JJ\nB-4 NNP\nB-47 NN\nB-52 NNP\nB-52H NN\nB-52s CD\nB-58 NN\nB-70 NNP\nB-As IN\nB-I-G NNP\nB-cell NN\nB-cells NNS\nB-flat NN\nB-movie NN\nB-scale NN\nB. NNP\nB.A. NNP\nB.A.T NNP\nB.A.T... :\nB.B. NNP\nB.B.C. NNP\nB.C NN\nB.C. NN\nB.C.-based JJ\nB.D. NNP\nB.F. NNP\nB.G. NNP\nB.J. NNP\nB.M. NNP\nB.S. NNP\nB.U. NNP\nB.V NNP\nB.V. NNP\nB.t.u. NN\nB2 NN\nB70 NN\nBA NNP\nBACK RB\nBACKED VBD\nBAHAMIAN JJ\nBAII NNP\nBAKER NNP\nBAKKER NNP\nBALANCES NNS\nBALKS VBZ\nBALLOT NN\nBALLOTS NNS\nBALLY'S NNP\nBAM NNP\nBANCORP NNP\nBANCORPORATION NNP\nBANK NNP\nBANKAMERICA NNP\nBANKERS NNS\nBANKS NNS\nBARKER NNP\nBAROMETER NN\nBART NNP\nBASF NNP\nBATTLE NN\nBATTLED VBD\nBAY NNP\nBAe NNP\nBBB NNP\nBBC NNP\nBBDO NNP\nBBN NNP\nBCA NNP\nBCD NNP\nBCE NNP\nBCED NNP\nBCI NNP\nBCS NNP\nBDDP NNP\nBDO NNP\nBE VB\nBE&K NNP\nBEA NNP\nBEAM NNP\nBEARS NNP\nBEAT NN\nBEAVER NNP\nBECHTEL NNP\nBECOME VB\nBEEN VBN\nBEER NN\nBEGAN VBD\nBEI NNP\nBEING VBG\nBELEAGUERED JJ\nBELL NNP\nBENEFITS NNS\nBENTSEN NNP\nBERNARD NNP\nBEST JJS\nBET NNP\nBEVERLY NNP\nBEWARE VB\nBG NNP\nBGS NNP\nBHP NNP\nBIA-COR NNP\nBICC NNP\nBID NNP\nBIG NNP\nBIGGER JJR\nBILL NN\nBILLS NNS\nBILZERIAN'S NNP\nBIO-RAD NNP\nBIOTECHNOLOGY NN\nBIP NNP\nBIRDS NNS\nBITCH NN\nBK NNP\nBL NNP\nBLACK JJ\nBLAME VB\nBLAST NN\nBLIP NNP\nBLOCK NNP\nBLOCKBUSTER NNP\nBLOEDEL NNP\nBLOOD NN\nBLOW NNP\nBLS NNP\nBLUE JJ\nBLUES NNPS\nBMA NNP\nBMC NNP\nBMEWS NNP\nBMI NNP\nBMIRs NNPS\nBMP NN\nBMP-1 NN\nBMT NNP\nBMW NNP\nBMWs NNS\nBNL NNP\nBNP NNP\nBOARD NNP\nBOARD'S NNP\nBOAST VB\nBOC NNP\nBOD NN\nBOD1,000 NN\nBOEING NNP\nBOGGS NNP\nBOJ NNP\nBOND NN\nBONDS NNS\nBONO FW\nBONUSES NNS\nBOOSTS NNS\nBORLAND NNP\nBOSSES NNP\nBOSTON NNP\nBOTH DT\nBOTTLED VBN\nBOZELL NNP\nBP NNP\nBPB NNP\nBPC NNP\nBPCA NNP\nBPD NNP\nBRACED NNP\nBRADSTREET NNP\nBRAINTRUSTERS NNS\nBRAMALEA NNP\nBRANDS NNPS\nBRANIFF'S NNP\nBREADBOX NN\nBREAKERS NNP\nBREWERS NNS\nBREWS VBZ\nBRIDGEPORT NNP\nBRIEFS NNS\nBRING VB\nBRISTOL-MYERS NNP\nBRITANNICA NNP\nBRITISH JJ\nBRK NNP\nBRNF NNP\nBROAD NNP\nBROADCASTING NNP\nBROKERAGE NN\nBROWN-FORMAN NNP\nBRUT NNP\nBS NNP\nBSB NNP\nBSN NNP\nBSPP NNP\nBT NNP\nBTL NNP\nBTR NNP\nBTU NNP\nBUELL NNP\nBUFFALO NNP\nBUILDING NNP\nBULL NNP\nBUNDY'S NNP\nBURBANK NNP\nBURNHAM NNP\nBUSH NNP\nBUSINESS NN\nBUSINESSLAND NNP\nBUSY JJ\nBUT CC\nBUY-OUT NN\nBUYERS NNS\nBUYING NN\nBV NNP\nBVI NNP\nBVI-based JJ\nBVIslander NN\nBVIslanders NNS\nBW NNP\nB\\/C NN\nB\\/T NNP\nBa-1 JJ\nBa-2 JJ\nBa-3 JJ\nBa2 JJ\nBa3 JJ\nBaa-1 JJ\nBaa-2 JJ\nBaa-3 JJ\nBaa1 JJ\nBaa2 JJ\nBaa3 JJ\nBaar NNP\nBabatunde NNP\nBabbitt NNP\nBabble NN\nBabcock NNP\nBabe NNP\nBabel NNP\nBabelists NNS\nBabies NNS\nBabin NNP\nBabin-Festival NNP\nBabson NNP\nBaby NNP\nBaby-dear NNP\nBabylon NNP\nBabylonian JJ\nBabylonians NNPS\nBacardi NNP\nBacarella NNP\nBaccarat NNP\nBacchus NNP\nBach NNP\nBacharach NNP\nBache NNP\nBachelor NNP\nBaches NNPS\nBachlund NNP\nBachman NNP\nBachmann NNP\nBachtold NNP\nBacillus NN\nBack RB\nBack-of-the-envelope JJ\nBack-to-back JJ\nBackbends NNS\nBacke NNP\nBacked VBN\nBacker NNP\nBackers NNS\nBackground NN\nBackhaus NNP\nBacking VBG\nBacklog NN\nBacks VBZ\nBackseat NN\nBackstage RB\nBackstairs NNS\nBackstitch VB\nBackstitching VBG\nBackup JJ\nBackward NNP\nBackyard NN\nBacon NNP\nBacteria NNS\nBacterial JJ\nBad JJ\nBadder NNP\nBaden-Baden NNP\nBaden-Wuerttemberg NNP\nBaden-Wuerttemburg NNP\nBader NNP\nBadges NNS\nBadin NNP\nBadlands NNS\nBadly RB\nBadrawi NNP\nBadura-Skoda-Vienna NNP\nBaer NNP\nBaeyens NNP\nBaeyenses NNP\nBaffin NNP\nBafflers NNPS\nBag NN\nBagatelles NNPS\nBagcraft NNP\nBaggage NN\nBagging VBG\nBagh NNP\nBaghdad NNP\nBagley NNP\nBagneaux NNP\nBagnoli NNP\nBags NNS\nBah UH\nBahamas NNPS\nBahamian JJ\nBahar NNP\nBahcall NNP\nBahi NNP\nBahia NNP\nBahr NNP\nBahrain NNP\nBahre NNP\nBahrenburg NNP\nBaiba NNP\nBailard NNP\nBaileefe NNP\nBailey NNP\nBailiffs NNS\nBailit NNP\nBailkin NNP\nBailly NNP\nBailout NNP\nBaily NNP\nBaim NNP\nBain NNP\nBainbridge NNP\nBaines NNP\nBaird NNP\nBairnco NNP\nBait NNP\nBaja NNP\nBajakian NNP\nBake NNP\nBake-Off NNP\nBake-off NNP\nBaker NNP\nBaker-Shevardnadze NNP\nBakeries NNP\nBakersfield NNP\nBakery NNP\nBakes NNP\nBakhtiari NNP\nBaking NNP\nBakker NNP\nBakkers NNPS\nBaku NNP\nBal NNP\nBala NNP\nBalafrej NNP\nBalag NNP\nBalaguer NNP\nBalance NNP\nBalanced VBN\nBalances NNP\nBalanchine NNP\nBalcerowicz NNP\nBalch NNP\nBalcolm NNP\nBalcor NNP\nBald NNP\nBaldness NN\nBaldor NNP\nBaldrige NNP\nBaldry NNP\nBaldwin NNP\nBaldy NNP\nBalenciaga NNP\nBales NNP\nBalfour NNP\nBali NNP\nBaliles NNP\nBalinese NNP\nBalkan NNP\nBalkanize VB\nBalkanized JJ\nBalkanizing VBG\nBalkans NNPS\nBalking VBG\nBall NNP\nBallad NNP\nBalladur NNP\nBallantine NNP\nBallantine\\/Del NNP\nBallard NNP\nBallenger NNP\nBallestre NNP\nBallet NNP\nBallets NNP\nBalletto NNP\nBallhaus NNP\nBallinger NNP\nBallistic NNP\nBallon NNP\nBalloon NNP\nBallooning NN\nBallot NN\nBallou NNP\nBallroom NNP\nBallwin NNP\nBally NNP\nBalmain NNP\nBalmer NNP\nBalmy JJ\nBalogh NNP\nBalsbaugh NNP\nBaltasar NNP\nBaltensweiler NNP\nBaltic JJ\nBaltimore NNP\nBaltimore-Washington NNP\nBaltimore-based JJ\nBaltimorean NNP\nBalts NNPS\nBaluchis NNPS\nBaly NNP\nBalzac NNP\nBam UH\nBamberger NNP\nBambi NNP\nBambi-syndronists NNS\nBamboo JJ\nBamford NNP\nBamsi NNP\nBanPonce NNP\nBanana NNP\nBananas NNS\nBanawan NNP\nBanawans NNPS\nBanbury NNP\nBanc NNP\nBancNewEngland NNP\nBancOklahoma NNP\nBanca NNP\nBancaire NNP\nBancario NNP\nBanco NNP\nBancorp NNP\nBancorp. NNP\nBancroft NNP\nBancshares NNPS\nBand NNP\nBand-Aid NNP\nBanda NNP\nBandaging NNP\nBandar NNP\nBandini NNP\nBandish NNP\nBandit NN\nBandler NNP\nBandon NNP\nBandow NNP\nBandstand NN\nBane NNP\nBanerian NNP\nBanfield NNP\nBang NNP\nBang-Jensen NNP\nBangalore NNP\nBangemann NNP\nBangkok NNP\nBangkok-Rangoon NNP\nBangkok-based JJ\nBangladesh NNP\nBangles NNPS\nBangs NNP\nBani NNP\nBanjo NNP\nBank NNP\nBank-America NNP\nBank-Texas NNP\nBankAmerica NNP\nBankTexas NNP\nBankWatch NNP\nBank\\/IMF NNP\nBank\\/Tidewater NNP\nBankcard NNP\nBanker NNP\nBankers NNPS\nBankhaus NNP\nBankhead NNP\nBanking NNP\nBankler NNP\nBanknote NNP\nBankrolled VBN\nBankruptcy NNP\nBankruptcy-court NN\nBankrupty NNP\nBanks NNP\nBankshares NNPS\nBankverein NNP\nBanner NNP\nBanners NNS\nBanning VBG\nBannister NNP\nBanoun NNP\nBanque NNP\nBanquet NNP\nBans NNP\nBanstar NNP\nBantam NNP\nBante NNP\nBantu NNP\nBantus NNPS\nBanvel NNP\nBanxquote NNP\nBapepam NNP\nBapilly NNP\nBaptist NNP\nBaptiste NNP\nBaptists NNS\nBar NNP\nBar-H NNP\nBar-Shavit NNP\nBarabba NNP\nBarabolak NNP\nBaraclough NNP\nBarakat NNP\nBaranovichi NNP\nBarasch NNP\nBarataria NNP\nBarba NNP\nBarbados NNP\nBarbakow NNP\nBarbanell NNP\nBarbara NNP\nBarbaresco NNP\nBarbarians NNP\nBarbariccia NNP\nBarbary JJ\nBarbaud NNP\nBarbecued JJ\nBarbee NNP\nBarber NNP\nBarber-Greene NNP\nBarbera NNP\nBarberini NNP\nBarberis NNP\nBarberton NNP\nBarbie NNP\nBarbier-Mueller NNP\nBarbour NNP\nBarbra NNP\nBarbudos NNPS\nBarcalounger NNP\nBarcelona NNP\nBarcelona-based JJ\nBarclay NNP\nBarclays NNP\nBarco NNP\nBarcus NNP\nBard NNP\nBard\\/EMS NNP\nBardagy NNP\nBardall NNP\nBardell NNP\nBare JJ\nBare-Faced NNP\nBarell NNP\nBarely RB\nBarend NNP\nBarenholtz NNP\nBarfield NNP\nBargain NN\nBargain-hunters NNS\nBargain-hunting NN\nBarge NNP\nBargen NNP\nBargerter NNP\nBarges NNS\nBari NNP\nBarilla NNP\nBaring NNP\nBaringer NNP\nBarings NNPS\nBaris NNP\nBarker NNP\nBarkin NNP\nBarkley NNP\nBarksdale NNP\nBarletta NNP\nBarlow NNP\nBarmore NNP\nBarn NNP\nBarnaba NNP\nBarnabas NNP\nBarnard NNP\nBarnes NNP\nBarnet NNP\nBarnett NNP\nBarnevik NNP\nBarney NNP\nBarneys NNP\nBarnhardt NNP\nBarnhill NNP\nBarnicle NNP\nBarnum NNP\nBarnumville NNP\nBarokocy NNP\nBaron NNP\nBaroque JJ\nBarr NNP\nBarrah NNP\nBarre NNP\nBarre-Montpelier NNP\nBarred VBN\nBarreiro NNP\nBarrel NN\nBarren NNP\nBarret NNP\nBarrett NNP\nBarrette JJ\nBarrick NNP\nBarrie NNP\nBarrier NNP\nBarriers NNS\nBarring VBG\nBarrington NNP\nBarrio NNP\nBarrios NNP\nBarris NNP\nBarrister NNP\nBarristers NNS\nBarron NNP\nBarrow NNP\nBarry NNP\nBarrymores NNPS\nBars NNP\nBarsacs NNPS\nBarshop NNP\nBarsky NNP\nBarstow NNP\nBarsuki NNP\nBart NNP\nBarter NN\nBarth NNP\nBartha NNP\nBartholf NNP\nBartholow NNP\nBartleby NNP\nBartlesville NNP\nBartlett NNP\nBartok NNP\nBartol NNP\nBartoli NNP\nBarton NNP\nBartville NNP\nBaruch NNP\nBaruschke NNP\nBas NNP\nBascom NNP\nBase NNP\nBaseball NN\nBased VBN\nBasel NNP\nBasel-based JJ\nBaseman NN\nBasement NN\nBasf NNP\nBasham NNP\nBashaw NNP\nBashers NNP\nBashing VBG\nBashir NNP\nBasho NNP\nBasic NNP\nBasically RB\nBasics NNP\nBasie NNP\nBasil NNP\nBasile NNP\nBasin NNP\nBasing VBG\nBasinger NNP\nBasir NNP\nBaskerville NNP\nBasket NNP\nBasketball NNP\nBaskets NNS\nBaskin NNP\nBaskin-Robbins NNP\nBasking NNP\nBasler NNP\nBaslot NNP\nBasques NNPS\nBasra NNP\nBass NNP\nBasse NNP\nBasses NNPS\nBassi NNP\nBassis NNPS\nBasso NNP\nBast NNP\nBastards NNS\nBastianini NNP\nBastin NNP\nBasu NNP\nBataan NNP\nBatallion NNP\nBatallion-2000 NNP\nBatangas NNP\nBatavia NNP\nBatch NN\nBatchelder NNP\nBatchelor NNP\nBateman NNP\nBates NNP\nBath NNP\nBathar-on-Walli NNP\nBather NN\nBathing NN\nBaths NNPS\nBathurst NNP\nBathyran NNP\nBathyrans NNPS\nBatibot NNP\nBatista NNP\nBatman NNP\nBaton NNP\nBattalion NNP\nBattalion-2000 NN\nBattat NNP\nBattelle NNP\nBatten NNP\nBattenkill NNP\nBattered VBN\nBattery NNP\nBatterymarch NNP\nBattista NNP\nBattle NNP\nBattle-tested JJ\nBaubles NNPS\nBaucus NNP\nBaudelaire NNP\nBauer NNP\nBauer-Ecsy NNP\nBauernfeind NNP\nBauhaus NNP\nBaulieu NNP\nBaullari NNP\nBaum NNP\nBauman NNP\nBaumgarten NNP\nBausch NNP\nBauser NNP\nBavaria NNP\nBavarian JJ\nBawer NNP\nBaxley NNP\nBaxter NNP\nBay NNP\nBay-area JJ\nBay-front JJ\nBayaderka NNP\nBayanihan NNP\nBayer NNP\nBayerische NNP\nBayezit NNP\nBaykal NNP\nBaylor NNP\nBayne NNP\nBayonne NNP\nBayou NNP\nBayreuth NNP\nBays NNP\nBaytos NNP\nBaz NNP\nBazaar NNP\nBazy-Sire NNP\nBe VB\nBea NNP\nBeach NNP\nBeachfront NNP\nBeacon NNP\nBead NN\nBeadle NNP\nBeadles NNP\nBeadleston NNP\nBeads NNPS\nBeady JJ\nBeahrs NNP\nBeairsto NNP\nBeal NNP\nBeale NNP\nBeall NNP\nBeallsville NNP\nBeam NNP\nBeaman NNP\nBeame NNP\nBeaming VBG\nBean NNP\nBeantown NNP\nBear NNP\nBeard NNP\nBearden NNP\nBeardens NNPS\nBeardslee NNP\nBeardsley NNP\nBeare NNP\nBearer NN\nBearings NNP\nBearishness NN\nBearman NNP\nBears NNPS\nBears-Cleveland NNP\nBeast NNP\nBeat NNP\nBeaten VBN\nBeatie NNP\nBeatitudes NNPS\nBeatlemania NN\nBeatles NNPS\nBeatrice NNP\nBeatty NNP\nBeau NNP\nBeaubien NNP\nBeauchamps NNPS\nBeauclerk NNP\nBeaufort NNP\nBeaujolais NNP\nBeaulieu NNP\nBeaumont NNP\nBeauregard NNP\nBeautiful JJ\nBeauty NNP\nBeaux NNP\nBeaux-Arts NNP\nBeaver NNP\nBeaverton NNP\nBeazer NNP\nBebe NNP\nBebear NNP\nBebey NNP\nBebop NNP\nBecalmed VBN\nBecame VBD\nBecause IN\nBecca NNP\nBeccaria NNP\nBechhofer NNP\nBecht NNP\nBechtel NNP\nBeck NNP\nBecker NNP\nBecket NNP\nBeckett NNP\nBeckman NNP\nBeckstrom NNP\nBeckwith NNP\nBeckworth NNP\nBecome VB\nBecoming VBG\nBecton NNP\nBed NN\nBedbugs NNS\nBeddall NNP\nBede NNP\nBedfellows NNS\nBedford NNP\nBedford-Stuyvesant... :\nBedminster NNP\nBedouins NNS\nBedridden JJ\nBedtime NN\nBee NNP\nBee-Hunter NNP\nBeebe NNP\nBeebes NNPS\nBeech NNP\nBeech-Nut NNP\nBeechNut NNP\nBeecham NNP\nBeecher NNP\nBeechnut NNP\nBeef NN\nBeefeater NNP\nBeefing VBG\nBeefsteak NNP\nBeen VBN\nBeep NNP\nBeer NN\nBeermann NNP\nBeers NNP\nBeesemyers NNP\nBeet NNP\nBeethoven NNP\nBefore IN\nBegbick NNP\nBegelman NNP\nBeggiato NNP\nBegging VBG\nBeghin NNP\nBeghin-Say NNP\nBegin VB\nBeginners NNS\nBeginning VBG\nBegins VBZ\nBegley NNP\nBehague NNP\nBehan NNP\nBehavior NN\nBehaviour NN\nBeheading VBG\nBehind IN\nBehind-the-scenes JJ\nBehold VB\nBehrendt NNP\nBehrens NNP\nBehringwerke NNP\nBeiderbecke NNP\nBeige NNP\nBeigel NNP\nBeijing NNP\nBeing VBG\nBeira NNP\nBeirut NNP\nBeirut-on-Hudson NNP\nBeise NNP\nBeismortier NNP\nBeit NNP\nBekaa NNP\nBekkai NNP\nBel NNP\nBel-Air NNP\nBela NNP\nBelafonte NNP\nBelanger NNP\nBelasco NNP\nBelated JJ\nBelatedly RB\nBelding NNP\nBelfast NNP\nBelge NNP\nBelgian JJ\nBelgians NNPS\nBelgique NNP\nBelgium NNP\nBelgrade NNP\nBelief NN\nBelier NNP\nBelieve VB\nBelieving VBG\nBelin NNP\nBelinda NNP\nBelisle NNP\nBelk NNP\nBelknap NNP\nBell NNP\nBellSouth NNP\nBellSouth-LIN NNP\nBellSouth\\ JJ\nBella NNP\nBellamy NNP\nBellarosa NNP\nBellas NNP\nBellcore NNP\nBelle NNP\nBelletch NNP\nBelleville NNP\nBellevue NNP\nBelli NNP\nBellinger NNP\nBellingham NNP\nBellini NNP\nBellman NNP\nBello NNP\nBellomo-McGee NNP\nBellow NNP\nBellows NNP\nBells NNPS\nBellwood NNP\nBelmont NNP\nBelmonts NNPS\nBelo NNP\nBelo-Universal NNP\nBelorussian NNP\nBeloved NNP\nBelow IN\nBelshazzar NNP\nBelt NNP\nBelth NNP\nBelton NNP\nBeltway NNP\nBeltway-itis NN\nBelvedere NNP\nBelvidere NNP\nBelvieu NNP\nBelway NNP\nBelz NNP\nBelzberg NNP\nBelzbergs NNPS\nBelzec NNP\nBeman NNP\nBen NNP\nBen-Gurion NNP\nBen-hadad NNP\nBenackova NNP\nBenanav NNP\nBenazir NNP\nBench NNP\nBenched NNP\nBenchley NNP\nBenchmark JJ\nBend NNP\nBenda NNP\nBendectin NNP\nBendix\\/King NNP\nBendjedid NNP\nBeneath IN\nBenedek NNP\nBenedetti NNP\nBenedetto NNP\nBenedick NNP\nBenedictine JJ\nBenediction NNP\nBenefactor NNP\nBeneficial NNP\nBeneficiaries NNS\nBeneficiary NN\nBenefit NNP\nBenefits NNS\nBenelli NNP\nBenelux NNP\nBenes NNP\nBenesi NNP\nBenet NNP\nBenets NNPS\nBenetton NNP\nBeng NNP\nBengal NNP\nBengali JJ\nBengalis NNPS\nBengals NNPS\nBengals-Browns JJ\nBengt NNP\nBenham NNP\nBenigno NNP\nBenin NNP\nBenington NNP\nBenita NNP\nBenito NNP\nBenj NNP\nBenjamin NNP\nBennett NNP\nBennett-Bloom NNP\nBennigsen-Foerder NNP\nBenninger NNP\nBennington NNP\nBennis NNP\nBenno NNP\nBenny NNP\nBenoit NNP\nBens NNP\nBenson NNP\nBensonhurst NNP\nBensten NNP\nBent NNP\nBent-Arm NNP\nBentham NNP\nBentley NNP\nBentleys NNPS\nBenton NNP\nBentsen NNP\nBenz NNP\nBenzedrine NNP\nBenzell NNP\nBenzes NNP\nBenzinger NNP\nBeowulf NNP\nBerard NNP\nBerardi NNP\nBerber JJ\nBerbera NNP\nBerche NNP\nBerea NNP\nBerean NNP\nBeregevoy NNP\nBeregovoy NNP\nBerens NNP\nBeresford NNP\nBerets NNPS\nBeretta NNP\nBerettas NNS\nBereuter NNP\nBerg NNP\nBergamaschi NNP\nBergelt NNP\nBergen NNP\nBerger NNP\nBergman NNP\nBergsma NNP\nBergson NNP\nBergsten NNP\nBering NNP\nBeringer NNP\nBerkeley NNP\nBerkely NNP\nBerkley NNP\nBerkman NNP\nBerko NNP\nBerkowitz NNP\nBerks NNP\nBerkshire NNP\nBerkshires NNP\nBerlack NNP\nBerland NNP\nBerlaymont NNP\nBerle NNP\nBerlin NNP\nBerlin-West NNP\nBerliner NNP\nBerliners NNP\nBerlioz NNP\nBerlitz NNP\nBerlusconi NNP\nBerman NNP\nBermuda NNP\nBermuda-based JJ\nBermuda-registered JJ\nBermudez NNP\nBern NNP\nBernadine NNP\nBernard NNP\nBernardin NNP\nBernardine NNP\nBernardo NNP\nBerndt NNP\nBerne NNP\nBerner NNP\nBernet NNP\nBernhard NNP\nBernhardt NNP\nBernie NNP\nBerniece NNP\nBernini NNP\nBernoulli NNP\nBernstein NNP\nBernstein-Macaulay NNP\nBernz-O-Matic NN\nBerol NNP\nBeronio NNP\nBerra NNP\nBerrellez NNP\nBerri NNP\nBerridge NNP\nBerrigan NNP\nBerry NNP\nBershad NNP\nBerson NNP\nBert NNP\nBerte NNP\nBertelsmann NNP\nBerteros NNPS\nBerth NNP\nBertha NNP\nBerthelier NNP\nBerthold NNP\nBertie NNP\nBertin NNP\nBerto NNP\nBertoia NNP\nBertoli NNP\nBertolotti NNP\nBertolt NNP\nBerton NNP\nBertorelli NNP\nBertram NNP\nBertrand NNP\nBertussi NNP\nBeryl NNP\nBeseler NNP\nBeset VBN\nBesher NNP\nBeside IN\nBesides IN\nBess NNP\nBessarabia NNP\nBessemer NNP\nBesset NNP\nBessie NNP\nBessie\\/Harper NNP\nBest JJS\nBester NNP\nBestimmung FW\nBet NNP\nBeta NNP\nBetaWest NNP\nBetancourt NNP\nBeth NNP\nBethForge NNP\nBethea NNP\nBethel NNP\nBethesda NNP\nBethle NN\nBethlehem NNP\nBetrayed NNP\nBets NNS\nBetsey NNP\nBetsy NNP\nBette NNP\nBettencourt NNP\nBetter NNP\nBetter-educated JJ\nBetting NNP\nBettner NNP\nBetts NNP\nBetty NNP\nBetween IN\nBeulah NNP\nBeutel NNP\nBevel VB\nBeverage NNP\nBeverages NNP\nBeverly NNP\nBevmark NNP\nBevo NNP\nBew NNP\nBeware VB\nBewitched NNP\nBewkes NNP\nBexar NNP\nBey NNP\nBeyeler NNP\nBeyer NNP\nBeyond IN\nBfree NNP\nBhabani NNP\nBhagat NNP\nBharat NNP\nBharati NNP\nBhd. NNP\nBhirud NNP\nBhojani NNP\nBhutan NNP\nBhutto NNP\nBiafra NNP\nBiaggi NNP\nBiagi NNP\nBialystok NNP\nBianchi NNP\nBianco NNP\nBias NNP\nBib NNP\nBibb NNP\nBible NNP\nBible-emancipated JJ\nBible-loving JJ\nBibles NNPS\nBiblical JJ\nBiblically RB\nBibliography NN\nBic NNP\nBick NNP\nBickel NNP\nBickford NNP\nBickwit NNP\nBicycle NNP\nBicycling NNP\nBicyclists NNPS\nBid NNP\nBidard NNP\nBidding NN\nBiddle NNP\nBiden NNP\nBidermann NNP\nBids NNS\nBieber NNP\nBiederman NNP\nBiedermann NNP\nBiedermeier FW\nBiehl NNP\nBielas NNP\nBien NNP\nBienville NNP\nBierbower NNP\nBierce NNP\nBietnar NNP\nBifutek-san FW\nBig NNP\nBig-bucks JJ\nBigelow NNP\nBigfoot NNP\nBigg NNP\nBigger JJR\nBiggest JJS\nBiggio NNP\nBiggs NNP\nBigness NN\nBiiN NNP\nBike NNP\nBikers NNS\nBiking NNP\nBikini NNP\nBila NNP\nBilanz NNP\nBilbao NNP\nBilbrey NNP\nBill NNP\nBillard NNP\nBillboard NNP\nBillboarding NNP\nBilled VBN\nBillerica NNP\nBillheimer NNP\nBilliards NNP\nBillie NNP\nBilliken NNP\nBillikens NNP\nBilling NN\nBillings NNS\nBillion CD\nBillionaire NN\nBillions NNS\nBillmeyer NNP\nBillock NNP\nBills NNS\nBilly NNP\nBilzerian NNP\nBimini NNP\nBinary JJ\nBince NNP\nBindal NNP\nBinder NNP\nBing NNP\nBingaman NNP\nBinghamton NNP\nBingles NNS\nBingley NNP\nBini NNP\nBinn NNP\nBinning NNP\nBinomial NN\nBiny NNP\nBio-Dynamic NNP\nBio-Products NNP\nBio-Response NNP\nBio-Technology NNP\nBio-Trends NNP\nBioScience NNP\nBioSciences NNP\nBioVentures NNP\nBioanalytical NNP\nBiochemical NNP\nBiochemistry NNP\nBiodegradable JJ\nBioengineers NNS\nBiofeedback NNP\nBiogen NNP\nBiographical NNP\nBioline NNP\nBiological JJ\nBiologicals NNP\nBiologico NNP\nBiologics NNP\nBiologique NNP\nBiology NNP\nBiomedicals NNP\nBiomet NNP\nBiondi NNP\nBiondi-Santi NNP\nBiopharm NNP\nBiopure NNP\nBiosciences NNP\nBiosite NNP\nBiosource NNP\nBiosystems NNP\nBiotech NNP\nBiotechnical NNP\nBiotechnology NNP\nBiovest NNP\nBipartisan JJ\nBirch NNP\nBird NNP\nBirdie NNP\nBirdpark NNP\nBirds NNP\nBirdwhistell NNP\nBirdwood NNP\nBirenbaum NNP\nBirgfeld NNP\nBirgit NNP\nBirgitta NNP\nBirinyi NNP\nBirk NNP\nBirkel NNP\nBirkelund NNP\nBirkhead NNP\nBirmingham NNP\nBirnbaum NNP\nBirney NNP\nBirns NNP\nBirr NNP\nBirtcher NNP\nBirth NNP\nBirthday NN\nBirths NNS\nBis NNP\nBiscayne NNP\nBischofberger NNP\nBiscuit NNP\nBiscuits NNP\nBish NNP\nBishop NNP\nBishops NNP\nBishopsgate NNP\nBishun NNP\nBisi NNP\nBisiewicz NNP\nBismarck NNP\nBismarckian JJ\nBismark NNP\nBisque NN\nBissell NNP\nBissett NNP\nBisson NNP\nBit NN\nBits NNS\nBittania NNP\nBitten VBN\nBitter JJ\nBitterness NN\nBitting NNP\nBittker NNP\nBix NNP\nBixby NNP\nBizMart NNP\nBizarre JJ\nBizerte NNP\nBizet NNP\nBjerre NNP\nBlaber NNP\nBlack NNP\nBlack-and-white JJ\nBlackberry NNP\nBlackboard NNP\nBlackburn NNP\nBlackfeet NNPS\nBlackfriar NNP\nBlackhawk NNP\nBlackjack NNP\nBlackman NNP\nBlackmer NNP\nBlackmun NNP\nBlackpool NNP\nBlacks NNS\nBlackstock NNP\nBlackstone NNP\nBlackwell NNP\nBlackwells NNPS\nBlackwill NNP\nBlade NNP\nBlaggs NNP\nBlaikie NNP\nBlain NNP\nBlaine NNP\nBlair NNP\nBlaise NNP\nBlake NNP\nBlakes NNS\nBlakey NNP\nBlame VB\nBlamed VBN\nBlaming VBG\nBlampied NNP\nBlanc NNP\nBlanchard NNP\nBlanche NNP\nBlanched VBN\nBlanco NNP\nBlancs NNP\nBland JJ\nBlandings NNPS\nBlandon NNP\nBlank NNP\nBlankenship NNP\nBlanton NNP\nBlasi NNP\nBlasingame NNP\nBlasphemers NNS\nBlasphemous JJ\nBlass NNP\nBlast NNP\nBlasts NNS\nBlatz NNP\nBlauberman NNP\nBlaustein NNP\nBlaydon NNP\nBlazer NNP\nBldg NNP\nBldg. NNP\nBleach NN\nBleacher NN\nBleaching VBG\nBleak NNP\nBlechman NNP\nBleckley NNP\nBleckner NNP\nBledsoe NNP\nBleeker NNP\nBleier NNP\nBlend VB\nBlendax NNP\nBlenheim NNP\nBless NNP\nBlessed NNP\nBlessings NNS\nBleus NNP\nBlevins NNPS\nBlier NNP\nBlimp NNP\nBlind JJ\nBlinder NNP\nBlish NNP\nBlistered VBN\nBlitz NNP\nBloc NNP\nBloch NNP\nBlock NNP\nBlockade NN\nBlockbuster NNP\nBlocked VBN\nBlodgett NNP\nBloedel NNP\nBloeser NNP\nBlohm NNP\nBlois NNP\nBlomdahl NNP\nBlomfield NNP\nBlondes NNP\nBlood NNP\nBloody NNP\nBloom NNP\nBloomberg NNP\nBloomfield NNP\nBloomingdale NNP\nBloomingdales NNP\nBloomington NNP\nBloopers NNS\nBlossom NNP\nBlot NNP\nBlount NNP\nBlowers NNS\nBlowing NN\nBlue NNP\nBlue-chip JJ\nBlue-chips NNS\nBluebird NNP\nBluebonnet NNP\nBluefield NNP\nBlueger NNP\nBlueprints VBZ\nBlues NNPS\nBluff NNP\nBlum NNP\nBlumberg NNP\nBlume NNP\nBlumenfeld NNP\nBlumenkrantz NNP\nBlumenthal NNP\nBlumstein NNP\nBlunt NNP\nBluntly RB\nBlush NNP\nBluthenzweig NNP\nBlvd NNP\nBlvd. NNP\nBlyth NNP\nBlythe NNP\nBo NNP\nBoa NN\nBoadicea NNP\nBoake NNP\nBoal NNP\nBoard NNP\nBoard-listed JJ\nBoard-traded JJ\nBoardman NNP\nBoardrooms NNS\nBoards NNPS\nBoardwalk NNP\nBoarts NNP\nBoase NNP\nBoasts VBZ\nBoat NNP\nBoatel NN\nBoating NNP\nBoatmen NNPS\nBoats NNS\nBoatyards NNS\nBoaz NNP\nBob NNP\nBobar NNP\nBobbie NNP\nBobbsey NNP\nBobby NNP\nBobettes NNS\nBobo NNP\nBoca NNP\nBocas NNP\nBoccone NNP\nBochniarz NNP\nBock NNP\nBockius NNP\nBockris NNP\nBoddington NNP\nBode NNP\nBodenheim NNP\nBodenseewerk NNP\nBodhisattva NNP\nBodily NNP\nBodin NNP\nBodleian NNP\nBodmer NNP\nBodner NNP\nBody NNP\nBody-building JJ\nBoehlert NNP\nBoehm NNP\nBoehmer NNP\nBoehringer NNP\nBoehringer-Ingleheim NNP\nBoeing NNP\nBoeings NNPS\nBoeotian NNP\nBoersen-Zeitung NNP\nBoesel NNP\nBoesky NNP\nBoesky-greed-is-good JJ\nBoeskys NNP\nBoettcher NNP\nBofors NNP\nBoga NNP\nBogacheva NNP\nBogart NNP\nBogartian JJ\nBogdan NNP\nBogdanor NNP\nBoggs NNP\nBogle NNP\nBognato NNP\nBogner NNP\nBogota NNP\nBohane NNP\nBohart NNP\nBoheme NNP\nBohemia NNP\nBohemian NNP\nBohemians NNPS\nBohlen NNP\nBohmerwald FW\nBohn NNP\nBohrer NNP\nBoies NNP\nBoil VB\nBoils NNS\nBoily NNP\nBois NNP\nBoisbriant NNP\nBoise NNP\nBoise-Cascade NNP\nBoismassif NNP\nBoissoneault NNP\nBoisvert NNP\nBokat NNP\nBoksen NNP\nBol NNP\nBoland NNP\nBolanos NNP\nBolar NNP\nBold NNP\nBolduc NNP\nBolet NNP\nBoley NNP\nBolger NNP\nBoliden NNP\nBolinas NNP\nBolinder NNP\nBolingbroke NNP\nBoliou NNP\nBolivar NNP\nBolivia NNP\nBolivian JJ\nBolker NNP\nBoll NNP\nBolling NNP\nBollinger NNP\nBologna NNP\nBolotin NNP\nBolovens NNP\nBolsa NNP\nBolsheviks NNPS\nBolshevism NNP\nBolshevistic JJ\nBolshoi NNP\nBolstered VBN\nBolstering VBG\nBolton NNP\nBoltz NNP\nBoltzmann NNP\nBomb VB\nBombardier NNP\nBombay NNP\nBombeck NNP\nBombers NNS\nBombieri NNP\nBombus NNP\nBon NNP\nBonaccolta NNP\nBonacquist NNP\nBonanno NNP\nBonanza NNP\nBonaparte NNP\nBonasorte NNP\nBonaventure NNP\nBonavia NNP\nBond NNP\nBondholder NN\nBondholders NNS\nBondi NNP\nBonds NNS\nBonds-b NNP\nBonecrusher NNP\nBoneh NNP\nBonenfant NNP\nBones NNS\nBonett NNP\nBonfiglio NNP\nBonfire NN\nBong UH\nBongo NNP\nBonham NNP\nBonhoeffer NNP\nBonhoffer NNP\nBoni NNP\nBoniface NNP\nBonilla NNP\nBonita NNP\nBonito NNP\nBonjour FW\nBonn NNP\nBonn-sponsored NNP\nBonne NNP\nBonnell NNP\nBonner NNP\nBonnet NNP\nBonneville NNP\nBonnie NNP\nBonnier NNP\nBonnierforetagen NNP\nBonniers NNP\nBonnor NNP\nBonomo NNP\nBonso NNP\nBontempo NNP\nBonus NNP\nBonuses NNS\nBonwit NNP\nBooby JJ\nBoogaard NNP\nBoogie NNP\nBook NNP\nBook-of-the-Month NNP\nBooker NNP\nBookies NNS\nBookin NNP\nBookings NNS\nBookman NNP\nBooks NNS\nBookshop NNP\nBookwalter NNP\nBoole NNP\nBoom NNP\nBoom-city NNP\nBooming JJ\nBoon NNP\nBoon-Sanwa NNP\nBoondael NNP\nBoone NNP\nBoonton NNP\nBoorse NNP\nBoorstyn NNP\nBoost VB\nBoot NNP\nBooth NNP\nBoothby NNP\nBooths NNS\nBootle NNP\nBoots NNP\nBooty NN\nBooz NNP\nBooz-Allen NNP\nBorak NNP\nBorax NNP\nBordeau NNP\nBordeaux NNP\nBordel NNP\nBorden NNP\nBordens NNPS\nBorder NNP\nBordetella NN\nBordner NNP\nBore VB\nBoredom NN\nBoren NNP\nBorg-Warner NNP\nBorge NNP\nBorges NNP\nBorgeson NNP\nBorghese NNP\nBorglum NNP\nBorie NNP\nBoris NNP\nBorja NNP\nBork NNP\nBorland NNP\nBorn VBN\nBorn-again JJ\nBorneo NNP\nBorner NNP\nBornholm NNP\nBoron NNP\nBorough NNP\nBorrioboola-Gha NNP\nBorromini NNP\nBorrowed VBN\nBorrower NN\nBorrowers NNS\nBorrowing VBG\nBorscht NNP\nBortel NNP\nBorten NNP\nBosak NNP\nBosch NNP\nBosco NNP\nBoseki NNP\nBosh NNP\nBosis NNP\nBosket NNP\nBoskin NNP\nBoslego NNP\nBosler NNP\nBosley NNP\nBosphorus NNP\nBosque NNP\nBoss NNP\nBosses NNS\nBostian NNP\nBostic NNP\nBostik NNP\nBostitch NNP\nBoston NNP\nBoston-area JJ\nBoston-based JJ\nBostonian NNP\nBostonians NNPS\nBoswell NNP\nBosworth NNP\nBoth DT\nBotswana NNP\nBottega NNP\nBottineau NNP\nBottlers NNP\nBottling NNP\nBottom NNP\nBottoms NNS\nBottorff NNP\nBotts NNP\nBotulinal JJ\nBouchard NNP\nBoucher NNP\nBoucherie NNP\nBoucheron NNP\nBoudreau NNP\nBougainville NNP\nBougie NNP\nBouillaire NNP\nBoulder NNP\nBoulet NNP\nBoulevard NNP\nBoulez NNP\nBoulle NNP\nBoulroud NNP\nBoun NNP\nBouncing NNP\nBoundary NN\nBouquet NNP\nBourassa NNP\nBourbon NNP\nBourbons NNPS\nBourcier NNP\nBourgeois NNP\nBourguiba NNP\nBourke NNP\nBourke-White NNP\nBourn NNP\nBoursault NNP\nBourse NNP\nBourses NNP\nBoursin NNP\nBoutflower NNP\nBouton NNP\nBoutwell NNP\nBouvardier NNP\nBouvier NNP\nBouwer NNP\nBouygues NNP\nBovard NNP\nBovenzi NNP\nBoveri NNP\nBovin NNP\nBovine NNP\nBow NNP\nBowan NNP\nBowater NNP\nBowden NNP\nBowder NNP\nBowdoin NNP\nBowen NNP\nBowenized VBN\nBowers NNP\nBowery NNP\nBowes NNP\nBowie NNP\nBowing VBG\nBowker NNP\nBowl NNP\nBowlers NNPS\nBowles NNP\nBowling NNP\nBowls NNP\nBowman NNP\nBowne NNP\nBowser NNP\nBowsher NNP\nBox NNP\nBoxell NNP\nBoxer NNP\nBoxes NNP\nBoxford NNP\nBoxing NN\nBoxwood NNP\nBoxy JJ\nBoy NN\nBoy-Lady NNP\nBoy-Marquita NNP\nBoy/NNP... :\nBoyce NNP\nBoyd NNP\nBoyde NNP\nBoyden NNP\nBoyeki NNP\nBoyer NNP\nBoykins NNP\nBoylan NNP\nBoylston NNP\nBoym NNP\nBoys NNPS\nBozell NNP\nBozeman NNP\nBozic NNP\nBozicevich NNP\nBraathens NNP\nBrace NNP\nBrachfeld NNP\nBracken NNP\nBracknell NNP\nBrad NNP\nBradbury NNP\nBraddock NNP\nBraddock-against-the-Indians NNP\nBraden NNP\nBradford NNP\nBradford-White NNP\nBradlee NNP\nBradley NNP\nBradsby NNP\nBradsher NNP\nBradstreet NNP\nBrady NNP\nBrady-type JJ\nBrae NNP\nBraeuer NNP\nBragg NNP\nBraggadocio NNP\nBrahm NNP\nBrahmaputra NNP\nBrahmin NNP\nBrahms NNP\nBrahmsian JJ\nBraidwood NNP\nBraille NNP\nBrailsford NNP\nBrain NN\nBrainard NNP\nBrainards NNPS\nBrains NNS\nBraintree NNP\nBraitman NNP\nBrake NNP\nBrakes NNS\nBraking NNP\nBrakke NN\nBramah NNP\nBramalea NNP\nBramante NNP\nBrambles NNP\nBramwell NNP\nBran NNP\nBranagan NNP\nBranca NNP\nBrancato NNP\nBranch NNP\nBranchburg NNP\nBranches NNS\nBranching NNP\nBranchville NNP\nBrand NN\nBrand-Name NN\nBrande NNP\nBrandeis NNP\nBrandel NNP\nBrandenburg NNP\nBrandes NNP\nBrandhorst NNP\nBrando NNP\nBrandon NNP\nBrands NNP\nBrandt NNP\nBrandy NNP\nBrandywine NNP\nBranford NNP\nBraniff NNP\nBranigan NNP\nBranman NNP\nBrannigan NNP\nBrannon NNP\nBranson NNP\nBrant NNP\nBrantford NNP\nBranum NNP\nBraque NNP\nBraques NNPS\nBrascade NNP\nBrash NNP\nBrasil JJ\nBrasilia NNP\nBrasiliaaircraft NNP\nBrass NNP\nBrassbound NNP\nBrassica NNP\nBrassnose NNP\nBrasstown NNP\nBratislava NNP\nBrauchli NNP\nBraud NNP\nBrauer NNP\nBrauerei NNP\nBraumeisters NNPS\nBraun NNP\nBraunreuther NNP\nBravado NNP\nBrave NNP\nBraverman NNP\nBraves NNP\nBraving VBG\nBravo NNP\nBrawer NNP\nBrawley NNP\nBrawls NNS\nBraye NNP\nBrazelton NNP\nBrazen NNP\nBrazil NNP\nBrazilian JJ\nBrazilians NNPS\nBrazos NNP\nBrea NNP\nBread NNP\nBreak NN\nBreakers NNP\nBreakey NNP\nBreakfast NN\nBreaking VBG\nBreaks NNP\nBreakthrough NNP\nBrealey NNP\nBrean NNP\nBreasted NNP\nBreath NN\nBreathing NN\nBreaux NNP\nBrecht NNP\nBrechtian JJ\nBreckenridge NNP\nBreda NNP\nBreed NNP\nBreeden NNP\nBreeder NNP\nBreeders NNP\nBreeding NNP\nBreen NNP\nBreene NNP\nBreger NNP\nBregman NNP\nBrelin NNP\nBremen NNP\nBremerton NNP\nBremner NNP\nBremsstrahlung NN\nBrenda NNP\nBrendan NNP\nBrendel NNP\nBrendle NNP\nBrenham NNP\nBrenmor NNP\nBrenna NNP\nBrennan NNP\nBrenner NNP\nBrent NNP\nBrentwood NNP\nBreslin NNP\nBressler NNP\nBrest NNP\nBrest-Silevniov NNP\nBrestowe NNP\nBrethen NNP\nBretherick NNP\nBreton NNP\nBrett NNP\nBretton NNP\nBretz NNP\nBreuer NNP\nBreuners NNP\nBrevard NNP\nBreve NNP\nBrevet NNP\nBrevetti NNP\nBrew NNP\nBrewer NNP\nBreweries NNP\nBrewers NNS\nBrewery NNP\nBrewing NNP\nBrezhnev NNP\nBrezhnevite NNP\nBrezinski NNP\nBrian NNP\nBriar NNP\nBriarcliff NNP\nBribe NN\nBrice NNP\nBrick NNP\nBricker NNP\nBricklayers NNPS\nBricks NNS\nBricktop NNP\nBricom NNP\nBride NNP\nBrideshead NNP\nBridewell NNP\nBridge NNP\nBridgeport NNP\nBridgers NNP\nBridges NNP\nBridgestone NNP\nBridgestone\\/Firestone NNP\nBridget NNP\nBridgeton NNP\nBridgetown NNP\nBridgeview NNP\nBridgeville NNP\nBridgewater NNP\nBrief NNP\nBriefer NNP\nBrieff NNP\nBriefly RB\nBrien NNP\nBrierley NNP\nBrierley-controlled JJ\nBrig. NNP\nBrigade NNP\nBrigadier NNP\nBrigadoon NNP\nBrigantine NNP\nBriggs NNP\nBrigham NNP\nBrighetti NNP\nBright NNP\nBrightman NNP\nBrighton NNP\nBriksa NNP\nBrill NNP\nBrillo NN\nBrindisi NNP\nBring VB\nBringing NNP\nBrink NNP\nBrinker NNP\nBrinkley NNP\nBrinkman NNP\nBrinsley NNP\nBrinson NNP\nBrisbane NNP\nBriscoe NNP\nBrisk JJ\nBrissette NNP\nBristol NNP\nBristol-Meyers NNP\nBristol-Myers NNP\nBrit NNP\nBritain NNP\nBritain-U.S. JJ\nBritain-dominated JJ\nBritannia NNP\nBritannic JJ\nBritannica NNP\nBritches NNS\nBritish JJ\nBritish-American NNP\nBritish-Dutch JJ\nBritish-French-Israeli JJ\nBritish-based JJ\nBritish-born JJ\nBritish-built JJ\nBritish-owned JJ\nBritisher NNP\nBritoil NNP\nBriton NNP\nBritons NNPS\nBritta NNP\nBrittan NNP\nBrittany NNP\nBritten NNP\nBritto NNP\nBritton NNP\nBrizola NNP\nBroad NNP\nBroadBeach NNP\nBroadbeach NNP\nBroadbent NNP\nBroadcast NNP\nBroadcasters NNS\nBroadcasting NNP\nBroadcasts NNS\nBroader JJR\nBroadly RB\nBroadstar NNP\nBroadview NNP\nBroadway NNP\nBroberg NNP\nBrochures NNS\nBrock NNP\nBrocklin NNP\nBrockman NNP\nBrockville NNP\nBrockway NNP\nBrod NNP\nBrodbeck NNP\nBroder NNP\nBroderick NNP\nBrodie NNP\nBrodsky NNP\nBrodsly NNP\nBrody NNP\nBroe NNP\nBroeg NNP\nBroglie NNP\nBroglio NNP\nBroil VB\nBroiled VBN\nBroiler NN\nBrokaw NNP\nBroke NNP\nBroken NNP\nBroker NNP\nBrokerage NN\nBrokerage-firm JJ\nBrokers NNS\nBromagen NNP\nBromfield NNP\nBromley NNP\nBromwich NNP\nBron NNP\nBronces NNP\nBronco NNP\nBroncos NNP\nBroncs NNP\nBroner NNP\nBronfman NNP\nBronfmans NNP\nBronislava NNP\nBronislaw NNP\nBronner NNP\nBronson NNP\nBronston NNP\nBronx NNP\nBronzavia-Air NNP\nBrooding NNP\nBrook NNP\nBrooke NNP\nBrookfield NNP\nBrookhaven NNP\nBrookings NNP\nBrookland NNP\nBrookline NNP\nBrooklyn NNP\nBrooklyn-born JJ\nBrookmeyer NNP\nBrookmont NNP\nBrooks NNP\nBroome NNP\nBroomfield NNP\nBrophy NNP\nBros NNP\nBros. NNP\nBrosterman NNP\nBrother NNP\nBrotherhood NNP\nBrothers NNPS\nBrougham NNP\nBrought VBN\nBroughten NNP\nBroughton NNP\nBroun NNP\nBrouwer NNP\nBroward NNP\nBrowder NNP\nBrown NNP\nBrown-Forman NNP\nBrown-tobacco JJ\nBrownapopolus NNP\nBrowne NNP\nBrownell NNP\nBrowning NNP\nBrownings NNP\nBrownlow NNP\nBrowns NNP\nBrownstein NNP\nBroxodent NNP\nBroyd NNP\nBrozman NNP\nBrubaker NNP\nBruccoli NNP\nBruce NNP\nBruch NNP\nBruck NNP\nBruckheimer NNP\nBruckmann NNP\nBruckner NNP\nBrudzinski NNP\nBruegel NNP\nBruges NNP\nBruhn NNP\nBruises NNS\nBrumbaugh NNP\nBrumby NNP\nBrumidi NNP\nBrumidi-Costaggini NNP\nBrumley NNP\nBrundtland NNP\nBrunei NNP\nBrunello NNP\nBruner NNP\nBrunk NNP\nBrunner NNP\nBruno NNP\nBruns NNP\nBrunsdon NNP\nBrunswick NNP\nBrunswig NNP\nBrusca NNP\nBruser NNP\nBrush NNP\nBrush-off NN\nBrussels NNP\nBrut NNP\nBruwer NNP\nBruxelles NNP\nBruyette NNP\nBryan NNP\nBryant NNP\nBryce NNP\nBryn NNP\nBryner NNP\nBryson NNP\nBuaford NNP\nBubba NNP\nBubenik NNP\nBuber NNP\nBuber-think NNP|VB\nBucaramanga NNP\nBucay NNP\nBuccaneers NNS\nBucchino NNP\nBucer NNP\nBuchanan NNP\nBucharest NNP\nBuchbinder NNP\nBuchenwald NNP\nBuchheister NNP\nBuchner NNP\nBuchwald NNP\nBuck NNP\nBuckenham NNP\nBuckeridge NNP\nBuckets NNS\nBuckeye NNP\nBuckhannon NN\nBuckhead NNP\nBuckhorn NN\nBucking VBG\nBuckingham NNP\nBuckles NNP\nBuckley NNP\nBuckman NNP\nBucknell NNP\nBuckra NNP\nBucks NNP\nBucky NNP\nBucs NNP\nBud NNP\nBudapest NNP\nBudd NNP\nBuddha NNP\nBuddhism NNP\nBuddhist JJ\nBuddhists NNP\nBuddy NNP\nBudget NNP\nBudgetary NNP\nBudgeting NN\nBudieshein NNP\nBudlong NNP\nBuds NNPS\nBudweiser NNP\nBudweisers NNS\nBudzyn NNP\nBuechel NNP\nBueky NNP\nBuell NNP\nBuena NNP\nBuenas NNP\nBueno FW\nBuenos NNP\nBuente NNP\nBuffalo NNP\nBuffet NNP\nBuffeted VBN\nBuffets NNS\nBuffett NNP\nBuffetts NNPS\nBuffton NNP\nBufton NNP\nBug NN\nBugatti NNP\nBugle NNP\nBugs NNP\nBuhrmann-Tetterode NNP\nBuick NNP\nBuick-Oldsmobile-Cadillac NNP\nBuild VB\nBuilder NNP\nBuilders NNPS\nBuilding NNP\nBuildings NNS\nBuilds VBZ\nBuilt VBN\nBuker NNP\nBuksbaum NNP\nBul'ba NNP\nBulba NNP\nBulgaria NNP\nBulgarian JJ\nBulgarians NNPS\nBulge NNP\nBull NNP\nBullet NNP\nBulletin NNP\nBullets NNS\nBullfinch NN\nBullion NNP\nBullish JJ\nBulloch NNP\nBullock NNP\nBullocks NNP\nBulls NNS\nBullshit UH\nBully VB\nBulow NNP\nBulseco NNP\nBultmann NNP\nBum NNP\nBumblebees NNS\nBumbry NNP\nBumiputra NNP\nBumkins NNP\nBumpers NNP\nBums NNS\nBun NN\nBunch NN\nBund NN\nBundesbank NNP\nBundesbank-meeting NN\nBundesnachrichtendienst NNP\nBundestag NNP\nBundle NN\nBundy NNP\nBunker NNP\nBunks NNS\nBunny NNP\nBunting NNP\nBunyan NNP\nBuoy NNP\nBuoyed VBN\nBurbank NNP\nBurch NNP\nBurchette NNP\nBurchuladze NNP\nBurckhardt NNP\nBurden NNP\nBurdened VBN\nBurdens NNS\nBurdett NNP\nBurdines NNPS\nBureau NNP\nBureaucrat NN\nBureaucratic JJ\nBureaucrats NNS\nBureaus NNP\nBuren NNP\nBurford NNP\nBurge NNP\nBurgee NNP\nBurgeoning VBG\nBurger NNP\nBurgess NNP\nBurgesses NNS\nBurghardt NNP\nBurgher NNP\nBurghley NNP\nBurgsteinfurt NNP\nBurgundian JJ\nBurgundies NNPS\nBurgundy NNP\nBuri NNP\nBurial NN\nBuried VBN\nBuries VBZ\nBurk NNP\nBurke NNP\nBurke-Rostagno NNP\nBurkes NNPS\nBurkette NNP\nBurkhardt NNP\nBurkina NNP\nBurl NNP\nBurle NNP\nBurleson NNP\nBurling NNP\nBurlingame NNP\nBurlingham NNP\nBurlington NNP\nBurly JJ\nBurma NNP\nBurma-Shave NNP\nBurmah NNP\nBurman NNP\nBurmans NNPS\nBurmese JJ\nBurnand NNP\nBurned VBN\nBurnes NNP\nBurnet NNP\nBurnett NNP\nBurnham NNP\nBurning VBG\nBurnison NNP\nBurnley NNP\nBurns NNP\nBurnside NNP\nBurnsides NNPS\nBurnsville NNP\nBurnt NNP\nBurr NNP\nBurrill NNP\nBurrillville NNP\nBurritt NNP\nBurro NNP\nBurroughs NNP\nBurroughs-Wellcome NNP\nBurry NNP\nBurst VBD\nBursting VBG\nBursts VBZ\nBurt NNP\nBurton NNP\nBurts NNPS\nBurwell NNP\nBury NNP\nBurzon NNP\nBus NN\nBusby NNP\nBusch NNP\nBuser NNP\nBusey NNP\nBush NNP\nBush-Gorbachev NNP\nBush-Salinas NNP\nBush-supported JJ\nBushby NNP\nBushell NNP\nBushels NNS\nBushes NNPS\nBushnell NNP\nBusiness NNP\nBusinesses NNS\nBusinessland NNP\nBusinessmen NNS\nBuskirk NNP\nBussey NNP\nBussieres NNP\nBust NNP\nBustard NN\nBuster NNP\nBut CC\nButane NN\nButch NNP\nButcher NNP\nButler NNP\nButlers NNPS\nButowsky NNP\nButt NNP\nButtacavoli NNP\nButtavacoli NNP\nButte NNP\nButter NN\nButter-Nut NNP\nButterfield NNP\nButterfinger NNP\nButterworth NNP\nButterwyn NNP\nButton NNP\nButtrick NNP\nButts NNP\nButz NNP\nBuxtehude NNP\nBuxton NNP\nBuy VB\nBuy'em VB\nBuy-Back NNP\nBuy-out NN\nBuyer NNP\nBuyers NNS\nBuying VBG\nBuzz NNP\nBuzzell NNP\nBuzzy NNP\nBy IN\nBy-Products NNP\nBy-passing VBG\nBy-the-Book JJ\nBy-the-Sea NNP\nBy-word JJ\nBye UH\nByelorussia NNP\nByer-Rolnick NNP\nByers NNP\nBygdeman NNP\nByler NNP\nBylot NNP\nBynoe NNP\nByrd NNP\nByrne NNP\nByrnes NNP\nByron NNP\nByronic JJ\nByronism NN\nByrum NNP\nBystrzyca NNP\nByting VBG\nByzantine JJ\nByzantium NNP\nByzas NNP\nC NN\nC$ $\nC&D NNP\nC&P NNP\nC&W NNP\nC'est FW\nC'mon VB\nC'un NNP\nC-12 NN\nC-12F NN\nC-130 NN\nC-141 NNP\nC-17 NNP\nC-20 NNP\nC-5B NN\nC-90 NN\nC-S NNP\nC-SPAN NNP\nC-Span NNP\nC-V NNP\nC-minus JJ\nC-plane NN\nC-word NN\nC. NNP\nC.A.I.P. NNP\nC.B. NNP\nC.C. NNP\nC.C.B NNP\nC.C.B. NNP\nC.C.N.Y. NNP\nC.D. NNP\nC.D.s NNS\nC.E. NNP\nC.H. NNP\nC.J. NNP\nC.J.B. NNP\nC.K. NNP\nC.M. NNP\nC.O.G. NNP\nC.P. NNP\nC.R. NNP\nC.S. NNP\nC.W. NNP\nC/NNP.A.J. NNP\nC1 NNP\nC13532 NNP\nC415 CD\nCAAC NNP\nCABBAGE NN\nCABLE NN\nCAC NNP\nCACI NNP\nCAE NNP\nCAE-Link NNP\nCAHNERS NNP\nCALFED NNP\nCALIFORNIA NNP\nCALL NN\nCALLED VBD\nCALLIOPE NNP\nCALLS NNPS\nCAMBREX NNP\nCAMPAIGN NNP\nCAMPEAU NNP\nCAN VB\nCANADA NNP\nCANADIAN JJ\nCANCER NNP\nCANDIDATES NNS\nCAPITAL NNP\nCAPITAL-GAINS NNP\nCAPITALIST JJ\nCAR NN\nCARE NNP\nCAREER NNP\nCARIPLO NNP\nCAROLG NNP\nCARTER NNP\nCARTER-WALLACE NNP\nCASE NNP\nCASES NNS\nCASSETTE NN\nCASTLE NNP\nCAT NNP\nCATFISH NNS\nCATV NN\nCB NNP\nCB-radio-style JJ\nCBC NNP\nCBI NNP\nCBO NNP\nCBOE NNP\nCBOT NNP\nCBS NNP\nCBS-K NNP\nCBS-TV NNP\nCBS-Turner NNP\nCBS-owned JJ\nCBS\\ NNP\nCCC NNP\nCCD NNP\nCCK NNP\nCCK-related JJ\nCCT NNP\nCD NNP\nCD+DVD NN\nCD-4 NNP\nCD-I NNP\nCD-ROM NNP\nCD-type JJ\nCDA NNP\nCDBG NNP\nCDC NNP\nCDK NNP\nCDL NNP\nCDT NNP\nCDU NNP\nCDs NNS\nCELEBRATIONS NNP\nCELTICS NNPS\nCENTERIOR NNP\nCENTRUST NNP\nCEO NNP\nCEO-designate NN\nCEOs NNS\nCERA NNP\nCEREAL NNP\nCERTIFICATES NNS\nCF NNP\nCF6-6 NNP\nCF66 NN\nCF680C2 NNP\nCFC NNP\nCFC-11 NN\nCFC-12 NN\nCFCs NNS\nCFD NNP\nCFM NNP\nCFM56 NN\nCFM56-3C NN\nCFM56-56s NNS\nCFP NNP\nCFTC NNP\nCG NNP\nCGE NNP\nCGP NNP\nCH NN\nCH-47D NNP\nCHALLENGED VBN\nCHAMBERS NNP\nCHANGED VBD\nCHANGES NNS\nCHARIOT NNP\nCHARITABLE JJ\nCHARLES NNP\nCHASE NNP\nCHECKOFF NN\nCHECKUPS NNS\nCHEMICAL NNP\nCHEVRON NNP\nCHEWING VBG\nCHICAGO NNP\nCHIEF JJ\nCHILDREN NNS\nCHIMPS NNS\nCHINA NNP\nCHIPPING VBG\nCHRISTMAS NNP\nCHW NNP\nCI NNP\nCIA NNP\nCICS NNP\nCIM NNP\nCIR NNP\nCIRCUIT NNP\nCIT NNP\nCITIC NNP\nCITIES\\/ABC NNP\nCITIZEN NNP\nCITIZENS NNS\nCITY NNP\nCITY'S NNP\nCJS NNP\nCL NNP\nCLAIMANTS NNS\nCLAIMS VBZ\nCLARK NNP\nCLASHED VBD\nCLAUSE NN\nCLAUSTROPHOBIC JJ\nCLEARED VBD\nCLEARS VBZ\nCLK NNP\nCLOROX NNP\nCLOSE NN\nCLUBBING VBG\nCLUBS NNS\nCMA NNP\nCME NNP\nCMI NNP\nCMK NNP\nCML NNP\nCMOS NNP\nCMS NNP\nCMZ NNP\nCNA NNP\nCNBC NNP\nCNCA NNP\nCNN NNP\nCNW NNP\nCO NNP\nCO. NNP\nCOAHR NNP\nCOAST NNP\nCOASTAL NNP\nCOB NNP\nCOCA-COLA NNP\nCOCAINE NNP\nCOCOA NN\nCODE,DTF NN\nCODE-NAMED VBN\nCOFFEE NN\nCOHERENT NNP\nCOKE NNP\nCOLGATE-PALMOLIVE NNP\nCOLH NNP\nCOLLAPSE NN\nCOLLATERAL NN\nCOLLECTING NN\nCOLOGNE NNP\nCOM NNP\nCOME VBN\nCOMMENTS NNS\nCOMMERCIAL JJ\nCOMMITTEE NNP\nCOMMUNICATIONS NNPS\nCOMMUNISTS NNS\nCOMMUTERS NNS\nCOMPANIES NNS\nCOMPANY NN\nCOMPARE VB\nCOMPLETED VBD\nCOMPUTER NN\nCOMPUTERS NNS\nCONCORDE NNP\nCONELRAD NNP\nCONFIRMED VBD\nCONFRONTATIONS NNS\nCONGRESS NNP\nCONGRESSIONAL JJ\nCONSERVATIVES NNS\nCONSOLIDATED NNP\nCONSULTING NNP\nCONSUMER NN\nCONSUMERS NNS\nCONTACT NN\nCONTAIN VB\nCONTAMINATION NN\nCONTINENTAL NNP\nCONTROL NNP\nCONVICTION NN\nCONVICTS VBZ\nCOOKE NNP\nCOOPER NNP\nCOOPERATION NN\nCOPE VB\nCOPPER NN\nCORNFELD NNP\nCORNUCOPIA NN\nCORP NNP\nCORP. NNP\nCORPORATE JJ\nCORTES NNP\nCOS. NNP\nCOTTON NN\nCOULDN'T NNP\nCOUNSEL NN\nCOUNTRY NN\nCOUP NN\nCOURT NNP\nCOURTS NNS\nCOVER NN\nCOVERAGE NNP\nCP NNP\nCP486 NNP\nCPA NNP\nCPAs NNS\nCPB NNP\nCPC NNP\nCPI NNP\nCPR NNP\nCPT NN\nCPTs NNS\nCR103 NNP\nCRA NNP\nCRAF-Cassini NNP\nCRASHED VBD\nCRAY NNP\nCREAM NNP\nCREATIVE JJ\nCREATOR'S NN\nCREDIT NNP\nCREDITS NNS\nCRESTMONT NNP\nCRI NNP\nCRIME NN\nCRIMINAL JJ\nCRITICAL NNP\nCROSS-BRED VBD\nCROWDED JJ\nCRRES NNP\nCRS NNP\nCRSS NNP\nCRT NNP\nCRX NNP\nCRs NNS\nCS NNP\nCSC NNP\nCSF NNP\nCSFB NNP\nCSI NNP\nCSK NNP\nCSO NNP\nCSR NNP\nCSS NNP\nCST NNP\nCSV NNP\nCSX NNP\nCT NN\nCTA NNP\nCTAs NNS\nCTB NNP\nCTBS NNP\nCTCA NNP\nCTS NNP\nCULPA NNP\nCUNA NNP\nCURBING VBG\nCUTTY NNP\nCV NNP\nCVB NNP\nCVN NNP\nCW NNP\nCW-capable JJ\nCWA NNP\nCWP NNP\nCa MD\nCa. NNP\nCaa NNP\nCab NNP\nCabana NNP\nCabanne NNP\nCabbage NNP\nCabernet NNP\nCabernets NNPS\nCabin NNP\nCabinet NNP\nCable NNP\nCable-system NN\nCabletron NNP\nCablevision NNP\nCabot NNP\nCabrera NNP\nCabria NNP\nCabrini NNP\nCacao NNP\nCaccappolo NNP\nCacophonist NNP\nCadam NNP\nCadbury NNP\nCadbury-Schweppes NNP\nCaddy NNP\nCaddyshack NNP\nCadesi NNP\nCadet NNP\nCadillac NNP\nCadillacs NNPS\nCadiz NNP\nCadnetix NNP\nCadre NNP\nCadwalader NNP\nCadwell NNP\nCady NNP\nCaere NNP\nCaesar NNP\nCaesarean JJ\nCaesars NNP\nCaetani NNP\nCafe NNP\nCafeteria NNP\nCaffedrine NNP\nCafferarelli NNP\nCaffrey NNP\nCafritz NNP\nCagayan NNP\nCage NNP\nCagliari NNP\nCahill NNP\nCahn NNP\nCahners NNP\nCahoon NNP\nCain NNP\nCairenes NNPS\nCairns NNP\nCairo NNP\nCairo-sponsored JJ\nCairoli NNP\nCaisse NNP\nCaitlin NNP\nCaius NNP\nCaja NNP\nCal NNP\nCal-Neva NNP\nCal. NN\nCalComp NNP\nCalFed NNP\nCalMat NNP\nCalTech NNP\nCalabasas NNP\nCalabrese NNP\nCalabria NNP\nCalais NNP\nCalamity NNP\nCalaveras NNS\nCalcium NN\nCalculated VBN\nCalculating VBG\nCalculations NNS\nCalcutta NNP\nCalder NNP\nCaldera NNP\nCalderon NNP\nCalderone NNP\nCalderwood NNP\nCaldor NNP\nCaldwell NNP\nCale NNP\nCaleb NNP\nCalenda NNP\nCalf NNP\nCalgary NNP\nCalgary-based JJ\nCalgene NNP\nCalgon NNP\nCalhoun NNP\nCali NNP\nCalif NNP\nCalif. NNP\nCalif.-based JJ\nCalifano NNP\nCalifon NNP\nCalifornia NNP\nCalifornia-backed JJ\nCalifornia-based JJ\nCalifornia-bashing JJ\nCalifornian NN\nCalifornians NNS\nCalifornication NN\nCaligula NNP\nCalimala NNP\nCaliphobia NNP\nCalisto NNP\nCall VB\nCall-In NN\nCallable JJ\nCallahan NNP\nCallan NNP\nCallas NNP\nCallaway NNP\nCalled VBN\nCallender NNP\nCallers NNS\nCalling VBG\nCalloused JJ\nCalloway NNP\nCalls NNS\nCallum NNP\nCalm JJ\nCalmat NNP\nCalmer JJR\nCalmly RB\nCalor NNP\nCalpers NNP\nCaltech NNP\nCaltrans NNP\nCalude NNP\nCalvary NNP\nCalverley NNP\nCalvert NNP\nCalves NNS\nCalvet NNP\nCalvi NNP\nCalvin NNP\nCalvinist NNP\nCam NNP\nCamaret NNP\nCamarillo NNP\nCamaro NNP\nCamaro-Firebird NNP\nCamaros NNS\nCambodia NNP\nCambodian JJ\nCambodians NNPS\nCambrex NNP\nCambria NNP\nCambrian NNP\nCambridge NNP\nCambridgeport NNP\nCamden NNP\nCamdessus NNP\nCame VBD\nCamel NNP\nCamelot NNP\nCamels NNS\nCameo NNP\nCamera NNP\nCameras NNS\nCamerino NNP\nCameron NNP\nCami NNP\nCamilla NNP\nCamille NNP\nCamilli NNP\nCamillo NNP\nCamilo NNP\nCamino NNP\nCammack NNP\nCamp NNP\nCampagnoli NNP\nCampaign NNP\nCampaigne NNP\nCampaigning VBG\nCampaneris NNP\nCampania NNP\nCampbell NNP\nCampbell-Mithun NNP\nCampbell-Mithun-Esty NNP\nCampbell-brand JJ\nCampbelll NNP\nCampeau NNP\nCampeau-owned JJ\nCampeau-related JJ\nCampeau-unit JJ\nCampenhout NNP\nCampestre NNP\nCampground NNP\nCamping NN\nCampion NNP\nCampitelli NNP\nCampo NNP\nCampobello NNP\nCampus NNP\nCampuses NNS\nCamry NNP\nCamrys NNPS\nCamusfearna NNP\nCan MD\nCan't VB\nCanaan NNP\nCanada NNP\nCanada-Newfoundland NNP\nCanada-North NNP\nCanada-U.S. NNP\nCanadian JJ\nCanadian-U.S. JJ\nCanadian-dollar JJ\nCanadian-fisheries NNS\nCanadian-owned JJ\nCanadianImmigration NNP\nCanadians NNPS\nCanal NNP\nCanam NNP\nCanandaigua NNP\nCananea NNP\nCanard NNP\nCanary NNP\nCanastels NNP\nCanaveral NNP\nCanberra NNP\nCancer NNP\nCandace NNP\nCandela NNP\nCandice NNP\nCandid JJ\nCandidate NN\nCandidates NNS\nCandide NNP\nCandle NNP\nCandlelight NNP\nCandlestick NNP\nCandu NNP\nCandy NN\nCane NNP\nCaneli NNP\nCanellos NNP\nCanelo NNP\nCanepa NNP\nCanestrani NNP\nCanfield NNP\nCanfor NNP\nCaniglia NNP\nCaning NNP\nCanion NNP\nCannavino NNP\nCanned JJ\nCannell NNP\nCanner NNP\nCanneries NNP\nCannes NNP\nCannibal NNP\nCanning NNP\nCannistraro NNP\nCannon NNP\nCanny NNP\nCano NNP\nCanoe NNP\nCanoga NNP\nCanon NNP\nCanonie NNP\nCanseco NNP\nCanteloube NNP\nCanter NNP\nCanterbury NNP\nCanticle NNP\nCantobank NNP\nCanton NNP\nCantonese NNP\nCantoni NNP\nCantor NNP\nCantwell NNP\nCanute NNP\nCanyon NNP\nCap NNP\nCapable JJ\nCapacitors NNP\nCapacity NN\nCapcom NNP\nCape NNP\nCapek NNP\nCapel NNP\nCapellan NNP\nCapello NNP\nCaper NNP\nCapet NNP\nCapetown NNP\nCapetronic NNP\nCapistrano NNP\nCapital NNP\nCapitalincludes NNS\nCapitalism NN\nCapitalist NNP\nCapitalists NNPS\nCapitalizing VBG\nCapitan NNP\nCapitol NNP\nCapitol-EMI NNP\nCapitoline NNP\nCaplan NNP\nCapo NNP\nCapone NNP\nCaporale NNP\nCapote NNP\nCapoten NNP\nCapping VBG\nCapps NNP\nCappy NNP\nCapra NNP\nCapri NNP\nCaprice NNP\nCapricorn NNP\nCapshaw NNP\nCapt. NNP\nCaptain NNP\nCaptured VBN\nCaptures NNP\nCapwell NNP\nCar NNP\nCarCool NNP\nCara NNP\nCaracas NNP\nCaradon NNP\nCaraiba NNP\nCarat NNP\nCarausius NNP\nCaravaggio NNP\nCaravaggio. NNP\nCaravan NNP\nCaravans NNPS\nCarballo NNP\nCarberry NNP\nCarbide NNP\nCarboloy NNP\nCarbon NNP\nCarbondale NNP\nCarbones NNPS\nCarboni NNP\nCard NNP\nCardboard NN\nCarden NNP\nCardenas NNP\nCarder NNP\nCardiac NNP\nCardiff NNP\nCardillo NNP\nCardin NNP\nCardinal NNP\nCardinals NNP\nCardiovascular NNP\nCardiovasculatory NNP\nCardizem NNP\nCardoso NNP\nCards NNP\nCare NNP\nCare-Unit NNP\nCareer NNP\nCareers NNS\nCareful JJ\nCarefully RB\nCareless NNP\nCarena NNP\nCares VBZ\nCarew NNP\nCarews NNPS\nCarey NNP\nCargill NNP\nCargo NNP\nCariaga NNP\nCaribbean NNP\nCaribe NNP\nCaring VBG\nCarisbrook NNP\nCarl NNP\nCarla NNP\nCarleton NNP\nCarletonian NNP\nCarli NNP\nCarlile NNP\nCarlin NNP\nCarliner NNP\nCarlisle NNP\nCarlo NNP\nCarlos NNP\nCarlsbad NNP\nCarlson NNP\nCarlsson NNP\nCarlta NNP\nCarlton NNP\nCarltons NNPS\nCarlucci NNP\nCarlyle NNP\nCarlzon NNP\nCarmack NNP\nCarmel NNP\nCarmelite JJ\nCarmelites NNPS\nCarmen NNP\nCarmer NNP\nCarmichael NNP\nCarmine NNP\nCarmody NNP\nCarmon NNP\nCarnarvon NNP\nCarnegey NNP\nCarnegie NNP\nCarnegie-Illinois NNP\nCarnegie-Mellon NNP\nCarneigie NNP\nCarnevale NNP\nCarney NNP\nCarnival NNP\nCarnochan NNP\nCarol NNP\nCarolco NNP\nCarole NNP\nCaroli NNP\nCarolina NNP\nCarolinas NNPS\nCaroline NNP\nCarolingian JJ\nCarolinian NNP\nCarolinians NNPS\nCarols NNPS\nCarolus NNP\nCarolyn NNP\nCarolyne NNP\nCaron NNP\nCaronia NNP\nCarothers NNP\nCarpathians NNPS\nCarpenter NNP\nCarpenters NNPS\nCarpentier NNP\nCarpeting NN\nCarr NNP\nCarr-Lowrey NNP\nCarrara NNP\nCarraway NNP\nCarre NNP\nCarrel NNP\nCarreon NNP\nCarriages NNS\nCarrie NNP\nCarried VBN\nCarrier NNP\nCarriers NNP\nCarrington NNP\nCarrion NNP\nCarroll NNP\nCarrollton NNP\nCarrot NNP\nCarrots NNPS\nCarrozza NN\nCarruthers NNP\nCarry NNP\nCarrying VBG\nCars NNPS\nCarson NNP\nCarsten NNP\nCarstens NNP\nCartagena NNP\nCartel NNP\nCarter NNP\nCarters NNPS\nCartesian JJ\nCarthage FW\nCarthago FW\nCartier NNP\nCartons NNS\nCartoon NN\nCartoonist NN\nCartoonists NNP\nCartoons NNS\nCartridge NNP\nCartusciello NNP\nCartwright NNP\nCarty NNP\nCaruso NNP\nCarvain NNP\nCarvalho NNP\nCarved JJ\nCarver NNP\nCarvey NNP\nCarving NN\nCarwood NNP\nCary NNP\nCaryl NNP\nCasa NNP\nCasablanca NNP\nCasals NNP\nCasanova NNP\nCasanovas NNPS\nCasassa NNP\nCasbah NNP\nCasca NN\nCascade NNP\nCascaded VBN\nCascades NNP\nCascading VBG\nCase NNP\nCases NNS\nCasey NNP\nCash NNP\nCash-heavy JJ\nCash-pressed JJ\nCash-strapped JJ\nCashiering VBG\nCashin NNP\nCashion NNP\nCashman NNP\nCashways NNPS\nCasino NNP\nCasinos NNS\nCask NNP\nCaskey NNP\nCason NNP\nCaspar NNP\nCasper NNP\nCaspi NNP\nCaspita NNP\nCaspita-brand JJ\nCass NNP\nCassa NNP\nCassandras NNPS\nCassatt NNP\nCassell NNP\nCassim NNP\nCassiopeia NNP\nCassite NNP\nCassius NNP\nCasson NNP\nCast VBN\nCastaneda NNP\nCastel NNP\nCastellanos NNP\nCastile NNP\nCastillo NNP\nCasting VBG\nCastings NNP\nCastle NNP\nCastlegar NNP\nCastleman NNP\nCastles NNS\nCastor JJ\nCastparts NNP\nCastro NNP\nCastro-Medellin NNP\nCastro-held JJ\nCastro-led JJ\nCastroism NNP\nCastrol NNP\nCastros NNPS\nCasualties NNS\nCasualty NNP\nCat NNP\nCatalina NNP\nCatalog NNP\nCatalonians NNPS\nCatalyst NNP\nCatalysts NNS\nCatania NNP\nCataracts NNS\nCatastrophe NN\nCatastrophic NNP\nCatastrophic-health NN\nCatatonia NNP\nCatch NN\nCatch-22 NN\nCatcher NNP\nCatching VBG\nCate NNP\nCater NNP\nCaterpillar NNP\nCaters NNP\nCatfish NNP\nCathay NNP\nCathcart NNP\nCathedral NNP\nCatherall NNP\nCatherine NNP\nCatherwood NNP\nCatheter NNP\nCathleen NNP\nCathodic NNP\nCatholic NNP\nCatholic-Jewish JJ\nCatholicism NNP\nCatholics NNPS\nCathryn NNP\nCathy NNP\nCatinari NNP\nCato NNP\nCaton NNP\nCats NNP\nCatskill NNP\nCatskills NNPS\nCatt NNP\nCattle NNS\nCattleguard NNP\nCattlemen NNPS\nCattolica NNP\nCattrall NNP\nCatz NNP\nCaucasian NNP\nCaucasians NNS\nCaucasus NN\nCaucus NNP\nCaucusing VBG\nCauff NNP\nCauffman NNP\nCaufield NNP\nCaught VBN\nCaulfield NNP\nCause NNP\nCaused VBN\nCauses NNP\nCaution NN\nCautions NNPS\nCautious JJ\nCautiously RB\nCav NNP\nCavalier NNP\nCavaliere NNP\nCavaliers NNS\nCavalli NNP\nCavallinis NNS\nCavallo NNP\nCavalry NNP\nCavanagh NNP\nCavarretta NNP\nCavazos NNP\nCave NNP\nCavenee NNP\nCaverns NNP\nCaves NNP\nCavett NNP\nCavin-Morris NNP\nCavour NNP\nCawdron NNP\nCawley NNP\nCawthorn NNP\nCay NNP\nCaygill NNP\nCayman NNP\nCayne NNP\nCays NNP\nCeartaine JJ\nCecchini NNP\nCecconi NNP\nCece NNP\nCecelia NNP\nCech NNP\nCecil NNP\nCecilia NNP\nCecin NNP\nCeco NNP\nCedar NNP\nCedars NNPS\nCedergren NNP\nCedric NNP\nCedvet NNP\nCeecee NNP\nCefiro NNP\nCeil NNP\nCeilings NNS\nCela NNP\nCelanese NNP\nCelebes NNPS\nCelebrating NNP\nCelebration NNP\nCelebrities NNS\nCelebrity NNP\nCelestial NNP\nCelestino NNP\nCelgar NNP\nCelia NNP\nCelica NNP\nCelie NNP\nCelimene NNP\nCeline NNP\nCell NNP\nCell-free JJ\nCellar NNP\nCellars NNP\nCellist NNP\nCellular NNP\nCellulose NN\nCelnicker NNP\nCelsius NNP\nCelso NNP\nCeltic JJ\nCeltics NNPS\nCeltona NNP\nCemal NNP\nCement NNP\nCementing VBG\nCementos NNP\nCemetery NNP\nCen-Tennial NNP\nCenTrust NNP\nCennini NNP\nCennino NNP\nCensorship NN\nCensus NNP\nCentaur NNP\nCentel NNP\nCentennial NNP\nCenter NNP\nCenter-punch VB\nCenterbank NNP\nCentering VBG\nCenterior NNP\nCenterre NNP\nCenters NNPS\nCentigrade NN\nCentocor NNP\nCentoxin NNP\nCentral NNP\nCentral-bank NN\nCentrale NNP\nCentralia NNP\nCentrality NN\nCentralizing VBG\nCentrally RB\nCentre NNP\nCentredale NNP\nCentrex NNP\nCentronics NNP\nCentrum NNP\nCents NNP\nCenturion NNP\nCentury NNP\nCentury-Fox NNP\nCepeda NNP\nCepheus NNP\nCeramic JJ\nCeramics NNPS\nCereal NN\nCerebral NNP\nCeremonial NNP\nCerf NNP\nCerinvest NNP\nCerise NNP\nCernuda NNP\nCertain JJ\nCertainly RB\nCertificate NN\nCertificates NNS\nCertificates-a NNP\nCertification NNP\nCertified NNP\nCerts NNP\nCertus NNP\nCerus NNP\nCerv NNP\nCervantes NNP\nCervetto NNP\nCesar NNP\nCesare NNP\nCessna NNP\nCestre NNP\nCetron NNP\nCetus NNP\nCeylon NNP\nCezanne NNP\nCezannes NNPS\nCf. VB\nCh NNP\nCh'an NNP\nCh'in NNP\nCh. NN\nChablis NNPS\nChabrier NNP\nChabrol NNP\nChace NNP\nChad NNP\nChadbourne NNP\nChadha NNP\nChadli NNP\nChadroe NNP\nChadwick NNP\nChaffey NNP\nChafic NNP\nChafin NNP\nChagall NNP\nChahar NNP\nChai NNP\nChaikoff NNP\nChain NN\nChains NNS\nChair NNP\nChairman NNP\nChairman-Elect NNP\nChairmen NNS\nChairperson NNP\nChairs NNS\nChajet NNP\nChalidale NNP\nChallenge NNP\nChallenger NNP\nChallenges NNPS\nChallenging VBG\nChalmers NNP\nChalon-sur-Saone NNP\nChamber NNP\nChamberlain NNP\nChambers NNP\nChambre NNP\nChamorro NNP\nChamp NNP\nChampagne NNP\nChampagnes NNS\nChampassak NNP\nChampion NNP\nChampionship NNP\nChamplain NNP\nChamps NNP\nChan NNP\nChance NN\nChancellor NNP\nChancellorsville NNP\nChancery NNP\nChances NNS\nChandler NNP\nChandra NNP\nChandross NNP\nChane NNP\nChanel NNP\nChang NNP\nChange NNP\nChange-ringing NN\nChangeable JJ\nChanges NNS\nChanging VBG\nChangyi NNP\nChangyong NNP\nChannel NNP\nChannel-type NN\nChanning NNP\nChanos NNP\nChans NNS\nChant NNP\nChantal NNP\nChantilly NNP\nChao NNP\nChaos NNP\nChapdelaine NNP\nChapel NNP\nChapelles NNPS\nChapin NNP\nChaplain NNP\nChaplin NNP\nChaplin-like JJ\nChapman NNP\nChappaqua NNP\nChappell NNP\nChapter NN\nChapters NNS\nCharacter NN\nCharacteristically RB\nCharacteristics NNS\nCharacterizing VBG\nCharacters NNS\nCharade NNP\nCharcoal NN\nChardon NNP\nChardonnay NNP\nChardonnay-sipping JJ\nChardonnays NNPS\nCharge NNP\nChargers NNPS\nCharges NNS\nChargeurs NNP\nCharging VBG\nChariots NNS\nCharisma NNP\nCharitable JJ\nCharities NNS\nCharity NN\nCharlayne NNP\nCharlemagne NNP\nCharlene NNP\nCharles NNP\nCharleston NNP\nCharlestonians NNPS\nCharlet NNP\nCharley NNP\nCharlie NNP\nCharlotte NNP\nCharlottesville NNP\nCharls NNP\nCharlton NNP\nCharm NNP\nCharmer NNP\nCharming JJ\nCharnock NNP\nChart NN\nCharta NNP\nCharter NNP\nChartered NNP\nCharterhouse NNP\nCharters NNP\nChartres NNP\nCharts NNS\nChartwell NNP\nChase NNP\nChaseman NNP\nChases NNPS\nChastened VBN\nChateau NNP\nChateaubriand NNP\nChateauvallon NNP\nChatha NNP\nChatham NNP\nChatset NNP\nChatsworth NNP\nChattanooga NNP\nChatter-Proofed JJ\nChatterji NNP\nChatterton NNP\nChatwal NNP\nChaucer NNP\nChauncey NNP\nChausson NNP\nChautauqua NNP\nChavanne-Ketin NNP\nChaves NNP\nChavez NNP\nChavis NNP\nChayefsky NNP\nChayet NNP\nChazanoff NNP\nChe NNP\nCheap JJ\nCheat NNP\nChebrikov NNP\nChecchi NNP\nChecchi-Skinner NNP\nChecci NNP\nCheck VB\nCheck-List NNP\nChecked VBN\nCheckit NNP\nCheckrobot NNP\nChecks NNS\nCheddi NNP\nCheer NNP\nCheered VBN\nCheerful JJ\nCheerios NNPS\nCheerios-brand JJ\nCheers NNP\nCheese NNP\nCheeseheads NNS\nCheeses NNPS\nCheetham NNP\nCheez NNP\nChef NNP\nChehel NNP\nCheil NNP\nChekhov NNP\nChekhovian JJ\nChekovian JJ\nChelmno NNP\nChelmsford NNP\nChelsea NNP\nChem NNP\nChem-Con NNP\nChemPlus NNP\nChemcat NNP\nChemex NNP\nChemfix NNP\nChemical NNP\nChemicals NNPS\nChemische NNP\nChemistry NNP\nChemists NNS\nChen NNP\nChenevix-Trench NNP\nCheney NNP\nCheng NNP\nChengdu NNP\nChennault NNP\nChenoweth NNP\nChequers NNP\nCher NNP\nCheri NNP\nCherkasov NNP\nChernishev NNP\nChernobyl NNP\nChernobyl-type JJ\nCherokee NNP\nCherokees NNPS\nCherry NNP\nCherwell NNP\nCheryl NNP\nChes NNP\nChesaning NNP\nChesapeake NNP\nChesebrough-Pond NNP\nCheshire NNP\nChesley NNP\nChesly NNP\nChesshire NNP\nChessman NNP\nChester NNP\nChesterfield NNP\nChesterton NNP\nChestman NNP\nChestnut NNP\nChestnuts NNS\nChet NNP\nChetta NNP\nCheung NNP\nCheval NNP\nChevalier NNP\nChevaline NNP\nChevenement NNP\nCheveralls NNP\nChevrolet NNP\nChevrolet-Pontiac-GM NNP\nChevrolets NNPS\nChevron NNP\nChevy NNP\nChewing VBG\nChex NNP\nCheyenne NNP\nCheyennes NNPS\nChez NNP\nChg NN\nChi NNP\nChiang NNP\nChiappa NNP\nChiaromonte NNP\nChiat NNP\nChiat\\ NNP\nChiat\\/Day NNP\nChiat\\/Day\\/Mojo NNP\nChiba NNP\nChica NNP\nChicago NNP\nChicago-Helsinki NNP\nChicago-Manchester NNP\nChicago-Montreal NNP\nChicago-Paris NNP\nChicago-Warsaw NNP\nChicago-area JJ\nChicago-based JJ\nChicago-centric JJ\nChicago-style JJ\nChicagoan NNP\nChicagoans NNPS\nChick NN\nChickasaws NNPS\nChicken NNP\nChickens NNS\nChico NNP\nChicopee NNP\nChief NNP\nChiefly RB\nChiefs NNPS\nChieftains NNP\nChien NNP\nChien-Min NNP\nChieti NNP\nChiggers NNS\nChiharu NNP\nChihuahua NNP\nChilblains NNS\nChild NNP\nChilde NNP\nChildhood NNP\nChildren NNS\nChilds NNP\nChile NNP\nChilean JJ\nChili NNP\nChill NN\nChill.`` ``\nChiller NNP\nChilly JJ\nChilmark NNP\nChilver NNP\nChim NNP\nChimanbhai NNP\nChimerine NNP\nChimicles NNP\nChimie NNP\nChin NNP\nChin-Use VB\nChina NNP\nChina-bound JJ\nChina-investment JJ\nChina-watcher NN\nChinaman NNP\nChinchon NNP\nChinese JJ\nChinese-American JJ\nChinese-American-Canadian JJ\nChinese-British JJ\nChinese-Soviet NNP\nChinese-inspired JJ\nChinese-style JJ\nChing NNP\nChinn NNP\nChino NNP\nChinook NNP\nChinooks NNS\nChiodo NNP\nChion NNP\nChip NNP\nChip-o NNP\nChipello NNP\nChipmunks NNPS\nChippendale NNP\nChipping VBG\nChips NNPS\nChirac NNP\nChiriqui NNP\nChiron NNP\nChisholm NNP\nChiuchow NNP\nChiusano NNP\nChivas NNP\nChlorothiazide NN\nChlortetracycline NN\nChmn. NNP\nCho-Liang NNP\nChoctaw NNP\nChoctaws NNPS\nChodorow NNP\nChoice NN\nChoices NNS\nChoir NN\nChojnowski NNP\nChok NNP\nChoking VBG\nCholesterol NN\nCholet NNP\nCholet-Dupont NNP\nChong NNP\nChong-sik NNP\nChongju NNP\nChoong NNP\nChoose VB\nChoosing VBG\nChopin NNP\nChoral NNP\nChorale NNP\nChore NN\nChoreographed VBN\nChores NNS\nChorney NNP\nChorrillos NNP\nChorus NNP\nChosen NNP\nChou NNP\nChow NNP\nChris NNP\nChris-Craft NNP\nChrisanthopoulos NNP\nChriss NNP\nChrissake UH\nChrist NNP\nChrist-like JJ\nChristendom NNP\nChristensen NNP\nChrister NNP\nChristi NNP\nChristian NNP\nChristian-Democratic NNP\nChristian-Moslem JJ\nChristian-dominated JJ\nChristiana NNP\nChristiane NNP\nChristiania NNP\nChristianity NNP\nChristians NNPS\nChristiansen NNP\nChristianson NNP\nChristic NNP\nChristie NNP\nChristies NNP\nChristiev NNP\nChristina NNP\nChristine NNP\nChristmas NNP\nChristmas-like JJ\nChristmas-season NN\nChristmas-time JJ\nChristmas-tree JJ\nChristmastime NNP\nChristoph NNP\nChristopher NNP\nChristophers NNPS\nChristopoulos NNP\nChristos NNP\nChristrian NNP\nChristsake NN\nChristy NNP\nChromatography NN\nChrome NNP\nChromium NN\nChromosome NN\nChromspun NNP\nChronicle NNP\nChronicles NNP\nChronometer NNP\nChrysalis NNP\nChrysler NNP\nChrysler-Plymouth NNP\nChrysler-brand JJ\nChu NNP\nChubb NNP\nChubu NNP\nChucas NNP\nChuck NNP\nChugai NNP\nChugoku NNP\nChukchi NNP\nChula NNP\nChun NNP\nChung NNP\nChurch NNP\nChurches NNP\nChurchill NNP\nChurchillian JJ\nChurchilliana NNPS\nChurchyard NNP\nChurning NN\nChurpek NNP\nChye NNP\nChyron NNP\nCia. NNP\nCiao FW\nCiardi NNP\nCiavarella NNP\nCiba NNP\nCiba-Geigy NNP\nCiba-Geigy\\ JJ\nCibula NNP\nCicero NNP\nCiceronian JJ\nCichan NNP\nCici NNP\nCiciulla NNP\nCicognani NNP\nCid NNP\nCie NNP\nCie. NNP\nCieca NNP\nCiera NNP\nCif NNP\nCigarette NN\nCigarette-vending JJ\nCigna NNP\nCilcorp NNP\nCilluffo NNP\nCima NNP\nCimabue NNP\nCimflex NNP\nCiminero NNP\nCimoli NNP\nCinalli NNP\nCincinnati NNP\nCincinnati-based JJ\nCinderella NNP\nCindy NNP\nCinegrill NNP\nCinema NNP\nCinemactor NNP\nCinematografica NNP\nCinematographer NN\nCinemax NNP\nCineplex NNP\nCinerama NN\nCinnaminson NNP\nCinnamon NNP\nCinq NNP\nCinzano NNP\nCioffi NNP\nCipher NNP\nCipolla NNP\nCiporkin NNP\nCipriani NNP\nCipriano NNP\nCir NNP\nCir. NNP\nCircle NNP\nCircles NNS\nCircuit NNP\nCircuit-breaker JJ\nCircular NNP\nCirculation NN\nCirculations NNP\nCircumstance NNP\nCircumstances NNS\nCircus NNP\nCircus-Circus NNP\nCiriaco NNP\nCirillo NNP\nCirino NNP\nCirona NNP\nCirrus NNP\nCisneros NNP\nCitadel NNP\nCitation NNP\nCite VBP\nCited VBN\nCites VBZ\nCitibank NNP\nCitic NNP\nCiticorp NNP\nCities NNPS\nCities-ABC NNP\nCities\\/ABC NNP\nCiting VBG\nCitizen NNP\nCitizen\\/Labor NNP\nCitizens NNPS\nCitroen NN\nCitrus NNP\nCity NNP\nCity-based JJ\nCity-type JJ\nCityFed NNP\nCiudad NNP\nCiv. NNP\nCivic NNP\nCivics NNPS\nCivil NNP\nCivil-rights NNS\nCivilian NNP\nCivilian-groups NNPS\nCivilization NN\nCivilized JJ\nClabir NNP\nClad VBN\nClaeson NNP\nClaeys NNP\nClaiborne NNP\nClaim VB\nClaimants NNPS\nClaiming VBG\nClaims NNPS\nClair NNP\nClaire NNP\nClairol NNP\nClairson NNP\nClairton NNP\nClams NNS\nClan NNP\nClanahan NNP\nClancy NNP\nClandestine JJ\nClapp NNP\nClapper NNP\nClapping VBG\nClara NNP\nClarcor NNP\nClardy NNP\nClare NNP\nClaremont NNP\nClarence NNP\nClarendon NNP\nClarice NNP\nClaridge NNP\nClarinet NN\nClarion NNP\nClarita NNP\nClark NNP\nClarke NNP\nClarks NNS\nClarksburg NNP\nClarkson NNP\nClashes NNS\nClasping VBG\nClass NNP\nClass-D NNP\nClasses NNS\nClassic NNP\nClassical NNP\nClassicist NN\nClassics NNS\nClassified JJ\nClassroom NNP\nClassy NNP\nClaude NNP\nClaude-Eric NNP\nClaudia NN\nClaudio NNP\nClaus NNP\nClause NN\nClausen NNP\nClavier NN\nClaws NNS\nClay NNP\nClays NNP\nClayt NNP\nClayton NNP\nClayton-Pedersen NNP\nClaytor NNP\nClean NNP\nCleaned VBN\nCleaner NNP\nCleaning VBG\nCleanth NNP\nClear NNP\nClearance NN\nClearasil NNP\nClearer JJR\nClearing NNP\nClearly RB\nClearwater NNP\nCleary NNP\nCleave NNP\nCleaver NNP\nCleburne NNP\nCleland NNP\nClemence NN\nClemenceau NNP\nClemens NNP\nClemensen NNP\nClement NNP\nClemente NNP\nClements NNP\nClemson NNP\nClendenin NNP\nCleo NNP\nCleopatra NNP\nCleota NNP\nClerfayt NNP\nClericis NNP\nClerk NNP\nClerks NNS\nCleva NNP\nCleve NNP\nCleveland NNP\nCleveland-Cliffs NNP\nCleveland-based JJ\nClever JJ\nCliburn NNP\nClients NNS\nCliff NNP\nClifford NNP\nCliffs NNP\nClifton NNP\nClimate NNP\nClimb VB\nClimbing VBG\nCline NNP\nClinic NNP\nClinical NNP\nClinico-pathologic NNP\nClinics NNP\nClinique NNP\nClint NNP\nClinton NNP\nClintonville NNP\nClipper NNP\nClive NNP\nCloquet NNP\nClorets NNP\nClorox NNP\nClose RB\nClose-up NNP\nClosed VBN\nClosed-end JJ\nClosely RB\nClosen NNP\nCloser RBR\nCloses VBZ\nClosing NN\nClostridium NN\nCloth NNP\nClothes NNS\nClothesTime NNP\nClothestime NNP\nClothiers NNP\nClothing NN\nCloud NNP\nCloudcroft NNP\nClouds NNP\nClough NNP\nClov NNP\nClow NNP\nClozapine NNP\nClozaril NNP\nClub NNP\nClubhouse NNP\nClubs NNPS\nCluck NNP\nClue NNP\nClueless NNP\nCluett NNP\nCluff NNP\nCluggish NNP\nClumps NNS\nClurman NNP\nClyde NNP\nClyfford NNP\nCmdr. NNP\nCo NNP\nCo-Chief NNP\nCo-Renitec NNP\nCo-author NN\nCo-authors NNS\nCo-cola NNP\nCo-op NN\nCo-operative NNP\nCo-optation NN\nCo-sponsoring NNP\nCo. NNP\nCo.`` ``\nCoAdvil NNP\nCoGen NNP\nCoach NNP\nCoaching NN\nCoal NNP\nCoalition NNP\nCoan NNP\nCoast NNP\nCoast-based JJ\nCoastAmerica NNP\nCoastal NNP\nCoastline NNP\nCoasts NNPS\nCoat NNP\nCoatedboard NNP\nCoates NNP\nCoatings NNP\nCoats NNP\nCobb NNP\nCobbs NNS\nCoble NNP\nCobo NNP\nCobra NNP\nCoburg NNP\nCoburn NNP\nCoca NNP\nCoca-Cola NNP\nCocaine NN\nCoche-Dury NNP\nCochran NNP\nCochrane NNP\nCockburn NNP\nCockerel NNP\nCocktail NN\nCocktails NNS\nCocoa NNP\nCocom NNP\nCoconut NNP\nCoconuts NNPS\nCocoons NNS\nCocteau NNP\nCod NNP\nCoda NNP\nCoddington NNP\nCode NNP\nCode-Alarm NNP\nCodevilla NNP\nCodification NN\nCodifying VBG\nCody NNP\nCoe NNP\nCoeditors NNS\nCoelho NNP\nCoen NNP\nCoesfeld NNP\nCoeur NNP\nCoffee NNP\nCoffee-House NNP\nCoffee-shop NN\nCoffey NNP\nCoffield NNP\nCoffin NNP\nCofide NNP\nCogan NNP\nCogefar NNP\nCogen NNP\nCogeneration NNP\nCognex NNP\nCognos NNP\nCohen NNP\nCohens NNPS\nCoherent NNP\nCohn NNP\nCohodes NNP\nCoiffet NNP\nCoin NNP\nCoincidences NNPS\nCoincident JJ\nCoincidentally RB\nCoke NNP\nCokely NNP\nCokes NNS\nCol. NNP\nCola NNP\nColavito NNP\nColbert NNP\nColby NNP\nColcord NNP\nCold NNP\nColder JJR\nColdwater NNP\nColdwell NNP\nCole NNP\nColeco NNP\nColee NNP\nColefax NNP\nColeman NNP\nColeridge NNP\nColes NNP\nColetta NNP\nColfax NNP\nColgate NNP\nColgate-Palmolive NNP\nColin NNP\nColinas NNP\nColiseum NNP\nCollaborative NNP\nCollagen NNP\nCollateral NN\nCollateralized NNP\nColleagues NNS\nCollected NNP\nCollectibles NNS\nCollecting NNP\nCollection NNP\nCollections NNS\nCollective NNP\nCollectively RB\nCollector NNP\nCollectors NNS\nColleen NNP\nCollege NNP\nColleges NNP\nCollegiate NNP\nCollett NNP\nCollier NNP\nCollingwood NNP\nCollins NNP\nCollinsville NNP\nCollischon NNP\nCollision NNP\nCollor NNP\nColloton NNP\nCollyer NNP\nColman NNP\nColmans NNPS\nColmer NNP\nColnaghi NNP\nColo NNP\nColo. NNP\nColodny NNP\nCologne NNP\nColombatto NNP\nColombia NNP\nColombian JJ\nColombians NNPS\nColombo NNP\nColon NN\nColonel NNP\nColonia NNP\nColonial NNP\nColonialism NN\nColonna NNP\nColonsville NNP\nColonus NNP\nColony NNP\nColor NNP\nColorado NNP\nColorado-Ute NNP\nColoradoUte NNP\nColorama NN\nColorcoat NNP\nColored NNP\nColorful JJ\nColorliner NNP\nColorocs NNP\nColors NNS\nColosseum NNP\nColossians NNPS\nColossus NNP\nColquitt NNP\nCols NNP\nColson NNP\nColston NNP\nColt NNP\nColton NNP\nColts NNP\nColtsman NN\nColucci NNP\nColumbia NNP\nColumbiana NNP\nColumbus NNP\nColumn NN\nColumnist NNP\nColumnists NNS\nColumns NNS\nColvin NNP\nColzani NNP\nCom NNP\nComFed NNP\nComair NNP\nComanche NNP\nComanches NNPS\nComany NNP\nCombat NNP\nCombatting VBG\nCombe NNP\nCombellack NNP\nCombine VB\nCombined VBN\nCombining VBG\nCombis NNPS\nCombo NNP\nCombs NNP\nCombses NNPS\nCombustion NNP\nComcast NNP\nComdisco NNP\nCome VB\nComeau NNP\nComeback NNP\nComecon NNP\nComedian NN\nComedie NNP\nComedy NNP\nComend VB\nComenico NNP\nComer NNP\nComerica NNP\nComes VBZ\nComet NNP\nComex NNP\nComfed NNP\nComfort NNP\nComfortably RB\nComic NNP\nComics NNPS\nComin VBG\nCominco NNP\nCominform NNP\nComing VBG\nComique NNP\nComiskey NNP\nComission NNP\nComissioner NNP\nCommack NNP\nCommand NNP\nCommandeering VBG\nCommander NNP\nCommander-in-Chief NNP\nCommander-in-Chief... :\nCommanders NNPS\nCommanding VBG\nCommandment NN\nCommands NNS\nCommemorative NNP\nCommencing VBG\nComment NN\nCommentaries NNPS\nCommentary NNP\nCommentators NNS\nCommenting VBG\nComments NNS\nCommercants NNP\nCommerce NNP\nCommerceBancorp NNP\nCommercial NNP\nCommerciale NNP\nCommercializing VBG\nCommercials NNS\nCommerzbank NNP\nCommies NNPS\nCommisioner NNP\nCommissary NNP\nCommission NNP\nCommission-controlled JJ\nCommission. NNP\nCommissioned VBN\nCommissioner NNP\nCommissioners NNPS\nCommissioning VBG\nCommissions NNS\nCommitment NNP\nCommitted VBN\nCommittee NNP\nCommitteeman NNP\nCommitteemen NNS\nCommittees NNS\nCommodities NNS\nCommodity NNP\nCommodore NNP\nCommon NNP\nCommon-law JJ\nCommoner NNP\nCommonly RB\nCommons NNP\nCommonweal NNP\nCommonwealth NNP\nCommune NNP\nCommunese NNP\nCommunication NNP\nCommunications NNPS\nCommunion NNP\nCommunism NNP\nCommunisn NN\nCommunist NNP\nCommunist-designed JJ\nCommunist-inspired JJ\nCommunist-led JJ\nCommunist-type JJ\nCommunistic JJ\nCommunists NNPS\nCommunities NNPS\nCommunity NNP\nCompact NNP\nCompagnie NNP\nCompania NNP\nCompanies NNS\nCompanion NN\nCompany NNP\nCompaore NNP\nCompaq NNP\nComparable JJ\nComparable-store JJ\nComparative JJ\nCompare VB\nCompared VBN\nComparing VBG\nCompassion NNP\nCompassionately RB\nCompelled VBN\nCompensation NNP\nCompetent JJ\nCompetes VBZ\nCompeting VBG\nCompetition NN\nCompetitive JJ\nCompetitors NNS\nCompeyson NNP\nCompiegne NNP\nCompilation NN\nCompiled VBN\nCompiler NN\nComplaint NN\nComplaints NNS\nComplementing VBG\nComplete JJ\nCompleted VBN\nCompletes VBZ\nCompleting VBG\nCompletion NN\nCompletions NNS\nComplex NNP\nComplexity NN\nCompliance NNP\nComplicating VBG\nComplicity NN\nComplying VBG\nComponents NNP\nComposer NN\nComposers NNPS\nComposite NNP\nCompound JJ\nCompounding VBG\nComprecin NNP\nComprehensive NNP\nCompress VB\nCompression NN\nComprised VBN\nCompromise NNP\nCompromises NNS\nCompromising VBG\nCompson NNP\nCompton NNP\nComptroller NNP\nCompuChem NNP\nCompuServe NNP\nCompulsions NNP\nCompulsive JJ\nCompulsory JJ\nCompumat NNP\nComputation NNP\nComputations NNS\nCompute VB\nComputer NNP\nComputer-generated JJ\nComputer-guided JJ\nComputer-peripherals NNS\nComputerLand NNP\nComputerWorld NNP\nComputerized JJ\nComputers NNPS\nComputerworld NNP\nComputing VBG\nComrade NN\nComrades NNPS\nComroe NNP\nComsat NNP\nComstock NNP\nComstron NNP\nComtes NNP\nComus NNP\nComvik NNP\nCon NNP\nConAgra NNP\nConable NNP\nConalco NNP\nConan NNP\nConant NNP\nConasupo NNP\nConaway NNP\nConceding VBG\nConceivably RB\nConceived VBN\nConcept NNP\nConception NNP\nConceptions NNS\nConcepts NNP\nConceptually RB\nConcern NN\nConcerned NNP\nConcerning VBG\nConcerns NNS\nConcert NNP\nConcert-Disc NNP\nConcertante NNP\nConcerto NNP\nConcerts NNPS\nConcessionaires NNS\nConcetta NNP\nConchita NNP\nConcise JJ\nConcludes VBZ\nConcluding VBG\nConclusions NNS\nConcocts VBZ\nConcord NNP\nConcordance NN\nConcorde NNP\nConcordes NNP\nConcrete NNP\nConcurrence NN\nConcurrent JJ\nConcurrently RB\nConde NNP\nCondensation NN\nConder NNP\nCondit NNP\nCondition NN\nConditions NNS\nCondliffe NNP\nCondominium NNP\nCondoms NNS\nCondor NNP\nCondos NNS\nConduct NNP\nConducted VBN\nConductor NN\nConduit NNP\nConduits NNS\nCone NNP\nConestoga NNP\nConey NNP\nConfabulation NN\nConfair NNP\nConfectioner NNP\nConfectionery JJ\nConfederacy NNP\nConfederate NNP\nConfederates NNS\nConfederation NNP\nConfederations NNPS\nConfer NNP\nConferees NNS\nConference NNP\nConferences NNPS\nConfess VB\nConfession NN\nConfessions NNPS\nConfidence NN\nConfident JJ\nConfidential NNP\nConfidently RB\nConfiding VBG\nConfindustria NNP\nConfirmation NN\nConfirming VBG\nConfiscated VBN|JJ\nConflict NN\nConforming NN\nConfrontation NN\nConfronted VBN\nConfucian NNP\nConfucianism NNP\nConfucius NNP\nConfused VBN\nConfusion NN\nConfutatis FW\nConfuted NNP\nCong NNP\nCongdon NNP\nCongel NNP\nConger NNP\nCongo NNP\nCongolese NNP\nCongratulations NNS\nCongregation NNP\nCongregational NNP\nCongregational-Baptist NNP\nCongregationalism NNP\nCongregationalist NN\nCongregationalists NNS\nCongress NNP\nCongress's NNP\nCongresses NNS\nCongressional NNP\nCongressman NNP\nCongressmen NNS\nCongresswoman NNP\nConiston NNP\nConklin NNP\nConlin NNP\nConlon NNP\nConlow NNP\nConmel NNP\nConn NNP\nConn. NNP\nConn.-based JJ\nConn.based JJ\nConnall NNP\nConnally NNP\nConnaught NNP\nConneaut NNP\nConnectables NNP\nConnecticut NNP\nConnecting NNP\nConnection NN\nConnections NNS\nConnectors NNP\nConnell NNP\nConnelly NNP\nConner NNP\nConnery NNP\nConnick NNP\nConnie NNP\nConning NNP\nConnoisseur NNP\nConnoisseurs NNS\nConnolly NNP\nConnor NNP\nConnors NNP\nConoco NNP\nConquering NNP\nConquest NNP\nConquete NNP\nConrac NNP\nConrad NNP\nConrades NNP\nConradically RB\nConradie NNP\nConradies NNP\nConrail NNP\nConran NNP\nConreid NNP\nConroe NNP\nConroy NNP\nConscience NN\nConsciousness NN\nConseco NNP\nConseil NNP\nConsensus NNP\nConsent NNP\nConsequence NN\nConsequences NNS\nConsequently RB\nConservancy NNP\nConservation NNP\nConservationists NNS\nConservatism NN\nConservative NNP\nConservative-Communist JJ\nConservatives NNS\nConservatory NNP\nConsider VB\nConsiderable JJ\nConsideration NN\nConsidered VBN\nConsidering VBG\nConsistent JJ\nConsistently RB\nConsisting VBG\nConsitutional JJ\nConsob NNP\nConsolidated NNP\nConsolidation NN\nConsolo NNP\nConsonantal JJ\nConsort NNP\nConsortium NNP\nConspicuous JJ\nConspicuously RB\nConspiracy NNP\nConstable NNP\nConstance NNP\nConstant JJ\nConstantin NNP\nConstantine NNP\nConstantino NNP\nConstantinople NNP\nConstantinos NNP\nConstants NNS\nConstar NNP\nConstellation NNP\nConstitution NNP\nConstitutional NNP\nConstitutions NNS\nConstraints NNS\nConstrucciones NNP\nConstruct VB\nConstructeurs NNP\nConstruction NN\nConstructions NNP\nConstructors NNPS\nConsul NNP\nConsulate-General NNP\nConsultant NNP\nConsultants NNP\nConsultation NN\nConsulting NNP\nConsumer NNP\nConsumer-electronics NNS\nConsumers NNS\nConsuming VBG\nConsumption NN\nContact NN\nContacted VBN\nContacts NNPS\nContainer NNP\nContainers NNPS\nContainment NN\nContant NNP\nConte NNP\nContel NNP\nContemplating VBG\nContemplation NN\nContemporary NNP\nContempt NN\nContend VBP\nContent JJ\nContest NNP\nContext NN\nContiTrade NNP\nContinent NN\nContinental NNP\nContinentals NNS\nContinential NNP\nContinuation NN\nContinue VB\nContinued VBN\nContinues VBZ\nContinuing VBG\nContinuity NN\nContinuous JJ\nContinuum NN\nContra NNP\nContract NNP\nContracting VBG\nContraction NN\nContractors NNS\nContracts NNS\nContradictions NNP\nContrarian JJ\nContrarily RB\nContrary JJ\nContras NNPS\nContrast NN\nContrasted VBN\nContrasts NNS\nContribute VB\nContributing VBG\nContribution NNP\nContributions NNS\nControl NNP\nController NNP\nControls NNP\nConus NNP\nConvair NNP\nConvenience NNP\nConveniently RB\nConvention NNP\nConventional JJ\nConversation NN\nConversations NNS\nConversely RB\nConversion NNP\nConvertible JJ\nConverts NNS\nConvex NNP\nConveyance NN\nConvict NNP\nConviction NN\nConvinced VBN\nConvincing VBG\nConvocation NN\nConvocations NNS\nConvulsively RB\nConway NNP\nConyers NNP\nCooch NNP\nCoogan NNP\nCook NNP\nCooke NNP\nCooked VBN\nCooker NNP\nCookie NNP\nCookie-Crisp NNP\nCookies NNS\nCooking NNP\nCool JJ\nCooler NNP\nCoolers NNS\nCoolest JJS\nCoolidge NNP\nCoolidges NNPS\nCooling NN\nCoombs NNP\nCoons NNP\nCoontz NNP\nCooper NNP\nCooperation NNP\nCooperative NNP\nCooperatives NNP\nCooperman NNP\nCoopers NNP\nCoopersmith NNP\nCoor NNP\nCoordinated VBN\nCoordinating NNP\nCoordination NN\nCoors NNP\nCoors-Stroh NNP\nCoosa NNP\nCop NNP\nCopaken NNP\nCopeland NNP\nCopenhagen NNP\nCopernican JJ\nCopernicus NNP\nCopernicus-the-astronomer NN\nCopersucar NNP\nCopiague NNP\nCopie NNP\nCopies NNS\nCoping VBG\nCopland NNP\nCoplandesque JJ\nCopley NNP\nCopp NNP\nCopper NN\nCopperman NNP\nCopperweld NNP\nCoproduction NNP\nCopy NNP\nCopycat NN\nCopying NNP\nCopyright NNP\nCorabi NNP\nCoral NNP\nCorash NNP\nCorault NNP\nCorazon NNP\nCorbehem NNP\nCorbin NN\nCorby NNP\nCorcoran NNP\nCordell NNP\nCorder NNP\nCordier NNP\nCordis NNP\nCordoba NNP\nCordova NNP\nCore NNP\nCoreStates NNP\nCorelli NNP\nCorestates NNP\nCorey NNP\nCorinne NNP\nCorinth NNP\nCorinthian JJ\nCorinthians NNPS\nCoriolanus NNP\nCorlopam NNP\nCormack NNP\nCorn NN\nCorne NNP\nCorneilus NNP\nCornel NNP\nCornelius NNP\nCornell NNP\nCornell-Dubilier NNP\nCorner NNP\nCornerback NN\nCorners NNPS\nCorney NNP\nCornfeld NNP\nCornfield NNP\nCorning NNP\nCornish NNP\nCornona NNP\nCornwall NNP\nCornwallis NNP\nCorolla NNP\nCorollary NN\nCorollas NNPS\nCorona NNP\nCoronado NNP\nCoronation NNP\nCoroner NN\nCoronets NNPS\nCorot NNP\nCorp NNP\nCorp. NNP\nCorp.-Toyota JJ\nCorp.-USA NNP\nCorp.-compatible JJ\nCorp.:8.30 NNP\nCorp.:8.50 NNP\nCorp.:8.725 NNP\nCorp.\\/Europe NNP\nCorp.s NNP\nCorporal NNP\nCorporate JJ\nCorporate\\/investor NN\nCorporation NNP\nCorporations NNS\nCorps NNP\nCorpus NNP\nCorr NNP\nCorrado NNP\nCorrect JJ\nCorrecting VBG\nCorrection NN\nCorrectional NNP\nCorrections NNP\nCorrective JJ\nCorrectly RB\nCorreggio NNP\nCorrelations NNS\nCorrelatively RB\nCorrell NNP\nCorrespondence NN\nCorrespondents NNPS\nCorresponding VBG\nCorrette NNP\nCorrigan NNP\nCorroborating VBG\nCorroon NNP\nCorrupt NNP\nCorruption NN\nCorry NNP\nCorsi NNP\nCorsia NNP\nCorsica NNP\nCorsicas NNS\nCorso NNP\nCort NNP\nCortes NNP\nCortese NNP\nCortex NNP\nCortizone-5 NNP\nCortland NNP\nCortlandt NNP\nCorton-Charlemagne NNP\nCorvallis NNP\nCorvette NNP\nCorvettes NNS\nCorvus NNP\nCorzine NNP\nCos NNP\nCos. NNP\nCosby NNP\nCosgrove NNP\nCosgrove-Meurer NNP\nCosma NNP\nCosmair NNP\nCosmetic NNP\nCosmetics NNS\nCosmic NNP\nCosmo NNP\nCosmology NNP\nCosmopolitan NNP\nCosmopulos NNP\nCosmos NNP\nCossack NNP\nCossacks NNPS\nCossiga NNP\nCost NN\nCost-effective JJ\nCosta NNP\nCostaggini NNP\nCostantine NNP\nCostanza NNP\nCostar NNP\nCostco NNP\nCostello NNP\nCostley NNP\nCostly JJ\nCostner NNP\nCosts NNS\nCote NNP\nCotillion NNP\nCotman NNP\nCotran NNP\nCott NNP\nCotten NNP\nCotter NNP\nCottle NNP\nCotton NNP\nCottrell NNP\nCotty NNP\nCouch-potato NN\nCoudersport NNP\nCoudert NNP\nCougar NNP\nCougars NNPS\nCoughlin NNP\nCoulas NNP\nCould MD\nCoulomb NNP\nCoulson NNP\nCouncil NNP\nCouncilman NNP\nCouncils NNPS\nCouncilwoman NNP\nCounsel NNP\nCounsel/NNP... :\nCounseling NN\nCounselor NNP\nCounselors NNPS\nCount NNP\nCount-Duke NNP\nCountach NNP\nCounter NNP\nCountered VBD\nCountering VBG\nCounterpoint NN\nCounters VBZ\nCounties NNPS\nCountin VBG\nCounting VBG\nCountries NNPS\nCountry NNP\nCountrymen NNPS\nCountrywide NNP\nCounty NNP\nCoupal NNP\nCoupe NNP\nCouperin NNP\nCoupes NNP\nCouple JJ\nCoupled VBN\nCouples NNS\nCoupling VBG\nCoupon NN\nCoupons NNS\nCourant NNP\nCourbet NNP\nCourcy NNP\nCourier NNP\nCourier-Journal NNP\nCourse NNP\nCourses NNS\nCourt NNP\nCourt-awarded JJ\nCourt-packing JJ\nCourtaulds NNP\nCourtenay NNP\nCourter NNP\nCourter... :\nCourthouse NN\nCourtier NNP\nCourtis NNP\nCourtney NNP\nCourtrai NNP\nCourts NNPS\nCousin NNP\nCouturier NNP\nCouve NNP\nCovas NNP\nCove NNP\nCovell NNP\nCovent NNP\nCoventry NNP\nCover NNP\nCover-Up NNP\nCoverage NNP\nCovered JJ\nCovering NNP\nCovert NNP\nCovey NNP\nCovia NNP\nCovington NNP\nCovitz NNP\nCow NNP\nCowan NNP\nCoward NNP\nCowbird NNP\nCowboy NN\nCowboys NNPS\nCowboys-owned JJ\nCowen NNP\nCowessett NNP\nCowessett-East NNP\nCowles NNP\nCowley NNP\nCowper NNP\nCowrtiers NNS\nCows NNS\nCox NNP\nCoxon NNP\nCoykendall NNP\nCoyotes NNS\nCozen NNP\nCozumel NNP\nCozying VBG\nCr NNP\nCr--spe NNP\nCrab NNP\nCrabb NNP\nCrabs NNP\nCrabtree NNP\nCrack NN\nCracking VBG\nCracklin NNP\nCraddock NNP\nCradle NNP\nCraft NN\nCrafton-Preyer NNP\nCrafts NNPS\nCraftsmen NNPS\nCraig NNP\nCrain NNP\nCralin NNP\nCramer NNP\nCrampton NNP\nCrandall NNP\nCrane NNP\nCranes NNPS\nCranston NNP\nCranston-D'Amato JJ\nCranston-Mitchell NNP\nCrary NNP\nCrash NNP\nCrashing VBG\nCraton NNP\nCravath NNP\nCraven NNP\nCraving VBG\nCrawford NNP\nCrawford-Browne NNP\nCrawfordsville NNP\nCray NNP\nCray*/NNP-3 CD\nCray-3 NNP\nCrazy NNP\nCream NNP\nCreamer NNP\nCreamery NNP\nCreamette NNP\nCrean NNP\nCreate VB\nCreated VBN\nCreates VBZ\nCreating VBG\nCreation NN\nCreations NNPS\nCreative NNP\nCreator NNP\nCreators NNS\nCredibility NN\nCredietbank NNP\nCredit NNP\nCredit-Card NN\nCredit-card NN\nCreditWatch NNP\nCreditanstalt NNP\nCreditanstalt-Bankverein NNP\nCreditbank NNP\nCreditbanken NNP\nCredito NNP\nCreditor NN\nCreditors NNS\nCredo NN\nCree NNP\nCreed NNP\nCreedon NNP\nCreek NNP\nCreek-Turn JJ\nCreepers UH\nCreighton NNP\nCreme NNP\nCremonie NNP\nCreole NNP\nCreon NNP\nCrescent NNP\nCrescott NNP\nCress NNP\nCressidas NNPS\nCresson NNP\nCresswell NNP\nCrest NNP\nCrest-Colgate JJ\nCrested NNP\nCrestmont NNP\nCreston NNP\nCreswell NNP\nCretaceous NNP\nCrete NNP\nCreusot NNP\nCrew NN\nCrewmembers NNP\nCrews NNP\nCricket NNP\nCried VBD\nCrier NNP\nCrime NN\nCrimea NNP\nCrimean NNP\nCrimes NNP\nCriminal NNP\nCriminal-defense NN\nCriminalization NN\nCriminals NNS\nCriminologists NNS\nCrip NNP\nCrippled NNP\nCrippling JJ\nCris NNP\nCrisanti NNP\nCrisco NNP\nCrises NNS\nCrisis NNP\nCrisman NNP\nCrisp NNP\nCrispin NNP\nCristal NNP\nCristiani NNP\nCristini NNP\nCristo NNP\nCriteria NNP\nCriterion NNP\nCritic NNP\nCritical NNP\nCriticality NN\nCritically RB\nCriticism NN\nCriticisms NNP\nCritics NNS\nCrittenden NNP\nCroasdale NNP\nCrobsy NNP\nCrockett NNP\nCrocodile NNP\nCroissier NNP\nCroix NNP\nCroma NNP\nCrombie NNP\nCromwell NNP\nCromwellian JJ\nCronin NNP\nCronkite NNP\nCrooked JJ\nCroom-Helm NNP\nCroonen NNP\nCrop NNP\nCrosbie NNP\nCrosby NNP\nCrosbys NNPS\nCrosfield NNP\nCross NNP\nCross-Purposes NNPS\nCross-border JJ\nCross-margining NN\nCrossair NNP\nCrosse NNP\nCrosser NNP\nCrossfire NNP\nCrossing VBG\nCrossland NNP\nCrossman NNP\nCrosson NNP\nCrotale JJ\nCrouch NNP\nCrouched VBN\nCrovitz NNP\nCrow NNP\nCrowd NNP\nCrowder NNP\nCrowds NNS\nCrowe NNP\nCrowell NNP\nCrowley NNP\nCrown NNP\nCrowntuft NNP\nCrows NNPS\nCroydon NNP\nCrozier NNP\nCru NNP\nCrucial JJ\nCrucians NNPS\nCrucible NNP\nCrude JJ\nCrude-goods NNS\nCruel JJ\nCruelty NNP\nCruger NNP\nCruickshank NNP\nCruise NNP\nCruiser NNP\nCrum NNP\nCrumb NNP\nCrumble NNP\nCrumley NNP\nCrumlish NNP\nCrump NNP\nCrunch VB\nCrupi NNP\nCrus NNP\nCrusade NNP\nCrusader NNP\nCrusaders NNPS\nCrusades NNPS\nCrush NNP\nCrutcher NNP\nCrutzen NNP\nCruz NNP\nCruzan NNP\nCruze NNP\nCry NN\nCryptic JJ\nCrystal NNP\nCrystallographic JJ\nCrystallography NNP\nCsathy NNP\nCt NNP\nCt. NNP\nCuK JJ\nCuatrecasas NNP\nCuauhtemoc NNP\nCub NNP\nCuba NNP\nCuban JJ\nCuban-American NNP\nCuban-assisted JJ\nCubans NNPS\nCube NNP\nCubism NN\nCubist NN\nCubs NNPS\nCucamonga NNP\nCuckoo NN\nCudahy NNP\nCuddeford NNP\nCuddihy NNP\nCuddleback NNP\nCuddles NNP\nCudkowicz NNP\nCudmore NNP\nCuellar NNP\nCuisinart NNP\nCuisinarts NNPS\nCuisine NNP\nCujo NNP\nCulbertson NNP\nCulkin NNP\nCullen\\/Frost NNP\nCulligan NNP\nCullinet NNP\nCullowhee NNP\nCulmone NNP\nCulp NNP\nCult NNP\nCultor NNP\nCultural NNP\nCulturally RB\nCulture NNP\nCultures NNS\nCulver NNP\nCulvers NNPS\nCumbancheros NNP\nCumberland NNP\nCumhuriyet NNP\nCummings NNP\nCummins NNP\nCumulative JJ\nCunard NNP\nCuneo NNP\nCunha NNP\nCunin NNP\nCunningham NNP\nCuoco NNP\nCuomo NNP\nCup NNP\nCup-Tote NNP\nCupboard NN\nCupertino NNP\nCupply NNP\nCuracao NNP\nCurb VB\nCurcio NNP\nCurdling NNP\nCuria NNP\nCuriae FW\nCurie NNP\nCurie-Weiss NNP\nCuriosity NN\nCurious JJ\nCuriously RB\nCurl NNP\nCurley NNP\nCurling NNP\nCurly JJ\nCurragh NNP\nCurran NNP\nCurrency NN\nCurrent JJ\nCurrently RB\nCurriculum NN\nCurrie NNP\nCurrier NNP\nCurry NNP\nCurrys NNP\nCursed VBN\nCursing VBG\nCurt NNP\nCurtain NNP\nCurteis NNP\nCurtin NNP\nCurtis NNP\nCurtiss NNP\nCurtiss-Wright NNP\nCury NNP\nCurzio NNP\nCurzon NNP\nCusa NNP\nCushing NNP\nCushman NNP\nCuster NNP\nCustodian NNP\nCustom NNP\nCustomarily RB\nCustomary NNP\nCustomer NN\nCustomer-access NN\nCustomers NNS\nCustomhouse NNP\nCustomized JJ\nCustoms NNPS\nCut VB\nCutbacks NNP\nCutbush NNP\nCutlass NNP\nCutler NNP\nCutrer NNP\nCutrere NNP\nCuts NNS\nCutter NNP\nCutting VBG\nCutty NNP\nCuyahoga NNP\nCuyler NNP\nCy NNP\nCyCare NNP\nCyanamid NNP\nCyanocitta FW\nCyber NNP\nCybex NNP\nCybill NNP\nCycads NNS\nCyclades NNS\nCycle NNP\nCycling NNP\nCyclone NNP\nCycly NNP\nCyd NNP\nCydonia NNP\nCygne NNP\nCygnus NNP\nCylinder NN\nCynewulf NNP\nCynical JJ\nCynthia NNP\nCynwyd NNP\nCyoctol NNP\nCypress NNP\nCyprian NNP\nCyprus NNP\nCyr NNP\nCyriac NNP\nCyril NNP\nCyrus NNP\nCytel NNP\nCytogen NNP\nCzar NNP\nCzarina NNP\nCzarship NNP\nCzech JJ\nCzechoslovak JJ\nCzechoslovak-made JJ\nCzechoslovakia NNP\nCzechoslovaks NNPS\nCzechs NNPS\nCzerny NNP\nCzeslaw NNP\nCzestochwa NNP\nD NN\nD&B NNP\nD&H NNP\nD'Agostino NNP\nD'Agosto NNP\nD'Albert NNP\nD'Amato NNP\nD'Amico NNP\nD'Amours NNP\nD'Ancona NNP\nD'Arcy NNP\nD'Argent NNP\nD'Arlay NNP\nD'Art NNP\nD'Artaguette NNP\nD'Aumont NNP\nD'Urbervilles NNP\nD* NNP\nD*/NNP&B NN\nD-5 NNP\nD-Mass. NNP\nD-marks NNS\nD-night NN\nD. NNP\nD.,Calif NNP\nD.,Calif. NN\nD.,Texas NNS\nD.A. NNP\nD.C NNP\nD.C. NNP\nD.C.-based JJ\nD.D. NNP\nD.D.S. NNP\nD.H. NNP\nD.J. NNP\nD.K NNP\nD.K. NNP\nD.L. NNP\nD.N. NNP\nD.O.A. JJ\nD.S. NNP\nD.T. NNP\nD.W. NNP\nD.s NNPS\nD/NNP.A. NN\nD2 NN\nD8 CD\nDA NN\nDAF NNP\nDALIS NNPS\nDALKON NNP\nDALLAS NNP\nDAMAGES NNS\nDANIEL NNP\nDARMAN'S NNP\nDARPA NNP\nDAT NNP\nDATA NNP\nDAWDLING NN\nDAX NNP\nDAY NNP\nDAYAC NNP\nDAYTON NNP\nDB2 CD\nDBC NNP\nDBL NNP\nDBS NNP\nDC NN\nDC-10 NNP\nDC-10s NNPS\nDC-8-62 NN\nDC-9 JJ\nDC10-30 NN\nDD NNP\nDDB NNP\nDDG-51 NNP\nDDI NNP\nDDR NNP\nDDT NNP\nDE NNP\nDEA NNP\nDEAE NNP\nDEAE-cellulose NNP\nDEAE-cellulose-treated NN\nDEAL NNP\nDEALERS NNPS\nDEBT NN\nDEC NNP\nDECstation NNP\nDEFECT VBP\nDEFECTOR NN\nDEFENSE NN\nDEFERRED JJ\nDEFICIT NNP\nDELAYED VBN\nDELAYS VBZ\nDELIGHT VBP\nDEMAND NN\nDEMOCRATS NNS\nDEPARTMENT NNP\nDEPOSIT NN\nDES NNP\nDESIGNATING VBG\nDESPITE IN\nDEVELOPMENT NNP\nDEVELOPMENTS NNPS\nDEVICES NNP\nDFC NNP\nDFS\\/Pacific NNP\nDG NNP\nDGAULT NNP\nDGII NNP\nDHAWK NNP\nDHL NNP\nDIAL-A-PIANO-LESSON NNP\nDIALING VBG\nDIAPER NN\nDIASONICS NNP\nDID VB\nDIED VBD\nDIET NNP\nDIFFERENCE NNP\nDIG NNP\nDIGITAL NNP\nDIGS NNS\nDILLARD NNP\nDIOCS NN\nDIRECTORS NNS\nDIRECTORY NN\nDISAPPOINTMENTS NNS\nDISASTER NN\nDISCIPLINARY NN\nDISCOUNT NN\nDISNEY NNP\nDISPLAYED VBD\nDISTRESSFUL JJ\nDISTRICT JJ\nDJ NNP\nDJIA NNP\nDJS NNP\nDJS-Inverness NNP\nDJS\\/Inverness NNP\nDKB NNP\nDKNY NNP\nDLC NNP\nDLINE NN\nDLJ NNP\nDLX NNP\nDM VB\nDM1,200 CD\nDM10,000 CD\nDM100 CD\nDM2,000 CD\nDM2,300 CD\nDM2,800 CD\nDM200 CD\nDM235 CD\nDM3,500 CD\nDM33 CD\nDM5,000 CD\nDM6,000 CD\nDM7,000 CD\nDM850-a-month JJ\nDMB&B\\/International JJ\nDMB&B\\/New NNP\nDNA NNP\nDNX NNP\nDO VB\nDOC-IN-A-BOX NNP\nDOCTORS NNS\nDOE NNP\nDOE-site NN\nDOG NN\nDOGS NNS\nDOLLAR NN\nDOLLAR'S NN\nDOLLARS NNPS\nDON'T NNP\nDONORS NNS\nDONT VB\nDOONESBURY NNP\nDOORS NNS\nDOS NNP\nDOT NNP\nDOW NNP\nDOWN RB\nDOWNEY NNP\nDOWNLOAD VB\nDOWNSIZING NN\nDPC NNP\nDPL NNP\nDPS NNP\nDPT NNP\nDPW NNP\nDPX\\ NNP\nDRACULA'S NNP|VBZ\nDRAM NNP\nDRAMs NNS\nDRDW NN\nDREXEL NNP\nDREYER'S NNP\nDRG NNP\nDRI NNP\nDRILLING NN\nDRI\\/McGraw NNP\nDRI\\/McGraw-Hill NNP\nDRUG NN\nDRUGS NNPS\nDSG NNP\nDSL NNP\nDSM NNP\nDSP NNP\nDSW NN\nDTF NN\nDTH NNP\nDU NNP\nDUF NN\nDUN NNP\nDWG NNP\nDX NNP\nDa NNP\nDa-da-da-dum JJ\nDaPuzzo NNP\nDabbling VBG\nDaberko NNP\nDabney NNP\nDachshund NN\nDactyls NNPS\nDad NNP\nDada NNP\nDadaism NNP\nDaddy NNP\nDade NNP\nDads NNP\nDae NNP\nDaer NNP\nDaewoo NNP\nDaffynition NN\nDag NNP\nDagens NNP\nDaggs NNP\nDahl NNP\nDahlen NNP\nDahlia NNP\nDahmane NNP\nDai NNP\nDai-Ichi NNP\nDai-Ichi\\/Nippon NNP\nDai-Tokyo NNP\nDai-ichi NNP\nDaiIchi NNP\nDaiei NNP\nDaignault NNP\nDaihatsu NNP\nDaikin NNP\nDailey NNP\nDaily NNP\nDaim NNP\nDaimler NNP\nDaimler-Benz NNP\nDain NNP\nDain-sponsored JJ\nDainippon NNP\nDairies NNPS\nDairl NNP\nDairy NNP\nDairymen NNP\nDaisy NNP\nDaisy-Cadnetix NNP\nDaiwa NNP\nDak NNP\nDak. NNP\nDakin NNP\nDakota NNP\nDakotas NNPS\nDalai NNP\nDalbar NNP\nDale NNP\nDaley NNP\nDalfen NNP\nDalgety NNP\nDali NNP\nDali-esque JJ\nDalian NNP\nDalkon NNP\nDallara NNP\nDallas NNP\nDallas-Barcelona NNP\nDallas-Fort NNP\nDallas-based JJ\nDallas-headquartered JJ\nDallasites NNPS\nDalldorf NNP\nDalles NNP\nDalloway NNP\nDalrymple NNP\nDalton NNP\nDaly NNP\nDalzell-Cousin NNP\nDamage NN\nDamages NNS\nDamas NNP\nDamascus NNP\nDame NNP\nDame-Michigan NNP\nDames NNPS\nDamian NNP\nDammit UH\nDamn VB\nDamned JJ\nDamon NNP\nDamonne NNP\nDamp JJ\nDams NNS\nDan NNP\nDan'l NNP\nDana NNP\nDana-Farber NNP\nDanaher NNP\nDanbury NNP\nDance NNP\nDancer NNP\nDancers NNP\nDances NNS\nDanchin NNP\nDancing NN\nDanco NNP\nDandy NNP\nDane NNP\nDanehy NNP\nDanes NNPS\nDanforth NNP\nDang NNP\nDanger NNP\nDangerous JJ\nDangers NNS\nDangling VBG\nDaniel NNP\nDaniele NNP\nDanieli NNP\nDaniels NNP\nDaniil NNP\nDanilo NNP\nDanilow NNP\nDanis NNP\nDanish JJ\nDanish-American NNP\nDannehower NNP\nDannemiller NNP\nDanny NNP\nDanske NNP\nDanssesse NNP\nDantchik NNP\nDante NNP\nDanube NNP\nDanubian JJ\nDanvers NNP\nDanville NNP\nDanza NNP\nDanzig NNP\nDaolet NNP\nDaphne NNP\nDappertutto NNP\nDarak NNP\nDaralee NNP\nDarby NNP\nDarcy NNP\nDardalla NNP\nDare VB\nDare-Base NNP\nDaremblum NNP\nDares NNP\nDargene NNP\nDarien NNP\nDarin NNP\nDarius NNP\nDark NNP\nDarkhorse NNP\nDarkling NNP\nDarkness NN\nDarla NNP\nDarlene NNP\nDarlin NNP\nDarling NNP\nDarlington NNP\nDarlow NNP\nDarman NNP\nDarn VB\nDarnell NNP\nDarrell NNP\nDarrow NNP\nDarryl NNP\nDart NNP\nDartboard NN\nDarth NNP\nDartmouth NNP\nDarvocet-N NNP\nDarvon NNP\nDarwen NNP\nDarwin NNP\nDarwinian JJ\nDarwinism NNP\nDas NNP\nDaschle NNP\nDash NNP\nDasher NNP\nDashiell NNP\nDashitchev NNP\nDashwood NNP\nDasibi NNP\nDass FW\nDassault NNP\nDassault-Breguet NNP\nData NNP\nData-destroying JJ\nDataComm NNP\nDataPlan NNP\nDataQuest NNP\nDataTimes NNP\nDatacomputer NNP\nDatacrime NNP\nDatafleet NNP\nDatapoint NNP\nDataproducts NNP\nDataquest NNP\nDatas NNP\nDatastream NNP\nDatatech NNP\nDatatronic NNP\nDate NN\nDating NNP\nDatson NNP\nDatsun NNP\nDatsuns NNPS\nDatuk NNP\nDauchy NNP\nDaugherty NNP\nDaughter NN\nDauntless NNP\nDauphin NNP\nDauphine NNP\nDauster NNP\nDavao NNP\nDave NNP\nDavenport NNP\nDavid NNP\nDavid-Weill NNP\nDavidge NNP\nDavidow NNP\nDavidowitz NNP\nDavidowitz. NNP\nDavids NNP\nDavidson NNP\nDavies NNP\nDavila NNP\nDavis NNP\nDavis\\/Zweig NNP\nDavises NNPS\nDavison NNP\nDavy NNP\nDawkins NNP\nDawn NNP\nDawson NNP\nDax-Pontonx NNP\nDay NNP\nDay-to-day JJ\nDayan NNP\nDaybreak NNP\nDaylight NNP\nDayna NNP\nDays NNP\nDaytime NNP\nDayton NNP\nDaytona NNP\nDaytonas NNP\nDaywatch NNP\nDaze NNP\nDazed JJ\nDe NNP\nDe-Kooning NNP\nDeBakey NNP\nDeBartolo NNP\nDeBat NNP\nDeBeauvoir NNP\nDeCicco NNP\nDeConcini NNP\nDeFazio NNP\nDeForest NNP\nDeGeurin NNP\nDeGol NNP\nDeGregorio NNP\nDeGroot NNP\nDeHaviland NNP\nDeKalb NNP\nDeLay NNP\nDeLuca NNP\nDeMar NNP\nDeMeo NNP\nDeMontez NNP\nDeMoss NNP\nDeMoulin NNP\nDeMunn NNP\nDeMyer NNP\nDePaul NNP\nDePauw NNP\nDePugh NNP\nDeRita NNP\nDeScenza NNP\nDeShano NNP\nDeSio NNP\nDeSoto NNP\nDeTomaso NNP\nDeVillars NNP\nDeVille NNP\nDeVoe NNP\nDeVon NNP\nDeVos NNP\nDeVries NNP\nDeWalt NNP\nDeWitt NNP\nDeacon NNP\nDeaconess NNP\nDeacons NNS\nDeactivation NN\nDead NNP\nDeadlock NN\nDeadly JJ\nDeadwood NNP\nDeaf JJ\nDeafening VBG\nDeak NNP\nDeal NNP\nDealer NNP\nDealers NNS\nDealing VBG\nDeals NNS\nDean NNP\nDeane NNP\nDeanna NNP\nDeans NNP\nDear NNP\nDearborn NNP\nDeardorff NNP\nDearie NNP\nDearly RB\nDeath NN\nDeath's-Head NNP\nDeatherage NNP\nDeaths NNP\nDeauville NNP\nDeaver NNP\nDeb NNP\nDebate NN\nDebates NNS\nDebating NNP\nDebban NNP\nDebbie NNP\nDebenture NN\nDebevoise NNP\nDebonnie NNP\nDebora NNP\nDeborah NNP\nDebra NNP\nDebt NN\nDebt-Burdened JJ\nDebt-free JJ\nDebts NNP\nDebugging VBG\nDebussy NNP\nDebutante NNP\nDec NNP\nDec. NNP\nDecades NNS\nDecanting VBG\nDecathlon NNP\nDecatur NNP\nDecay NNP\nDecca NNP\nDecember NNP\nDecent JJ\nDecentralization NN\nDecide VB\nDeciding VBG\nDecimalists NNPS\nDecimus NNP\nDecision NNP\nDecisionline NNP\nDecisions NNS\nDeck NNP\nDecker NNP\nDeclan NNP\nDeclaration NNP\nDeclarative JJ\nDeclares VBZ\nDeclaring VBG\nDeclinations NNS\nDecline NN\nDecliners NNS\nDeclines NNS\nDeclining VBG\nDecoma NNP\nDecorated VBN\nDecorating VBG\nDecorators NNP\nDecreasing VBG\nDecries VBZ\nDecrying VBG\nDederick NNP\nDedham NNP\nDedication NN\nDeductible JJ\nDeducting VBG\nDeduction NN\nDeductions NNS\nDee NNP\nDeed NNP\nDeegan NNP\nDeemed VBN\nDeep NNP\nDeepak NNP\nDeeper JJR\nDeeply RB\nDeer NNP\nDeere NNP\nDeerfield NNP\nDeering NNP\nDeerstalker NN\nDees NNP\nDeets NNP\nDef NNP\nDefamation NNP\nDefault NNP\nDefaults NNS\nDefeat NNP\nDefect NN\nDefections NNS\nDefectors NNS\nDefects NNPS\nDefence NN\nDefendant NN\nDefendants NNS\nDefenders NNS\nDefending VBG\nDefends NNS\nDefense NNP\nDefensive JJ\nDeficiency NNP\nDeficit NNP\nDefine VB\nDefining VBG\nDefinite JJ\nDefinitely RB\nDefinition NN\nDefinitive JJ\nDefoe NNP\nDefrost VB\nDefuse VB\nDefying VBG\nDegas NNP\nDegree NN\nDehmelt NNP\nDei NNP\nDeidre NNP\nDeity NN\nDel NNP\nDel. NNP\nDel.-based JJ\nDelacre NNP\nDelahanty NNP\nDelamuraz NNP\nDelancy NNP\nDeland NNP\nDelaney NNP\nDelano NNP\nDelaunay NNP\nDelaware NNP\nDelaware-based JJ\nDelawareans NNPS\nDelawares NNS\nDelay NNP\nDelayed JJ\nDelays NNS\nDelbert NNP\nDelbridge NNP\nDelchamps NNP\nDelco NNP\nDeleage NNP\nDelegate NNP\nDelegates NNPS\nDelegation NNP\nDelegations NNS\nDelfim NNP\nDelhi NNP\nDeli NNP\nDelia NNP\nDeliberately RB\nDeliberations NNP\nDelicious NNP\nDelight NNP\nDelinquency NNP\nDelio NNP\nDelius NNP\nDeliver VB\nDeliveries NNS\nDelivery NN\nDell NNP\nDell'Arca NNP\nDella NNP\nDeller NNP\nDelloye NNP\nDells NNP\nDellums NNP\nDellwood NNP\nDelmed NNP\nDelmont NNP\nDelmore NNP\nDeloitte NNP\nDeloitte-Touche NNP\nDelon NNP\nDeloris NNP\nDelors NNP\nDelphi NNP\nDelphine NNP\nDelray NNP\nDelta NNP\nDeltacorp NNP\nDeltec NNP\nDeluge NN\nDeluged VBN\nDelusion NNP\nDeluxe NNP\nDelvin NNP\nDelving VBG\nDelwin NNP\nDemagogues NNS\nDemand NN\nDemanded VBD\nDemanding VBG\nDemands NNS\nDemented JJ\nDemery NNP\nDemetrius NNP\nDemi NNP\nDeminex NNP\nDemisch NNP\nDemler NNP\nDemme NNP\nDemocracy NNP\nDemocrat NNP\nDemocratic JJ\nDemocratic-controlled JJ\nDemocratic-endorsed JJ\nDemocratic-led JJ\nDemocratic-sounding JJ\nDemocratic-sponsored JJ\nDemocratic-style JJ\nDemocratique NNP\nDemocratization NN\nDemocrats NNPS\nDemodocus NNP\nDemographics NNS\nDemographie NNP\nDemoiselles NNP\nDemon NNP\nDemons NNS\nDemonstrating VBG\nDemonstrations NNS\nDempsey NNP\nDemus-Schubert NNP\nDen NNP\nDenali NNP\nDenenchofu NNP\nDeng NNP\nDenials NNS\nDenied VBN\nDenis NNP\nDenise NNP\nDenison NNP\nDenizens NNS\nDenko NNP\nDenlea NNP\nDenman NNP\nDenmark NNP\nDennehy NNP\nDennis NNP\nDennison NNP\nDenny NNP\nDeno NNP\nDenouncing VBG\nDenrees NNP\nDenshi NNP\nDensmore NNP\nDent NNP\nDental NNP\nDentistry NNP\nDenton NNP\nDentsu NNP\nDenver NNP\nDenver-area NN\nDenver-based JJ\nDenverite NNP\nDeo NNP\nDeor NNP\nDeparment NNP\nDeparting VBG\nDepartment NNP\nDepartment-sponsored JJ\nDepartment-store JJ\nDepartments NNPS\nDepartmentstore NNP\nDeparture NN\nDepartures NNP\nDependency NNP\nDependent NNP\nDepending VBG\nDepew NNP\nDepicted VBN\nDepicting VBG\nDepictions NNS\nDepletions NNS\nDeployment NNP\nDeportees NNS\nDeposit NNP\nDepositary NNP\nDepositors NNS\nDepository NNP\nDeposits NNS\nDeposits-a NNP\nDepot NNP\nDeppy NNP\nDepression NNP\nDepression-era JJ\nDepressive NNP\nDept. NNP\nDeputies NNPS\nDeputy NNP\nDequindre NNP\nDer NNP\nDerails NNS\nDerby NNP\nDerchin NNP\nDerck NNP\nDeregulation NN\nDerek NNP\nDerel NNP\nDerivative JJ\nDeriving VBG\nDerr NNP\nDershowitz NNP\nDervish NN\nDerwin NNP\nDeryck NNP\nDes NNP\nDesRosiers NNP\nDesai NNP\nDesarrollo NNP\nDesc NNP\nDescartes NNP\nDescendants NNS\nDescending VBG\nDescent NN\nDescribing VBG\nDescription NNP\nDescriptive JJ\nDese NNP\nDesegregation NN\nDeseret NNP\nDesert NNP\nDesheng NNP\nDesign NNP\nDesignated NNP\nDesigncraft NNP\nDesigned VBN\nDesigner NN\nDesigners NNPS\nDesigning NNP\nDesigns NNS\nDesir NNP\nDesire NN\nDesiring VBG\nDesk NNP\nDesktop NNP\nDeslonde NNP\nDesmond NNP\nDesolation NNP\nDespair NN\nDesperate JJ\nDesperately RB\nDespina NNP\nDespising VBG\nDespite IN\nDesprez NNP\nDesrosiers NNP\nDestec NNP\nDestinations NNS\nDestler NNP\nDestroy NNP\nDestroyer NN\nDestruction NN\nDetached VBN\nDetachment NNP\nDetail NNP\nDetailed VBN\nDetails NNS\nDetecting VBG\nDetective NNP\nDetectives NNP\nDetente NN\nDetention NNP\nDetergent NN\nDeterioration NN\nDetermine VB\nDetermined VBN\nDetermining VBG\nDeterrent NN\nDetractors NNS\nDetrex NNP\nDetroit NNP\nDetroit-area JJ\nDetroit-based JJ\nDetroit-over-San JJ\nDetroit-to-Tokyo JJ\nDetroiters NNS\nDeukmejian NNP\nDeus FW\nDeutsch NNP\nDeutsche NNP\nDevans NNP\nDevario NNP\nDevastation NN\nDevcon NNP\nDevelop VB\nDevelopMate NNP\nDeveloped VBN\nDeveloper NNP\nDevelopers NNS\nDeveloping VBG\nDevelopment NNP\nDevelopments NNPS\nDevelops NNPS\nDevens NNP\nDever NNP\nDevereux NNP\nDevery NNP\nDevesa NNP\nDevey NNP\nDevice NN\nDevices NNPS\nDevil NNP\nDevils NNPS\nDevin NNP\nDevine NNP\nDevitt NNP\nDevlin NNP\nDevol NNP\nDevon NNP\nDevonshire NNP\nDevoted VBN\nDevotees NNS\nDevout JJ\nDewar NNP\nDewey NNP\nDewhurst NNP\nDexatrim NNP\nDexedrine NNP\nDexter NNP\nDey NNP\nDeyo NNP\nDhabi NNP\nDharma NNP\nDhofaris NNPS\nDhuu NNP\nDi NNP\nDiCara NNP\nDiFilippo NNP\nDiGiorgio NNP\nDiIulio NNP\nDiLeo NNP\nDiLorenzo NNP\nDiLoreto NNP\nDiLuzio NNP\nDiMaggio NNP\nDiNardo NNP\nDiSimone NNP\nDiVall NNP\nDiVarco NNP\nDiabetes NNP\nDiabetic NNP\nDiaghileff NNP\nDiaghilev NNP\nDiagnoses NNPS\nDiagnosis NNP\nDiagnostic NNP\nDiagnostics NNPS\nDial NNP\nDialogue NNP\nDialogues NNP\nDiamandis NNP\nDiamanti NNP\nDiametric JJ\nDiamond NNP\nDiamond-Star NNP\nDian NNP\nDiana NNP\nDiane NNP\nDianne NNP\nDiaper NNP\nDiario NNP\nDiary NNP\nDiasonics NNP\nDiaz NNP\nDicarban NN\nDice NNS\nDicello NNP\nDiceon NNP\nDick NNP\nDicke NNP\nDickel NNP\nDickens NNP\nDickensian JJ\nDickey NNP\nDickie NNP\nDickinson NNP\nDickman NNP\nDicks NNP\nDickson NNP\nDictaphone NNP\nDictates NNS\nDictation NN\nDictator NNP\nDictionaries NNS\nDictionary NNP\nDid VBD\nDid- NNP\nDidi NNP\nDidion NNP\nDie NNP\nDie-hard JJ\nDieHard JJ\nDiebel NNP\nDiebold NNP\nDied VBD\nDiefenbach NNP\nDiego NNP\nDiego-area JJ\nDiego-based JJ\nDiehards NNS\nDiehl NNP\nDiem NNP\nDienbienphu NNP\nDieppe NNP\nDierker NNP\nDiery NNP\nDies NNP\nDiesel NNP\nDiest NNP\nDiet NNP\nDietary JJ\nDieter NNP\nDietetic NNP\nDiethylstilbestrol NN\nDietisa NNP\nDietrich NNP\nDiets NNS\nDiety NNP\nDietz NNP\nDietzer NNP\nDieu FW\nDieux NNP\nDiff NN\nDiffer VBP\nDifferences NNS\nDifferent JJ\nDifferential JJ\nDifficult JJ\nDiffring NNP\nDig VB\nDigate NNP\nDigby NNP\nDigest NNP\nDiggers\\/Noise NNP\nDigges NNP\nDigi NNP\nDigital NNP\nDignitaries NNS\nDignity NNP\nDijon NNP\nDilantin NNP\nDilenschneider NNP\nDili NNP\nDiligence NNP\nDilip NNP\nDill NNP\nDillard NNP\nDiller NNP\nDillinger NNP\nDillingham NNP\nDillmann NNP\nDillon NNP\nDillow NNP\nDilly NNP\nDilthey NNP\nDilworth NNP\nDilys NNP\nDilzem NNP\nDim VBP\nDimaggio NNP\nDiman NNP\nDime NNP\nDimensions NNP\nDimes NNP\nDimitri NNP\nDimitriadis NNP\nDimitris NNP\nDimly RB\nDineen NNP\nDiners NNP\nDinerstein NNP\nDines NNP\nDing NNP\nDingell NNP\nDingell-Waxman NNP\nDingle NNP\nDingman NNP\nDingwall NNP\nDingy-looking JJ\nDinh NNP\nDining NNP\nDinkins NNP\nDinner NN\nDino NNP\nDinosaur NNP\nDinsa NNP\nDinsmore NNP\nDiocesan JJ\nDiocese NNP\nDiodati NNP\nDion NNP\nDionie NNP\nDionigi NNP\nDionne NNP\nDionysian JJ\nDionysus NNP\nDior NNP\nDioxins NNS\nDip VB\nDiplomatic JJ\nDiplomats NNS\nDiprivan NNP\nDipylon NNP\nDire JJ\nDirect JJ\nDirect-mail JJ\nDirected VBN\nDirection NNP\nDirectionality NN\nDirections NNP\nDirective NNP\nDirectly RB\nDirector NNP\nDirector-General NNP\nDirectorate NNP\nDirectors NNS\nDirectory NNP\nDirion NNP\nDirk NNP\nDirks NNP\nDirksen NNP\nDiron NNP\nDirt NN\nDirty JJ\nDirvin NNP\nDisabilities NNP\nDisabled JJ\nDisadvantaged NNP\nDisadvantages NNS\nDisaffiliation NN\nDisagreement NN\nDisappointing JJ\nDisappointment NN\nDisappointments NNS\nDisapproval NN\nDisarmament NNP\nDisaster NN\nDisasters NNS\nDisc NNP\nDisciplinary NNP\nDiscipline NN\nDisciplined VBN\nDisclosed VBN\nDisclosure NN\nDisclosures NNS\nDiscontinue VB\nDiscos NNS\nDiscount NNP\nDiscounts NNS\nDiscouraged VBN\nDiscouragement NN\nDiscours NNP\nDiscourse NNP\nDiscover NNP\nDiscovered VBN\nDiscoveries NNS\nDiscovering VBG\nDiscovery NNP\nDiscovision NNP\nDiscreet JJ\nDiscrepancies NNS\nDiscretion NN\nDiscrimination NNP\nDiscs NNP\nDiscussed VBN\nDiscussing VBG\nDiscussion NN\nDiscussions NNS\nDisease NNP\nDiseases NNPS\nDisgrace NN\nDisgruntled JJ\nDisgusted VBN\nDish NNP\nDishonesty NN\nDisk NN\nDisk\\/Trend NNP\nDismal JJ\nDismantle VB\nDismay NN\nDismissing VBG\nDismounting VBG\nDisney NNP\nDisney\\/MGM NNP\nDisneyland NNP\nDisorderly JJ\nDispatch NNP\nDispensing VBG\nDispersals NNS\nDisplacement NN\nDisplay NN\nDisplayed VBN\nDisplaying VBG\nDisposable JJ\nDisposables NNS\nDisposal NNP\nDisposition NNP\nDisposti NNP\nDisputada NNP\nDisputado NNP\nDisputes NNP\nDisquisition NNP\nDisregarding VBG\nDissect VB\nDissenting JJ\nDissident NNP\nDissidents NNS\nDist NNP\nDist. NN\nDistally RB\nDistance NNP\nDistances NNS\nDistant JJ\nDistilled NNP\nDistiller NN\nDistillers NNPS\nDistinguished NNP\nDistorts NNP\nDistracted VBN\nDistressed JJ\nDistributed VBN\nDistributing VBG\nDistribution NNP\nDistributive NNP\nDistributors NNS\nDistrict NNP\nDistricts NNS\nDitch NNP\nDitka NNP\nDitlow NNP\nDitmar NNP\nDitmars NNP\nDittamore NNP\nDitto NN\nDivergent JJ\nDivers NNP\nDiversey NNP\nDiversification NN\nDiversified NNP\nDiversify VB\nDiversity NN\nDivertimento NNP\nDives NNS\nDivesting VBG\nDivestiture NN\nDivi NNP\nDivide VB\nDivided VBN\nDividend NN\nDividend-related JJ\nDividends NNS\nDivine NNP\nDiving NN\nDivinity NNP\nDivision NNP\nDivisional NNP\nDivisions NNS\nDivorced NNP\nDixie NNP\nDixiecrat NNP\nDixiecrats NNS\nDixieland NNP\nDixon NNP\nDixons NNP\nDizzy NNP\nDjakarta NNP\nDjango NNP\nDjangology NNP\nDjemaa NNP\nDjurdjevic NNP\nDludsky NNP\nDmitri NNP\nDnC NNP\nDnieper NNP\nDniepr NNP\nDo VBP\nDoak NNP\nDoaty NNP\nDobbins NNP\nDobbs NNP\nDoberman NN\nDobi NNP\nDobson NNP\nDoc NNP\nDocherty NNP\nDock NNP\nDockray NNP\nDockweiler NNP\nDoctor NNP\nDoctors NNS\nDoctrine NNP\nDocument NNP\nDocumentary NNP\nDocumentation NNP\nDocuments NNS\nDodd NNP\nDodd-type NNP\nDodds NNP\nDodge NNP\nDodger NNP\nDodgers NNP\nDodington NNP\nDods NNP\nDodson NNP\nDoe NNP\nDoerflinger NNP\nDoerig NNP\nDoerner NNP\nDoes VBZ\nDog NNP\nDogberry NNP\nDogs NNS\nDogtown NNP\nDogumenti FW\nDoherty NNP\nDohnanyi NNP\nDoi NNP\nDoing NNP\nDolan NNP\nDolce NNP\nDole NNP\nDoll NNP\nDollar NN\nDollar-Britten NNP\nDollar-De NNP\nDollar-yen JJ\nDollars NNPS\nDolley NNP\nDolls NNP\nDolly NNP\nDolmabahce NNP\nDolora NNP\nDolores NNP\nDolphin NNP\nDolphins NNPS\nDom NNP\nDomaine NNP\nDoman NNP\nDome NNP\nDomeier NNP\nDomenici NNP\nDomesday NNP\nDomestic JJ\nDomestically RB\nDomicilium NNP\nDomina NNP\nDominant JJ\nDominated VBN\nDomingo NNP\nDomingos NNP\nDominguez NNP\nDominic NNP\nDominica NNP\nDominican NNP\nDominici NNP\nDominick NNP\nDominion NNP\nDominique NNP\nDomino NNP\nDominus NNP\nDomitian NNP\nDomokous NNP\nDompierre NNP\nDomtar NNP\nDon NNP\nDon't VB\nDona NNP\nDonaghy NNP\nDonahue NNP\nDonald NNP\nDonaldson NNP\nDonaldsonville NNP\nDonating VBG\nDonations NNS\nDonato NNP\nDonbas NNP\nDone VBN\nDoner NNP\nDong NNP\nDong-A NNP\nDongen NNP\nDonics NNP\nDonizetti NNP\nDonna NNP\nDonnan NNP\nDonnay NNP\nDonnell NNP\nDonnelley NNP\nDonnelly NNP\nDonner NNP\nDonning VBG\nDonnybrook NNP\nDonofrio NNP\nDonoghue NNP\nDonohoo NNP\nDonohue NNP\nDonor NN\nDonors NNS\nDonovan NNP\nDonut NNP\nDonuts NNP\nDoo NNP\nDoobie NNP\nDookiyoon NNP\nDooley NNP\nDooleys NNPS\nDoolin NNP\nDooling NNP\nDoolittle NNP\nDoonesbury NNP\nDoor NNP\nDoordarshan NNP\nDoorne NNP\nDoors NNS\nDoosan NNP\nDoppler NNP\nDor NNP\nDora NNP\nDorado NNP\nDoran NNP\nDoraville NNP\nDorcas NNP\nDorena NNP\nDorens NNP\nDorenzo NNP\nDorfman NNP\nDorgan NNP\nDorgen NNP\nDoria NNP\nDorian NNP\nDoric JJ\nDoris NNP\nDoritos NNS\nDormitory NNP\nDornan NNP\nDorney NNP\nDornier NNP\nDoron NNP\nDoronfeld NNP\nDorothee NNP\nDorothy NNP\nDorr NNP\nDorrance NNP\nDorrances NNPS\nDorsch NNP\nDorset NNP\nDorsey NNP\nDorsten NNP\nDort NNP\nDortch NNP\nDortmund NNP\nDos NNP\nDoskocil NNP\nDostoevski NNP\nDostoevsky NNP\nDoswell NNP\nDotson NNP\nDotzler NNP\nDouble NNP\nDouble-Figure NNP\nDouble-Jointed NNP\nDouble-digit JJ\nDoubled VBD\nDoubleday NNP\nDoubles NNP\nDoubt NN\nDoubtful JJ\nDoubtless RB\nDoubts NNS\nDouce NNP\nDoug NNP\nDough NN\nDougherty NNP\nDoughnuttery NN\nDouglas NNP\nDouglass NNP\nDoulgas NNP\nDousman NNP\nDov NNP\nDove NN\nDover NNP\nDow NNP\nDow-Jones NNP\nDowBrands NNP\nDowager NNP\nDowd NNP\nDowex-2-chloride NN\nDowguard NNP\nDowie NNP\nDowling NNP\nDown IN\nDownbeat NNP\nDowners NNP\nDowney NNP\nDownfall NNP\nDowngraded VBN\nDowngrades NNS\nDownham NNP\nDowning NNP\nDowns NNP\nDownside JJ\nDownstairs NN\nDowntown NN\nDowty NNP\nDoxiadis NNP\nDoyle NNP\nDozen NNP\nDozens NNS\nDr NNP\nDr. NNP\nDrabble NNP\nDrabinsky NNP\nDraco NNP\nDraconian JJ\nDracula NNP\nDraft NNP\nDrafted VBN\nDraftula NNP\nDrag VB\nDragging VBG\nDragnet NNP\nDrago NNP\nDragon NNP\nDragonetti NNP\nDragons NNP\nDragoslav NNP\nDragoumis NNP\nDrahuschak NNP\nDrain VB\nDrake NNP\nDramatic JJ\nDraper NNP\nDrastic JJ\nDravo NNP\nDraw VB\nDraw-file NN\nDrawbacks NNS\nDrawers NNS\nDrawing VBG\nDrawn VBN\nDread NNP\nDreadnought NNP\nDream NNP\nDream-Lusty NNP\nDream-Miss NNP\nDream-Next NNP\nDream-Sweetmite NNP\nDream-Torkin NNP\nDream-Way NNP\nDreamboat NNP\nDreamers NNS\nDreams NNS\nDred NNP\nDreieich NNP\nDreiser NNP\nDreisers NNPS\nDrell NNP\nDreman NNP\nDrenched JJ\nDrennen NNP\nDresbach NNP\nDresbachs NNPS\nDresden NNP\nDresdner NNP\nDresdner-ABD NNP\nDress NNP\nDressed VBN\nDresser NNP\nDresses NNS\nDresylon NNP\nDrew NNP\nDrexel NNP\nDrexel-managed JJ\nDrexel-underwritten JJ\nDrexler NNP\nDreyer NNP\nDreyfus NNP\nDried VBN\nDriesell NNP\nDrift NNP\nDrifting VBG\nDrifts NNS\nDrill VB\nDrilling NNP\nDrink VB\nDrinker NN\nDrinkhouse NNP\nDrinking VBG\nDriscoll NNP\nDriskill NNP\nDrive NNP\nDrive-in NNP\nDriven VBN\nDriver NNP\nDrivers NNS\nDriving VBG\nDrivon NNP\nDrobnick NNP\nDrobny NNP\nDrogerias NNP\nDrogoul NNP\nDroid NNP\nDroll NNP\nDromey NNP\nDronk NNP\nDrop VB\nDropouts NNS\nDropping VBG\nDrought NN\nDrouot NNP\nDrovers NNS\nDroz NNP\nDrs. NNP\nDru NNP\nDrubbing NN\nDrug NNP\nDrug-Treatment JJ\nDrug-industry JJ\nDruggan-Lake NNP\nDrugs NNS\nDrugstore NNP\nDruid NN\nDruin NNP\nDrum NNP\nDrummer NN\nDrums NNS\nDrunk JJ\nDrunkard NNP\nDrunken JJ\nDrunkenness NN\nDrury NNP\nDruse JJ\nDry NNP\nDrybred NNP\nDryden NNP\nDrye NNP\nDryer NN\nDryfoos NNP\nDrying NN\nDryja NNP\nDs NNS\nDu NNP\nDuCharme NNP\nDuComb NNP\nDuPont NNP\nDuVol NNP\nDual JJ\nDuane NNP\nDuarte NNP\nDubai NNP\nDubaih NNP\nDubbed VBN\nDubilier NNP\nDubin NNP\nDubinin NNP\nDubinsky NNP\nDublin NNP\nDubnow NNP\nDubois NNP\nDubose NNP\nDubovskoi NNP\nDuchenne NNP\nDuchess NNP\nDuchossois NNP\nDuchy NNP\nDuck NNP\nDucking VBG\nDucky NNP\nDuclos NNP\nDudley NNP\nDue JJ\nDuel NNP\nDuero NNP\nDuesseldorf NNP\nDuff NNP\nDuffey NNP\nDuffield NNP\nDuffus NNP\nDuffy NNP\nDufresne NNP\nDugan NNP\nDugan\\/Farley NNP\nDugdale NNP\nDuhagon NNP\nDukakis NNP\nDukakises NNP\nDuke NNP\nDuke-EPA JJ\nDukes NNPS\nDulaney NNP\nDulles NNP\nDulude NNP\nDuluth NNP\nDumas NNP\nDumb JJ\nDumbo NNP\nDumez NNP\nDummkopf NN\nDumont NNP\nDumping NN\nDumpster NNP\nDumpty NNP\nDun NNP\nDunaway NNP\nDunbar NNP\nDuncan NNP\nDunde NNP\nDundee NNP\nDundeen NNP\nDunes NNPS\nDung NNP\nDunham NNP\nDunkel NNP\nDunkelberg NNP\nDunker NNP\nDunkin NNP\nDunkirk NNP\nDunlaevy NNP\nDunlap NNP\nDunlop NNP\nDunn NNP\nDunn-Atherton NNP\nDunne NNP\nDunston NNP\nDunton NNP\nDuplicate NN\nDuplicating VBG\nDupont NNP\nDuponts NNPS\nDupps NNP\nDupuy NNP\nDuque NNP\nDuquesne NNP\nDurable JJ\nDurable-goods JJ\nDurables NNPS\nDuracell NNP\nDurakon NNP\nDurant NNP\nDurante NNP\nDuration NN\nDurban NNP\nDurcan NNP\nDuren NNP\nDurenberger NNP\nDurer NNP\nDurgin NNP\nDurham NNP\nDuring IN\nDuriron NNP\nDurk NNP\nDurkheim NNP\nDurkin NNP\nDurlach NNP\nDurmoy NNP\nDurney NNP\nDurning NNP\nDuro-Test NNP\nDuroTest NNP\nDurocher NNP\nDurrell NNP\nDurwood NNP\nDuse NNP\nDussa NNP\nDusseldorf NNP\nDust NNP\nDustin NNP\nDuston NNP\nDusty NNP\nDutch JJ\nDutch-based JJ\nDutch-descended JJ\nDutch-elm-disease NN\nDutch\\/Shell NNP\nDutchess NNP\nDutchman NNP\nDuties NNP\nDutil NNP\nDutton NNP\nDuty NNP\nDuty-Free NNP\nDuty-free JJ\nDuvalier NNP\nDuverger NNP\nDuy NNP\nDuyvil NNP\nDuzan NNP\nDvorak NNP\nDwarfing VBG\nDwellers NNS\nDwight NNP\nDwor NNP\nDworkin NNP\nDworkin-Cosell NNP\nDwyer NNP\nDyDee NNP\nDyazide NNP\nDycom NNP\nDyer NNP\nDyerear NNP\nDying NNP\nDyk NNP\nDyke NNP\nDylan NNP\nDylan-influenced JJ\nDylex NNP\nDyna NNP\nDynabook NNP\nDynafac NN\nDynamic NNP\nDynamics NNP\nDynamite NNP\nDynapert NNP\nDynascan NNP\nDynasts NNPS\nDynasty NNP\nDyncorp NNP\nDyncorp. NNP\nDynoriders NNP\nDysan NNP\nDyson NNP\nE NN\nE&J NNP\nE&P NNP\nE-1 CD\nE-2 CD\nE-2C NN\nE-6A NN\nE-71 NNP\nE-II NNP\nE-Systems NNP\nE-Z JJ\nE-mail NN\nE. NNP\nE.B. NNP\nE.C. NNP\nE.D. NNP\nE.E. NNP\nE.F. NNP\nE.G. NNP\nE.G.T. NNP\nE.H. NNP\nE.M. NNP\nE.O. NNP\nE.P. NN\nE.R. NNP\nE.T. NNP\nE.T.C NNP\nE.W. NNP\nE.Y. NNP\nE5 NNP\nEAC NNP\nEARNINGS NNS\nEARTHQUAKE NN\nEAST NNP\nEASTERN NNP\nEBPI NNP\nEBS NNP\nEC NNP\nEC-1 NN\nEC-made JJ\nEC-wide JJ\nECA NNP\nECI NNP\nECONOMIC JJ\nECONOMY NN\nECP NNP\nECPA NNP\nECU NNP\nECU-based JJ\nECU-denominated JJ\nECUs NNS\nEDA NNP\nEDI NNP\nEDISON NNP\nEDMOV NN\nEDS NNP\nEDT NNP\nEDUCATION NN\nEEAE-cellulose NN\nEEG NNP\nEEOC NNP\nEFFECT NN\nEFPs NNS\nEG&G NNP\nEGA NNP\nEGA-VGA JJ\nEGYPT NNP\nEISA NNP\nEITC NNP\nEK NNP\nEL-10 NNP\nELDERLY JJ\nELECTED VBD\nELECTIONS NNS\nELECTRIC NNP\nELECTRONICS NNP\nELP NNP\nELSINORE NNP\nELWOOD NNP\nEMA NNP\nEMC NNP\nEMI NNP\nEMPIRE NNP\nEMPLOYEE NN\nEMPLOYEES NNS\nEMS NNP\nENCYCLOPAEDIA NNP\nENDED VBD\nENERGY NN\nENFIELD NNP\nENG NNP\nENGLAND NNP\nENGRAPH NNP\nENI NNP\nENTEL NNP\nENTERED VBD\nENTERPRISES NNP\nENTERS VBZ\nENTERTAINMENT NNP\nENTREPRENEURSHIP NN\nENVIRONMENTAL JJ\nEOG NNP\nEP-3E NNP\nEPA NNP\nEPC NNP\nEPO NNP\nEPO-treated JJ\nEQU NN\nEQUIPMENT NNP\nEQUITIES NNPS\nEQUITY NNP\nERC NNP\nERG NNP\nERISA NNP\nERNST NNP\nES NNP\nES250 NNP\nESB NNP\nESL NNP\nESN NN\nESOP NNP\nESOPs NNS\nESP NNP\nESPN NNP\nESPs NNPS\nEST NNP\nESTABLISHMENT NN\nESTATE NN\nESystems NNP\nET NNP\nETA NNP\nETHICS NNS\nETR NNP\nETV NNP\nEUMMELIHS NNP\nEURODOLLARS NNS\nEUROP NNP\nEUROPE NNP\nEVER RB\nEVEREX NNP\nEVERYONE NN\nEWC NN\nEWDB NNP\nEX NNP\nEX-OFFICIALS NNS\nEXAMINE VB\nEXBT NNP\nEXCHANGE NN\nEXE NNP\nEXECUTIVES NNPS\nEXP NNP\nEXPANDS VBZ\nEXPECT VBP\nEXPENSES NNS\nEXPENSIVE JJ\nEXPRESS NNP\nEXPRESSED VBD\nEXTEND VB\nEXXON NNP\nEYEWEAR NN\nEYP NNP\nEZ NNP\nEach DT\nEades NNP\nEager JJ\nEagle NNP\nEagle-Berol NNP\nEagle-Picher NNP\nEagleburger NNP\nEagles NNP\nEagleton NNP\nEagleton-Newark NNP\nEakle NNP\nEaly NNP\nEamonn NNP\nEar NNP\nEar-Muffs NNPS\nEarl NNP\nEarle NNP\nEarlham NNP\nEarlier RBR\nEarls NNP\nEarly RB\nEarly-morning JJ\nEarly-retirement NN\nEarning NN\nEarnings NNS\nEarns VBZ\nEarp NNP\nEars NNS\nEarth NNP\nEarth-quake NN\nEarth-week NN\nEarth-weeks NNS\nEarthbeat NNP\nEarthlings NNS\nEarthmen NNPS\nEarthquake NN\nEarthquake-related JJ\nEarthquakes NNS\nEase VB\nEasier JJR\nEasily RB\nEast NNP\nEast-West NNP\nEastate NNP\nEastchester NNP\nEaster NNP\nEasterbrook NNP\nEastern NNP\nEasterners NNS\nEasthampton NNP\nEastland NNP\nEastman NNP\nEaston NNP\nEastwick NNP\nEasy NNP\nEasyLink NNP\nEat NNP\nEaters NNS\nEating NN\nEaton NNP\nEats NNS\nEaux NNP\nEavesdropping NN\nEbasco NNP\nEbaugh NNP\nEbbetts NNP\nEbbutt NNP\nEbel NNP\nEben NNP\nEbensburg NNP\nEber NNP\nEberly NNP\nEbersol NNP\nEbert NNP\nEbrahim NNP\nEbury NNP\nEccles NNP\nEcclesiastical NNP\nEcco NNP\nEcheandia NNP\nEchelon NNP\nEcho NNP\nEchoing VBG\nEckart NNP\nEckenfelder NNP\nEckerd NNP\nEckersley NNP\nEckhard NNP\nEckhardt NNP\nEclectic JJ\nEclipse NNP\nEcogen NNP\nEcolab NNP\nEcole NNP\nEcological NNP\nEcology NN\nEconoclast NNP\nEconomdis NNP\nEconometric NNP\nEconomic NNP\nEconomically RB\nEconomics NNP\nEconomidis NNP\nEconomies NNS\nEconomique NNP\nEconomist NNP\nEconomists NNS\nEconomizers NNS\nEconomy NNP\nEcuador NNP\nEcumenical NNP\nEd NNP\nEd. NNP\nEddie NNP\nEddies NNP\nEddington NNP\nEddy NNP\nEddyman NNP\nEde NNP\nEdelman NNP\nEdelmann NNP\nEdelson NNP\nEdelstein NNP\nEden NNP\nEder NNP\nEdgar NNP\nEdgardo NN\nEdge NNP\nEdgerton NNP\nEdgewater NNP\nEdict NNP\nEdinburgh NNP\nEdison NNP\nEdisto NNP\nEdita NNP\nEdith NNP\nEditing NN\nEdition NNP\nEditions NNPS\nEditor NNP\nEditorial JJ\nEditorials NNS\nEditors NNS\nEdley NNP\nEdmar NNP\nEdmiston NNP\nEdmond NNP\nEdmondson NNP\nEdmonia NN\nEdmonton NNP\nEdmund NNP\nEdmunston NNP\nEdna NNP\nEdnee NNP\nEdnie NNP\nEdouard NNP\nEdsel NNP\nEdson NNP\nEduard NNP\nEduardo NNP\nEducate VB\nEducation NNP\nEducational NNP\nEducator NNP\nEducators NNP\nEdw NNP\nEdward NNP\nEdwardes NNP\nEdwardh NNP\nEdwards NNP\nEdwardsville NNP\nEdwin NNP\nEdwina NNP\nEdwviges NNP\nEdythe NNP\nEdzard NNP\nEffect NN\nEffective JJ\nEffectively RB\nEffects NNPS\nEfficiencies NNS\nEfficiency NN\nEffie NNP\nEffjohn NNP\nEffoa NNP\nEfforts NNS\nEgad UH\nEgalitarianism NNP\nEgan NNP\nEgerton NNP\nEgg NNP\nEgg-industry NN\nEgger NNP\nEggers NNP\nEggs NNP\nEggum NNP\nEgil NNP\nEgils NNP\nEgnuss NNP\nEgon NNP\nEgypt NNP\nEgyptian JJ\nEgyptians NNPS\nEh UH\nEhlers NNP\nEhman NNP\nEhrhardt NNP\nEhrlich NNP\nEhrlichman NNP\nEhrman NNP\nEicher NNP\nEichler NNP\nEichmann NNP\nEichner NNP\nEichof NNP\nEidsmo NNP\nEiffel NNP\nEigen NNP\nEight CD\nEight-foot-tall JJ\nEighteen CD\nEighteenth NNP\nEighteenth-century JJ\nEighth NNP\nEighties NNP\nEighty CD\nEighty-Eight NNP\nEighty-Four NNP\nEighty-five CD\nEighty-seventh NNP\nEighty-three CD\nEiji NNP\nEileen NNP\nEinar NNP\nEinhorn NNP\nEinsatzkommandos NNP\nEinstein NNP\nEinsteinian JJ\nEire NNP\nEisai NNP\nEisenach NNP\nEisenberg NNP\nEisenhhower NNP\nEisenhower NNP\nEisenstat NNP\nEishi NNP\nEisler NNP\nEiszner NNP\nEither CC\nEizenstat NNP\nEjaculated VBD\nEk NNP\nEkaterinoslav NNP\nEkberg NNP\nEkco NNP\nEkman NNP\nEkonomicheskaya NNP\nEkstrohm NNP\nEkwanok NNP\nEl NNP\nEl-Abed NNP\nEl-Sadr NNP\nElaborate JJ\nElaborating VBG\nElaine NNP\nElan NNP\nElanco NNP\nElavil NNP\nElba NNP\nElbaum NNP\nElbaz NNP\nElbe NNP\nElbow NN\nElburn NNP\nElco NNP\nElcotel NNP\nElder NNP\nElderly JJ\nElders NNP\nEldest JJS\nEldon NNP\nEldred NNP\nEleanor NNP\nEleazar NNP\nElec NNP\nElecktra NNP\nElected VBN\nElection NNP\nElections NNS\nElector NNP\nElectoral NNP\nElectra NNP\nElectress NNP\nElectric NNP\nElectrical NNP\nElectricity NNP\nElectrification NNP\nElectro NNP\nElectro-Optical NNP\nElectro-Optics NNP\nElectrochemical NNP\nElectrolux NNP\nElectromyography NN\nElectron NNP\nElectron-microscopical NN\nElectronic NNP\nElectronics NNP\nElectrostatic JJ\nElectrosurgery NNP\nElegance NN\nElegant NNP\nElegies NNP\nElektronik NNP\nElemental JJ\nElementary NNP\nElements NNS\nElemer NNP\nElena NNP\nElephant NNP\nElephants NNS\nElevated NNP\nEleven CD\nElf NNP\nElfner NNP\nElgin NNP\nEli NNP\nEliades NNP\nElianti NNP\nElias NNP\nElie NNP\nEliezer NNP\nEligibility NN\nEligio NNP\nElijah NNP\nEliminate VB\nEliminating VBG\nElimination NN\nElinor NNP\nElinsky NNP\nElios NNP\nEliot NNP\nEliot-or-Martin NNP|CC|NP\nElisa NNP\nElisabeth NNP\nElise NNP\nElisha NNP\nElite NNP\nElizabeth NNP\nElizabethan JJ\nElizabethans NNS\nElizario NNP\nEljer NNP\nElkan NNP\nElkhorn NNP\nElkin NNP\nElkind NNP\nElkins NNP\nElks NNP\nElkus NNP\nElla NNP\nEllamae NNP\nElle NNP\nEllen NNP\nEllerman NNP\nEllesmere NNP\nEllie NNP\nElliman NNP\nEllington NNP\nElliot NNP\nElliott NNP\nEllis NNP\nEllison NNP\nEllman NNP\nEllmann NNP\nEllsaesser NNP\nEllsworth NNP\nEllwood NNP\nElm NNP\nElman NNP\nElmer NNP\nElmgrove NNP\nElmhurst NNP\nElmira NNP\nElmsford NNP\nEloi NNP\nEloise NNP\nEloy NNP\nElrick NNP\nElsa NNP\nElse RB\nElsevier NNP\nElsewhere RB\nElshtain NNP\nElsie NNP\nElsinore NNP\nElton NNP\nEluard NNP\nElusive NNP\nElvador NNP\nElvekrog NNP\nElvira NNP\nElvis NNP\nEly NNP\nElyria NNP\nElysees NNP\nEmancipation NNP\nEmanuel NNP\nEmanuele NNP\nEmbarcadero NNP\nEmbarcaderothe NNP\nEmbarrassed JJ\nEmbassy NNP\nEmbedded VBN\nEmbittered JJ\nEmboldened JJ\nEmbraer NNP\nEmbry NNP\nEmbryo NN\nEmbryogen NNP\nEmbryos NNS\nEmcee NNP\nEmerald NNP\nEmergency NNP\nEmerging VBG\nEmeritus NNP\nEmerson NNP\nEmery NNP\nEmeryville NNP\nEmhart NNP\nEmigrant NNP\nEmigration NN\nEmil NNP\nEmile NNP\nEmilio NNP\nEmily NNP\nEminase NNP\nEminonu NNP\nEmirates NNPS\nEmission NN\nEmlyn NNP\nEmma NNP\nEmmanuel NNP\nEmmaus NNP\nEmmerich NNP\nEmmert NNP\nEmmett NNP\nEmmies NNPS\nEmmons NNP\nEmmy NN\nEmory NNP\nEmotional JJ\nEmotionally RB\nEmpedocles NNP\nEmperor NNP\nEmperors NNS\nEmphasis NN\nEmpire NNP\nEmpire-Berol NNP\nEmpirically RB\nEmployee NNP\nEmployee-benefit JJ\nEmployee-owned JJ\nEmployees NNS\nEmployer NN\nEmployers NNS\nEmployes NNS\nEmployment NNP\nEmporium NNP\nEmpresa NNP\nEmptied VBD\nEmpty JJ\nEmshwiller NNP\nEmulex NNP\nEmyanitoff NNP\nEn NNP\nEn-lai NNP\nEnClean NNP\nEnasa NNP\nEncare NNP\nEnchaine NNP\nEncino NNP\nEnclosed VBN\nEncompassing VBG\nEncore NNP\nEncourage VB\nEncouraged VBN\nEncouragement NNP\nEncouraging VBG\nEncyclopaedia NNP\nEncyclopedia NNP\nEncylopedia NN\nEnd NN\nEndangered NNP\nEndara NNP\nEndeavor VB\nEnded NNP\nEndgame NNP\nEndicott NNP\nEnding VBG\nEndless JJ\nEndo NNP\nEndowment NNP\nEnds NNS\nEndure VBP\nEnel NNP\nEnemies NNS\nEnemy NN\nEnergetic JJ\nEnergie NNP\nEnergieproduktiebedrijf NNP\nEnergies NNP\nEnergized VBN\nEnergy NNP\nEnersen NNP\nEnfield NNP\nEnforce VB\nEnforcement NNP\nEnforcers NNS\nEng NNP\nEngaged VBN\nEngages NNS\nEngaging VBG\nEngel NNP\nEngelhard NNP\nEngelken NNP\nEngh NNP\nEngine NNP\nEngineer NNP\nEngineered NNP\nEngineering NNP\nEngineers NNPS\nEngines NNPS\nEngisch NNP\nEngland NNP\nEngland-based JJ\nEngland-born NNP|VBN\nEnglander NNP\nEnglanders NNPS\nEngle NNP\nEngler NNP\nEngles NNP\nEnglewood NNP\nEnglish NNP\nEnglish-Danish NNP\nEnglish-Dutch JJ\nEnglish-Scottish-French NNP\nEnglish-born JJ\nEnglish-dialogue JJ\nEnglish-language JJ\nEnglish-rights JJ\nEnglish-speakers NNS\nEnglish-speaking JJ\nEnglishman NNP\nEnglishmen NNS\nEnglishwoman NNP\nEnglishy JJ\nEnglund NNP\nEngraph NNP\nEngraving NNP\nEngrg NNP\nEnhance NNP\nEnhanced NNP\nEnhancement NNP\nEnhancements NNP\nEnholme NNP\nEniChem NNP\nEnichem NNP\nEnid NNP\nEnimont NNP\nEnjoy VB\nEnjoying VBG\nEnlargement NN\nEnnis NNP\nEnoch NNP\nEnormous JJ\nEnos NNP\nEnough JJ\nEnquirer NNP\nEnrico NNP\nEnright NNP\nEnrique NNP\nEnron NNP\nEnsemble NNP\nEnserch NNP\nEnsign NNP\nEnskilda NNP\nEnsolite NN\nEnsrud NNP\nEnte NNP\nEntenmann NNP\nEnter VB\nEntergy NNP\nEntering NNP\nEnterprise NNP\nEnterprises NNPS\nEntertaining NNP\nEntertainment NNP\nEntex NNP\nEnthoven NNP\nEnthusiasm NN\nEnthusiast NNP\nEnthusiastic JJ\nEnthusiastically RB\nEnthusiasts NNS\nEntirely RB\nEntitlements NNS\nEntombment NN\nEntrance NN\nEntre NNP\nEntree NNP\nEntrekin NNP\nEntrenched VBN\nEntrepreneur NN\nEntrepreneurs NNS\nEntries NNS\nEntry NN\nEntwhistle NNP\nEnver NNP\nEnvigado NNP\nEnviro-Gro NNP\nEnvironment NNP\nEnvironmental NNP\nEnvironmentalism NNP\nEnvironmentalists NNS\nEnviropact NNP\nEnzo NNP\nEnzor NNP\nEnzymatic JJ\nEnzytech NNP\nEpes NNP\nEph NNP\nEphesians NNPS\nEphesus NNP\nEphlin NNP\nEphron NNP\nEpicurean JJ\nEpicurus NNP\nEpidemiological JJ\nEpigraph NN\nEpilady NNP\nEpilepsy NNP\nEpinal NNP\nEpinalers NNPS\nEpiphany NNP\nEpiscopal NNP\nEpiscopalians NNPS\nEpisodes NNS\nEpistles NNPS\nEpitaph NNP\nEpp NNP\nEppel NNP\nEppelmann NNP\nEppler NNP\nEpplers NNP\nEppner NNP\nEpps NNP\nEprex NNP\nEpsilon NNP\nEpsom NNP\nEpson NNP\nEpstein NNP\nEq. NN\nEqual NNP\nEquality NNP\nEqualizer NNP\nEqually RB\nEquate VB\nEquations NNS\nEquator NNP\nEquestrian NNP\nEquibank NNP\nEquifax NNP\nEquimark NNP\nEquinox NNP\nEquipement NNP\nEquipment NNP\nEquipped VBN\nEquitable NNP\nEquitec NNP\nEquities NNPS\nEquity NNP\nEquity-Income NNP\nEquivalent NN\nEquivalents NNS\nEquus NNP\nEra NNP\nErasing VBG\nErasmus NNP\nErath NNP\nErbamont NNP\nErburu NNP\nErde NNP\nErdman NNP\nErdmann NN\nErdolversorgungs NNP\nErdos NNP\nErected VBN\nErection NNP\nErensel NNP\nErfurt NNP\nErhart NNP\nEric NNP\nErich NNP\nErickson NNP\nEricson NNP\nErie NNP\nErik NNP\nErikson NNP\nErin NNP\nEriskay NNP\nErithmatic NN\nEritrea NNP\nEritrean JJ\nEritreans NNPS\nErjun NNP\nErle NNP\nErlenborn NNP\nErlenmeyer NN\nErling NNP\nErma NNP\nErmanno NNP\nErnest NNP\nErnesto NNP\nErnie NNP\nErnst NNP\nErodes VBZ\nEromonga NNP\nEros NNP\nErosion NN\nErotic NNP\nErr VB\nErrol NNP\nErroll NNP\nErrors NNS\nErskin NNP\nErskine NNP\nErvin NNP\nErwin NNP\nEsber NNP\nEscadrille NNP\nEscalante NNP\nEscalation NN\nEscanaba NNP\nEscape NNP\nEschewing VBG\nEscobar NNP\nEscort NNP\nEscorts NNS\nEscudome NNP\nEsher NNP\nEshleman NNP\nEskandarian NNP\nEskenazi NNP\nEskimo NNP\nEskimos NNPS\nEskridge NNP\nEslinger NNP\nEsmarch NNP\nEsnard NNP\nEsnards NNPS\nEsopus NNP\nEspagnol NNP\nEspana NNP\nEspanol NNP\nEspecially RB\nEspectador NNP\nEspenhain NNP\nEsperanza NNP\nEspinosa NNP\nEsplanade NNP\nEspre NNP\nEsprit NNP\nEspy NNP\nEsquire NNP\nEsquivel NNP\nEsrey NNP\nEssar NNP\nEsselte NNP\nEssen NNP\nEssentially RB\nEssex NNP\nEsso NNP\nEstablish VB\nEstablished VBN\nEstablishing VBG\nEstablishment NNP\nEstancieros NNS\nEstate NNP\nEstates NNP\nEsteban NNP\nEstee NNP\nEsteli NNP\nEstella NNP\nEstep NNP\nEstes NNP\nEsther NNP\nEstherson NNP\nEstimate NNP\nEstimated VBN\nEstimates NNS\nEstimating VBG\nEstonia NNP\nEstonian JJ\nEstonian-language JJ\nEstonians NNPS\nEstuary NNP\nEta NNP\nEtablissements NNP\nEtc. NNP\nEtch-a-Sketch NNP\nEternal NNP\nEternity NN\nEtess NNP\nEthan NNP\nEthane NN\nEthel NNP\nEthel-Jane NNP\nEthernet NNP\nEthical NNP\nEthicist NN\nEthics NNP\nEthiopia NNP\nEthiopian JJ\nEthiopians NNPS\nEthocyn NNP\nEthyl NNP\nEtienne-Emile NNP\nEtruscan JJ\nEtsuko NNP\nEtsuro NNP\nEtsy NNP\nEttore NNP\nEtudes NNP\nEtzioni NNP\nEubank NNP\nEubanks NNP\nEubie NNP\nEuclid NNP\nEugene NNP\nEugenia NNP\nEuler NNP\nEuphoria NNP\nEuralliance NNP\nEurasian NNP\nEuratom NNP\nEureka NNP\nEuripides NNP\nEuro NNP\nEuro-Belge NNP\nEuro-Communist NNP\nEuro-TV NNP\nEuro-ashtrays NNS\nEuro-banners NNS\nEuro-barbecue NN\nEuro-beach NN\nEuro-caps NNS\nEuro-cards NNS\nEuro-cigarette NN\nEuro-consumers NNPS\nEuro-enthusiasts NNS\nEuro-factories NNS\nEuro-housewife NN\nEuro-jogging JJ\nEuro-pillows NNS\nEuro-playing JJ\nEuro-products NNS\nEuro-son NN\nEuro-that NN\nEuro-this NN\nEuro-watches NNS\nEuroBelge NNP\nEuroTV NNP\nEurobond NNP\nEurobonds NNS\nEurocell NNP\nEurocom NNP\nEurocommercial JJ\nEuroconsumer NN\nEuroconvertible JJ\nEurocops NNPS\nEurocracy NN\nEurocrat NN\nEurocrats NNS\nEurocrooks NNPS\nEurodebentures NNS\nEurodebt NNP\nEurodollar NN\nEurodynamics NNPS\nEurofighter NNP\nEurofima NNP\nEuroflics NNPS\nEuroissues NNS\nEurokitsch NN\nEuromark NN\nEuromarket NNP\nEuronotes NNS\nEuropa NNP\nEuropalia NNP\nEurope NNP\nEurope-based JJ\nEurope-wide JJ\nEuropean JJ\nEuropean-American NNP\nEuropean-based JJ\nEuropean-branch JJ\nEuropean-made JJ\nEuropean-minded JJ\nEuropeanish JJ\nEuropeanization NN\nEuropeanized VBN\nEuropeans NNPS\nEurophoria NN\nEuroshuttle NNP\nEurostat NNP\nEurotempo NNP\nEurotunnel NNP\nEurovision NNP\nEuroyen NNP\nEurydice NNP\nEustis NNP\nEuthanasia NN\nEuzhan NNP\nEvadna NNP\nEvaluating VBG\nEvaluation NN\nEvaluations NNS\nEvan NNP\nEvangelical JJ\nEvangelicalism NNP\nEvangeline NNP\nEvangelism NNP\nEvangelista NNP\nEvans NNP\nEvans-Black NNP\nEvanston NNP\nEvansville NNP\nEvarsito NNP\nEve NNP\nEvegeni NNP\nEvelyn NNP\nEven RB\nEvenflo NNP\nEvening NNP\nEvenings RB\nEvensen NNP\nEvent NN\nEvents NNS\nEventually RB\nEver RB\nEver-confident JJ\nEver-more RB\nEveready NNP\nEverest NNP\nEverett NNP\nEverglades NNP\nEvergreen NNP\nEverhart NNP\nEverly NNP\nEverlys NNS\nEvershed NNP\nEvery DT\nEverybody NN\nEveryman NNP\nEveryone NN\nEverything NN\nEverytime RB\nEverywhere RB\nEvian NNP\nEvidence NN\nEvidences NNS\nEvident JJ\nEvidently RB\nEvil NNP\nEvolution NNP\nEvolving VBG\nEvren NNP\nEvry NNP\nEvzone NNP\nEwan NNP\nEward NNP\nEwe NNP\nEwen NNP\nEwing NNP\nEx-Cub JJ\nEx-Im NNP\nEx-Oriole NNP\nEx-Premier NNP\nEx-Presidents NNS\nEx-Wells NNP\nEx-smokers NNS\nExPe NNP\nExabyte NNP\nExact JJ\nExactly RB\nExaggerated VBN\nExamination NN\nExaminer NNP\nExaminers NNP\nExample NN\nExamples NNS\nExboyfriend NN\nExcalibur NNP\nExceed VBD\nExcel NNP\nExcell NNP\nExcellence NN\nExcellency NNP\nExcellent JJ\nExcels NNS\nExcelsior NNP\nExcept IN\nExceptional NNP\nExceptions NNS\nExcerpts NNS\nExcess JJ\nExch NN\nExchange NNP\nExchange-listed JJ\nExchange-rate JJ\nExchange-sponsored JJ\nExchangeable NNP\nExchanges NNS\nExchequer NNP\nExchnage NNP\nExcise-tax JJ\nExcision NN\nExcited JJ\nExcitement NN\nExclaimed VBD\nExcluded VBN\nExcludes VBZ\nExcluding VBG\nExclusion NN\nExclusive JJ\nExcuse VB\nExcuses NNPS\nExecuted VBD\nExecution NNP\nExecutioner NN\nExecutions NNS\nExecutive NNP\nExecutive-branch JJ\nExecutives NNS\nExegete NNP\nExemption NN\nExercise NN\nExeter NNP\nExhausted JJ\nExhibit NN\nExhibited VBN\nExhibition NNP\nExhibits NNPS\nExistence NN\nExistentialism NNP\nExistentialists NNS\nExisting VBG\nExit NN\nExitosa NNP\nExocet NNP\nExodus NNP\nExpand NNP\nExpanded VBN\nExpanding VBG\nExpands VBZ\nExpansion NN\nExpect VB\nExpectations NNS\nExpected VBN\nExpecting VBG\nExpects NNS\nExpedition NNP\nExpenditure NNP\nExpenditures NNS\nExpense NN\nExpenses NNS\nExperience NN\nExperienced VBN\nExperiencing VBG\nExperiment NN\nExperimental JJ\nExperimentally RB\nExperimenting VBG\nExperiments NNS\nExperts NNS\nExplain VB\nExplained NNP\nExplaining VBG\nExplains VBZ\nExplanations NNS\nExplicit JJ\nExploiTech NNP\nExplonaft NNP\nExploracion NNP\nExploration NNP\nExploratory JJ\nExplorer NNP\nExplosion NN\nExplosions NNS\nExpo NNP\nExponents NNS\nExport NNP\nExport-Import NNP\nExporters NNPS\nExporting NNP\nExportkredit NNP\nExports NNS\nExpos NNPS\nExposition NNP\nExposure NN\nExpress NNP\nExpress-Buick NNP\nExpressed VBN\nExpresses VBZ\nExpressing VBG\nExpressionism NNP\nExpressions NNS\nExpressway NNP\nExpressways NNP\nExtend VB\nExtended NNP\nExtending VBG\nExtension NNP\nExtensions NNS\nExtensive JJ\nExtensor NNP\nExterior NNP\nExteriors NNS\nExterminatin VBG\nExternal JJ\nExtinction NNP\nExton NNP\nExtra NNP\nExtractor NN\nExtracts NNS\nExtraordinary JJ\nExtrapolation NN\nExtremadura NNP\nExtreme JJ\nExtricating VBG\nExtruded VBN\nExxon NNP\nExxon-Valdez JJ\nExxon-owned JJ\nEye NNP\nEyes NNP\nEyewear NNP\nEyke NNP\nEzekiel NNP\nEzra NNP\nF NN\nF-108 NN\nF-14 NN\nF-14s NNS\nF-15 NNP\nF-16 NNP\nF-16s NNPS\nF-18 NN\nF-18s NNS\nF-20 NNP\nF-20s NNPS\nF-4 NNP\nF-A-18 NN\nF-major NN\nF-series NNPS\nF. NNP\nF.A. NNP\nF.A.O. NNP\nF.B. NNP\nF.B.I. NN\nF.C NNP\nF.D. NNP\nF.D.R. NNP\nF.E. NNP\nF.E.L. NNP\nF.G. NNP\nF.H. NNP\nF.J. NNP\nF.L. NNP\nF.N. NNP\nF.O. NNP\nF.O.O.D. NNP\nF.R NN\nF.R. NN\nF.S.B. NNP\nF.S.C. NNP\nF.S.L.I.C NNP\nF.Supp.235 CD\nF.W. NNP\nF100-PW-200 NNP\nF111 NN\nF16s NNS\nF18s NNS\nFAA NNP\nFAC NNP\nFACES VBZ\nFACING VBG\nFADA NNP\nFADE VBP\nFAI NNP\nFAILED VBD\nFAKE JJ\nFALL NN\nFALTERS NNP\nFAMILY NN\nFAN NN\nFAR RB\nFARGO NNP\nFARM NN\nFARMER'S NN\nFARMERS NNS\nFARMING NNP\nFASB NNP\nFAST NNP\nFAST-FOOD NN\nFATHER NN\nFAX NNP\nFAXM NNP\nFB NNP\nFBI NNP\nFCB\\ NNP\nFCB\\/Leber NNP\nFCC NNP\nFDA NNP\nFDA-NIH-industry JJ\nFDA-approved JJ\nFDA-defined JJ\nFDA-regulated JJ\nFDC NNP\nFDIC NNP\nFDR NNP\nFE NNP\nFEAR VBP\nFEARS NNS\nFED NNP\nFEDERAL NNP\nFELA NNP\nFELLED VBD\nFELLOWSHIP NN\nFEMA NNP\nFEMALES NNS\nFERC NNP\nFEWER JJR\nFFA NNP\nFFr1 NNP\nFFr27.68 NN\nFH-77B NNP\nFHA NNP\nFHA-backed JJ\nFHA-insured JJ\nFHLBB NNP\nFHP NNP\nFIAT NNP\nFICO NNP\nFICOs NNS\nFIDELITY NNP\nFIG NNP\nFIGHT NNP\nFII NNP\nFINAL JJ\nFINANCES NNS\nFINANCIAL NNP\nFIRM NN\nFIRMS NNS\nFIRST NNP\nFIRST-TIME JJ\nFIT NNP\nFITC NNP\nFIVE CD\nFK-506 NNP\nFLAG NN\nFLARE VBP\nFLARE-OFF NN\nFLIGHT NN\nFLN NNP\nFLORIDA NNP\nFLYING VBG\nFM NNP\nFM12.6 CD\nFM21 CD\nFM9.4 CD\nFMC NNP\nFMI NNP\nFMR NNP\nFN NNP\nFNMA NNP\nFOES NNS\nFOILED VBD\nFOMC NNP\nFOOD NNP\nFOOTNOTE NNP\nFOR IN\nFORCE VBP\nFORCES NNS\nFORD NNP\nFOREAMI NNP\nFOREIGN JJ\nFORGN NNP\nFORMER JJ\nFORMERLY RB\nFOUNDER NN\nFOUR CD\nFOX NN\nFPA NNP\nFPL NNP\nFRANCHISE NN\nFRANCISCO'S NNP\nFRANKENBERRY NNP\nFRANKFURT NNP\nFRANKLIN NNP\nFRAUDS NNS\nFRE NNP\nFREDERICK'S NNP\nFREED VBD\nFREEZE VB\nFREIGHTWAYS NNP\nFRICTION NN\nFRINGE-BENEFIT JJ\nFROG-7B NN\nFROM IN\nFSLIC NNP\nFSX NNP\nFT NNP\nFT-SE NNP\nFTC NNP\nFUCK NN\nFUND NNP\nFUNDS NNS\nFUTURES NNS\nFXTV NNP\nF\\ NN\nF\\/A18 NNP\nFab NNP\nFabbri NNP\nFaber NNP\nFaberge NNP\nFabi NNP\nFabian NNP\nFable NNP\nFabric NN\nFabricius NNP\nFabrics NNP\nFabrri NNP\nFabulous NNP\nFace NNP\nFacebook NNP\nFaced VBN\nFaces NNPS\nFacetious NNP\nFacilitatory JJ\nFacilities NNPS\nFacility NNP\nFacing VBG\nFactions NNS\nFactor NNP\nFactor-VIII NNP\nFactorex NNP\nFactories NNS\nFactoring NN\nFactors NNS\nFactory NN\nFactory-to-You NNP\nFacts NNP\nFaculty NN\nFads NNS\nFagan NNP\nFagenson NNP\nFagershein NNP\nFaget NNP\nFahd NNP\nFahey NNP\nFahlgren NNP\nFahrenheit NNP\nFaight NNP\nFail NNP\nFailing VBG\nFails NNS\nFailure NN\nFailures NNS\nFain NNP\nFaint JJ\nFair NNP\nFair-priced JJ\nFairbanks NNP\nFairbrothers NNP\nFairchild NNP\nFairfax NNP\nFairfield NNP\nFairing NN\nFairlawn NNP\nFairless NNP\nFairly RB\nFairmont NNP\nFairmount NNP\nFairness NNP\nFairview NNP\nFairy NNP\nFaith NNP\nFaithful NN\nFake JJ\nFakty NNP\nFalb NNP\nFalco NNP\nFalcon NNP\nFalconbridge NNP\nFalconer NNP\nFalconry NNP\nFalcons NNS\nFalegnami NNP\nFalin NNP\nFalkland NNP\nFalklands NNP\nFall NNP\nFall-in NNP\nFalla NNP\nFallen NNP\nFallick NNP\nFalling VBG\nFallon NNP\nFallout NNP\nFalls NNP\nFalmouth NNP\nFalse NNP\nFalstaff NNP\nFalvey NNP\nFalwell NNP\nFalwell-Robertson NNP\nFalwell-like JJ\nFamcorp NNP\nFame NNP\nFamed JJ\nFamilia NNP\nFamilies NNS\nFamilism NN\nFamily NNP\nFamily-owned JJ\nFamine NN\nFamous NNP\nFamous-Barr NNP\nFan NNP\nFancy NNP\nFaneuil NNP\nFang NNP\nFannie NNP\nFanning NNP\nFanny NNP\nFans NNS\nFanshawe NNP\nFantasia NNP\nFantastic JJ\nFantastico NNP\nFantasy NNP\nFanuc NNP\nFar NNP\nFar-reaching JJ\nFaraday NNP\nFarberware NNP\nFardulli NNP\nFare VBP\nFarentino NNP\nFares NNS\nFarewell NNP\nFarge NNP\nFargo NNP\nFarina NNP\nFarley NNP\nFarm NNP\nFarm-machine NN\nFarmaco NNP\nFarmboy NNP\nFarmer NNP\nFarmer-in-the-Dell NNP\nFarmers NNP\nFarming VBG\nFarmingdale NNP\nFarmington NNP\nFarmland NNP\nFarms NNP\nFarmwife NNP\nFarnell NNP\nFarnese NNP\nFarneses NNPS\nFarney NNP\nFarnham NNP\nFarnum NNP\nFarnworth NNP\nFarooquee NNP\nFarouk NNP\nFarr NNP\nFarra NNP\nFarragut NNP\nFarrar NNP\nFarrell NNP\nFarrells NNPS\nFarren NNP\nFarrow NNP\nFarther RB\nFarthing NNP\nFarvel-Topsy NNP\nFarwell NNP\nFas-antigen NN\nFascio-Communist JJ\nFascism NNP\nFascist NNP\nFascists NNPS\nFashion NNP\nFashions NNPS\nFasken NNP\nFaso NNP\nFassbinder NNP\nFast NNP\nFast-food NN\nFastenal NNP\nFaster JJR\nFat NNP\nFatah NNP\nFatal NNP\nFatalities NNS\nFate NNP\nFather NNP\nFather-God NNP\nFathers NNPS\nFathi NNP\nFatima NNP\nFatimata NNP\nFatman NNP\nFats NNP\nFatso NN\nFaulder NNP\nFaulding NNP\nFaulk NNP\nFaulkner NNP\nFaulknerian JJ\nFault NNP\nFault-tolerant JJ\nFauntleroy NNP\nFauntroy NNP\nFaust NNP\nFaustian JJ\nFausto NNP\nFaustus NNP\nFavor VB\nFavorable JJ\nFavored JJ\nFavorite NNP\nFavorites NNPS\nFavour NN\nFavre NNP\nFawaz NNP\nFawcett NNP\nFawell NNP\nFawkes NNP\nFawn NNP\nFawzi NNP\nFawzy NNP\nFax NNP\nFaxes NNS\nFay NNP\nFaye NNP\nFayette NNP\nFayetteville NNP\nFazio NNP\nFe NNP\nFear NN\nFear-maddened JJ\nFeared VBN\nFearful JJ\nFearing VBG\nFearless NNP\nFearon NNP\nFears NNS\nFeatherbed NN\nFeatherston NNP\nFeathertop NNP\nFeatherweight NN\nFeature NNP\nFeatures NNPS\nFeb. NNP\nFebruary NNP\nFed NNP\nFed-bashing NN\nFed-watching JJ\nFedders NNP\nFederal NNP\nFederal-Mogul NNP\nFederal-Tiger NNP\nFederal-court JJ\nFederalist NNP\nFederals NN\nFederated NNP\nFederation NNP\nFederico NNP\nFeders NNP\nFeds NNPS\nFee NN\nFeebly RB\nFeed VB\nFeedback NN\nFeeder NN\nFeeding NNP\nFeedlots NNS\nFeeds NNS\nFeelers NNS\nFeeley NNP\nFeeling VBG\nFeelings NNS\nFeels VBZ\nFeenberg NNP\nFeeney NNP\nFees NNS\nFeess NNP\nFegersheim NNP\nFehr NNP\nFei NNP\nFeick NNP\nFeigen NNP\nFeigenbaum NNP\nFeiner NNP\nFeinman NNP\nFeinstein NNP\nFeis NNP\nFel-Pro NNP\nFeld NNP\nFeldberg NNP\nFeldemuehle NNP\nFeldene NNP\nFeldman NNP\nFeldstein NNP\nFelec NNP\nFelice NNP\nFeliciano NNP\nFelicity NNP\nFelipe NNP\nFelix NNP\nFell NNP\nFella UH\nFellini NNP\nFellow NN\nFellows NNS\nFellowship NNP\nFellowships NNS\nFelons NNS\nFelsenthal NNP\nFelsher NNP\nFelske NNP\nFelten NNP\nFeltes NNP\nFemale JJ\nFemales NNPS\nFemina NNP\nFeminism NN\nFeminist NNP\nFemmes NNP\nFence-line JJ\nFendi NNP\nFending VBG\nFendrick NNP\nFenerty NNP\nFeng-hsiung NNP\nFeniger NNP\nFenimore NNP\nFenn NNP\nFenner NNP\nFennessy NNP\nFenster NNP\nFenton NNP\nFenway NNP\nFenwick NNP\nFeodor NNP\nFeralloys NNP\nFerber NNP\nFerdinand NNP\nFerdinando NNP\nFerembal NNP\nFerenc NNP\nFerencik NNP\nFergeson NNP\nFergus NNP\nFerguson NNP\nFergusson NNP\nFeringa NNP\nFerlenghetti NNP\nFermate NNP\nFerment NN\nFernald NNP\nFernand NNP\nFernandes NNP\nFernandez NNP\nFernando NNP\nFernberger NNP\nFerranti NNP\nFerranti-led JJ\nFerrara NNP\nFerrari NNP\nFerraro NNP\nFerraros NNPS\nFerre NNP\nFerreira NNP\nFerrell NNP\nFerrer NNP\nFerrero NNP\nFerrier NNP\nFerris NNP\nFerro NNP\nFerrofluidics NNP\nFerron NNP\nFerruzzi NNP\nFerry NNP\nFertitta NNP\nFeruzzi NNP\nFery NNP\nFeshbach NNP\nFestiva NNP\nFestival NNP\nFestivals NNS\nFetch VB\nFete NNP\nFetzer NNP\nFeuchtwanger NNP\nFeud NN\nFeuer NNP\nFeuermann NNP\nFever NN\nFeverishly RB\nFeversham NNP\nFew JJ\nFewer JJR\nFey NNP\nFeyer NNP\nFfortescue NNP\nFiala NNP\nFialkow NNP\nFiap NNP\nFiasco NNP\nFiat NNP\nFiats NNPS\nFiber NNP\nFiberCom NNP\nFiberWorld NNP\nFiberall NNP\nFiberglas JJ\nFibre NNP\nFibreboard NNP\nFichte NNP\nFiddler NNP\nFiddles NNS\nFiddlesticks NNS\nFidel NNP\nFidelity NNP\nFidis NNP\nFidler NNP\nFiechter NNP\nFiedler NNP\nField NNP\nField-Fisher NNP\nFieldcrest NNP\nFielder NNP\nFielding NN\nFields NNP\nFienberg NNP\nFierce JJ\nFiering NNP\nFiero NNP\nFiery JJ\nFiesta NNP\nFife NNP\nFifield NNP\nFifteen CD\nFifteenth NNP\nFifth NNP\nFifties NNPS\nFifty CD\nFifty-fifth NNP\nFifty-ninth NNP\nFifty-seven CD\nFifty-three JJ\nFifty-two JJ\nFig NN\nFig. NN\nFigaro NNP\nFigger VB\nFiggie NNP\nFight VB\nFighter NNP\nFighters NNP\nFighting NNP\nFights NNS\nFiglewski NNP\nFigone NNP\nFigs. NNS\nFigura NNP\nFigure NN\nFigures NNS\nFigurines NNS\nFiguring VBG\nFike NNP\nFil NNP\nFila NNP\nFile NN\nFileNet NNP\nFiled VBN\nFilene NNP\nFiligreed JJ\nFilipino NNP\nFilipinos NNPS\nFilippo NNP\nFill VB\nFill-Or-Kill NNP\nFilling VBG\nFillmore NNP\nFilm NNP\nFilmakers NNPS\nFilmdom NNP\nFilmed VBN\nFilming NN\nFilms NNS\nFilmstar NNP\nFilmworks NNP\nFilofax NNP\nFilofaxes NNPS\nFilter NNP\nFiltered VBN\nFiltertek NNP\nFin-syn JJ\nFina NNP\nFinal JJ\nFinal-hour JJ\nFinalists NNS\nFinally RB\nFinals NNS\nFinan NNP\nFinance NNP\nFinancial NNP\nFinancial-service NN\nFinancially RB\nFinancials NNPS\nFinanciere NNP\nFinancieros NNP\nFinanciers NNS\nFinancing NNP\nFinancings NNS\nFinanco NNP\nFinanziaria NNP\nFinanziario NNP\nFinberg NNP\nFind VB\nFinder NNP\nFinders NNP\nFinding VBG\nFindings NNS\nFindlay NNP\nFinds VBZ\nFine NNP\nFinerman NNP\nFines NNP\nFinevest NNP\nFing NNP\nFinger NNP\nFingered NNP\nFingerprints NNS\nFingers NNP\nFininvest NNP\nFinis NNP\nFinish VB\nFinished VBN\nFinishing VBG\nFink NNP\nFinkbiner NNP\nFinkel NNP\nFinkelstein NNP\nFinkelsteins NNPS\nFinks NNP\nFinland NNP\nFinley NNP\nFinmeccanica NNP\nFinn NNP\nFinnair NNP\nFinnegan NNP\nFinnerty NNP\nFinney NNP\nFinnie NNP\nFinnish JJ\nFinns NNPS\nFinnsburg NNP\nFinot NNP\nFinsbury NNP\nFinsilver NNP\nFinucane NNP\nFio NNP\nFiore NNP\nFiorello NNP\nFiori NNP\nFiorina NNP\nFiorini NNP\nFire NNP\nFirearms NNP\nFirebird NNP\nFired VBN\nFireman NNP\nFiremen NNS\nFires NNP\nFireside NNP\nFireside\\/Simon NNP\nFirestone NNP\nFirm NN\nFirms NNS\nFirst NNP\nFirst-Born NNP\nFirst-half JJ\nFirst-hand JJ\nFirst-round JJ\nFirst-section JJ\nFirstSouth NNP\nFirzite NN\nFiscal JJ\nFiscal-year JJ\nFischbach NNP\nFischer NNP\nFish NNP\nFishback NNP\nFisher NNP\nFisheries NNP\nFishermen NNS\nFishery NNP\nFishing NNP\nFishkill NNP\nFishman NNP\nFisk NNP\nFiske NNP\nFisons NNP\nFistoulari NNP\nFists NNS\nFit JJ\nFitch NNP\nFitchburg NNP\nFitness NNP\nFitting VBG\nFittingly RB\nFittro NNP\nFitts NNP\nFitz NNP\nFitzgerald NNP\nFitzgibbon NNP\nFitzhugh NNP\nFitzpatrick NNP\nFitzpatrick-Davis NNP\nFitzroy NNP\nFitzsimmons NNP\nFitzwater NNP\nFitzwilliam NNP\nFitzwilliams NNP\nFive CD\nFive-Elements NNP\nFive-O NNP\nFive-Year NNP\nFix VB\nFixed VBN\nFixed-income JJ\nFixed-rate JJ\nFixing VBG\nFixit NNP\nFixture NNP\nFixx NNP\nFizkultura NNP\nFjelstad NNP\nFla NNP\nFla. NNP\nFla.-based JJ\nFlag NN\nFlagg NNP\nFlagler NNP\nFlags NNS\nFlaherty NNP\nFlair NNP\nFlake NN\nFlakes NNPS\nFlameco NNP\nFlames NNPS\nFlaming NNP\nFlamingo NNP\nFlanagan NNP\nFlanders NNP\nFlanked VBN\nFlannagan NNP\nFlannagans NNPS\nFlash NN\nFlashdance NNP\nFlashed VBN\nFlashlight NN\nFlat JJ\nFlatiron NN\nFlatley NNP\nFlatness NN\nFlats NNP\nFlattau NNP\nFlaum NNP\nFlav-O-Rich NNP\nFlavel NNP\nFlavell NNP\nFlavio NNP\nFlavus NNP\nFlaws NNS\nFlax NNP\nFlaxseed NN\nFlea NNP\nFleckenstein NNP\nFledermaus NNP\nFledgling NN\nFlee VBP\nFleece NNP\nFleet NNP\nFleet\\/Norstar NNP\nFleeting JJ\nFleetwood NNP\nFleischer NNP\nFleischman NNP\nFleischmann NNP\nFleischmanns NNP\nFleisher VB\nFlem NNP\nFleming NNP\nFlemings NNP\nFlemish NNP\nFlesh NN\nFlesher NNP\nFletch NNP\nFletcher NNP\nFleury NNP\nFlexibility NN\nFlexible JJ\nFlexicokers NNS\nFlexural JJ\nFlick NN\nFlier NN\nFliers NNPS\nFlies NNS\nFlight NNP\nFlights NNS\nFlint NNP\nFlip NNP\nFlippo NNP\nFlite-King JJ\nFloating VBG\nFloats VBZ\nFlock NNP\nFlocks NNS\nFloey NNP\nFlom NNP\nFlood NNP\nFloodlights NNP\nFloor NNP\nFlor NNP\nFloradora NNP\nFloral NNP\nFlorence NNP\nFlorentine NNP\nFlores NNP\nFloresville NNP\nFlorian NNP\nFlorican-Inverness NNP\nFlorican-My NNP\nFlorida NNP\nFloridabanc NNP\nFloridian NN\nFloridians NNP\nFlorido NNP\nFlorio NNP\nFlory NNP\nFloss NNP\nFlotilla NNP\nFlotte NNP\nFlottl NNP\nFlour NN\nFlow NNP\nFlow-Mole NNP\nFlower NNP\nFlowering NN\nFlowers NNPS\nFloyd NNP\nFluctuation NN\nFluent JJ\nFlugdienst NNP\nFlugel NNP\nFlugleasing NNP\nFlumenbaum NNP\nFlumenophobe NNP\nFluor NNP\nFluorescence NN\nFluorescent JJ\nFlush JJ\nFlushing NNP\nFlushing-Main NNP\nFlusser NNP\nFlustered JJ\nFlute NN\nFly VB\nFlyer NNP\nFlyer-Castle NNP\nFlygplanet NNP\nFlying NNP\nFlynn NNP\nFmHA NNP\nFoamed NNP\nFoamy NNP\nFocus NNP\nFocusing VBG\nFoe NNP\nFoerster NNP\nFog NN\nFogelman NNP\nFogelson NNP\nFogg NNP\nFoggia NNP\nFoggs NNP\nFoggy NNP\nFogle NNP\nFogler NNP\nFoglio NNP\nFoil NNP\nFoiled VBN\nFoiles NNP\nFokine NNP\nFokker NNP\nFolcroft NNP\nFold VB\nFolded NNP\nFolding VBG\nFoley NNP\nFolgers NNP\nFoliage NN\nFolk NNP\nFolk-lore NN\nFolkerts NNP\nFolklore NN\nFolks NNS\nFolkston NNP\nFollow VB\nFollow-through JJ\nFollow-up JJ\nFollowin VBG\nFollowing VBG\nFollows NNP\nFolly NNP\nFolmar NNP\nFolonari NNP\nFolsom NNP\nFoncier NNP\nFond NNP\nFonda NNP\nFonds NNP\nFonseca NNP\nFonstein NNP\nFonta NNP\nFontainbleau NNP\nFontaine NNP\nFontainebleau NNP\nFontana NNP\nFonz NNP\nFood NNP\nFood-price JJ\nFoodmaker NNP\nFoods NNPS\nFooled VBN\nFools NNS\nFoont NNP\nFoot NNP\nFootball NNP\nFoote NNP\nFoothills NNP\nFootnotes NNS\nFor IN\nFor... :\nForand NNP\nForbes NNP\nForbidden NNP\nForce NNP\nForced VBN\nForces NNPS\nFord NNP\nFord-Kissinger NNP\nFordham NNP\nFords NNS\nForebearing NNP\nForecast NNP\nForecaster NNP\nForecasters NNS\nForecasting NN\nForecasts NNPS\nForeclosed VBN\nForeclosure NNP\nForeclosures NNS\nForeign NNP\nForeign-exchange JJ\nForeign-registered JJ\nForeigners NNS\nForellen NNP\nForemost RB\nForensic NNP\nForerunner NNP\nForeseeing VBG\nForesight NN\nForesman NNP\nForest NNP\nForest-products NNS\nForester NNP\nForesters NNS\nForests NNPS\nForet NNP\nForever NNP\nForfeiture NNP\nForge NNP\nForget VB\nForgive VB\nForgiveness NN\nForgoing VBG\nForgot VBN\nForgotten NNP\nFork NNP\nForked NNP\nForks NNS\nForm NN\nFormBase NNP\nFormally RB\nForman NNP\nFormat NN\nFormation NNP\nFormby NNP\nFormed VBN\nFormer JJ\nFormerly RB\nFormica NNP\nFormosa NNP\nFormosan JJ\nForms NNPS\nFormula NN\nForney NNP\nForrest NNP\nForrestal NNP\nForrester NNP\nForsan FW\nForseth NNP\nForst NNP\nForster NNP\nForstmann NNP\nForsyth NNP\nForsythe NNP\nFort NNP\nFortas NNP\nForte NNP\nFortenbaugh NNP\nFortescue NNP\nFortier NNP\nForties NNP\nFortified VBN\nFortin NNP\nFortman NNP\nFortney NNP\nFortress NNP\nFortressEurope NN\nFortunate JJ\nFortunately RB\nFortune NNP\nForty CD\nForty-Four CD\nForty-five CD\nForty-four CD\nForty-nine JJ\nForty-one JJ\nForty-second JJ\nForty-seven JJ\nForty-six CD\nForty-third JJ\nForty-three CD\nForum NNP\nForward NNP\nForwarding NNP\nFosback NNP\nFosdick NNP\nFoss NNP\nFossan NNP\nFosset NNP\nFossett NNP\nFossey NNP\nFoster NNP\nFoster's-brand JJ\nFosterite NNP\nFosterites NNP\nFought VBN\nFoul NNP\nFoulds NNP\nFoundation NNP\nFounded VBN\nFounder NN\nFounders NNPS\nFounding NNP\nFoundry NNP\nFountain NNP\nFour CD\nFour-fifths NNS\nFournier NNP\nFourteen CD\nFourteenth NNP\nFourth NNP\nFourth-of-July NNP\nFourth-quarter JJ\nFourtou NNP\nFowler NNP\nFox NNP\nFox-Meyer NNP\nFox-Pitt NNP\nFoxboro NNP\nFoxmoor NNP\nFoxx NNP\nFoy NNP\nFra NNP\nFraas NNP\nFrabotta NNP\nFraction NNP\nFractions NNS\nFracturing NNP\nFraga NNP\nFragile NNP\nFragin NNP\nFragment NN\nFragonard NNP\nFragua NNP\nFrail JJ\nFramatome NNP\nFrame NN\nFramework NNP\nFramingham NNP\nFrampton NNP\nFran NNP\nFrancais NNP\nFrancaise NNP\nFrancaises NNP\nFrance NNP\nFrance-Germany NNP\nFrance-Presse NNP\nFrance. NNP\nFrances NNP\nFrancesca NNP\nFrancesco NNP\nFrancesville NNP\nFranchise NNP\nFranchisee NN\nFranchisees NNS\nFranchising NNP\nFrancie NNP\nFrancis NNP\nFranciscan JJ\nFranciscans NNP\nFrancisco NNP\nFrancisco-Oakland NNP\nFrancisco-area JJ\nFrancisco-based JJ\nFranciso NNP\nFranck NNP\nFranco NNP\nFranco-German NNP\nFranco-Irishman NNP\nFranco-Japanese NNP\nFrancois NNP\nFrancois-Poncet NNP\nFrancoise NNP\nFrancoisette NNP\nFrancona NNP\nFranconia NNP\nFrancophone JJ\nFrank NNP\nFranke NNP\nFrankel NNP\nFrankenberry NNP\nFrankenstein NNP\nFrankford NNP\nFrankfort NNP\nFrankfurt NNP\nFrankfurt-based JJ\nFrankfurter NNP\nFrankie NNP\nFranklin NNP\nFranklin-Trout NNP\nFrankly RB\nFranklyn NNP\nFranks NNPS\nFranny NNP\nFrans NNP\nFrantisek NNP\nFranyo NNP\nFranz NNP\nFraser NNP\nFraternal NNP\nFraud NNP\nFrauds NNPS\nFraumeni NNP\nFrawley NNP\nFray NN\nFrayne NNP\nFrazee NNP\nFrazer NNP\nFrazier NNP\nFrazzano NNP\nFred NNP\nFreddie NNP\nFreddy NNP\nFrederic NNP\nFrederick NNP\nFredericksburg NNP\nFredericton NNP\nFrederik NNP\nFredonia NNP\nFredric NNP\nFredrick NNP\nFredrico NNP\nFredrik NNP\nFredrikshall NNP\nFree NNP\nFree-Will NNP\nFree-marketeers NNS\nFree-trade JJ\nFreeberg NNP\nFreebies NNS\nFreed VBN\nFreedman NNP\nFreedom NNP\nFreeholder NNP\nFreeman NNP\nFreeport NNP\nFreeport-McMoRan NNP\nFreeway NNP\nFreeze NN\nFreiburghouse NNP\nFreida NNP\nFreie NNP\nFreight NNP\nFreightways NNP\nFreind NNP\nFreinkel NNP\nFrelinghuysen NNP\nFremantle NNP\nFremont NNP\nFrench JJ\nFrench-Canadian NNP\nFrench-Canadians NNPS\nFrench-English NNP\nFrench-Italian JJ\nFrench-born JJ\nFrench-franc NN\nFrench-government-owned JJ\nFrench-language JJ\nFrench-made JJ\nFrench-modeled JJ\nFrench-polished JJ\nFrench-speaking JJ\nFrenchman NNP\nFrenchmen NNPS\nFrenchwoman NNP\nFreni NNP\nFrenzel NNP\nFrenzy NNP\nFreon NN\nFrequency NNP\nFrequent JJ\nFrequent-flier JJ\nFrequently RB\nFreres NNP\nFresca NNP\nFresenius NNP\nFresh JJ\nFreshbake NNP\nFreshman NN\nFreshmen NNS\nFreshwater NNP\nFresnel NNP\nFresno NNP\nFreston NNP\nFret VB\nFretting VBG\nFreud NNP\nFreudToy NNP\nFreudenberger NNP\nFreudian JJ\nFreund NNP\nFrey NNP\nFreya NNP\nFri NNP\nFriar NN\nFriars NNS\nFrick NNP\nFricke NNP\nFriday NNP\nFriday-the-13th JJ\nFridays NNPS\nFridge NNP\nFridman NNP\nFried NNP\nFriedberg NNP\nFriede NNP\nFriedenwald NNP\nFriedman NNP\nFriedmann NNP\nFriedreich NNP\nFriedrich NNP\nFriedrichs NNP\nFriedrichsInc. NNP\nFriend NNP\nFriendly NNP\nFriends NNS\nFries NNP\nFriesen NNP\nFrills NNP\nFrisbee NNP\nFrisch NNP\nFrisco NNP\nFrist FW\nFrito NNP\nFrito-Lay NNP\nFrits NNP\nFritz NNP\nFritze NNP\nFritzie NNP\nFritzsche NNP\nFroelich NNP\nFrog-marched JJ\nFrohock NNP\nFroissart NNP\nFrom IN\nFromm NNP\nFromstein NNP\nFrondel NNP\nFront NNP\nFront-line JJ\nFront-runners NNS\nFrontage NN\nFrontier NNP\nFrontieres FW\nFrontiers NNS\nFrost NNP\nFrost-Debby NNP\nFrostbite NN\nFrosted NNP\nFrosts NNPS\nFrothingham NNP\nFrothy JJ\nFrowning VBG\nFrozen VBN\nFrucher NNP\nFruehauf NNP\nFruit NNP\nFrum NNP\nFrumil NNP\nFrustrate VBP\nFrustrated JJ\nFrustration NN\nFry VB\nFryar NNP\nFt. NNP\nFu NNP\nFuchs NNP\nFuck VB\nFudo NNP\nFudomae NNP\nFudosan NNP\nFuel NNP\nFueled VBN\nFueling VBG\nFueloil NNP\nFuentes NNP\nFuhrer NNP\nFuhrmann NNP\nFuji NNP\nFuji-apple JJ\nFujii NNP\nFujimoto NNP\nFujis NNPS\nFujisankei NNP\nFujisawa NNP\nFujita NNP\nFujitsu NNP\nFukuda NNP\nFukuoka NNP\nFukuyama NNP\nFulbright NNP\nFulcrum NNP\nFuld NNP\nFulfills VBZ\nFulghum NNP\nFulgoni NNP\nFulham NNP\nFulke NNP\nFull JJ\nFull-time JJ\nFuller NNP\nFullerton NNP\nFully RB\nFulmar NNP\nFulson NNP\nFulton NNP\nFultz NNP\nFulwood NNP\nFuming VBG\nFumio NN\nFun NNP\nFunari NNP\nFunctionalism NN\nFunctionally RB\nFunctions NNPS\nFund NNP\nFund-Raisers NNS\nFundTrust NNP\nFundamental JJ\nFundamentalists NNS\nFundamentally RB\nFundamentals NNS\nFunded VBN\nFundidora NNP\nFunding NNP\nFunds NNS\nFuneral NNP\nFung NNP\nFungi NNP\nFungible JJ\nFunk NNP\nFunny JJ\nFunston NNP\nFuqua NNP\nFur NNP\nFurey NNP\nFurhmann NNP\nFuries NNS\nFurillo NNP\nFurious NNP\nFuriouser RBR\nFurlaud NNP\nFurlett NNP\nFurman NNP\nFurnace NN\nFurnaces NNP\nFurnishes VBZ\nFurniture NNP\nFurs NNP\nFurther RB\nFurthermore RB\nFurukawa NNP\nFuruta NNP\nFury NNP\nFurze NNP\nFuss VB\nFuster NNP\nFuthermore NN\nFutotsu FW\nFutter NNP\nFuture NNP\nFutures NNS\nFutures-related JJ\nFuzzy JJ\nFyffes NNP\nFyodor NNP\nG NN\nG'ahn VB\nG-2 NN\nG-24 NNP\nG-7 NNP\nG-R-H NNP\nG. NNP\nG.B.S. NN\nG.D. NNP\nG.E. NNP\nG.J. NNP\nG.L. NNP\nG.N. NNP\nG.O. NNP\nG.O.P. NN\nG.P. NNP\nG.S. NNP\nG.W. NNP\nG.m.b NNP\nG7 NNP\nGA NNP\nGABLE NNP\nGAF NNP\nGAG NNP\nGALAXY NN\nGAMBLE NNP\nGANNETT NNP\nGAO NNP\nGAP NNP\nGAR NNP\nGARY NNP\nGAS NNP\nGASB NNP\nGATT NNP\nGBL NNP\nGD NNP\nGDL NNP\nGDP NNP\nGDR NNP\nGE NNP\nGEC NNP\nGENENTECH NNP\nGENERAL NNP\nGENERIC-DRUG NN\nGERMAN JJ\nGERMANS NNPS\nGERMANY NNP\nGERMANY'S NNP\nGET VB\nGE\\ NNP\nGEnie NNP\nGF NNP\nGFSA NNP\nGHKM NNP\nGHR NNP\nGHS NNP\nGI NNP\nGIMMEE UH\nGIPPER NN\nGIS NNP\nGIVE VBP\nGL NNP\nGLASNOST NNP\nGLI NNP\nGLITTER NN\nGLITTERS VBZ\nGLS NNP\nGM NNP\nGM-10 NN\nGM-10s NNP\nGM-CSF NNP\nGM-Jaguar JJ\nGM-Toyota JJ\nGMA NNP\nGMAC NNP\nGMC NNP\nGMr NN\nGNP NNP\nGNP-based JJ\nGO VB\nGOD UH\nGOLD NN\nGOLDEN NNP\nGOLF NN\nGOOD JJ\nGOODY NNP\nGOP NNP\nGORBACHEV NNP\nGOULD NNP\nGOVERNMENT NN\nGP NNP\nGPA NNP\nGQ NNP\nGR8FLRED CD\nGRAB NNP\nGRAINS NNS\nGRAND JJ\nGRANTING VBG\nGRE NNP\nGREAT NNP\nGREW VBD\nGREY NNP\nGROUP NNP\nGROUP'S NNP\nGROVE NNP\nGROWING VBG\nGROWS VBZ\nGROWTH NN\nGRP NNP\nGRX NNP\nGRiD NNP\nGRiDPad NNP\nGS NNP\nGSA NNP\nGSD&M NNP\nGSI NNP\nGSP NNP\nGSX NNP\nGT NNP\nGTE NNP\nGTG NNP\nGTI NNP\nGUIDE NNP\nGUN NNP\nGa NNP\nGa. NNP\nGaafer NNP\nGabe NNP\nGabele NNP\nGabelli NNP\nGabelman NNP\nGable NNP\nGabler NNP\nGables NNP\nGabon NNP\nGabor NNP\nGabriel NNP\nGabriela NNP\nGabriele NNP\nGabrielle NNP\nGachinger NNP\nGadhafi NNP\nGadsden NNP\nGadwani NNP\nGaechinger NNP\nGaelic JJ\nGaetan NNP\nGaffney NNP\nGaga NNP\nGagarin NNP\nGagliardini NNP\nGagne NNP\nGaieties NNPS\nGail NNP\nGaillard NNP\nGain NN\nGainen NNP\nGainers NNP\nGaines NNP\nGainesville NNP\nGaining VBG\nGains NNS\nGaisman NNP\nGaither NNP\nGaithersburg NNP\nGaja NNP\nGajda NNP\nGal NNP\nGala NNP\nGalahad NNP\nGalamian NNP\nGalan NNP\nGalant NNP\nGalanter NNP\nGalantuomo NNP\nGalapagos NNP\nGalata NNP\nGalatians NNPS\nGalax NNP\nGalaxy NN\nGalbani NNP\nGalbraith NNP\nGale NNP\nGalecke NNP\nGalen NNP\nGalena NNP\nGalicia NNP\nGalicians NNPS\nGalilee NNP\nGalileo NNP\nGalina NNP\nGalindez NNP\nGalipault NNP\nGallagher NNP\nGalland NNP\nGallant NNP\nGalle NNP\nGallen NNP\nGalleria NNP\nGallery NNP\nGalles NNP\nGallet NN\nGalli NNP\nGalligan NNP\nGallitano NNP\nGallitzin NNP\nGallium NN\nGallo NNP\nGallon NNP\nGallon-Loren NNP\nGalloway NNP\nGallup NNP\nGaloob NNP\nGalophone-Kimberly NNP\nGalophone-Prissy NNP\nGalsworthy NNP\nGalt NNP\nGaltier NNP\nGalveston NNP\nGalveston-Houston NNP\nGalveston-Port NNP\nGalvin NNP\nGalway NNP\nGambit NNP\nGamble NNP\nGambling NN\nGame NN\nGame-Boy NN\nGamecock NNP\nGamel NNP\nGames NNPS\nGaming NNP\nGamma NNP\nGamper NNP\nGanado NNP\nGandalf NNP\nGander NNP\nGandhi NNP\nGandois NNP\nGandy NNP\nGanes NNP\nGanessa NNP\nGang NNP\nGanges NNP\nGanis NNP\nGann NNP\nGannett NNP\nGannon NNP\nGansevoort NNP\nGant NNP\nGantos NNP\nGantry NNP\nGaon NNP\nGap NNP\nGar-Dene NNP\nGaramendi NNP\nGaranti NNP\nGarbage NNP\nGarber NNP\nGarbutt NNP\nGarcia NNP\nGarcias NNPS\nGardelin NNP\nGarden NNP\nGarden-variety NN\nGardena NNP\nGardening NNP\nGardens NNPS\nGardiner NNP\nGardini NNP\nGardner NNP\nGardner-Denver NNP\nGarea NNP\nGarfield NNP\nGargan NNP\nGargantuan JJ\nGargery NNP\nGargle NNP\nGari NNP\nGaribaldi NNP\nGarin NNP\nGarine NNP\nGarish JJ\nGarland NNP\nGarman NNP\nGarment NNP\nGarments NNS\nGarn NNP\nGarner NNP\nGarnett NNP\nGaronzik NNP\nGarpian JJ\nGarrard NNP\nGarratt NNP\nGarret NNP\nGarrett NNP\nGarrick NNP\nGarrick-Aug NNP\nGarrin NNP\nGarrison NNP\nGarrisonian NN\nGarry NNP\nGarryowen NNP\nGarson NNP\nGarstung NNP\nGarth NNP\nGartner NNP\nGarvey NNP\nGarvier NNP\nGary NNP\nGarza NNP\nGarzarelli NNP\nGas NNP\nGas-cooled JJ\nGas-reactor JJ\nGasch NNP\nGascony NNP\nGases NNS\nGasich NNP\nGaskin NNP\nGaslight NN\nGasoline NN\nGaspard NNP\nGaspee NNP\nGasse NNP\nGassee NNP\nGasset NNP\nGassman NNP\nGastineau NNP\nGaston NNP\nGastronomes NNS\nGastronomie NNP\nGastronomy NNP\nGate NNP\nGates NNP\nGates-Warren NNP\nGateway NNP\nGather VB\nGathered VBN\nGatherer NNP\nGathering NN\nGati NNP\nGatlinburg NNP\nGato NNP\nGatoil NNP\nGator JJ\nGatos NNP\nGatsby NNP\nGatsby-in-reverse NN\nGatward NNP\nGatwick NNP\nGaubert NNP\nGauchos NNS\nGauer NNP\nGauged VBN\nGauguin NNP\nGaul NNP\nGauleiter NNP\nGaulle NNP\nGauloises NNP\nGaunt JJ\nGauntlett NNP\nGauntley NNP\nGaussian JJ\nGautier NNP\nGave VBD\nGaveston NNP\nGavin NNP\nGavrilov NNP\nGawdamighty UH\nGay NNP\nGaydon NNP\nGayle NNP\nGaylor NNP\nGaylord NNP\nGaynor NNP\nGays NNS\nGaza NNP\nGazdag NNP\nGazeta NNP\nGazette NNP\nGazettes NNP\nGazing VBG\nGazinosu NNP\nGear NNP\nGeary NNP\nGeatish JJ\nGebhard NNP\nGebrueder NNP\nGecker NNP\nGeddes NNP\nGeduld NNP\nGee UH\nGeech NNP\nGeeks NNPS\nGeely NNP\nGeer NNP\nGeertz NNP\nGeffen NNP\nGehl NNP\nGehrig NNP\nGeico NNP\nGeier NNP\nGeiger NNP\nGeingob NNP\nGeisha NN\nGeissinger NNP\nGel NNP\nGelb NNP\nGelbart NNP\nGeld NNP\nGelder NNP\nGeldermann NNP\nGell NNP\nGeller NNP\nGellert NNP\nGelles NNP\nGelly NNP\nGelman NNP\nGem NNP\nGeman NNP\nGemayel NNP\nGemeinschaft FW\nGemina NNP\nGems NNS\nGen NNP\nGen-Probe NNP\nGen. NNP\nGenCorp NNP\nGenProbe NN\nGencor NNP\nGendron NNP\nGene NNP\nGene-Princess NNP\nGene-Spliced JJ\nGene-splicing NN\nGenel NNP\nGenelabs NNPS\nGenentech NNP\nGeneral NNP\nGenerale NNP\nGenerales NNP\nGenerali NNP\nGeneralissimo NNP\nGeneralizations NNS\nGeneralized NNP\nGenerally RB\nGenerating NNP\nGeneration NNP\nGeneric NNP\nGeneric-Drug JJ\nGeneric-industry JJ\nGenerics NNS\nGenesee NNP\nGenesis NNP\nGenetic NNP\nGeneticist NNP\nGenetics NNP\nGeneva NNP\nGeneva-based JJ\nGenevieve NNP\nGenghis NNP\nGenie NNP\nGenigraphics NNP\nGenius NN\nGennaro NNP\nGeno NNP\nGenocide NN\nGenome NNP\nGenossenschafts NNP\nGenossenschaftsbank NNP\nGenova NNP\nGenscher NNP\nGensichen NNP\nGenson NNP\nGentile NNP\nGentile-Jewish NNP\nGentiles NNPS\nGentility NN\nGentleman NN\nGentlemen NNS\nGenuine NNP\nGenzyme NNP\nGeo NNP\nGeo. NNP\nGeocentricism NN\nGeocryology NNP\nGeodetic NNP\nGeoff NNP\nGeoffrey NNP\nGeoffrie NNP\nGeoffrion NNP\nGeographic NNP\nGeographical JJ\nGeolite NN\nGeological NNP\nGeologists NNS\nGeology NNP\nGeometric NNP\nGeorg NNP\nGeorgano NNP\nGeorge NNP\nGeorge-Barden NNP\nGeorge-Creque NNP\nGeorgene NNP\nGeorges NNP\nGeorgescu NNP\nGeorgeson NNP\nGeorgetown NNP\nGeorgette NNP\nGeorgi NNP\nGeorgia NNP\nGeorgia-Pacific NNP\nGeorgia-based JJ\nGeorgian JJ\nGeorgians NNPS\nGeos NNS\nGeothermal NNP\nGephardt NNP\nGephardtian JJ\nGeraetetechnik NNP\nGeraghty NNP\nGeraghtys NNPS\nGerald NNP\nGeraldine NNP\nGeraldo NNP\nGerard NNP\nGerardo NNP\nGerber NNP\nGerbig NNP\nGerbrandt NNP\nGerby NNP\nGerd NNP\nGerdes NNP\nGeren NNP\nGerhard NNP\nGericault NNP\nGerlinger NNP\nGermain NNP\nGerman JJ\nGerman-French JJ\nGerman-Italian JJ\nGerman-born JJ\nGerman-built JJ\nGerman-language JJ\nGerman-made JJ\nGerman-speaking JJ\nGermania NNP\nGermanic JJ\nGermanized VBN\nGermano-Slavic JJ\nGermans NNPS\nGermans. NNS\nGermantown NNP\nGermany NNP\nGermany-based JJ\nGermanys NNS\nGermeten NNP\nGermont NNP\nGero NNP\nGeroge NNP\nGerolamo NNP\nGerold NNP\nGerome NNP\nGerosa NNP\nGerrard NNP\nGerraughty NNP\nGerry NNP\nGershen NNP\nGershman NNP\nGershwin NNP\nGershwins NNP\nGersony NNP\nGerstacker NNP\nGerstenblatt NNP\nGerstner NNP\nGertrude NNP\nGesamtkunstwerke FW\nGesangverein NNP\nGesell NNP\nGestapo NNP\nGestapo-style JJ\nGeste NNP\nGesualdo NNP\nGet VB\nGethsemane NN\nGetrudis NNP\nGets VBZ\nGetting VBG\nGettinger NNP\nGettleman NNP\nGetty NNP\nGettysburg NNP\nGetulio NNP\nGetz NNP\nGeva NNP\nGevergeyev NNP\nGevergeyeva NNP\nGevurtz NNP\nGewirtz NNP\nGeza NNP\nGhadiali NNP\nGhana NNP\nGhanaian JJ\nGhazel NNP\nGhent NNP\nGherlein NNP\nGhettos NNPS\nGhez NNP\nGhiberti NNP\nGholamreza NNP\nGhoreyeb NNP\nGhormley NNP\nGhose NNP\nGhost NN\nGhostbusters NNS\nGiacometti NNP\nGiacomo NNP\nGiamatti NNP\nGiampiero NNP\nGian NNP\nGiancarlo NNP\nGianicolo NNP\nGianni NNP\nGiannini NNP\nGiant NNP\nGiants NNP\nGiants-Houston NNP\nGiaour NN\nGiardini\\/Russell NNP\nGibault NNP\nGibbon NNP\nGibbons NNP\nGibbs NNP\nGibby NNP\nGiblen NNP\nGibraltar NNP\nGibson NNP\nGiddings NNP\nGide NNP\nGideon NNP\nGidwani NNP\nGie NNP\nGienow NNP\nGiffen NNP\nGifford NNP\nGift NNP\nGifting NN\nGifts NNS\nGigenza NNP\nGiggey NNP\nGignac NNP\nGignoux NNP\nGigot NNP\nGiguiere NNP\nGil NNP\nGilbert NNP\nGilbertie NNP\nGilberto NNP\nGilborn NNP\nGilbraltar NNP\nGilchrist NNP\nGilda NNP\nGildas NNP\nGilded NNP\nGilder NNP\nGildersleeve NNP\nGilels NNP\nGiles NNP\nGilgore NNP\nGilhooley NNP\nGilkson NNP\nGill NNP\nGilleland NNP\nGillers NNP\nGilles NNP\nGillespie NNP\nGillett NNP\nGillette NNP\nGilley NNP\nGillian NNP\nGillis NNP\nGilman NNP\nGilmartin NNP\nGilmore NNP\nGilroy NNP\nGilsbar NNP\nGilt NNP\nGilts NNS\nGim- NNP\nGimbel NNP\nGimenez NNP\nGimpy NNP\nGin NNP\nGinandjar NNP\nGingerly RB\nGinghams NNS\nGingl NNP\nGingrich NNP\nGinn NNP\nGinner NNP\nGinnie NNP\nGinning NNP\nGino NNP\nGinsberg NNP\nGinsburg NNP\nGintel NNP\nGinza NN\nGioconda NNP\nGiolito NNP\nGiordano NNP\nGiorgetta NNP\nGiorgio NNP\nGiorgios NNP\nGiovanni NNP\nGiraffe NNP\nGiraldi NNP\nGirard NNP\nGiraud NNP\nGirl NNP\nGirls NNP\nGiroldi NNP\nGiroux NNP\nGirozentrale NNP\nGisele NNP\nGiselle NNP\nGisors NNP\nGit VB\nGitanes NNP\nGitano NNP\nGitter NNP\nGiubbonari NNP\nGiuffrida NNP\nGiuliani NNP\nGiulietta NNP\nGiulio NNP\nGiurleo NNP\nGiuseppe NNP\nGiustiniani NNP\nGivaudan NNP\nGive VB\nGiveaways NNS\nGiven VBN\nGivens NNP\nGivers NNP\nGives VBZ\nGiving VBG\nGizenga NNP\nGlacier NNP\nGlaciology NNP\nGlad JJ\nGladden NNP\nGladdy NNP\nGladiator NNP\nGladius NNP\nGladys NNP\nGlamorous JJ\nGlance VB\nGlantz NNP\nGlaris NNP\nGlaser NNP\nGlasgow NNP\nGlasnost FW\nGlasow NNP\nGlass NNP\nGlass-Steagall NNP\nGlassell NNP\nGlasser NNP\nGlasses NNS\nGlasswork NNP\nGlassworks NNP\nGlauber NNP\nGlavin NNP\nGlaxo NNP\nGlayre NNP\nGlaze VB\nGlazed VBN\nGlazer NNP\nGlazer-Fine NNP\nGlazes NNS\nGlazier NNP\nGleacher NNP\nGleason NNP\nGlee NN\nGleeson NNP\nGlemp NNP\nGlen NNP\nGlenbrook NNP\nGlenda NNP\nGlendale NNP\nGlendora NNP\nGlenham NNP\nGlenn NNP\nGlenne NNP\nGlennon NNP\nGlenview NNP\nGlick NNP\nGlickman NNP\nGliedman NNP\nGlimco NNP\nGlison NNP\nGlo NNP\nGlobal NNP\nGlobalization NNP\nGlobaliztion NN\nGlobally RB\nGlobe NNP\nGlobe-Democrat NNP\nGlobex NNP\nGlobo NNP\nGlobocnik NNP\nGlocester NNP\nGloeilampenfabrieken NNP\nGloom NN\nGloomy JJ\nGloria NNP\nGloriana NNP\nGlorioso NNP\nGlorious JJ\nGlory NN\nGlossy JJ\nGloucester NNP\nGlove NNP\nGlover NNP\nGloversville NNP\nGloves NNP\nGlow NNP\nGlowering VBG\nGluck NNP\nGlucksman NNP\nGlue NN\nGlumly RB\nGlycerinated JJ\nGlynis NNP\nGnu-Emacs NNP\nGo VB\nGo-Go NN\nGoa NNP\nGoals NNPS\nGobain NNP\nGobbee NNP\nGod NNP\nGod-curst JJ\nGod-forsaken JJ\nGod-given JJ\nGoddammit UH\nGoddamn UH\nGoddard NNP\nGoddess NNP\nGodfather NNP\nGodfrey NNP\nGodiva NNP\nGodkin NNP\nGodot NNP\nGodown NNP\nGods NNP\nGodspeed NN\nGodunov NNP\nGodwin NNP\nGoebbels NNP\nGoebel NNP\nGoering NNP\nGoes VBZ\nGoethe NNP\nGoetz NNP\nGoffstein NNP\nGog NNP\nGogh NNP\nGogo NNP\nGogol NNP\nGoh NNP\nGoing VBG\nGoizueta NNP\nGolan NNP\nGolar NNP\nGold NNP\nGold-backed JJ\nGold-oriented JJ\nGoldCard NNP\nGold\\/Minerals NNP\nGolda NNP\nGoldang UH\nGoldberg NNP\nGolden NNP\nGoldenberg NNP\nGoldenthal NNP\nGoldfein NNP\nGoldie NNP\nGoldin NNP\nGoldinger NNP\nGoldline NNP\nGoldman NNP\nGoldome NNP\nGoldscheider NNP\nGoldschmidt NNP\nGoldsmith NNP\nGoldstar NNP\nGoldstein NNP\nGoldston NNP\nGoldwag NNP\nGoldwater NNP\nGoldwin NNP\nGoldwyn NNP\nGolenbock NNP\nGolf NNP\nGolfers NNP\nGoliath NNP\nGoliaths NNPS\nGollich NNP\nGollust NNP\nGolly UH\nGolomb NNP\nGolovanov NNP\nGoloven NNP\nGolub NNP\nGomel NNP\nGomez NNP\nGompachi NNP\nGon VBG\nGoncharov NNP\nGone VBN\nGong NNP\nGontran NNP\nGonzaga NNP\nGonzales NNP\nGonzalez NNP\nGood JJ\nGood-by UH\nGood-bye UH\nGood-faith NN\nGoodbody NNP\nGoodby NNP\nGoodbye NNP\nGoodchild NNP\nGoode NNP\nGoodfellow NNP\nGoodfriend NNP\nGooding NNP\nGoodis NNP\nGoodison NNP\nGoodkind NNP\nGoodman NNP\nGoodmorning UH\nGoodrich NNP\nGoods NNP\nGoodson NNP\nGoodwill NNP\nGoodwills NNPS\nGoodwin NNP\nGoody UH\nGoodyear NNP\nGoogle NNP\nGoolick NN\nGoose NNP\nGorbachev NNP\nGorbachev-era NN\nGorboduc NNP\nGorby NNP\nGorce NNP\nGord NNP\nGordan NNP\nGordin NNP\nGordon NNP\nGordon\\/Pick NNP\nGore NNP\nGorenstein NNP\nGorgeous NNP\nGorham NNP\nGorilla NNP\nGorillas NNP\nGoriot NNP\nGorky NNP\nGorman NNP\nGorney NNP\nGornto NNP\nGorshek NNP\nGorshin NNP\nGorski NNP\nGortari NNP\nGorton NNP\nGortonists NNS\nGosbank NNP\nGosh UH\nGosheim NNP\nGoshen NNP\nGospel NNP\nGospel-singer NN\nGospelers NNS\nGospels NNP\nGosplan NNP\nGossage NNP\nGosset NNP\nGossip NN\nGossiping NNP\nGossips NNS\nGossnab NNP\nGosson NNP\nGostomski NNP\nGot VBD\nGotaas-Larsen NNP\nGotham VB\nGothic JJ\nGothicism NNP\nGotlieb NNP\nGotschall NNP\nGotshal NNP\nGott FW\nGotta VB\nGotterdammerung NNP\nGottesfeld NNP\nGottesman NNP\nGottfried NNP\nGottingen NNP\nGottlieb NNP\nGottschalk NNP\nGottshall NNP\nGoudsmit NNP\nGouge VB\nGough NNP\nGould NNP\nGoulde NNP\nGoulding NNP\nGouldings NNPS\nGouldoid JJ\nGoupil NNP\nGourlay NNP\nGourman NNP\nGourmet NNP\nGouvernement NNP\nGov. NNP\nGoverman NNP\nGovern VB\nGovernali NNP\nGoverned JJ\nGoverner NNP\nGovernment NNP\nGovernment-Sponsored NNP\nGovernment-blessed JJ\nGovernment-mandated JJ\nGovernment-owned JJ\nGovernmental NNP\nGovernments NNS\nGovernor NNP\nGovernor-General NNP\nGovernors NNP\nGovett NNP\nGovette NNP\nGovs. NNP\nGoya NNP\nGoyette NNP\nGrab VB\nGrabbing VBG\nGrabe NNP\nGrabowiec NNP\nGrabski NNP\nGrace NNP\nGrace-Sierra NNP\nGraceful JJ\nGracias FW\nGracie NNP\nGraciela NNP\nGrad NNP\nGradco NNP\nGrade NNP\nGradison NNP\nGradmann NNP\nGrads NNS\nGradual JJ\nGradually RB\nGraduate NNP\nGraduate-student NN\nGraduates NNS\nGrady NNP\nGraedel NNP\nGraeme NNP\nGraf NNP\nGraff NNP\nGrafil NNP\nGrafin NNP\nGraft NN\nGrafton NNP\nGraham NNP\nGrahams NNPS\nGrahamstown NNP\nGrail NNP\nGrain NNP\nGrains NNS\nGrais NNP\nGram JJ\nGram-negative JJ\nGramercy NNP\nGramm NNP\nGramm-Rudman NNP\nGramm-Rudman-Hollings NNP\nGrammar NNP\nGrammophon NNP\nGrammys NNS\nGran NNP\nGranada NNP\nGranath NNP\nGrand NNP\nGrand-Clement NNP\nGrande NNP\nGrande-Bretagne FW\nGrandeur NN\nGrandis NNP\nGrandma NNP\nGrandmother NNP\nGrandmothers NNP\nGrandparent NNP\nGrandparents NNP\nGrands NNP\nGrandsire NNP\nGrandson NNP\nGrange NNP\nGranger NNP\nGranges NNP\nGranin NNP\nGranite NNP\nGrannell NNP\nGrannies NNPS\nGrannon NNP\nGranny NNP\nGrano NNP\nGrant NNP\nGranted VBN\nGranther NNP\nGrantor NNP\nGrants NNPS\nGrants-in-aid NNS\nGranville NNP\nGrapefruit NNP\nGrapes NNP\nGraph NN\nGraphic NNP\nGraphics NNP\nGrappelly NNP\nGrappely NNP\nGras NNP\nGrass NNP\nGrass-roots JJ\nGrasslands NNPS\nGrassley NNP\nGrasso NNP\nGrassy NNP\nGrateful NNP\nGratified JJ\nGratt NNP\nGrattan NNP\nGraubart NNP\nGrauer NNP\nGrauman NNP\nGravelle NNP\nGravely NNP\nGraves NNP\nGravesend NNP\nGravity NN\nGray NNP\nGrayhound NNP\nGrayson NNP\nGraziano NNP\nGrazie NNP\nGre't JJ\nGre. NNP\nGreaney NNP\nGrease NN\nGreases NNS\nGreasies NNS\nGreasy JJ\nGreat NNP\nGreater NNP\nGreatest JJS\nGreatly RB\nGreatness NNP\nGrecian JJ\nGreco NNP\nGreece NNP\nGreed NN\nGreedily RB\nGreek NNP\nGreek-Americans NNPS\nGreek-Canadian JJ\nGreek-Danish NNP\nGreek-born JJ\nGreek-speaking JJ\nGreekfest NNP\nGreeks NNPS\nGreen NNP\nGreen-labeled JJ\nGreenall NNP\nGreenback NNP\nGreenbelt NNP\nGreenberg NNP\nGreenberger NNP\nGreene NNP\nGreene\\/Worldwide NNP\nGreener JJR\nGreenery NNP\nGreenfield NNP\nGreenhill NNP\nGreenhouse NN\nGreeniaus NNP\nGreening NN\nGreenland NNP\nGreenleaf NNP\nGreenmoss NNP\nGreenness NN\nGreenock NNP\nGreenpeace NNP\nGreens NNPS\nGreensboro NNP\nGreenshields NNP\nGreenspan NNP\nGreenspon NNP\nGreenstein NNP\nGreensville NNP\nGreentree NNP\nGreenville NNP\nGreenwald NNP\nGreenwich NNP\nGreenwich-Potowomut NNP\nGreenwood NNP\nGreer NNP\nGreetings NNP\nGreg NNP\nGregg NNP\nGregoire NNP\nGregorio NNP\nGregorius NNP\nGregory NNP\nGreif NNP\nGreiff NNP\nGreifswald NNP\nGreiner NNP\nGreisler NNP\nGrenada NNP\nGrenadian JJ\nGrenfell NNP\nGrenier NNP\nGrenoble NNP\nGrenville NNP\nGresham NNP\nGressette NNP\nGretchen NNP\nGrev. NNP\nGreve NNP\nGrevile NNP\nGreville NNP\nGrevyles NNP\nGrew VBD\nGrey NNP\nGreyhound NNP\nGreylag NNP\nGrgich NNP\nGribbin NNP\nGribin NNP\nGrid NNP\nGridley NNP\nGrieco NNP\nGrien NNP\nGriesa NNP\nGrievances NNP\nGriffin NNP\nGriffin-Byrd NNP\nGriffith NNP\nGriffith-Jones NNP\nGriffith-Joyner NNP\nGriggs NNP\nGrigoli NNP\nGrigori NNP\nGrigoriy NNP\nGrigorss NNP\nGrigory NNP\nGrigsby NNP\nGrill NNP\nGrimaldi NNP\nGrimes NNP\nGrimesby NNP\nGrimm NNP\nGrindlay NNP\nGrinevsky NNP\nGringo NN\nGrinned VBD\nGrinsfelder NNP\nGrinten NNP\nGripen NNP\nGripped VBN\nGrippo NNP\nGrips NNS\nGris NNP\nGrisebach NNP\nGriselda NNP\nGrisha-class JJ\nGrishaw-Mueller NNP\nGrisoni NNP\nGrist NNP\nGriston NNP\nGriswold NNP\nGrits NNP\nGritten NNP\nGrizzlies NNS\nGro NNP\nGro-Lites NNPS\nGroat NNP\nGroben NNP\nGrobstein NNP\nGrocer NNP\nGrocery NNP\nGrodnik NNP\nGroep NNP\nGroff NNP\nGroggins NNP\nGrohl NNP\nGrohowski NNP\nGrolier NNP\nGromov NNP\nGroom NNP\nGrooms NNP\nGroopman NNP\nGroot NNP\nGross NNP\nGrosse NNP\nGrosset NNP\nGrossinger NNP\nGrossman NNP\nGrossner NNP\nGrosvenor NNP\nGrote NNP\nGroth NNP\nGroton NNP\nGroucho NNP\nGround NNP\nGrounds NNPS\nGroundwater NNP\nGroup NNP\nGroup-of-Seven NN\nGroup\\/Business NNP\nGroupe NNP\nGroupement NNP\nGroups NNS\nGroused VBD\nGrove NNP\nGrove\\/Weidenfeld NN\nGrover NNP\nGrovers NNP\nGroves NNP\nGrow NNP\nGrowers NNPS\nGrowing VBG\nGrows VBZ\nGrowth NN\nGrubHub NNP\nGrubb NNP\nGruber NNP\nGruberova NNP\nGrubman NNP\nGrudges NNS\nGruene NNP\nGruller NNP\nGrumble NNP\nGrumbled VBD\nGrumman NNP\nGrunberg NNP\nGrundfest NNP\nGrune NNP\nGrunfeld NNP\nGrunnfeu NNP\nGruntal NNP\nGrupo NNP\nGruppe NNP\nGrusin NNP\nGruss NNP\nGrzesiak NNP\nGtech NNP\nGuadalajara NNP\nGuadalcanal NNP\nGuadalupe NNP\nGuadalupes NNPS\nGuadeloupe NNP\nGuam NNP\nGuandong NNP\nGuangdong NNP\nGuar JJ\nGuarana NNP\nGuarantee NN\nGuaranteed VBN\nGuaranty NNP\nGuarascio NNP\nGuard NNP\nGuardia NNP\nGuardian NNP\nGuardini NNP\nGuardino NNP\nGuards NNPS\nGuardsmen NNPS\nGuarini NNP\nGuatemala NNP\nGuatemalan JJ\nGuber NNP\nGuber-Peter NNP\nGuber-Peters NNP\nGuber\\/Peters NNP\nGubers NNP\nGucci NNP\nGuccione NNP\nGuderian NNP\nGuenter NNP\nGuerbet NNP\nGuerin NNP\nGuerneville NNP\nGuerrilla NN\nGuerrillas NNS\nGuess NNP\nGuesstimates NNS\nGuest NNP\nGuests NNS\nGuevara NNP\nGuffey NNP\nGuggenheim NNP\nGuglielmo NNP\nGuiana NNP\nGuidance NN\nGuide NNP\nGuidelines NNS\nGuideposts NNPS\nGuides NNS\nGuidi NNP\nGuido NNP\nGuiftes NNS\nGuigal NNP\nGuignol NNP\nGuild NNP\nGuildford NNP\nGuilford NNP\nGuilford-Martin NNP\nGuilherme NNP\nGuilin NNP\nGuillaume NNP\nGuillermin NNP\nGuillermo NNP\nGuimet NNP\nGuinea NNP\nGuinness NNP\nGuiseppe NNP\nGuitar NNP\nGuitarist NNP\nGuizot NNP\nGujarat NN\nGulag NNP\nGulbuddin NNP\nGulch NNP\nGulf NNP\nGulfstream NNP\nGulick NNP\nGullah NNP\nGulliver NNP\nGumbel NNP\nGumbel\\/Walt NNP\nGumi NNP\nGumkowski NNP\nGummi-Werke NNP\nGump NNP\nGumpel NNP\nGumport NNP\nGums NNS\nGumucio NNP\nGun NNP\nGunder NNP\nGundle NNP\nGundy NNP\nGunfire NN\nGunlocke NNP\nGunmen NNS\nGunnar NNP\nGunner NNP\nGunny NNP\nGuns NNS\nGunter NNP\nGunther NNP\nGunthrop-Warren NNP\nGunton NNP\nGuofeng NNP\nGuppy NNP\nGupta NNP\nGur NNP\nGuralnick NNP\nGurion NNP\nGurkhas NNP\nGurla NNP\nGurria NNP\nGursel NNP\nGurtz NNP\nGurus NNS\nGus NNP\nGustaf NNP\nGustafson NNP\nGustafsson NNP\nGustav NNP\nGustave NNP\nGustavo NNP\nGustavus NNP\nGuste NNP\nGute FW\nGutenberghus NNP\nGuterman NNP\nGutermann NNP\nGutfeld NNP\nGutfreund NNP\nGutfreund-Postel NNP\nGutfreunds NNPS\nGuth NNP\nGuthman NNP\nGuthrie NNP\nGuttmacher NNP\nGuttman NNP\nGuttman-type JJ\nGutwein NNP\nGutzon NNP\nGuy NNP\nGuyana NNP\nGuyon NNP\nGuys NNS\nGuzewich NNP\nGuzman NNP\nGuzzi NNP\nGwen NNP\nGwendolyn NNP\nGwyn NNP\nGyi NNP\nGyllensten NNP\nGymnasium NNP\nGynecologists NNS\nGyp NNP\nGypsum NNP\nGypsy NN\nGyrocompass NN\nGyula NNP\nH NNP\nH&M NNP\nH&Q NNP\nH&R NNP\nH'all DT\nH-2 NNP\nH-P NNP\nH. NNP\nH.A. NNP\nH.C. NNP\nH.E. NNP\nH.F. NNP\nH.G. NNP\nH.H. NNP\nH.J. NNP\nH.K. NNP\nH.L. NNP\nH.M. NNP\nH.M.S. NNP\nH.M.S.S NNP\nH.M.S.S. NNP\nH.N. NNP\nH.P.R. NNP\nH.R. NNP\nH.S. NNP\nH.T. NNP\nH.V. NNP\nH.W. NNP\nH/NNP.A. NN\nH2Owner NNP\nHA UH\nHAD VBD\nHAHAHA UH\nHAL NNP\nHALE NNP\nHALT NNP\nHANDICAPPED VBN\nHANNIFIN NNP\nHANOVER NNP\nHAPPY JJ\nHARD JJ\nHAS VBZ\nHASTINGS NNP\nHATER NN\nHATS NNS\nHAVE VB\nHAWLEY NNP\nHBJ NNP\nHBO NNP\nHCA NNP\nHCC NNP\nHCF NNP\nHCFA NNP\nHCFCs NNS\nHCS NNP\nHD NNP\nHDI NNP\nHDM NNP\nHDTV NN\nHDTV-screen JJ\nHDTVs NNS\nHE PRP\nHEADED VBD\nHEALTH NN\nHEALTH-CARE NN\nHEALTHDYNE NNP\nHEALTHY JJ\nHEARS VBZ\nHEAVY JJ\nHEFTY NNP\nHEI NNP\nHELD VBD\nHELPS VBZ\nHENRI NNP\nHENRY NNP\nHERE'S VB\nHERITAGE NNP\nHERO NN\nHERS NNP\nHEUBLEIN NNP\nHEWLETT-PACKARD NNP\nHEXCEL NNP\nHEXX NNP\nHEYNOW NNP\nHF NNP\nHFC NNP\nHG NNP\nHHS NNP\nHI NNP\nHIAA NNP\nHIB NNP\nHIGH NNP\nHIGH-SCHOOL NN\nHIGHER JJR\nHIGHEST JJS\nHILLS NNP\nHIRING NN\nHIS NNP\nHISPANIC JJ\nHIV NNP\nHIV-1 NNP\nHIV-infected JJ\nHIV-related JJ\nHIV\\ NNP\nHIV\\/AIDS JJ\nHK NNP\nHK$ $\nHLR NNP\nHLTs NNS\nHM NNP\nHMA NNP\nHMOs NNP\nHMS NNP\nHMSS NNP\nHN NNP\nHNSX NNP\nHOBBY NN\nHOCKEY NN\nHOFI NNP\nHOLD VB\nHOLDING NNP\nHOLDINGS NNPS\nHOLIDAY NNP\nHOLLYWOOD NNP\nHOME NNP\nHOME-SALE JJ\nHOMEOWNERS NNS\nHOMESTAKE NNP\nHOMESTEAD NNP\nHONECKER NNP\nHOPE VBP\nHOPES NNS\nHOSPITALS NNS\nHOT JJ\nHOTEL NNP\nHOTELS NNPS\nHOUSE NNP\nHOUSTON NNP\nHOUSTON-CALGARY NNP\nHP NNP\nHPB NNP\nHRB NNP\nHRE NNP\nHRH NNP\nHRT NNP\nHUCKSTER'S NN\nHUD NNP\nHUD-backed JJ\nHUD-related JJ\nHUD-subsidized JJ\nHUD-supervised JJ\nHUDSON NNP\nHUGE JJ\nHUGO NNP\nHUGO'S NNP\nHUH NNP\nHUNGARY NNP\nHUNGARY'S NNP\nHUNTING NN\nHUNTLEY NNP\nHURRICANE NNP\nHUSBANDS NNS\nHUTTON NNP\nHYATT NNP\nHa NNP\nHaack NNP\nHaaek NNP\nHaag NNP\nHaagen NNP\nHaagen-Dazs NNP\nHaake NNP\nHaan NNP\nHaarlem NNP\nHaas NNP\nHaase NNP\nHaavelmo NNP\nHabeas FW\nHaber NNP\nHaberle NNP\nHabib NNP\nHabicht NNP\nHabitat NNP\nHabla NNP\nHabomai NNP\nHabsburg NNP\nHacche NNP\nHachette NNP\nHachiya NNP\nHachiyas NNPS\nHachuel NNP\nHacienda NNP\nHack NNP\nHackel NNP\nHackensack NNP\nHackett NNP\nHackettstown NNP\nHacking VBG\nHackman NNP\nHackmann NNP\nHackney NNP\nHacksaw NNP\nHackstaff NNP\nHad VBD\nHadassah NNP\nHaddad NNP\nHaddix NNP\nHaden NNP\nHadera NNP\nHadhazy NNP\nHadley NNP\nHadrian NNP\nHadson NNP\nHaementeria FW\nHaestier NNP\nHafer NNP\nHaferkamp NNP\nHafetz NNP\nHafez NNP\nHafif NNP\nHafiz NNP\nHafner NNP\nHage NNP\nHagen NNP\nHager NNP\nHagerty NNP\nHaggard NNP\nHagner NNP\nHagood NNP\nHagoshrim NNP\nHague NNP\nHagura NNP\nHaha UH\nHahaha UH\nHahn NNP\nHahnemann NNP\nHaig NNP\nHaight NNP\nHaigler NNP\nHaijac NNP\nHail NNP\nHaile NNP\nHainan NNP\nHaines NNP\nHair NN\nHaislip NNP\nHaislmaier NNP\nHaiti NNP\nHaitian JJ\nHajak NNP\nHajime NNP\nHakim NNP\nHakko NNP\nHakuhodo NNP\nHal NNP\nHalas NNP\nHalcion NNP\nHalda NNP\nHaldeman NNP\nHale NNP\nHalebian NNP\nHalf NN\nHalf-man JJ\nHalf-time JJ\nHalf-year JJ\nHalfback NNP\nHalfway RB\nHaliburton NNP\nHalis NNP\nHalkett NNP\nHall NNP\nHall-Mills NNP\nHallador NNP\nHallbauer NNP\nHalle NNP\nHalleck NNP\nHallelujah NNP\nHallett NNP\nHalliburton NNP\nHallingby NNP\nHallman NNP\nHallmark NNP\nHalloran NNP\nHalloween NNP\nHallowell NNP\nHalls NNP\nHallucigenia NNP\nHallwood NNP\nHalma NNP\nHalo NNP\nHalperin NNP\nHalpern NNP\nHalprin NNP\nHals NNP\nHalsey NNP\nHalsmuseum NNP\nHalstead NNP\nHalsted NNP\nHalting VBG\nHalva-Neubauer NNP\nHam NNP\nHama NNP\nHama-style JJ\nHamakua NN\nHambrecht NNP\nHambric NNP\nHambros NNP\nHamburg NNP\nHamburger NN\nHamburgers NNP\nHamer NNP\nHamey NNP\nHamilton NNP\nHamilton-Dorgan NNP\nHamilton-oriented JJ\nHamiltonian JJ\nHamiltonians NNPS\nHamish NNP\nHamlet NNP\nHamlin NNP\nHamm NNP\nHammacher NNP\nHammack NNP\nHammacks NNP\nHammarskjold NNP\nHammer NNP\nHammer.`` ``\nHammers VBZ\nHammerschmidt NNP\nHammersla NNP\nHammersmith NNP\nHammerstein NNP\nHammerton NNP\nHammett NNP\nHammond NNP\nHammons NNP\nHampshire NNP\nHampster NNP\nHampton NNP\nHamrick NNP\nHan NNP\nHanao NNP\nHanaspur NNP\nHanauer NNP\nHanch NNP\nHancock NNP\nHand NN\nHand-holding NN\nHandbook NN\nHandel NNP\nHandels NNP\nHandelsbank NNP\nHandelsbanken NNP\nHandelsman NNP\nHandguns NNS\nHandicapped NNP\nHanding VBG\nHandle VB\nHandled VBN\nHandler NNP\nHandlers NNP\nHandley NNP\nHandling VBG\nHandmade NNP\nHandmaid NNP\nHands NNP\nHands-off JJ\nHands-on JJ\nHandsome JJ\nHandsomest JJS\nHandstands NNS\nHandy NNP\nHandyman NNP\nHandzlik NNP\nHanes NNP\nHaney NNP\nHanford NNP\nHanfsaengl NNP\nHanft NNP\nHang NNP\nHanging VBG\nHangman NNP\nHani NNP\nHanifen NNP\nHank NNP\nHanks NNP\nHanley NNP\nHanlon NNP\nHann NNP\nHannah NNP\nHannam NNP\nHannes NNP\nHannibal NNP\nHannifin NNP\nHannon NNP\nHannover NNP\nHanoi NNP\nHanoi-backed JJ\nHanover NNP\nHanover-Bertie NNP\nHanover-Ceyway NNP\nHanover-Chalidale NNP\nHanover-Justitia NNP\nHanover-Lucy NNP\nHanover-Mauri NNP\nHanover-Misty NNP\nHanover-Pebble NNP\nHanover-Precious NNP\nHanover-Sally NNP\nHanover-Supermarket NNP\nHanoverian NNP\nHans NNP\nHans-Dietrich NNP\nHans-Peter NNP\nHans-Ulrich NNP\nHansGeorg NNP\nHansen NNP\nHanshin NNP\nHansmann NNP\nHanson NNP\nHanukkah NNP\nHanwa NNP\nHaole FW\nHap NNP\nHapgood NNP\nHapoalim NNP\nHappened VBD\nHappens VBZ\nHappily RB\nHappiness NN\nHappy NNP\nHapsburg NNP\nHaqvin NNP\nHar-Lev NNP\nHara NNP\nHarapiak NNP\nHarassed JJ\nHarassment NN\nHarbanse NNP\nHarbert NNP\nHarbison NNP\nHarbor NNP\nHarbor\\/Save NNP\nHarbors NNPS\nHarbour NNP\nHarbridge NNP\nHarburg NNP\nHarch NNP\nHarco NNP\nHarcourt NNP\nHard NNP\nHard-Hearted NNP\nHard-Line JJ\nHard-hitting JJ\nHard-surface JJ\nHardart NNP\nHardball NNP\nHardee NNP\nHardest JJS\nHardiman NNP\nHarding NNP\nHardings NNPS\nHardis NNP\nHardly RB\nHardscrabble NNP\nHardshell NNP\nHardware NNP\nHardwick NNP\nHardwicke NNP\nHardwicke-Etter NNP\nHardy NNP\nHare NNP\nHarel NNP\nHarford NNP\nHargett NNP\nHargitay NNP\nHargrave NNP\nHargrove NNP\nHark NNP\nHarken NNP\nHarkess NNP\nHarkin NNP\nHarkins NNP\nHarkinson NNP\nHarlan NNP\nHarlan-Hickory NNP\nHarlan-Marcia NNP\nHarland NNP\nHarlem NNP\nHarlequins NNPS\nHarley NNP\nHarley-Davidson NNP\nHarlin NNP\nHarlingen NNP\nHarlow NNP\nHarm NNP\nHarman NNP\nHarmas NNP\nHarmful JJ\nHarmless JJ\nHarmon NNP\nHarmonia NNP\nHarmonizing NNP\nHarmony NNP\nHarms NNP\nHarnack NNP\nHarnessing VBG\nHarnick NNP\nHarnischfeger NNP\nHaro NNP\nHarold NNP\nHarpener NNP\nHarper NNP\nHarperner NNP\nHarpers NNP\nHarpo NNP\nHarpoon NNP\nHarrah NNP\nHarrell NNP\nHarrier NNP\nHarriers NNPS\nHarriet NNP\nHarrigan NNP\nHarriman NNP\nHarrington NNP\nHarris NNP\nHarrisburg NNP\nHarrison NNP\nHarriton NNP\nHarrity NNP\nHarro UH\nHarrold NNP\nHarrow NNP\nHarrows NNPS\nHarry NNP\nHarsco NNP\nHart NNP\nHart-Scott NNP\nHart-Scott-Rodino NNP\nHarte-Hanks NNP\nHartfield-Zodys NNP\nHartford NNP\nHartford-based JJ\nHartford\\/Springfield NNP\nHartigan NNP\nHartley NNP\nHartley-Leonard NNP\nHartlib NNP\nHartman NNP\nHartmarx NNP\nHartnett NNP\nHartselle NNP\nHartsfield NNP\nHartt NNP\nHartung NNP\nHartweger NNP\nHartwell NNP\nHarty NNP\nHartz NNP\nHartzog NNP\nHaruki NNP\nHaruo NNP\nHaruyuki NNP\nHarvard NNP\nHarve NNP\nHarvest NNP\nHarvester NNP\nHarvesting NN\nHarvey NNP\nHarveys NNPS\nHarvie NNP\nHarwood NNP\nHas VBZ\nHasbro NNP\nHasbrouck NNP\nHasbrouk NNP\nHaselhoff NNP\nHasenauer NNP\nHash NNP\nHashers NNS\nHashidate NNP\nHashimoto NNP\nHashing NN\nHasidic JJ\nHaskayne NNP\nHaskell NNP\nHaskin NNP\nHaskins NNP\nHassan NNP\nHasse NNP\nHasseltine NNP\nHassenberg NNP\nHassenfeld NNP\nHassenfelt NNP\nHassey NNP\nHaste NN\nHastening VBG\nHastert NNP\nHastily RB\nHasting NNP\nHastings NNP\nHastings-on-Hudson NNP\nHat NNP\nHatakeyama NNP\nHatch NNP\nHatched VBN\nHatchet NNP\nHatchett NNP\nHatching NNP\nHatfield NNP\nHathaway NNP\nHathcock NNP\nHating VBG\nHatless JJ\nHatred NN\nHatteras NNP\nHatters NNP\nHattie NNP\nHattiesburg NNP\nHatton NNP\nHattori NNP\nHauer NNP\nHaugh NNP\nHaughey NNP\nHaughton NNP\nHauling VBG\nHaumd NNP\nHaun NNP\nHauptman NNP\nHaupts NNP\nHauser NNP\nHausman NNP\nHaussmann NNP\nHaut NNP\nHaut-Brion NNP\nHavana NNP\nHave VBP\nHavel NNP\nHaven NNP\nHavens NNP\nHaverfield NNP\nHaverhill NNP\nHavilland NNP\nHaving VBG\nHavisham NNP\nHaw UH\nHawaii NNP\nHawaiian NNP\nHawaiian-Americans NNPS\nHawaiian\\/Japanese JJ\nHawes NNP\nHawesville NNP\nHawk NNP\nHawke NNP\nHawker NNP\nHawkes NNP\nHawking NNP\nHawkins NNP\nHawkinses NNPS\nHawks NNPS\nHawksley NNP\nHawksworth NNP\nHawley NNP\nHawn NNP\nHaworth NNP\nHawthorne NNP\nHay NNP\nHayasaka NNP\nHayden NNP\nHaydn NNP\nHaydon NNP\nHayek NNP\nHayes NNP\nHayeses NNPS\nHaying NN\nHayne NNP\nHaynes NNP\nHaynie NNP\nHays NNP\nHayter NNP\nHayward NNP\nHaywood NNP\nHazard NNP\nHazardous JJ\nHazards NNS\nHazel NNP\nHazell NNP\nHazeltine NNP\nHazelwood NNP\nHazlett NNP\nHazlitt NNP\nHazy NNP\nHazzard NNP\nHe PRP\nHe's VBZ\nHead NNP\nHeaded VBN\nHeading VBG\nHeadland NNP\nHeadley NNP\nHeadline NNP\nHeadlines NNS\nHeadly NNP\nHeadquarters NNP\nHeadrests NNS\nHeads NNS\nHeady NNP\nHealey NNP\nHealth NNP\nHealth-Chem NNP\nHealth-care JJ\nHealth-insurance NN\nHealthAmerica NNP\nHealthCare NNP\nHealthVest NNP\nHealthcare NNP\nHealthco NNP\nHealthdyne NNP\nHealthier JJR\nHealthsource NNP\nHealthvest NNP\nHealthy JJ\nHealy NNP\nHear VB\nHeard NNP\nHearing NNP\nHearings NNS\nHearn NNP\nHearst NNP\nHeart NNP\nHeart-measuring JJ\nHeartburn NNP\nHeartland NNP\nHearts NNPS\nHeartwise NNP\nHeat NN\nHeath NNP\nHeather NNP\nHeatherington NNP\nHeathrow NNP\nHeating NN\nHeatwole NNP\nHeave VB\nHeaven NNP\nHeavenly NNP\nHeavily RB\nHeavy NNP\nHeavy-coated JJ\nHeber NNP\nHebert NNP\nHeberto NNP\nHebraic JJ\nHebrew NNP\nHebrews NNPS\nHebron NNP\nHecht NNP\nHeck NNP\nHeckman NNP\nHecla NNP\nHector NNP\nHedda NNP\nHedding NNP\nHedge NNP\nHedges NNP\nHedison NNP\nHedman NNP\nHedquist NNP\nHedrick NNP\nHee UH\nHeebner NNP\nHeed VB\nHeeding VBG\nHeel-Beryl NNP\nHeel-Betty NNP\nHeel-Holiday NNP\nHeel-Kaola NNP\nHeel-Lotus NNP\nHeel-Miracle NNP\nHeel-Terka NNP\nHeels NNS\nHeem NNP\nHeenan NNP\nHeerden NNP\nHees NNP\nHeffer NNP\nHeffernan NNP\nHeffner NNP\nHeflin NNP\nHefner NNP\nHefter NNP\nHegel NNP\nHegelian NNP\nHeidegger NNP\nHeidelberg NNP\nHeideman NNP\nHeidenstam NNP\nHeidi NNP\nHeidrick NNP\nHeifetz NNP\nHeigh-ho UH\nHeight NN\nHeightened JJ\nHeights NNP\nHeikes NNP\nHeiko NNP\nHeilbron NNP\nHeileman NNP\nHeilman NNP\nHeimbold NNP\nHeimers NNP\nHein NNP\nHeinbockel NNP\nHeine NNP\nHeineken NNP\nHeinemann NNP\nHeinhold NNP\nHeinkel NNP\nHeinrich NNP\nHeintze NNP\nHeinz NNP\nHeinze NNP\nHeinzes NNPS\nHeisbourg NNP\nHeisch NNP\nHeiser NNP\nHeitman NNP\nHeitschmidt NNP\nHeiwa NNP\nHeiwado NNP\nHekhmatyar NNP\nHelaba NNP\nHelane NNP\nHeld VBN\nHeldring NNP\nHelen NNP\nHelena NNP\nHelene NNP\nHelfman NNP\nHelga NNP\nHelibor NN\nHelicopter NNP\nHelicopters NNP\nHelion NNP\nHelionetics NNP\nHeliopolis NNP\nHelix NNP\nHell UH\nHellene NNP\nHellenic NNP\nHeller NNP\nHeller\\ NNP\nHellfire NNP\nHelliesen NNP\nHellinger NNP\nHellisen NNP\nHellman NNP\nHello UH\nHells NNP\nHelm NNP\nHelmerich NNP\nHelmet NN\nHelms NNP\nHelmsley NNP\nHelmsley-Spear NNP\nHelmsleySpear NNP\nHelmut NNP\nHelmuth NNP\nHelp VB\nHelp-wanted JJ\nHelped VBN\nHelper NNP\nHelpern NNP\nHelping VBG\nHelpless NNP\nHelpline NNP\nHelps VBZ\nHelsinki NNP\nHelsinki-based JJ\nHelton NNP\nHelva NNP\nHemant NNP\nHemel NNP\nHemenway NNP\nHemingway NNP\nHemisphere NNP\nHemispheric NNP\nHemmed VBN\nHemmer NNP\nHemming NNP\nHemorrhage NNP\nHempel NNP\nHemphill NNP\nHempstead NNP\nHemus NNP\nHemweg NNP\nHen NN\nHence RB\nHenceforth RB\nHenderson NNP\nHendersonville NNP\nHendl NNP\nHendricks NNP\nHendrik NNP\nHendry NNP\nHeng-Shan NNP\nHengeler NNP\nHengesbach NNP\nHengst NNP\nHenh UH\nHenley NNP\nHennefeld NNP\nHennessey NNP\nHennessy NNP\nHenney NNP\nHenning NNP\nHenri NNP\nHenrich NNP\nHenrietta NNP\nHenrik NNP\nHenritze NNP\nHenry NNP\nHens NNS\nHenson NNP\nHentoff NNP\nHenze NNP\nHeorot NNP\nHepatitis NNP\nHephzibah NNP\nHepker NNP\nHer PRP$\nHeraclitus NNP\nHerald NNP\nHerald-American NNP\nHerald-Examiner NNP\nHerald-Post NNP\nHerald-Tribune NNP\nHerb NNP\nHerber NNP\nHerberet NNP\nHerbert NNP\nHerbig NNP\nHercule NNP\nHerculean JJ\nHercules NNP\nHerder NNP\nHerdman NNP\nHere RB\nHereby RB\nHeredity NN\nHereford NNP\nHeresy NNP\nHeretic NN\nHeretofore RB\nHerford NNP\nHerger NNP\nHergesheimer NNP\nHering NNP\nHeritage NNP\nHerman NNP\nHermann NNP\nHermanovski NNP\nHermione NNP\nHermitage NNP\nHernandez NNP\nHernando NNP\nHero NNP\nHerod NNP\nHeroic NNP\nHerold NNP\nHeron NNP\nHerr NNP\nHerrera NNP\nHerrick NNP\nHerridge NNP\nHerrin-Murphysboro-West NNP\nHerring NNP\nHerrington NNP\nHerrman NNP\nHerrmann NNP\nHerron NNP\nHerry NNP\nHers JJ\nHersant NNP\nHerschel NNP\nHerscu NNP\nHersey NNP\nHersh NNP\nHershel NNP\nHershey NNP\nHershhenson NNP\nHershiser NNP\nHerslow NNP\nHersly NNP\nHerter NNP\nHertz NNP\nHerwick NNP\nHerwig NNP\nHerzenberg NNP\nHerzfeld NNP\nHerzlinger NNP\nHerzog NNP\nHesburgh NNP\nHesiometer NN\nHesperus NNP\nHess NNP\nHessan NNP\nHesse NNP\nHesse-Darmstadt NNP\nHessian JJ\nHessians NNS\nHessische NNP\nHester NNP\nHeston NNP\nHetman NNP\nHettie NNP\nHettinger NNP\nHetty NNP\nHeublein NNP\nHeumann NNP\nHeusen NNP\nHeuvelmans NNP\nHewett NNP\nHewitt NNP\nHewlett NNP\nHewlett-Packard NNP\nHewlett-Woodmere NNP\nHewlitt NNP\nHexen FW\nHey UH\nHeyden NNP\nHeydrich NNP\nHeyford NNP\nHeylin NNP\nHeyman NNP\nHeymann NNP\nHeymeyer NNP\nHeyward NNP\nHeywood NNP\nHez NNP\nHi UH\nHi-Country NNP\nHiPro NNP\nHiatt NNP\nHiawatha NNP\nHibbard NNP\nHibben NNP\nHibernia NNP\nHibler NNP\nHibor NNP\nHichens NNP\nHickey NNP\nHickman NNP\nHickok NNP\nHickory NNP\nHicks NNP\nHid NNP\nHidden VBN\nHideaki NNP\nHideous NNP\nHiding VBG\nHieber NNP\nHieronymus NNP\nHiggins NNP\nHigh NNP\nHigh-Grade NNP\nHigh-Tech JJ\nHigh-Yield NNP\nHigh-definition JJ\nHigh-end JJ\nHigh-gain JJ\nHigh-grade JJ\nHigh-level JJ\nHigh-priced JJ\nHigh-ranking JJ\nHigh-speed JJ\nHigh-tech JJ\nHigh-technologies NNS\nHigh-tension JJ\nHigh-yield JJ\nHigh-yielding JJ\nHigher JJR\nHigher-income JJR\nHighest JJS\nHighfield NNP\nHighland NNP\nHighlander NNP\nHighlands NNP\nHighlights NNS\nHighly RB\nHighness NNP\nHighway NNP\nHighways NNS\nHijet NNP\nHiker NN\nHilary NNP\nHilboldt NNP\nHildebrandt NNP\nHildegard NNP\nHilder NNP\nHildy NNP\nHilger NNP\nHilkert NNP\nHill NNP\nHillary NNP\nHillcrest NNP\nHillel NNP\nHiller NNP\nHillerich NNP\nHillhaven NNP\nHilliard NNP\nHillis NNP\nHillman NNP\nHills NNP\nHills-Hollywood JJ\nHillsboro NNP\nHillsborough NNP\nHillsdale NNP\nHillsdown NNP\nHillstrom NNP\nHillyard NNP\nHillyer NNP\nHilo NNP\nHilprecht NNP\nHilton NNP\nHiltons NNPS\nHiltunen NNP\nHim PRP\nHimalayan JJ\nHimalayas NNPS\nHime NNP\nHimebaugh NNP\nHimmler NNP\nHimont NNP\nHimself PRP\nHinchliff NNP\nHinckley NNP\nHindelong NNP\nHindemith NN\nHindenburg NNP\nHindes NNP\nHindle NNP\nHindoo NNP\nHindu NNP\nHinduish JJ\nHinduism NNP\nHindus NNP\nHine NNP\nHines NNP\nHingham NNP\nHingorani NNP\nHinkle NNP\nHinman NNP\nHino NNP\nHinsdale NNP\nHint NN\nHinton NNP\nHints NNS\nHintz NNP\nHinzack NNP\nHip NN\nHip-pocket JJ\nHippie NNP\nHippocrates NNP\nHippodrome NNP\nHippophagique NNP\nHiram NNP\nHirano NNP\nHired JJ\nHires NNP\nHirey NNP\nHiring VBG\nHiroaki NNP\nHirohito NNP\nHironaka NNP\nHiroshi NNP\nHiroshima NNP\nHiroyuki NNP\nHirsch NNP\nHirschey NNP\nHirschfeld NNP\nHirschman NNP\nHirudo FW\nHirzy NNP\nHis PRP$\nHisao NNP\nHisaya NNP\nHisham NNP\nHismanal NNP\nHispanic JJ\nHispanic-market JJ\nHispanics NNPS\nHispano NNP\nHispanoil NNP\nHiss NNP\nHistadrut NNP\nHistochemistry NNP\nHistorian NN\nHistorians NNS\nHistorical NNP\nHistorically RB\nHistories NNP\nHistory NN\nHistrionix NNP\nHit VBN\nHitachi NNP\nHitch NNP\nHitchcock NNP\nHitching VBG\nHitler NNP\nHitlers NNPS\nHits NNS\nHitter NN\nHitting VBG\nHittner NNP\nHive NNP\nHixson NNP\nHmm NN\nHmmm UH\nHmong JJ\nHmpf UH\nHnilica NNP\nHo NNP\nHoa NNP\nHoa-whup UH\nHoag NNP\nHoagy NNP\nHoak NNP\nHoaps NNP\nHoare NNP\nHobart NNP\nHobbes NNP\nHobday NNP\nHoboken NNP\nHobson NNP\nHoc NNP\nHochiminh NNP\nHochman NNP\nHock NNP\nHockaday NNP\nHocke NNP\nHockett NNP\nHockey NNP\nHockney NNP\nHodel NNP\nHodge NNP\nHodgepodge NN\nHodges NNP\nHodgkin NNP\nHodgson NNP\nHodosh NNP\nHodson NNP\nHoe VB\nHoe-Down NNP\nHoechst NNP\nHoelterhoff NNP\nHoelzer NNP\nHoemke NNP\nHoenemeyer NNP\nHoenlein NNP\nHoeve NNP\nHoexum NNP\nHof NNP\nHoff NNP\nHoffa NNP\nHoffer NNP\nHoffman NNP\nHoffmann-La NNP\nHoffmann-LaRoche NNP\nHofstad NNP\nHofstra NNP\nHog NN\nHogan NNP\nHoge NNP\nHogg NNP\nHogs NNS\nHogue NNP\nHogwash NN\nHohlbein NNP\nHoijer NNP\nHokan NNP\nHokey JJ\nHokkaido NNP\nHokuriku NNP\nHolabird NNP\nHolbrook NNP\nHolch NNP\nHolcomb NNP\nHolcombe NNP\nHold VB\nHolden NNP\nHolderbank NNP\nHolderlin NNP\nHolders NNS\nHolding NNP\nHoldings NNP\nHolds NNP\nHole NNP\nHolen NNP\nHoles NNS\nHolewinski NNP\nHolgerson NNP\nHolguin NNP\nHoliday NNP\nHolidays NNS\nHolien NNP\nHolies NNPS\nHoliness NN\nHolla UH\nHolland NNP\nHollandale NNP\nHollander NNP\nHoller NNP\nHolleran NNP\nHolley NNP\nHolliday NNP\nHolliger NNP\nHollinger NNP\nHollings NNP\nHollingshead NNP\nHollingsworth NNP\nHollins NNP\nHollis NNP\nHollister NNP\nHolliston NNP\nHolloway NNP\nHollowell NNP\nHollsworth NNP\nHolly NNP\nHollywood NNP\nHolman NNP\nHolmberg NNP\nHolmes NNP\nHolocaust NNP\nHolstein NNP\nHolston NNP\nHolt NNP\nHolty NNP\nHoltz NNP\nHoltzman NNP\nHoly NNP\nHolynskyj NNP\nHolyoke NNP\nHolz NNP\nHolzfaster NNP\nHolzman NNP\nHomart NNP\nHombre NNP\nHombrecher NNP\nHome NNP\nHome-keeping JJ\nHome-made JJ\nHomeCare NNP\nHomeFed NNP\nHomebrew NNP\nHomebuilders NNPS\nHomecoming NN\nHomeland NN\nHomeless NNP\nHomemade NNP\nHomemakers NNP\nHomemaster JJ\nHomeowner NNP\nHomeowners NNP\nHomer NNP\nHomeric NNP\nHomerists NNS\nHomeroom NNP\nHomerun NN\nHomes NNP\nHomestake NNP\nHomestead NNP\nHomewood NNP\nHomework NN\nHomicide NNP\nHomma NNP\nHomo NN\nHomosexuals NNS\nHomozygous JJ\nHon NNP\nHon'ble NNP\nHon. NNP\nHonFed NNP\nHonan NNP\nHonda NNP\nHondas NNPS\nHondius NNP\nHondo NNP\nHonduran JJ\nHondurans NNS\nHonduras NNP\nHone NNP\nHonecker NNP\nHonest UH\nHonestly RB\nHoney NNP\nHoneybee NNP\nHoneysuckle NNP\nHoneywell NNP\nHonfed NNP\nHong NNP\nHongkong NNP\nHoniss NNP\nHonjo NNP\nHonolulu NNP\nHonolulu-based JJ\nHonor NNP\nHonorable NNP\nHonored VBN\nHonors NNP\nHonotassa NNP\nHonshu NNP\nHooch NNP\nHood NNP\nHoof NNP\nHooghli NNP\nHoogli NNP\nHook NNP\nHooked VBD\nHooker NNP\nHooks NNP\nHooper NNP\nHoopla NNP\nHooray UH\nHoosier NNP\nHoot NNP\nHoover NNP\nHope NNP\nHoped-for JJ\nHopedale NNP\nHopefully RB\nHopei NNP\nHopes NNS\nHopi NNP\nHoping VBG\nHopis NNPS\nHopkins NNP\nHopkinsian NNP\nHopley NNP\nHoppe NNP\nHopson NNP\nHopwood NNP\nHorace NNP\nHoratio NNP\nHord NNP\nHordern NNP\nHori NNP\nHoricon NNP\nHorizon NNP\nHorizons NNP\nHormats NNP\nHormel NNP\nHorn NNP\nHornaday NNP\nHornbeck NNP\nHorne NNP\nHorner NNP\nHornet NNP\nHornets NNPS\nHorns NNS\nHornung NNP\nHorowitz NNP\nHorrigan NNP\nHorror NNP\nHorry NNP\nHorse NNP\nHorsehead NNP\nHorsely NNP\nHorseman NN\nHorses NNS\nHorsham NNP\nHorst NNP\nHorstman NNP\nHorta NNP\nHorten NNP\nHorticultural NNP\nHorton NNP\nHorwath NNP\nHorwitz NNP\nHosaka NNP\nHose NNP\nHosea NNP\nHoses NNS\nHoskyns NNP\nHosni NNP\nHosogane NNP\nHosokawa NNP\nHosomi NNP\nHospice NNP\nHospital NNP\nHospital-Cornell NNP\nHospitality NNP\nHospitalization NN\nHospitals NNS\nHost NNP\nHostage NNP\nHostaria NNP\nHostess NNP\nHostetter NNP\nHostile JJ\nHosting VBG\nHot NNP\nHotei NNP\nHotel NNP\nHotel-casino NN\nHotelecopy NNP\nHotels NNPS\nHotham NNP\nHotline NNP\nHoudaille NNP\nHoudini NNP\nHough NNP\nHoughton NNP\nHouk NNP\nHoulian NNP\nHound NNP\nHounds NNPS\nHourly JJ\nHours NNS\nHouse NNP\nHouse-Senate NNP\nHouse-floor JJ\nHouse-passed JJ\nHouse. NNP\nHoused VBN\nHousehold NNP\nHouseholds NNS\nHousekeeping NN\nHouses NNS\nHousewares NNPS\nHousewives NNS\nHousing NNP\nHousings NNS\nHousman NNP\nHouston NNP\nHouston-Dallas JJ\nHouston-Galveston NNP\nHouston-Montgomery NNP\nHouston-area JJ\nHouston-based JJ\nHouten NNP\nHoutz NNP\nHovarter NNP\nHovdingar FW\nHovercraft NNP\nHovis NNP\nHovnanian NNP\nHow WRB\nHow's NNS\nHow-2 NNP\nHoward NNP\nHowda WRB\nHowdy UH\nHowe NNP\nHowell NNP\nHowever RB\nHowick NNP\nHowie NNP\nHowl NNP\nHowley NNP\nHowmet NNP\nHoworth NNP\nHowry NNP\nHowsabout RB\nHowsam NNP\nHowser NNP\nHowson-Algraphy NNP\nHowzit NN\nHoxa NNP\nHoxan NNP\nHoy NNP\nHoylake NNP\nHoylake\\ JJ\nHoyle NNP\nHoyt NNP\nHoyte NNP\nHoyvald NNP\nHrothgar NNP\nHsieh NNP\nHsu NNP\nHu NNP\nHua NNP\nHuai NNP\nHualien NNP\nHuang-ti NNP\nHuaqiong NNP\nHuard NNP\nHub NNP\nHubacher NNP\nHubay NNP\nHubba UH\nHubbard NNP\nHubbell NNP\nHubble NNP\nHubel NNP\nHuber NNP\nHubermann NNP\nHubert NNP\nHubie NNP\nHuck NNP\nHucksters NNP\nHudbay NNP\nHuddle NN\nHudnut NNP\nHudson NNP\nHue NN\nHueglin NNP\nHuerta NNP\nHuey NNP\nHuff NNP\nHuffman NNP\nHuge JJ\nHugely RB\nHuggies NNPS\nHuggins NNP\nHugh NNP\nHughes NNP\nHughey NNP\nHugo NNP\nHugoton NNP\nHuhmun NNP\nHuichol NNP\nHuitotoes NNS\nHulbert NNP\nHulings NNP\nHulks NNS\nHull NNP\nHulse NNP\nHultberg NNP\nHuman NNP\nHuman-rights NNS\nHumana NNP\nHumanism NNP\nHumanist NNP\nHumanities NNP\nHumanity NNP\nHumberto NNP\nHumble NNP\nHumboldt NNP\nHume NNP\nHumidity NN\nHumiliation NN\nHumility NNP\nHummerstone NNP\nHumor NN\nHump NNP\nHumphrey NNP\nHumphreys NNP\nHumphries NNP\nHumpty NNP\nHumulin NNP\nHun NNP\nHund FW\nHundred CD\nHundreds NNS\nHung NNP\nHungarian JJ\nHungarian-born NNP\nHungarians NNPS\nHungary NNP\nHungary-Suez NNP\nHungerfords NNP\nHungry JJ\nHunkerish JJ\nHunsucker NNP\nHunt NNP\nHunter NNP\nHunterdon NNP\nHunters NNPS\nHunting NN\nHuntington NNP\nHuntingtons NNPS\nHuntley NNP\nHuntley-Brinkley NNP\nHuntsman NNP\nHuntsville NNP\nHuntz NNP\nHuo-Shan NNP\nHuppert NNP\nHurd NNP\nHuricane NNP\nHurley NNP\nHurok NNP\nHuron NNP\nHurrah UH\nHurray NNP\nHurrays NNP\nHurrican NNP\nHurricane NNP\nHurricanes NNPS\nHurry VB\nHurst NNP\nHurt NNP\nHurtado NNP\nHurter NNP\nHurts VBZ\nHurwitt NNP\nHurwitz NNP\nHusak NNP\nHusbandry NN\nHush NN\nHusk NNP\nHusker NNP\nHuskers NNPS\nHuskins NNP\nHusky NNP\nHussein NNP\nHussman NNP\nHustead NNP\nHustle VB\nHustler NN\nHuston NNP\nHut NNP\nHutchings NNP\nHutchins NNP\nHutchinson NNP\nHutchison NNP\nHutton NNP\nHuwa NNP\nHux NNP\nHuxley NNP\nHuxtable NNP\nHuy NNP\nHwa-Shan NNP\nHwan NNP\nHwang NNP\nHyannis NNP\nHyatt NNP\nHyatt-Clark NNP\nHybrid NNP\nHybritech NNP\nHyde NNP\nHyde-to-Jekyll JJ\nHydra-matic JJ\nHydraulic NNP\nHydro NNP\nHydro-Electric NNP\nHydro-Quebec NNP\nHydrochlorothiazides NNS\nHydrogen NN\nHydroxazine NN\nHydroxides NNS\nHyena NN\nHygene NNP\nHygiene NNP\nHyman NNP\nHymen NN\nHymn NN\nHymowitz NNP\nHyndman NNP\nHyon-hui NNP\nHyperCard NNP\nHyperlite NN\nHypnosis NN\nHypocrisy NN\nHypothalamic JJ\nHypotheekkas NNP\nHypotheses NNPS\nHypothesis NN\nHypothesizing VBG\nHyun NNP\nHyundai NNP\nI PRP\nI'd MD\nI'll MD\nI'm VBP\nI'm-coming-down-your-throat JJ\nI've VBP\nI-5 NNP\nI-75 NN\nI-880 NN\nI-E NNP\nI. NNP\nI... :\nI.A. NN\nI.A.P/NNP.A. NN\nI.B.M. NNP\nI.C.H NNP\nI.C.H. NNP\nI.D. NN\nI.E.P. NNP\nI.L. NN\nI.M. NNP\nI.M.F. NNP\nI.N.D. NNP\nI.P. NNP\nI.Q. NNP\nI.R.S NNP\nI.R.S. NNP\nI.S. NNP\nI.W. NNP\nIAFP NNP\nIATA NNP\nIBC NNP\nIBCA NNP\nIBC\\ NNP\nIBC\\/Donoghue NN\nIBEW NNP\nIBJ NNP\nIBM NNP\nIBM-based JJ\nIBM-bashing NN\nIBM-compatible JJ\nIBM-oriented JJ\nIBM-remarketer JJ\nIBM\\ NNP\nIBRD NNP\nIBT NNP\nIC NNP\nICA NNP\nICAO NNP\nICBM NNP\nICBMs NNPS\nICC NNP\nICCO NNP\nICE NNP\nICG NNP\nICI NNP\nICL-GE NNP\nICM NNP\nICN NNP\nICS NNP\nIDA NNP\nIDB NNP\nIDD NNP\nIDEC NNP\nIDS NNP\nIDs NNS\nIF IN\nIFA NNP\nIFAR NNP\nIFC NNP\nIFI NNP\nIFIL NNP\nIFO NNP\nIG NNP\nIGS NNP\nIH. NNP\nII NNP\nIIGS NNP\nIII NNP\nIIT NNP\nIIci NNP\nIIcx NNP\nIIs NNPS\nIJAL NNP\nIL-2 NNP\nIL-4 NN\nILA NNP\nILLINOIS NNP\nIMA NNP\nIMEDE NNP\nIMELDA NNP\nIMF NNP\nIMF-World NNP\nIMF-approved JJ\nIMF-guided JJ\nIMO NNP\nIMREG NNP\nIMS NNP\nIMSAI NNP\nIN IN\nINA NNP\nINB NNP\nINC NNP\nINC. NNP\nINCOME NN\nINCREASING VBG\nIND NNP\nINDEX NN\nINDIAN JJ\nINDUSTRIES NNPS\nINFLATION NN\nINFORMATION NNP\nINGERSOLL-RAND NNP\nINMAC NNP\nINPS NNP\nINQUIRY NN\nINRA NNP\nINS NNP\nINSEAD NNP\nINSTITUTE NNP\nINSURANCE NNP\nINSURERS NNS\nINT-1 CD\nINTEL NNP\nINTENSIVE JJ\nINTER-TEL NNP\nINTERBANK NNP\nINTEREST NN\nINTEREST-RATE NN\nINTERMARK NNP\nINTERNATIONAL NNP\nINTERPUBLIC NNP\nINTERVOICE NNP\nINVESTIGATION NNP\nINVESTMENT NNP\nINVESTMENTS NNPS\nINVESTORS NNS\nIOC NNP\nIOCS NN\nIOCSIXF NN\nIOCSIXG NN\nIOS NNP\nIOU NNP\nIOUs NNS\nIOWA NNP\nIPM NNP\nIPO NNP\nIPOs NNPS\nIPTAY NNP\nIQ NNP\nIRA NNP\nIRA-Plus NN\nIRAN NNP\nIRAs NNS\nIRI NNP\nIRNA NNP\nIRONY NN\nIRS NNP\nIRS-HHS JJ\nIRSAC NNP\nIS VBZ\nISC NNP\nISC\\/Bunker NNP\nISI NNP\nISN'T VBZ\nISO NNP\nISRAEL NNP\nISSUE NN\nISSUES NNS\nISTAT NNP\nIT PRP\nIT'S VBZ\nITC NNP\nITEL NNP\nITG NNP\nITO NNP\nITS PRP$\nITT NNP\nIUD NNP\nIV NNP\nIV-drug-free JJ\nIVF NNP\nIX CD\nIXL NNP\nI\\ NNP\nIaciofano NNP\nIacocca NNP\nIain NNP\nIan NNP\nIard NNP\nIbaraki NNP\nIbbotson NNP\nIberia NNP\nIberian NNP\nIbias NNP\nIbn NNP\nIbos NNP\nIbrahim NNP\nIbsen NNP\nIca NN\nIcahn NNP\nIcahns NNP\nIce NNP\nIceland NNP\nIcelandic NNP\nIcelandic-speaking JJ\nIch FW\nIchi NNP\nIchiro NNP\nIcterus FW\nId NN\nIda NNP\nIdaho NNP\nIdaho-based JJ\nIdal NNP\nIdea FW\nIdeal NNP\nIdealist NN\nIdeally RB\nIdeas NNS\nIdec NNP\nIdentification NNP\nIdentifying VBG\nIdeologues NNS\nIdex NNP\nIdiot NN\nIdje NNP\nIdle JJ\nIdol NNP\nIdols NNS\nIdris NNP\nIdrissa NNP\nIdrocarburi NNP\nIerulli NNP\nIf IN\nIfint NNP\nIfni NNP\nIfo NNP\nIgG NNP\nIgaras NNP\nIgbo NNP\nIgdaloff NNP\nIglehart NNP\nIgnacio NNP\nIgnatius NNP\nIgnazio NNP\nIgnition NN\nIgnorance NN\nIgnore VB\nIgnoring VBG\nIgor NNP\nIguana NNP\nIhmsen NNP\nIhor NNP\nIijima NNP\nIke NNP\nIkegai NNP\nIkegai-Goss NNP\nIken NNP\nIkle NNP\nIl FW\nIla NNP\nIlford NNP\nIliad NNP\nIlka NNP\nIlkka NNP\nIll NNP\nIll-considered JJ\nIll. NNP\nIll.-based JJ\nIlle NNP\nIlleman NNP\nIllick NNP\nIllingworth NNP\nIllinois NNP\nIllinois-based JJ\nIlliterate JJ\nIlluminating NNP\nIllusion NNP\nIllustrated NNP\nIllustration NNP\nIllustrations NNS\nIlminster NNP\nIlona NNP\nIlotycin NNP\nIlva NNP\nIlyushin NN\nIlyushins NNPS\nIm VBP\nImage NN\nImage-processing NN\nImages NNP\nImaginary NNP\nImagine VB\nImaging NNP\nImai NNP\nImam NNP\nImasco NNP\nImasdounian NNP\nImboden NNP\nImbrium NNP\nImelda NNP\nImhoff NNP\nImitation NN\nImma VBP\nImmaculate NNP\nImmanuel NNP\nImmediate NNP\nImmediately RB\nImmigrant JJ\nImmigration NNP\nImmoderate NNP\nImmortal NNP\nImmune NNP\nImmunetech NNP\nImmunex NNP\nImmunoGen NNP\nImo NNP\nImpact NNP\nImpartiality NN\nImpasse NNP\nImpatiently RB\nImpco NNP\nImpediments NNP\nImperial NNP\nImperiales NNPS\nImperials NNPS\nImpersonal JJ\nImpetus NN\nImplementation NN\nImplements NNS\nImplores VBZ\nImport NN\nImportance NN\nImportant JJ\nImported NNP\nImporters NNP\nImports NNS\nImpose VB\nImposed VBN\nImposition NN\nImpossible JJ\nImpressed VBN\nImpressionism NN\nImpressionist JJ\nImpressionists NNPS\nImpressions NNS\nImpressive JJ\nImprimis NNP\nImprisoned VBN\nImproper JJ\nImproprieties NNS\nImprove VB\nImproved VBN\nImprovement NNP\nImprovements NNP\nImproves VBZ\nImproving VBG\nImre NNP\nImreg NNP\nImrene NNP\nIn IN\nInCide NNP\nInability NN\nInacio NNP\nInada NNP\nInadequate JJ\nInamori NNP\nInasmuch RB\nInaugural NNP\nInaugurates VBZ\nInauguration NNP\nInc NNP\nInc. NNP\nInca NNP\nIncapable JJ\nIncarnation NNP\nIncentives NNS\nIncest NN\nIncident NN\nIncidentally RB\nIncidents NNS\nIncinerator NNP\nIncline NNP\nInclude VB\nIncluded VBN\nIncludes VBZ\nIncluding VBG\nInco NNP\nIncome NNP\nInconsistent JJ\nIncorporated NNP\nIncorrect JJ\nIncrease VB\nIncreased VBN\nIncreases NNS\nIncreasing VBG\nIncreasingly RB\nIncredibly RB\nIncredulous JJ\nIncrementally RB\nIncumbent NNP\nIncurably RB\nInd NNP\nInd. NNP\nInd.-based JJ\nInd.-investment NN\nIndebted JJ\nIndecon NNP\nIndeed RB\nIndefinite JJ\nIndelicato NNP\nIndemnity NNP\nIndentical JJ\nIndependence NNP\nIndependent NNP\nIndependents NNPS\nInderbinen NNP\nIndeterminate NNP\nIndex NNP\nIndex-arbitrage NN\nIndex-linked JJ\nIndex-related JJ\nIndexed JJ\nIndexes NNS\nIndexing NN\nIndia NNP\nIndia-Pakistan NNP\nIndia-born JJ\nIndian NNP\nIndian-summer JJ\nIndiana NNP\nIndiana-Ohio NNP\nIndianapolis NNP\nIndianapolis-based JJ\nIndians NNPS\nIndicated VBD\nIndicating VBG\nIndication NN\nIndications NNS\nIndicator NN\nIndicators NNP\nIndicted VBN\nIndies NNPS\nIndigenes NNP\nIndigestion NN\nIndignantly RB\nIndigo NNP\nIndio NNP\nIndira NNP\nIndirect JJ\nIndirectly RB\nIndividual JJ\nIndividuals NNS\nIndo-China NNP\nIndo-German NNP\nIndoSuez NNP\nIndochina NNP\nIndochinese JJ\nIndocin NNP\nIndonesia NNP\nIndonesian JJ\nIndonesians NNPS\nIndoor JJ\nIndosuez NNP\nIndulgence NNP\nIndulgers NNS\nIndustri NNP\nIndustria NNP\nIndustrial NNP\nIndustriale NNP\nIndustriali NNP\nIndustrialistes NNP\nIndustrials NNP\nIndustrias NNP\nIndustrie NNP\nIndustriel FW\nIndustrielle NNP\nIndustriels NNPS\nIndustries NNPS\nIndustries-developed NNP\nIndustrikredit NNP\nIndustry NN\nIndustrywide JJ\nIneffective JJ\nInefficient JJ\nInefficient-Market NNP\nInevitably RB\nInexpensive JJ\nInexplicably RB\nInez NNP\nInfamous NNP\nInfant JJ\nInfantry NNP\nInfants NNS\nInfection NN\nInfectious JJ\nInferential NNP\nInferiority NN\nInferno NN\nInfertility NNP\nInfighting NN\nInfinite JJ\nInfiniti NNP\nInfirmary NNP\nInflammatory JJ\nInflate VB\nInflation NN\nInflation-adjusted JJ\nInflationary JJ\nInflow NN\nInflows NNS\nInfluenced NNP\nInfluential JJ\nInfoCorp NNP\nInfoCorp. NNP\nInfocorp. NNP\nInform NNP\nInformal JJ\nInformation NNP\nInformed VBN\nInformix NNP\nInfotab NNP\nInfotechnology NNP\nInfrared JJ\nInfrequently RB\nInfusion NN\nIng NNP\nIngalls NNP\nIngbar NNP\nIngeniera NNP\nIngersoll NNP\nIngham NNP\nIngleside NNP\nInglewood NNP\nIngo NNP\nIngot NN\nIngram NNP\nIngrassia NNP\nIngrid NNP\nInhalation NNP\nInherently RB\nInheritance NN\nInheriting VBG\nInhouse JJ\nInisel NNP\nInitial JJ\nInitially RB\nInitiating VBG\nInitiation NN\nInitiative NNP\nInject VB\nInjection NNP\nInju NNP\nInjun NNP\nInjuns NNPS\nInjury NNP\nInland NNP\nInlet NNP\nInmac NNP\nInman NNP\nInmate NNP\nInmates NNS\nInn NNP\nInna NNP\nInner NNP\nInnes NNP\nInnesfree NNP\nInning NN\nInnis-Maggiore-Olson NNP\nInnocent JJ\nInnocenti NNP\nInnopac NNP\nInnovation NNP\nInnovative JJ\nInns NNPS\nInnuendos NNS\nInnumerable JJ\nInorganic JJ\nInoue NNP\nInouye NNP\nInpatient NN\nInpex NNP\nInput NN\nInquirer NNP\nInquiry NNP\nInquisition NNP\nInquisitor-General NNP\nInquisitors NNS\nInsam NNP\nInscribed VBN\nInsect NN\nInsects NNS\nInsecures NNPS\nInside IN\nInsider NNP\nInsiders NNS\nInsight NNP\nInsights NNPS\nInsilco NNP\nInsinuations NNS\nInsisting VBG\nInsitutional JJ\nInsofar RB\nInsomnia NN\nInspect VB\nInspection NNP\nInspections NNP\nInspector NNP\nInspectorate NNP\nInspectorate-Adia NNP\nInspectors NNS\nInspects VBZ\nInspire NNP\nInspired VBN\nInspiring VBG\nInsta-Care NNP\nInstall VB\nInstallation NN\nInstalled VBN\nInstalling VBG\nInstances NNS\nInstant JJ\nInstantaneously RB\nInstantly RB\nInstead RB\nInstinctively RB\nInstitue NNP\nInstitut NNP\nInstitute NNP\nInstitutes NNPS\nInstitutio NNP\nInstitution NNP\nInstitutional JJ\nInstitutional-type JJ\nInstitutionalization NN\nInstitutions NNS\nInstituto NNP\nInstitutue NNP\nInstructions NNS\nInstructor NNP\nInstructors NNS\nInstrument NNP\nInstrumental NNP\nInstruments NNPS\nInsulate VB\nInsurance NNP\nInsurance-industry NN\nInsurance-reform NN\nInsurance-related JJ\nInsurances NNPS\nInsureres NNS\nInsurers NNS\nInsurgent JJ\nInsuring VBG\nInsurrecto FW\nIntair NNP\nIntan NNP\nIntangible JJ\nIntangibles NNS\nIntar NNP\nIntech NNP\nIntecknings NNP\nIntecom NNP\nIntegra NNP\nIntegra-A NNP\nIntegraph NNP\nIntegrated NNP\nIntegration NN\nIntegrator NNP\nIntek NNP\nIntel NNP\nIntellectual NNP\nIntelligence NNP\nIntelligent NNP\nIntelogic NNP\nIntelsat NNP\nIntense JJ\nIntensification NN\nIntent NN\nInter NNP\nInter-American NNP\nInter-Canadian NNP\nInter-City NNP\nInter-american NNP\nInterMarket NNP\nInterMedia NNP\nInterNorth NNP\nInterVoice NNP\nInteractive NNP\nInteragency NNP\nInterair NNP\nInterama NNP\nInterbank NNP\nIntercable NNP\nIntercede VB\nIntercepting VBG\nIntercity JJ\nInterco NNP\nIntercollegiate NNP\nIntercontinental NNP\nInterest NN\nInterest-rate JJ\nInterested VBN\nInteresting JJ\nInterestingly RB\nInterface NNP\nInterfaith JJ\nInterference NNP\nInterfering VBG\nInterferon NNP\nInterfinance NNP\nInterfinancial NNP\nInterfunding NNP\nIntergovernmental NNP\nIntergraph NNP\nIntergroup NNP\nInterhash NNP\nInterhome NNP\nInterim JJ\nInterior NNP\nInteriors NNS\nInterlake NNP\nInterleaf NNP\nInterleukin-3 NN\nInterlink NNP\nInterlochen NNP\nInterlocking VBG\nInterlude NNP\nIntermarco NNP\nIntermark NNP\nIntermarriage NN\nIntermec NNP\nIntermediate NNP\nIntermediates NNPS\nIntermoda NNP\nInternaional NNP\nInternal NNP\nInternational NNP\nInternationale NNP\nInternationalist NNP\nInternatonal NNP\nInternet NNP\nInterpersonal JJ\nInterpoint NNP\nInterpore NNP\nInterpretation NNP\nInterprovincial NNP\nInterpublic NNP\nInterruptions NNS\nInterscience NNP\nInterspec NNP\nInterspersed VBN\nInterstate NNP\nInterstate\\/Johnson NNP\nIntertan NNP\nIntertech NNP\nIntertrade NNP\nIntervenes VBZ\nIntervention NN\nInterview NNP\nInterviewed VBN\nInterviewing NN\nInterviews NNS\nInterviu NNP\nIntervoice NNP\nInterwoven JJ\nIntimations NNS\nIntl NNP\nInto IN\nIntolerable JJ\nIntouch NNP\nIntourist NNP\nIntra-European JJ\nIntrapreneurship NN\nIntrepid NNP\nIntriguing JJ\nIntroduce VB\nIntroduced VBN\nIntroduces VBZ\nIntroducing VBG\nIntroduction NN\nIntuition NN\nInuit NNP\nInvacare NNP\nInvalid NNP\nInvariably RB\nInvasion NNP\nInventions NNS\nInventor NNP\nInventories NNS\nInventors NNS\nInventory NN\nInvercalt NNP\nInvercon NNP\nInverness NNP\nInvesTech NNP\nInvest VB\nInvest\\ NNP\nInvestcorp NNP\nInvestigating VBG\nInvestigation NNP\nInvestigations NNS\nInvestigators NNS\nInvesting VBG\nInvestment NNP\nInvestment-Grade NNP\nInvestment-grade JJ\nInvestments NNPS\nInvestor NNP\nInvestors NNS\nInvictus NNP\nInvisible NNP\nInvitation NNP\nInvitations NNS\nInvite NNP\nInvoking VBG\nInvolved VBN\nInvolving VBG\nInward NNP\nInwood NNP\nInx NNP\nIo NNP\nIodinated VBN\nIodination NN\nIon NNP\nIone NNP\nIonic JJ\nIonizing VBG\nIosola NNP\nIowa NNP\nIowa-based JJ\nIpswich NNP\nIra NNP\nIraj NNP\nIran NNP\nIran-Contra NNP\nIran-Iraq NNP\nIranU.S NNP\nIran\\ NNP\nIranian JJ\nIranian-backed JJ\nIranians NNPS\nIraq NNP\nIraqi JJ\nIraqis NNPS\nIraqw NNP\nIrec NNP\nIreland NNP\nIrelands NNP\nIrenaeus NNP\nIrene NNP\nIrian NNP\nIrimajiri NNP\nIrina NNP\nIris NNP\nIrises NNP\nIrish JJ\nIrish-Soviet JJ\nIrish-made JJ\nIrishman NN\nIrishmen NNPS\nIrma NNP\nIron NNP\nIronic JJ\nIronically RB\nIronpants NNP\nIronside NNP\nIronweed NN\nIroquois NNP\nIrradiation NN\nIrrawaddy NNP\nIrretrievably RB\nIrrigation NN\nIrv NN\nIrvin NNP\nIrvine NNP\nIrving NNP\nIrwin NNP\nIs VBZ\nIsaac NNP\nIsaacs NNP\nIsaacson NNP\nIsaam NNP\nIsabel NNP\nIsabell NNP\nIsabella NNP\nIsabelle NNP\nIsacsson NNP\nIsadora NNP\nIsadore NNP\nIsaiah NNP\nIsaly NNP\nIsao NNP\nIsetan NNP\nIsfahan NNP\nIsgur NNP\nIsham NNP\nIshida NNP\nIshiguro NNP\nIshihara NNP\nIshii NNP\nIshtar NNP\nIsikoff NNP\nIsis NNP\nIslam NNP\nIslamabad NNP\nIslamic NNP\nIsland NNP\nIsland-based JJ\nIslander NNP\nIslanders NNPS\nIslandia NN\nIslands NNPS\nIsle NNP\nIsler NNP\nIsles NNP\nIsmail NNP\nIsmaili NNP\nIsmet NNP\nIsoda NNP\nIsodine NNP\nIsola NNP\nIsolated JJ\nIsolating VBG\nIsolde FW\nIsosceles NNP\nIsotechnologies NNPS\nIsquith NNP\nIsrael NNP\nIsraeli JJ\nIsraeli-Palestinian JJ\nIsraeli-born JJ\nIsraeli-occupied JJ\nIsraeli\\/Palestinian JJ\nIsraelis NNPS\nIsraelite NNP\nIsraelites NNPS\nIssak NNP\nIssam NNP\nIsselbacher NNP\nIssuance NN\nIssue NN\nIssuers NNS\nIssues NNS\nIssuing VBG\nIstanbul NNP\nIstat NNP\nIstel NNP\nIstel-type JJ\nIsthmus NN\nIstiqlal NNP\nIstiqlal-sponsored JJ\nIstituto NNP\nIstvan NNP\nIsuzu NNP\nIt PRP\nIt's NNP\nIt-wit NN\nItagaki NNP\nItalia NNP\nItalian JJ\nItalian-American JJ\nItalian-based JJ\nItalian-cut JJ\nItalian-led JJ\nItalian-made JJ\nItalian-style JJ\nItaliana NNP\nItalianate JJ\nItalians NNPS\nItalics NNS\nItalo NNP\nItalo-American NNP\nItaltel NN\nItaly NNP\nItasca NNP\nItch VB\nItching VBG\nItel NNP\nItem-Categories NNPS\nItems NNS\nIthaca NNP\nIthacan NNP\nIto NNP\nIto-Yokado NNP\nItoh NNP\nItoiz NNP\nIts PRP$\nItself PRP\nItsuo NNP\nIttleson NNP\nIturup NNP\nItzhak NNP\nIvan NNP\nIveco NNP\nIvern NNP\nIverson NNP\nIves NNP\nIvey NNP\nIvies NNPS\nIvory NNP\nIvy NNP\nIwai NNP\nIwatare NNP\nIwo NNP\nIzaak NNP\nIzquierda NNP\nIzvestia NNP\nJ NNP\nJ&B NNP\nJ&C NNP\nJ&J NNP\nJ&L NNP\nJ'ai FW\nJ-2 NNP\nJ. NNP\nJ.A. NNP\nJ.B. NNP\nJ.C. NNP\nJ.D. NNP\nJ.D.H. NNP\nJ.E. NNP\nJ.F. NNP\nJ.G. NNP\nJ.H. NNP\nJ.I. NNP\nJ.J NNP\nJ.J. NNP\nJ.J.G.M. NNP\nJ.K. NNP\nJ.L. NNP\nJ.M. NNP\nJ.MBB NNP\nJ.N. NNP\nJ.NTT NNP\nJ.P NNP\nJ.P. NNP\nJ.R. NNP\nJ.T. NNP\nJ.V NNP\nJ.V. NNP\nJ.W. NNP\nJ.X. NNP\nJ.Y. NNP\nJ/NNP.A. NN\nJ/NNP.A.C. NNP\nJ/NNP.A.W. NNP\nJ/NNP.G.L. NNP\nJ/NNP.I. JJ\nJ/NNP.J/NNP.A. NN\nJA NNP\nJAC NNP\nJACKPOT NNP\nJACUZZI NNP\nJAGRY NNP\nJAILED VBN\nJAL NNP\nJAMES NNP\nJAPAN NNP\nJAPAN'S NNP\nJAPANESE JJ\nJAS NNP\nJAUNTS NNS\nJCKC NNP\nJCP NNP\nJEDEC NN\nJERSEY NNP\nJERSEY'S NNP\nJFK NNP\nJH NNP\nJIM NNP\nJKD NNP\nJMB NNP\nJNR NNP\nJOB NN\nJOIN VB\nJOINS VBZ\nJOINT JJ\nJOKE NN\nJONES NNP\nJP NNP\nJPI NNP\nJROE NNP\nJSP NNP\nJSP-supported JJ\nJT8D-200 NN\nJUDGE NN\nJUDGE'S NN\nJUDGES NNS\nJUDICIAL JJ\nJUDICIARY NNP\nJUICE NN\nJUMBO JJ\nJUMPING NNP\nJUNK NN\nJURORS NNS\nJURY NN\nJUST RB\nJVC NNP\nJVC\\/Victor NNP\nJWP NNP\nJYJ NN|SYM\nJYM NN|SYM\nJaap NNP\nJabe NNP\nJacchia NNP\nJachmann NNP\nJacinto NNP\nJack NNP\nJack-an-Apes NN\nJack-of-all-trades NN\nJackals NNS\nJackets NNS\nJacki NNP\nJackie NNP\nJackman NNP\nJackpot NNP\nJackson NNP\nJackson-Cross NNP\nJackson-Vanick JJ\nJacksonian NNP\nJacksons NNPS\nJacksonville NNP\nJackstadt NNP\nJacky NNP\nJaclyn NNP\nJacob NNP\nJacobean JJ\nJacobite NNP\nJacobius NNP\nJacoboski NNP\nJacobs NNP\nJacobsen NNP\nJacobson NNP\nJacoby NNP\nJacopo NNP\nJacqueline NNP\nJacquelyn NN\nJacques NNP\nJacques-Francois NNP\nJacquette NNP\nJacuzzi NNP\nJacuzzis NNS\nJadwiga NNP\nJaeger NNP\nJaffe NNP\nJaffray NNP\nJagan NNP\nJager NNP\nJaggers NNP\nJagt NNP\nJaguar NNP\nJaguar-GM NNP\nJaguars NNPS\nJahn NNP\nJahr FW\nJai NNP\nJail NNP\nJaime NNP\nJakarta NNP\nJake NNP\nJakes NNP\nJalaalwalikraam NNP\nJalalabad NNP\nJam NNP\nJamaica NNP\nJamaican JJ\nJames NNP\nJames-the-Less NNP\nJameses NNP\nJameson NNP\nJamestown NNP\nJamie NNP\nJamieson NNP\nJamiesson NNP\nJan NNP\nJan. NNP\nJana NNP\nJanachowski NNP\nJane NNP\nJane\\ NNP\nJaneiro NNP\nJanes NNPS\nJanesville NNP\nJanet NNP\nJanice NNP\nJanis NNP\nJanissaries NNS\nJanitsch NNP\nJanizsewski NNP\nJanlori NNP\nJannequin NNP\nJanney NNP\nJannsen NNP\nJanofsky NNP\nJansen NNP\nJansenist NNP\nJansky NNP\nJanson NNP\nJanssen NNP\nJansz. NNP\nJanuary NNP\nJanuary-August NNP\nJanuary-June JJ\nJanuary-March NNP\nJanuary-to-August NNP\nJanus NNP\nJanus-faced JJ\nJap NNP\nJapan NNP\nJapan-U.S NNP\nJapan-U.S. JJ\nJapan-made JJ\nJapanese JJ\nJapanese-American JJ\nJapanese-Americans NNPS\nJapanese-South NNP\nJapanese-based JJ\nJapanese-financed JJ\nJapanese-language JJ\nJapanese-made JJ\nJapanese-managed JJ\nJapanese-owned JJ\nJapanese-style JJ\nJapanese-supplied JJ\nJapanese-type JJ\nJapanese\\/Chinese JJ\nJaps NNPS\nJaques NNP\nJardin NNP\nJardine NNP\nJarmusch NNP\nJaross NNP\nJarrell NNP\nJarrett NNP\nJarrodsville NNP\nJars NNS\nJartran NNP\nJarvik NNP\nJarvis NNP\nJas NNP\nJascha NNP\nJase NNP\nJasmine NNP\nJason NNP\nJasper NNP\nJastrow NNP\nJath NNP\nJava NNP\nJavanese JJ\nJavert NNP\nJavier NNP\nJawaharlal NNP\nJaworski NNP\nJaws NNPS\nJay NNP\nJaya NNP\nJayark NNP\nJaycee NNP\nJaycees NNPS\nJays NNPS\nJazz NNP\nJean NNP\nJean-Claude NNP\nJean-Honore NNP\nJean-Jacques NNP\nJean-Louis NNP\nJean-Luc NNP\nJean-Marie NNP\nJean-Michel NNP\nJean-Pascal NNP\nJean-Paul NNP\nJean-Pierre NNP\nJean-Rene NNP\nJeancourt-Galignani NNP\nJeane NNP\nJeanene NNP\nJeanette NNP\nJeanne NNP\nJeannie NNP\nJeans NNPS\nJeb NNP\nJed NNP\nJee-sus UH\nJeep NN\nJeep-Eagle NNP\nJeep-brand JJ\nJeep-like JJ\nJeep\\ NNP\nJeep\\/Eagle NNP\nJeepers UH\nJeeps NNS\nJeff NNP\nJefferies NNP\nJefferson NNP\nJeffersonian JJ\nJeffersonians NNPS\nJeffersons NNPS\nJeffery NNP\nJeffrey NNP\nJeffry NNP\nJehovah NNP\nJekyll NNP\nJelenic NNP\nJelinski NNP\nJelke NNP\nJell-O NNP\nJellinek NNP\nJellison NNP\nJelly NNP\nJellyby NNP\nJemela NNP\nJemima NNP\nJen NNP\nJenMar NNP\nJena NNP\nJenco NNP\nJenkins NNP\nJenkinson NNP\nJenks NNP\nJenner NNP\nJenni NNP\nJennie NNP\nJennifer NNP\nJenning NNP\nJennings NNP\nJennison NNP\nJenny NNP\nJenrette NNP\nJens NNP\nJens-Uwe NNP\nJensen NNP\nJeopardize VB\nJeopardy NNP\nJepson NNP\nJerald NNP\nJerebohm NNP\nJerebohms NNP\nJerell NNP\nJeremiah NNP\nJeremy NNP\nJerez NNP\nJergens NNP\nJeri NNP\nJericho NNP\nJerky NNP\nJeroboam NN\nJeroboams NNPS\nJerome NNP\nJerr-Dan NNP\nJerral NNP\nJerrico NNP\nJerritts NNP\nJerrold NNP\nJerry NNP\nJersey NNP\nJersey-Salem NNP\nJersey-based JJ\nJerseyite NNP\nJerusalem NNP\nJervase NNP\nJervis NNP\nJesperson NNP\nJess NNP\nJesse NNP\nJessey NNP\nJessica NNP\nJessie NNP\nJessy NNP\nJessye NNP\nJesuit NNP\nJesuits NNPS\nJesus NNP\nJet NNP\nJets NNP\nJetta NNP\nJetway NNP\nJeux FW\nJew NNP\nJew-as-enemy NN\nJew-baiter NN\nJew-haters NNS\nJewboy NN\nJewel NNP\nJewelers NNPS\nJewelery NNP\nJewell NNP\nJewelry NN\nJewett NNP\nJewish JJ\nJewish-Gentile NNP\nJewishness NN\nJewry NNP\nJews NNPS\nJeyes NNP\nJiang NNP\nJiangsu NNP\nJianying NNP\nJiaqi NNP\nJibril NNP\nJidge NNP\nJif NNP\nJiffy NNP\nJiffy-Couch-a-Bed NNP\nJihad NNP\nJihong NNP\nJill NNP\nJim NNP\nJima NNP\nJimbo NNP\nJimenez NNP\nJimmie NNP\nJimmy NNP\nJin NNP\nJin-Shung NNP\nJindo NNP\nJingoism NN\nJingsheng NNP\nJinny NNP\nJinshajiang NNP\nJiotto NNP\nJiri NNP\nJist RB\nJittery JJ\nJno NNP\nJo NNP\nJoAnn NNP\nJoachim NNP\nJoan NNP\nJoann NNP\nJoanna NNP\nJoanne NNP\nJoannie NNP\nJoao NNP\nJoaquin NNP\nJob NNP\nJob-Bias JJ\nJoban NNP\nJobs NNP\nJobson NNP\nJocelyn NNP\nJock NNP\nJockey NNP\nJodi NNP\nJody NNP\nJoe NNP\nJoel NNP\nJoerg NNP\nJoes NNS\nJoey NNP\nJoffre NNP\nJoffrey NNP\nJogjakarta NN\nJohan NNP\nJohann NNP\nJohanna NNP\nJohannesburg NNP\nJohansen NNP\nJohanson NNP\nJohansson NNP\nJohn NNP\nJohn-Henry NNP\nJohn-and-Linda NNP\nJohnnie NNP\nJohnny NNP\nJohns NNP\nJohns-Manville NNP\nJohnson NNP\nJohnson-Merck NNP\nJohnson-era NN\nJohnston NNP\nJohnstone NNP\nJohnstown NNP\nJohsen NNP\nJoin VB\nJoined VBN\nJoiners NNPS\nJoining VBG\nJoint NNP\nJoint-research JJ\nJoint-venture JJ\nJoker NNP\nJokes NNS\nJoking VBG\nJolas NNP\nJolivet NNP\nJolla NNP\nJolliffe NNP\nJolly JJ\nJolt NNP\nJon NNP\nJonas NNP\nJonathan NNP\nJones NNP\nJones-Imboden NNP\nJones-Irwin NNP\nJonesborough NNP\nJoneses NNPS\nJong NNP\nJoni NNP\nJonni NNP\nJonquieres NNP\nJoon NNP\nJoplin NN\nJorda NNP\nJordan NNP\nJordan\\/Zalaznick NNP\nJordanian JJ\nJordon NNP\nJordonelle NNP\nJorge NNP\nJorio NNP\nJorndt NNP\nJos NNP\nJose NNP\nJose-Maria NNP\nJosef NNP\nJoseph NNP\nJoseph-Daniel NNP\nJosephine NNP\nJosephson NNP\nJosephthal NNP\nJosephus NNP\nJosh NNP\nJoshi NNP\nJoshua NNP\nJoshual NNP\nJosiah NNP\nJossy NNP\nJotaro NNP\nJour NNP\nJournal NNP\nJournal-American NNP\nJournal-Bulletin NNP\nJournal\\ NNP\nJournal\\/Europe NNP\nJournal\\/NBC NNP\nJournalism NN\nJournalist NNP\nJournalists NNS\nJournals NNPS\nJourney NNP\nJourneys NNS\nJouvet NNP\nJovanovich NNP\nJovanovich\\/Bruccoli NNP\nJovi NNP\nJoviality NN\nJovian JJ\nJoy NNP\nJoyce NNP\nJoynt NNP\nJoyo NNP\nJozef NNP\nJr NNP\nJr. NNP\nJuan NNP\nJuanita NNP\nJuarez NNP\nJuarez-area NN\nJubal NNP\nJudah NNP\nJudaism NNP\nJudas NNP\nJudd-Boston NNP\nJude NNP\nJudea NNP\nJudeo-Christian JJ\nJudge NNP\nJudges NNS\nJudging VBG\nJudgment NNP\nJudgments NNS\nJudi NNP\nJudicial NNP\nJudiciary NNP\nJudie NNP\nJudith NNP\nJudson NNP\nJudsons NNPS\nJudy NNP\nJuergen NNP\nJuet NNP\nJuge NNP\nJugend NNP\nJuice NN\nJuilliard NNP\nJujo NNP\nJukes NNP\nJules NNP\nJulia NNP\nJulian NNP\nJuliano NNP\nJuliber NNP\nJulie NNP\nJuliet NNP\nJuliette NNP\nJulio NNP\nJulius NNP\nJuly NNP\nJuly-September JJ\nJump NN\nJumping VBG\nJuncal NNP\nJunction NNP\nJune NNP\nJune-to-September NNP\nJune. NN\nJuneau NNP\nJung NNP\nJunge NNP\nJungho NNP\nJungian NNP\nJungle NNP\nJunid NNP\nJunior JJ\nJuniors NNS\nJunius NNP\nJunk NN\nJunk-Bond NN\nJunk-bond JJ\nJunk-fund NN\nJunk-holders NNS\nJunk-portfolio NN\nJunkerdom NNP\nJunkers NNPS\nJunkholders NNS\nJunkins NNP\nJunor NNP\nJunsheng NNP\nJupiter NNP\nJupiter-bound JJ\nJuras NNP\nJurgen NNP\nJurisdiction NNP\nJurisprudence NN\nJurists NNP\nJurong NNP\nJurors NNP\nJury NNP\nJussel NNP\nJust RB\nJustice NNP\nJustices NNPS\nJustin NNP\nJustine NNP\nJustinian NNP\nJustino NNP\nJute NN\nJutish JJ\nJutting VBG\nJuvenile NNP\nJyoti NNP\nK NNP\nK'ang-si FW\nK-9 NNP\nK-H NNP\nK-resin NN\nK. NNP\nK.B. NNP\nK.C. NN\nK.G. NNP\nK.J.P. NNP\nK.L. NNP\nKAISER NNP\nKAL NNP\nKANEB NNP\nKARL NNP\nKB NNP\nKC NNP\nKC-10 NNP\nKC-135 NNP\nKC-135s NNS\nKCRA NNP\nKCS NNP\nKCs NNS\nKEARNEY NNP\nKEEPING VBG\nKEISHI NNP\nKETV NNP\nKEY JJ\nKFAC-FM NNP\nKFC NNP\nKGB NNP\nKGF NNP\nKHAD\\/WAD NN\nKICKING VBG\nKID NNP\nKIM NNP\nKIPPUR NNP\nKISSINGER NNP\nKK NNP\nKKK NNP\nKKR NNP\nKLA NNP\nKLERK NNP\nKLM NNP\nKLM-Northwest NNP\nKLM-controlled JJ\nKLUC NNP\nKLUC-FM NNP\nKMW NNP\nKN NNP\nKNOW VB\nKOBE NNP\nKODAK NNP\nKOFY NNP\nKOFY-FM NNP\nKOREAN JJ\nKPMG NNP\nKQED NNP\nKRAFT NNP\nKRAFT'S NNP\nKRC NNP\nKRENZ NNP\nKRON NNP\nKSAN NNP\nKSI NNP\nKTXL NNP\nKUHN NNP\nKV NNP\nKVA NNP\nKVDA NNP\nKWU NNP\nKabalevsky NNP\nKabel NNP\nKaboom NN\nKabul NNP\nKacy NNP\nKadane NNP\nKaddish NNP\nKaddurah-Daouk NNP\nKader NNP\nKadonada NNP\nKafaroff NNP\nKafka NNP\nKafkaesque JJ\nKagakushi NNP\nKagan NNP\nKaganovich NNP\nKageyama NNP\nKahan NNP\nKahiltna NNP\nKahler NNP\nKahler-Craft NNP\nKahn NNP\nKahwaty NNP\nKai NNP\nKai-shek NNP\nKaifu NNP\nKailin NNP\nKaina NNP\nKaiparowits NNP\nKaiser NNP\nKaisers NNPS\nKaisha NNP\nKaitaia NNP\nKaixi NNP\nKajar NNP\nKajima NNP\nKakadu NN\nKakita NNP\nKakuei NNP\nKakumaru NNP\nKakutani NNP\nKal NNP\nKalamazoo NNP\nKaldahl NNP\nKalentiev NNP\nKalevi NNP\nKali VBP\nKalikow NNP\nKalin NNP\nKaliniak NNP\nKalinowski NNP\nKalipharma NNP\nKalison NNP\nKalman NNP\nKalmuk NNP\nKalmus NNP\nKalonji NNP\nKaltschmitt NNP\nKalyagin NNP\nKalyani NNP\nKamal NNP\nKaman NNP\nKamchatka NNP\nKamehameha NNP\nKamel NNP\nKamemura NNP\nKamens NNP\nKamieniec NNP\nKamin NNP\nKaminski NNP\nKaminsky NNP\nKamloops NNP\nKamm NNP\nKamp NNP\nKampen NNP\nKan NNP\nKan. NNP\nKan.-based JJ\nKanab NNP\nKanaday NNP\nKanan NNP\nKandahar NNP\nKandemir NNP\nKandinsky NNP\nKandu NNP\nKane NNP\nKaneb NNP\nKanebo NN\nKanegafuchi NNP\nKang NNP\nKangaROOS NNP\nKangaroo NN\nKangas NNP\nKangyo NNP\nKanin NNP\nKanjorski NNP\nKankakee NNP\nKann NNP\nKanner NNP\nKano NNP\nKanoff NNP\nKanon NNP\nKans. NNP\nKansai NNP\nKansallis NNP\nKansan NNP\nKansas NNP\nKansas-Nebraska NNP\nKanska NNP\nKant NNP\nKanter NNP\nKanto NNP\nKantorei NNP\nKao NNP\nKaolin NNP\nKapadia NNP\nKaplan NNP\nKapnek NNP\nKapoor NNP\nKappa NNP\nKappil NNP\nKara NNP\nKaracan NNP\nKaralis NNP\nKaramazov NNP\nKaran NNP\nKarangelen NNP\nKarate NN\nKaratz NNP\nKarcher NNP\nKarcher-Everly NNP\nKarches NNP\nKare NNP\nKarel NNP\nKaren NNP\nKarene NNP\nKaret NNP\nKarim NNP\nKarin NNP\nKaripo NNP\nKarkazis NNP\nKarl NNP\nKarl-Birger NNP\nKarlheinz NNP\nKarlis NNP\nKarlsruhe NNP\nKarnak NNP\nKarnes NNP\nKarns NNP\nKarnsund NNP\nKaro NNP\nKarol NN\nKarolinerna NNP\nKarolinska NNP\nKaros NNP\nKarp NNP\nKarpa NNP\nKarpov NNP\nKarre NNP\nKarshilama NNP\nKarsner NNP\nKarstadt NNP\nKartalia NNP\nKartasasmita NNP\nKary NNP\nKas NNP\nKasai NNP\nKasavubu NNP\nKasen NNP\nKashing NNP\nKashpirovsky NNP\nKasiva NNP\nKaskaskia NNP\nKasler NNP\nKasparov NNP\nKasper NNP\nKasriel NNP\nKass NNP\nKass-Pedone NNP\nKassal NNP\nKassan NNP\nKassar NNP\nKassebaum NNP\nKassem NNP\nKasten NNP\nKaster NNP\nKatanga NNP\nKatangan JJ\nKatangans NNPS\nKatcher NNP\nKate NNP\nKatharina NNP\nKatharine NNP\nKathe NNP\nKatherine NNP\nKathie NNP\nKathleen NNP\nKathryn NNP\nKathy NNP\nKatie NNP\nKatims NNP\nKatmandu NNP\nKato NNP\nKatonah NNP\nKatow NNP\nKatsanos NNP\nKatsive NNP\nKatsuya NNP\nKattus NNP\nKatutura NNP\nKaty NNP\nKatya NNP\nKatz NNP\nKatzenjammer NNP\nKatzenstein NNP\nKauffeld NNP\nKauffmann NNP\nKaufhaus NNP\nKaufhof NNP\nKaufman NNP\nKaufmann NNP\nKaufnabb NNP\nKaul NNP\nKaulentis NNP\nKavanagh NNP\nKawasaki NNP\nKawasaki-Rikuso NNP\nKawecki NNP\nKay NNP\nKay-Bee NNP\nKayabashi NNP\nKayabashi-san NNP\nKaydon NNP\nKaye NNP\nKayne NNP\nKaysersberg NNP\nKayton NNP\nKaza NNP\nKazakh NNP\nKazakhstan NNP\nKazan NNP\nKazikaev NNP\nKazis NNP\nKazuhiko NNP\nKazuo NNP\nKazushige NNP\nKchessinska NNP\nKe NNP\nKean NNP\nKeane NNP\nKeansburg NNP\nKearney NNP\nKearns NNP\nKearny NNP\nKearton NNP\nKeath NNP\nKeating NNP\nKeatingland NNP\nKeats NNP\nKeck NNP\nKedgeree NN\nKedzie NNP\nKee-reist UH\nKeebler NNP\nKeeeerist UH\nKeefe NNP\nKeegan NNP\nKeehn NNP\nKeeler NNP\nKeeling NNP\nKeen NNP\nKeenan NNP\nKeene NNP\nKeeny NNP\nKeep VB\nKeepers NNS\nKeeping VBG\nKeeps VBZ\nKeerist UH\nKeeshond NN\nKeffer NNP\nKeg NNP\nKegham NNP\nKegler NNP\nKehl NNP\nKeidanren NNP\nKeihin NNP\nKeilin NNP\nKeillor NNP\nKeio NNP\nKeith NNP\nKeiyo NNP\nKeizai NNP\nKeizaikai NNP\nKeizer NNP\nKekisheva NNP\nKel NNP\nKell NNP\nKellar NNP\nKellaway NNP\nKelleher NNP\nKeller NNP\nKelley NNP\nKelli NNP\nKellmer NNP\nKellner NNP\nKellogg NNP\nKellogg-Briand NNP\nKellum NNP\nKellwood NNP\nKelly NNP\nKelly\\ NNP\nKelly\\/David NNP\nKelman NNP\nKelsey NNP\nKelsey-Hayes NNP\nKelseyville NNP\nKelton NNP\nKelts NNP\nKemble NNP\nKemchenjunga NNP\nKemm NNP\nKemp NNP\nKempe NNP\nKemper NNP\nKempinski NNP\nKempner NNP\nKemps NNP\nKen NNP\nKenan NNP\nKendall NNP\nKendrick NNP\nKeng NNP\nKenilworth NNP\nKenji NNP\nKenlake NNP\nKenmare NNP\nKenmore NNP\nKennametal NNP\nKennan NNP\nKennard NNP\nKennedy NNP\nKennedy'joie NN\nKennedy-Waxman NNP\nKennedy-wordsmith NNP\nKennedyesque JJ\nKennel NNP\nKennelly NNP\nKenner NNP\nKenneth NNP\nKennett NNP\nKennewick NNP\nKenney NNP\nKennington NNP\nKennon NNP\nKenny NNP\nKenosha NNP\nKensetsu NNP\nKensington NNP\nKent NNP\nKentfield NNP\nKenton NNP\nKentuck NNP\nKentucky NNP\nKenworthy NNP\nKenya NNP\nKenyan JJ\nKenyans NNPS\nKenyon NNP\nKenzo NNP\nKeo NNP\nKeogh NNP\nKeough NNP\nKepler NNP\nKerby NNP\nKercheval NNP\nKerensky NNP\nKerich NNP\nKerkorian NNP\nKerkorian-owned JJ\nKerlone NNP\nKermit NNP\nKern NNP\nKernel NNP\nKerner NNP\nKerosene NN\nKerouac NNP\nKerr NNP\nKerr-McGee NNP\nKerr-Mills NNP\nKerrMcGee NNP\nKerrey NNP\nKerrville NNP\nKerry NNP\nKerschner NNP\nKershbaum NNP\nKersley NNP\nKerson NNP\nKerstin NNP\nKeschl NNP\nKeshtmand NNP\nKessler NNP\nKestner NNP\nKeswick NNP\nKetchikan NNP\nKetchum NNP\nKetelsen NNP\nKeteyian NNP\nKeul NNP\nKevah NNP\nKevin NNP\nKevlar NNP\nKey NNP\nKeye\\/Donna\\/Pearlstein NN\nKeyes NNP\nKeynes NNP\nKeynesian JJ\nKeynesians NNPS\nKeynotes NNS\nKeys NNP\nKeystone NNP\nKezar NNP\nKezziah NNP\nKhaju NNP\nKhalifa NNP\nKhan NNP\nKhare NNP\nKhartoum NNP\nKhasi NNP\nKheel NNP\nKhin NNP\nKhivrich NNP\nKhmer NNP\nKhomeini NNP\nKhomeni NNP\nKhost NNP\nKhouja NNP\nKhrush NNP\nKhrushchev NNP\nKhrushchevs NNPS\nKhustndinov NNP\nKia NNP\nKiam NNP\nKian NNP\nKiang NNP\nKiarti NNP\nKibbutz NNP\nKibbutzim NNS\nKibbutzniks NNS\nKid NNP\nKid-Isoletta NNP\nKidd NNP\nKidder NNP\nKiddie NNP\nKidnaper NN\nKidnapper NN\nKids NNP\nKieffer NNP\nKiefferm NNP\nKiel NNP\nKiep NNP\nKieran NNP\nKieslowski NNP\nKiev NNP\nKihei NNP\nKika NNP\nKiki NNP\nKikiyus NNPS\nKikkoman NNP\nKiko NNP\nKikuyu NNP\nKildare NNP\nKilduff NNP\nKiley NNP\nKilhour NNP\nKililngsworth NNP\nKill VB\nKillebrew NNP\nKilleen NNP\nKillelea NNP\nKillen NNP\nKiller NNP\nKillers NNPS\nKilling NN\nKillingsworth NNP\nKillington NNP\nKillion NNP\nKillips NNP\nKillory NNP\nKillow NNP\nKillpath NNP\nKilpatrick NNP\nKilty NNP\nKim NNP\nKimba NNP\nKimball NNP\nKimbark NNP\nKimbell-Diamond NNP\nKimberly NNP\nKimberly-Clark NNP\nKimbolton NNP\nKimbrough NNP\nKimco NNP\nKimihide NNP\nKimmel NNP\nKimmell NNP\nKimmelman NNP\nKimpton NNP\nKims NNPS\nKimsong NNP\nKincannon NNP\nKind NN\nKinda RB\nKinder-Care NNP\nKinderCare NNP\nKindergarten NN\nKindertotenlieder FW\nKing NNP\nKingan NNP\nKingdom NNP\nKingdom-based JJ\nKingdome NNP\nKingfisher NNP\nKingman NNP\nKingpin NN\nKings NNP\nKingsbridge NNP\nKingsepp NNP\nKingsford NNP\nKingsley NNP\nKingston NNP\nKingstown NNP\nKingsville NNP\nKingwood NNP\nKinji NNP\nKinkaid NNP\nKinnard NNP\nKinnear NNP\nKinnett NNP\nKinnevik NNP\nKinney NNP\nKinnock NNP\nKinsell NNP\nKinsey NNP\nKinsley NNP\nKiowa NNP\nKip NNP\nKipling NNP\nKipp NNP\nKippur NNP\nKira NNP\nKiran NNP\nKirby NNP\nKirchberger NNP\nKirghiz NNP\nKirgizia NNP\nKirin NNP\nKirk NNP\nKirkendall NNP\nKirkland NNP\nKirkpatrick NNP\nKirkwood NNP\nKirnan NNP\nKirov NNP\nKirsch NNP\nKirschbaum NNP\nKirschner NNP\nKiryat NNP\nKis NNP\nKisen NNP\nKisha FW\nKishimoto NNP\nKiss VB\nKissak NNP\nKisscorni NNP\nKissick NNP\nKissin NNP\nKissing VBG\nKissinger NNP\nKit NN\nKita NNP\nKitada NNP\nKitamura NNP\nKitaro NNP\nKitcat NNP\nKitchen NNP\nKitchin NNP\nKitti NNP\nKittler NNP\nKittredge NNP\nKitty NNP\nKivu NNP\nKiwanis NNP\nKiyoi NNP\nKiyotaka NNP\nKiz NNP\nKizzie NNP\nKlamath NNP\nKlan NNP\nKlansmen NNPS\nKlass NNP\nKlatman NNP\nKlatsky NNP\nKlauber NNP\nKlauer NNP\nKlaus NNP\nKlauser NNP\nKlawitter NNP\nKleber NNP\nKleenex NNP\nKlees NNP\nKleiber NNP\nKleiman NNP\nKlein NNP\nKleinaitis NNP\nKleiner NNP\nKleinman NNP\nKleinwort NNP\nKleissas NNP\nKleist NNP\nKlejna NNP\nKlemperer NNP\nKlerk NNP\nKlesken NNP\nKlette NNP\nKligman NNP\nKlimpl NNP\nKlimt NNP\nKline NNP\nKlineberg NNP\nKlinger NNP\nKlinico NNP\nKlinsky NNP\nKlipstein NNP\nKloeckner NNP\nKloman NNP\nKlondike NNP\nKloner NNP\nKlopfenstein NNP\nKloske NNP\nKloves NNP\nKluckhohn NNP\nKluge NNP\nKlugt NNP\nKlute NNP\nKlux NNP\nKnapek NNP\nKnapp NNP\nKnappertsbusch NNP\nKnauer NNP\nKnead VB\nKneale NNP\nKnecht NNP\nKnee NN\nKneeling VBG\nKnesset NNP\nKnickerbocker NNP\nKnife NNP\nKnife-grinder NNP\nKnight NNP\nKnight-Ridder NNP\nKnightes NNP\nKnightfall NNP\nKnights NNP\nKnightsbridge NNP\nKnill NNP\nKnit VB\nKnitwear NNP\nKnock VB\nKnogo NNP\nKnoll NNP\nKnopf NNP\nKnorr NNP\nKnots NNP\nKnow VB\nKnow-Nothing JJ\nKnow-nothings NNS\nKnowing VBG\nKnowledge NN\nKnowledgeWare NNP\nKnowledgeable JJ\nKnowledgeware NNP\nKnowlton NNP\nKnown VBN\nKnows VBZ\nKnox NNP\nKnox-like JJ\nKnoxville NNP\nKnudsen NNP\nKnudson NNP\nKnuettel NNP\nKnupp NNP\nKnute NNP\nKnutz NNP\nKo NNP\nKoa NNP\nKobacker NNP\nKobayashi NNP\nKobe NNP\nKobrand NNP\nKoch NNP\nKochan NNP\nKochanek NNP\nKochaneks NNPS\nKochis NNP\nKochitov NNP\nKochola NNP\nKodak NNP\nKodaks NNPS\nKodama NNP\nKodansha NNP\nKodiak NNP\nKodyke NNP\nKoehler NNP\nKoenig NNP\nKoenigsberg NNP\nKoepf NNP\nKoeppel NNP\nKoerner NNP\nKofanes NNS\nKofcoh NNP\nKoffman NNP\nKogan NNP\nKogyo NNP\nKoh NNP\nKohi FW\nKohl NNP\nKohlberg NNP\nKohler NNP\nKohnstamm NNP\nKohnstamm-negative JJ\nKohnstamm-positive JJ\nKohrs NNP\nKohut NNP\nKoito NNP\nKoizumi NNP\nKoji NNP\nKok NNP\nKokoschka NNP\nKokubu NNP\nKokusai NNP\nKolakowski NNP\nKolb NNP\nKolber NNP\nKolberg NNP\nKolff NNP\nKollmorgen NNP\nKolman NNP\nKolpakova NNP\nKolsrud NNP\nKolstad NNP\nKomatsu NNP\nKombo NNP\nKomleva NNP\nKomori NNP\nKompakt NNP\nKomsomol NNP\nKomsomolskaya NNP\nKomurasaki NNP\nKon NNP\nKona NNP\nKondo NNP\nKondratas NNP\nKong NNP\nKong-based JJ\nKong-dollar NN\nKongsberg NNP\nKonheim NNP\nKonigsberg NNP\nKonikow NNP\nKoninklijke NNP\nKonishi NNP\nKonitz NNP\nKonner NNP\nKonopnicki NNP\nKonowitch NNP\nKonrad NNP\nKonstantin NNP\nKontrollbank NNP\nKonzerthaus NNP\nKooks NNPS\nKool-Aid NNP\nKooning NNP\nKoop NNP\nKoopman NNP\nKoor NNP\nKooten NNP\nKopcke NNP\nKopp NNP\nKoppel NNP\nKoppers NNP\nKopstein NNP\nKoran NNP\nKorando NNP\nKorbich NNP\nKorbin NNP\nKorda NNP\nKorea NNP\nKorea-basher NN\nKoreagate NNP\nKorean JJ\nKorean-American JJ\nKorean-Americans NNPS\nKorean-U.S. NNP\nKoreans NNPS\nKorff NNP\nKori NNP\nKorman NNP\nKorn NNP\nKorn\\/Ferry NNP\nKornbluth NNP\nKornevey NNP\nKorneyev NNP\nKorneyeva NNP\nKornfield NNP\nKorngold NNP\nKornick NNP\nKornreich NNP\nKorobytsin NNP\nKorobytsins NNS\nKorotich NNP\nKorowin NNP\nKorps NNP\nKorra NNP\nKors NNP\nKortunov NNP\nKory NNP\nKos NNP\nKosan NNP\nKosar NNP\nKoshare NNP\nKoshland NNP\nKoskotas NNP\nKosonen NNP\nKosovo NNP\nKossuth NNP\nKostelanetz NNP\nKotman NNP\nKotobuki NNP\nKots NNP\nKouji NNP\nKoussevitzky NNP\nKovacic NNP\nKowa NNP\nKowalski NNP\nKoyata NNP\nKoyo NNP\nKozak NNP\nKozinski NNP\nKozintsev NNP\nKozloff NNP\nKozuo NNP\nKraemer NN\nKraft NNP\nKrakatoa NNP\nKrakow NNP\nKrakowiak NNP\nKramer NNP\nKrampe NNP\nKrane NNP\nKrapels NNP\nKrapp NNP\nKrasnik NNP\nKrasnow NNP\nKrasnoyarsk NNP\nKrat NNP\nKrause NNP\nKrauss NNP\nKrauss-Maffei NNP\nKrauts NNS\nKravis NNP\nKravitz NNP\nKrebs NNP\nKredietbank NNP\nKreditanstalt NNP\nKreditkasse NNP\nKreisler NNP\nKremlin NNP\nKrenz NNP\nKrepon NNP\nKresa NNP\nKress NNP\nKretchmer NNP\nKreuter NNP\nKreutzer NNP\nKrick NNP\nKrieger NNP\nKrim NNP\nKrims NNPS\nKringle NNP\nKrisher NNP\nKrishna NNP\nKrishnaists NNS\nKrishnamurthy NNP\nKrishnaswami NNP\nKrispies NNPS\nKriss NNP\nKrist UH\nKristallstrukturen FW\nKristen NNP\nKristiansen NNP\nKristin NNP\nKristine NNP\nKristol NNP\nKriz NNP\nKroc NNP\nKroczek NNP\nKroening NNP\nKroger NNP\nKrogers NNPS\nKrohley NNP\nKrohn NNP\nKroll NNP\nKroller-Muller NNP\nKromy NNP\nKron NNP\nKronenberger NNP\nKronish NNP\nKropp NNP\nKrueger NNP\nKrug NNP\nKruger NNP\nKruk NNP\nKrumpp NNP\nKrupa NNP\nKrupp NNP\nKrutch NNP\nKrutchensky NNP\nKrys NNP\nKrysalis NNP\nKrystallographie NNP\nKryuchkov NNP\nKrzysztof NNP\nKrzywy-Rog NNP\nKu NNP\nKuala NNP\nKuan NNP\nKubek NNP\nKucharski NNP\nKudlow NNP\nKuehler NNP\nKuehn NNP\nKueneke NNP\nKuhlke NNP\nKuhlman NNP\nKuhn NNP\nKuhns NNP\nKuiper NNP\nKulani NNP\nKulongoski NNP\nKulturbund NNP\nKum NNP\nKumagai NNP\nKumagai-Gumi NNP\nKumble NNP\nKume NNP\nKummerfeld NNP\nKunashir NNP\nKung NN\nKuniji NNP\nKunkel NNP\nKunste NNP\nKunz NNP\nKunze NNP\nKuomintang NNP\nKuparuk NNP\nKupcinet NNP\nKupelian NNP\nKuperberg NNP\nKupor NNP\nKurabo NNP\nKuraray NNP\nKurd NNP\nKurdish JJ\nKurds NNPS\nKurigalzu NNP\nKurile NNP\nKuriles NNP\nKurlak NNP\nKurland NNP\nKurlander NNP\nKurnit NNP\nKurosaki NNP\nKursk NNP\nKurt NNP\nKurtanjek NNP\nKurth NNP\nKurtwood NNP\nKurtz NNP\nKurtzig NNP\nKurzweil NNP\nKuse NNP\nKuser NNP\nKushkin NNP\nKushnick NNP\nKuster NNP\nKutak NNP\nKutney NNP\nKuttner NNP\nKutz NNP\nKutzke NNP\nKuvin NNP\nKuwAm NNP\nKuwait NNP\nKuwaiti JJ\nKwaishinsha NNP\nKwame NNP\nKwan NNP\nKwang NNP\nKwango NNP\nKwasha NNP\nKweisi NNP\nKwek NNP\nKwik NNP\nKwon NNP\nKwong NNP\nKy NNP\nKy. NNP\nKy.-based JJ\nKyi NNP\nKylberg NNP\nKyle NNP\nKymberly NNP\nKyne NNP\nKynikos NNP\nKyo NNP\nKyo-zan NN\nKyocera NNP\nKyodo NNP\nKyong NNP\nKyoto NNP\nKyowa NNP\nKysor NNP\nKyu NNP\nKyushu NNP\nKyzyl NNP\nL NNP\nL&N NNP\nL'Arcade NNP\nL'Astree NNP\nL'Heureux NNP\nL'Imperiale NNP\nL'Institut NN\nL'Oreal NNP\nL'Turu NNP\nL'Union NNP\nL'Unita NNP\nL'incoronazione FW\nL'orchestre NNP\nL-1011 NNP\nL-5-vinyl-2-thio-oxazolidone NN\nL-P NNP\nL-shaped JJ\nL. NNP\nL.A NNP\nL.A. NNP\nL.B. NNP\nL.C. NNP\nL.E. NNP\nL.F. NNP\nL.H. NNP\nL.J. NNP\nL.L. NNP\nL.M. NNP\nL.P NNP\nL.P. NNP\nL.P.V NNP\nL.R. NNP\nL.S.U. NNP\nL.T. NNP\nLA NNP\nLABOR NNP\nLABORATORIES NNP\nLAC NNP\nLAMBERT NNP\nLAN NNP\nLAND NNP\nLANDOR NNP\nLARGEST JJS\nLASHED VBD\nLAST JJ\nLATE JJ\nLATE-BREAKING JJ\nLATEST JJS\nLAW NN\nLAWMAKERS NNS\nLAWSON NNP\nLAWYER NN\nLAWYERS NNS\nLAYOFFS NNS\nLBJ NNP\nLBO NNP\nLBO-related JJ\nLBOs NNS\nLD NN\nLD056 NN\nLD060 NN\nLDC NNP\nLDCs NNPS\nLDI NNP\nLDP NNP\nLDS NNP\nLEADER NN\nLEADERS NNS\nLEAVE NN\nLEAVING VBG\nLEBANESE JJ\nLEHMAN NNP\nLENSES NNS\nLETTER NN\nLEVERAGED VBN\nLEVINE NNP\nLIBERTY NNP\nLIBOR NNP\nLICENSE NN\nLIES VBZ\nLIFETIME NNP\nLIKE IN\nLIL NNP\nLIMB NN\nLIMITED JJ\nLIN NNP\nLIN-BellSouth JJ\nLINCOLN NNP\nLINK-UP NN\nLINTAS NNP\nLISA NNP\nLIT NNP\nLITORIGIN NN\nLIVE JJ\nLIVERPOOL NNP\nLIVESTOCK NNP\nLJH NNP\nLJN NNP\nLLerena NNP\nLM NNP\nLMAO UH\nLMBO UH\nLME NNP\nLMEYER NNP\nLMFAO UH\nLOAN NNP\nLOBBIES VBZ\nLOBSTERS NNS\nLOC NNP\nLOCKHEED NNP\nLOGIC NNP\nLOL UH\nLONDON NNP\nLONG-TERM JJ\nLONGS NNP\nLOOKING VBG\nLOOM VBZ\nLOS NNP\nLOSES VBZ\nLOSSES NNS\nLOSS\\ NN\nLOT NNP\nLOTUS NNP\nLOUIS NNP\nLOVE VB\nLOW RB\nLOWER JJR\nLP NNP\nLPL NNP\nLS NNP\nLS400 NNP\nLSC NNP\nLSI NNP\nLSO NNP\nLSU NNP\nLSX NNP\nLTCB NNP\nLTD NNP\nLTV NNP\nLUTHER NNP\nLUXURY NN\nLVI NNP\nLVMH NNP\nLX NNP\nLXI NNP\nLXi NNP\nLYNCH NNP\nLYONs NNS\nLa NNP\nLa-la-landers NNS\nLa. NNP\nLaBella NNP\nLaBerge NNP\nLaBonte NNP\nLaBoon NNP\nLaBow NNP\nLaCroix NNP\nLaFalce NNP\nLaGow NNP\nLaGrange NNP\nLaGuardia NNP\nLaLonde NNP\nLaMacchia NNP\nLaMantia NNP\nLaMore NNP\nLaMothe NNP\nLaRiviere NNP\nLaRosa NNP\nLaSalle NNP\nLaWare NNP\nLaWarre NNP\nLab NNP\nLaban NNP\nLaband NNP\nLabans NNP\nLabaton NNP\nLabatt NNP\nLabe NNP\nLabeling VBG\nLabor NNP\nLaboratories NNPS\nLaboratorium NNP\nLaboratory NNP\nLaboring VBG\nLabothe NNP\nLabouisse NNP\nLabour NNP\nLabovitz NNP\nLabow NNP\nLabrador NNP\nLabs NNPS\nLac NNP\nLacey NNP\nLachica NNP\nLack NN\nLackey NNP\nLacking VBG\nLackland NNP\nLackluster JJ\nLacroix NNP\nLacy NNP\nLada NNP\nLadas NNP\nLadbroke NNP\nLadd NNP\nLadehoff NNP\nLadenburg NNP\nLadgham NNP\nLadies NNP\nLadislav NNP\nLady NNP\nLaenderbank NNP\nLafarge NNP\nLafayette NNP\nLafe NNP\nLaff NNP\nLafite-Rothschild NNP\nLafontant NNP\nLag NN\nLagerlof NNP\nLagnado NNP\nLagonda NNP\nLagoon NNP\nLagrange NNP\nLags VBZ\nLaguerre NNP\nLaguna NNP\nLahan NNP\nLahus NNP\nLai NNP\nLaicos NNP\nLaidig NNP\nLaidlaw NNP\nLaima NNP\nLaing NNP\nLaird NNP\nLake NNP\nLakeland NNP\nLaker NNP\nLakers NNP\nLakes NNPS\nLakeshore NNP\nLakewood NNP\nLakshmipura NNP\nLal NNP\nLalaurie NNP\nLalauries NNPS\nLama NNP\nLamalie NNP\nLamar NNP\nLamarche NNP\nLamb NNP\nLambarene NNP\nLambda NNP\nLamberjack NNP\nLambert NNP\nLamberth NNP\nLambeth NNP\nLamborghini NNP\nLamentation NNP\nLamle NNP\nLamm NNP\nLamma NNP\nLammermoor NNP\nLamon NNP\nLamos NNP\nLampe NNP\nLamphere NNP\nLampoon NNP\nLamson NNP\nLamy NNP\nLamy-Lutti NNP\nLana NNP\nLancashire NNP\nLancaster NNP\nLance NNP\nLancet NNP\nLancia NNP\nLancome NNP\nLancret NNP\nLand NNP\nLand-O-Sun NNP\nLand-Rover NNP\nLand-based JJ\nLanda NNP\nLandau NNP\nLande NNP\nLander NNP\nLanderbank NNP\nLanders NNP\nLandesbank NNP\nLandesbank-Girozentrale NNP\nLandesco NNP\nLandesrentenbank NNP\nLandfill NN\nLanding NNP\nLandini NNP\nLandis NNP\nLandmark NNP\nLandon NNP\nLandonne NNP\nLandor NNP\nLandover NNP\nLandowners NNS\nLandrieu NNP\nLandrum-Griffin NNP\nLandry NNP\nLands NNPS\nLandscape NNP\nLane NNP\nLanes NNS\nLanese NNP\nLanesmanship NN\nLanesville NNP\nLang NNP\nLangbo NNP\nLangeland NNP\nLangendorf NNP\nLanger NNP\nLangevin NNP\nLangford NNP\nLanghorne NNP\nLangley NNP\nLangner NNP\nLangsdorf NNP\nLangstaff NNP\nLangton NNP\nLanguage NN\nLanguages NNP\nLanham NNP\nLanier NNP\nLanin NNP\nLanka NNP\nLankford NNP\nLannon NNP\nLanny NNP\nLansbury NNP\nLansing NNP\nLanston NNP\nLante NNP\nLantos NNP\nLantz NNP\nLanvin NNP\nLanvin-owned JJ\nLanyi NNP\nLanza NNP\nLanzhou NNP\nLao NNP\nLao-tse NNP\nLaodicean JJ\nLaos NNP\nLaotian JJ\nLaotians NNS\nLap NNP\nLapham NNP\nLaphroaig NNP\nLapides NNP\nLapin FW\nLaplace NNP\nLapointe NNP\nLaporte NNP\nLapp NNP\nLappenberg NNP\nLappenburg-Kemble NNP\nLapps NNPS\nLaptev NNP\nLaptop NN\nLaptops NNS\nLara NNP\nLaramie NNP\nLarchmont NNP\nLaredo NNP\nLarge JJ\nLarge-deposit JJ\nLarge-package JJ\nLarge-screen JJ\nLargely RB\nLarger JJR\nLargo NNP\nLarimer NNP\nLarisa NNP\nLarish NNP\nLark NNP\nLarkin NNP\nLarkins NNP\nLarkspur NNP\nLaro NNP\nLarry NNP\nLars NNP\nLars-Erik NNP\nLarsen NNP\nLarson NNP\nLarsson NNP\nLas NNP\nLascar NNP\nLascivious NNP\nLasco NNP\nLaser NNP\nLaserTripter NNP\nLaserWriter NNP\nLasers NNS\nLaserscope NNP\nLashof NNP\nLasker NNP\nLasmo NNP\nLasorda NNP\nLass NNP\nLassie NNP\nLassila NNP\nLassus NNP\nLasswitz NNP\nLast JJ\nLastly RB\nLaswick NNP\nLaszlo NNP\nLatchford NNP\nLate RB\nLate-night JJ\nLateiner NNP\nLately RB\nLater RB\nLateral NNP\nLateran NNP\nLatest JJS\nLatest-quarter JJ\nLatham NNP\nLathouris NNP\nLatin NNP\nLatino JJ\nLatinovich NNP\nLatour NNP\nLatowski NNP\nLatter NN\nLatter-day JJ\nLattice NNP\nLattimer NNP\nLatvia NNP\nLatvian JJ\nLatvians NNPS\nLauber NNP\nLauchli NNP\nLaudably RB\nLaude NNP\nLauder NNP\nLauderdale NNP\nLauderhill NNP\nLaue NNP\nLauer NNP\nLaufenberg NNP\nLaugh NNP\nLaughing NNP\nLaughlin NNP\nLaunch NN\nLaunched VBN\nLaunches VBZ\nLaunching VBG\nLaunder NNP\nLaunder-Ometer NNP\nLaundered VBN\nLaura NNP\nLaurance NNP\nLaurel NNP\nLauren NNP\nLaurence NNP\nLaurene NNP\nLaurent NNP\nLaurentian NNP\nLaurentiis NNP\nLaurents NNP\nLauri NNP\nLaurie NNP\nLauritsen NNP\nLauritz NNP\nLauro NNP\nLausanne NNP\nLautenbach NNP\nLautenberg NNP\nLautner NNP\nLaux NNP\nLaval NNP\nLavallade NNP\nLavaro NN\nLavato NNP\nLavaughn NNP\nLavelle NNP\nLaventhol NNP\nLaverne\\ JJ\nLaverty NNP\nLavery NNP\nLavidge NNP\nLavin NNP\nLavity NNP\nLavoisier NNP\nLavoro NNP\nLaw NNP\nLaw-enforcement JJ\nLawford NNP\nLawful JJ\nLawless NNP\nLawmakers NNS\nLawmaking JJ\nLawn NNP\nLawn-Boy NNP\nLawrence NNP\nLawrenceville NNP\nLawrenson NNP\nLaws NNS\nLawson NNP\nLawson-Walters NNP\nLawsuit NNP\nLawsuits NNS\nLawton NNP\nLawyer NNP\nLawyers NNS\nLay NNP\nLaying VBG\nLayman NNP\nLayout NN\nLayton NNP\nLazar NNP\nLazard NNP\nLazare NNP\nLazarus NNP\nLazy NNP\nLazybones NNP\nLazzaroni NNP\nLazzeri NNP\nLe NNP\nLeBaron NNP\nLeBoutillier NNP\nLeBow NNP\nLeBron NNP\nLeBrun NNP\nLeCarre NNP\nLeCave NNP\nLeClair NNP\nLeCompte NNP\nLeFevre NNP\nLeFrere NNP\nLeGere NNP\nLeMans NNP\nLeMasters NNP\nLeMay NNP\nLePatner NNP\nLeRoy NNP\nLeSabre NNP\nLeSourd NNP\nLeVecke NNP\nLea NNP\nLeach NNP\nLead JJ\nLeadbetter NNP\nLeader NNP\nLeaders NNS\nLeadership NN\nLeading VBG\nLeads VBZ\nLeaf NN\nLeague NNP\nLeague-sponsored JJ\nLeaguers NNP\nLeagues NNPS\nLeahy NNP\nLeale NNP\nLeamington NNP\nLean NNP\nLeaning VBG\nLeap NNP\nLeaping VBG\nLear NNP\nLearn VB\nLearned NNP\nLearning NNP\nLeary NNP\nLeasco NNP\nLease NNP\nLeaseway NNP\nLeasing NNP\nLeason NNP\nLeast JJS\nLeast-cost JJ\nLeasure NN\nLeath NNP\nLeather NNP\nLeatherman NNP\nLeatherneck NNP\nLeave VB\nLeavenworth NNP\nLeaves NNS\nLeaving VBG\nLeavitt NNP\nLebanese JJ\nLebanese-controlled JJ\nLebanon NNP\nLebans NNP\nLeben NNP\nLeber NNP\nLeblanc NNP\nLeblang NNP\nLebo NNP\nLebow NNP\nLebron NNP\nLecTec NNP\nLech NNP\nLeche NNP\nLecheria NNP\nLecky NNP\nLectec NNP\nLecture NNP\nLecturer NNP\nLectures NNPS\nLed VBN\nLederberg NNP\nLederer NNP\nLederle NNP\nLedford NNP\nLedge NN\nLedger NNP\nLedoux NNP\nLedyard NNP\nLee NNP\nLee-based JJ\nLeech NNP\nLeeches NNS\nLeeds NNP\nLeemans NNP\nLeery JJ\nLees NNP\nLeesona NNP\nLeesona-Holt NNP\nLeet NNP\nLeeward NNP\nLeeza NNP\nLefcourt NNP\nLefebvre NNP\nLefevre NNP\nLefferts NNP\nLeft NNP\nLeft-Wing NNP\nLeft-stream JJ\nLeftist JJ\nLeftovers NNP\nLefty NNP\nLeg NNP\nLegal NNP\nLegalization NN\nLegalizing VBG\nLegally RB\nLegend NNP\nLegends NNPS\nLegent NNP\nLeger NNP\nLegers NNPS\nLegg NNP\nLeggett NNP\nLegion NNP\nLegionnaire NNP\nLegislating VBG\nLegislation NN\nLegislative NNP\nLegislators NNS\nLegislature NNP\nLegislatures NNS\nLegitimate JJ\nLegittino NNP\nLego NNP\nLegs NNS\nLehar NNP\nLehder NNP\nLehigh NNP\nLehman NNP\nLehman\\/American NNP\nLehmann NNP\nLehmans NNPS\nLehn NNP\nLehne NNP\nLehner NNP\nLehtinen NNP\nLeibler NNP\nLeibowitz NNP\nLeiby NNP\nLeica NNP\nLeichtman NNP\nLeiden NN\nLeigh NNP\nLeigh-Pemberton NNP\nLeighfield NNP\nLeighton NNP\nLeila NNP\nLeinberger NNP\nLeinoff NNP\nLeinonen NNP\nLeipzig NNP\nLeish NNP\nLeisire NNP\nLeisure NNP\nLeisurely RB\nLeitz NNP\nLeixlip NNP\nLek NNP\nLekberg NNP\nLeland NNP\nLeleiohaku NNP\nLelogeais NNP\nLemanowicz NNP\nLemans NNP\nLeming NNP\nLemma NN\nLemme VB\nLemmon NNP\nLemon NNP\nLemont NNP\nLempesis NNP\nLemuel NNP\nLen NNP\nLena NNP\nLenaghan NNP\nLencioni NNP\nLend VB\nLender NNP\nLenders NNS\nLending NN\nLendrum NNP\nLeng NNP\nLength NN\nLengthening VBG\nLengwin NNP\nLeni NNP\nLenin NNP\nLeningrad NNP\nLeningrad-Kirov NNP\nLeninism-Marxism NNP\nLeninist NNP\nLeninskoye NNP\nLennie NNP\nLennon NNP\nLennox NNP\nLenny NNP\nLeno NNP\nLenobel NNP\nLens NNP\nLent NNP\nLentjes NNP\nLenwood NNP\nLeny NNP\nLenygon NNP\nLeo NNP\nLeobardo NNP\nLeominster NNP\nLeon NNP\nLeona NNP\nLeonard NNP\nLeonardo NNP\nLeonato NNP\nLeone NNP\nLeonel NNP\nLeong NNP\nLeonid NNP\nLeonidas NNP\nLeonore NNP\nLeontief NNP\nLeopard NNP\nLeopold NNP\nLeopoldville NNP\nLep NNP\nLepercq NNP\nLeperq NNP\nLeponex NNP\nLeppard NNP\nLerach NNP\nLerman NNP\nLermer NNP\nLerner NNP\nLeroy NNP\nLes NNP\nLesbian NNP\nLescaut NNP\nLescaze NNP\nLesch-Nyhan NNP\nLeschly NNP\nLeser NNP\nLeshem NNP\nLesk NNP\nLesko NNP\nLesley NNP\nLesley-Anne NNP\nLeslie NNP\nLespinasse NNP\nLess RBR\nLess-than-truckload JJ\nLessening VBG\nLesser NNP\nLessing NNP\nLessner NNP\nLesson NN\nLessons NNS\nLester NNP\nLestoil NNP\nLesutis NNP\nLeszek NNP\nLet VB\nLet's VB\nLetch NNP\nLethal NNP\nLethcoe NNP\nLetitia NNP\nLets VB\nLett NNP\nLetter NNP\nLetterman NNP\nLetters NNS\nLetting VBG\nLeu NNP\nLeubert NNP\nLeucadia NNP\nLeuffer NNP\nLeukemia NNP\nLeumi NNP\nLeuzzi NNP\nLev NNP\nLeval NNP\nLevamisole NN\nLevel NNP\nLeven NNP\nLevenson NNP\nLeventhal NNP\nLever NNP\nLeverage NN\nLeveraged JJ\nLeverett NNP\nLeverkuhn NNP\nLeverkusen NNP\nLevert NNP\nLevesque NNP\nLevi NNP\nLevin NNP\nLevina NNP\nLevine NNP\nLevinger NNP\nLevinson NNP\nLevitt NNP\nLevittown NNP\nLevki NNP\nLevy NNP\nLew NNP\nLewala NNP\nLewco NNP\nLewellen NNP\nLewelleyn NNP\nLewellyn NNP\nLewin NNP\nLewinton NNP\nLewis NNP\nLewisohn NNP\nLewiston NNP\nLewtas NNP\nLex NNP\nLexington NNP\nLexington-based JJ\nLexus NNP\nLeyden NN\nLeyland NNP\nLeyse NNP\nLeyte NNP\nLeyva NNP\nLezovich NNP\nLi NNP\nLi'l JJ\nLiability NN\nLiaison NNP\nLiaisons NNS\nLiang NNP\nLiar NN\nLibel NNP\nLiber NNP\nLibera FW\nLiberace NNP\nLiberal NNP\nLiberal-Radical NNP\nLiberalism NN\nLiberals NNPS\nLiberated VBN\nLiberating VBG\nLiberation NNP\nLiberia NNPS\nLiberian JJ\nLiberman NNP\nLiberties NNPS\nLibertines NNS\nLiberty NNP\nLiberty-and-Union NN\nLibor NNP\nLibrarians NNS\nLibrary NNP\nLibrium NNP\nLibya NNP\nLibyan JJ\nLibyans NNPS\nLicense NN\nLicenses NNP\nLicht NNP\nLichtblau NNP\nLichtenstein NNP\nLicks NNP\nLiddell NNP\nLiddle NNP\nLidex NNP\nLidgerwood NNP\nLido NNP\nLidov NNP\nLids NNS\nLie NNP\nLieb NNP\nLiebenow NNP\nLieber NNP\nLieberman NNP\nLieberthal NNP\nLiebler NNP\nLiebowitz NNP\nLiechtenstein NNP\nLied NNP\nLien NN\nLieppe NNP\nLies NN\nLieut NN\nLieutenant NNP\nLieutenant-Colonel NNP\nLieutenant-Governor NNP\nLife NNP\nLife-preservers NNS\nLifeSavers NNPS\nLifeSpan NNP\nLifeboat NNP\nLifeco NNP\nLifecodes NNPS\nLifeguard NN\nLifeguards NNS\nLifestyle NNP\nLifestyles NNPS\nLifetime NNP\nLiffe NNP\nLifland NNP\nLifson NNP\nLift VB\nLifting VBG\nLigachev NNP\nLigget NNP\nLiggett NNP\nLight NNP\nLighted VBN\nLighter JJR\nLightfoot NNP\nLighthouse NNP\nLighting NNP\nLightly RB\nLightning NN\nLights NNS\nLightstone NNP\nLightweight JJ\nLigne NNP\nLiipfert NNP\nLike IN\nLikely JJ\nLikening VBG\nLikewise RB\nLikins NNP\nLikud NNP\nLil NNP\nLila NNP\nLilac NNP\nLili NNP\nLilian NNP\nLilien NNP\nLiliputian NNP\nLillard NNP\nLille NNP\nLillehammer NNP\nLilley NNP\nLillian NNP\nLilliputian JJ\nLillo NNP\nLilly NNP\nLily NNP\nLim NNP\nLima NNP\nLiman NNP\nLimbo NNP\nLime NNP\nLimerick NNP\nLiming NNP\nLimit VB\nLimitation NNP\nLimitations NNS\nLimited NNP\nLimiting VBG\nLimits NNPS\nLin NNP\nLinage NN\nLincoln NNP\nLincoln-Douglas NNP\nLincoln-Mercury NNP\nLincoln-Mercury-Merkur NNP\nLincolnshire NNP\nLind NNP\nLind-Waldock NNP\nLinda NNP\nLindamood NNP\nLindbergh NN\nLindemann NNP\nLindemanns NNPS\nLinden NNP\nLindens NNPS\nLinder NNP\nLindner NNP\nLindsay NNP\nLindsey NNP\nLindskog NNP\nLindy NNP\nLindzen NNP\nLine NNP\nLine-item JJ\nLinear NNP\nLiner NNP\nLines NNPS\nLines-Trans NNP\nLinger NNP\nLingering JJ\nLingo NN\nLinguistic JJ\nLinguists NNS\nLingus NNP\nLinh NNP\nLink NNP\nLinked VBN\nLinker NNP\nLinking VBG\nLinks NNP\nLinsenberg NNP\nLinsert NNP\nLinsey NNP\nLinsley NNP\nLint NNP\nLintas NNP\nLintas:Campbell-Ewald NNP\nLintas:New NNP\nLinter NNP\nLintner NNP\nLinus NNP\nLinville NNP\nLinvure NNP\nLinwick NNP\nLinwood NNP\nLinz NNP\nLion NNP\nLionel NNP\nLions NNP\nLionville NNP\nLior NNP\nLipchitz NNP\nLipman NNP\nLipner NNP\nLipowa NNP\nLippens NNP\nLipper NNP\nLippi NNP\nLippincott NNP\nLippman NNP\nLippmann NNP\nLipps NNP\nLips NNS\nLipshie NNP\nLipsky NNP\nLipson NNP\nLipstein NNP\nLiptak NNP\nLipton NNP\nLiqueur NNP\nLiquid NNP\nLiquidating NNP\nLiquidation NNP\nLiquidity NN\nLiquor NNP\nLiriano NNP\nLiro NNP\nLisa NNP\nLisbeth NNP\nLisbon NNP\nLish NNP\nLisle NNP\nLiss NNP\nLissa NNP\nList NNP\nListed VBN\nListen VB\nListeners NNS\nListenin NN\nListening NN\nLister NNP\nListerine NNP\nListon NNP\nLita NNP\nLitchfield NNP\nLite NNP\nLiter NN\nLiteracy NN\nLiteral JJ\nLiterally RB\nLiterary NNP\nLiterature NNP\nLiteraturnaya NNP\nLithe JJ\nLithell NNP\nLithograph NNP\nLithox NNP\nLithuanian JJ\nLithuanians NNPS\nLitigants NNS\nLitigation NNP\nLitman\\/Gregory NNP\nLitowski NNP\nLitta NNP\nLittau NNP\nLittell NNP\nLittle NNP\nLittleboy NNP\nLittlefield NNP\nLittlepage NNP\nLittleton NNP\nLittman NNP\nLitton NNP\nLitvack NNP\nLitvinchuk NNP\nLitz NNP\nLiu NNP\nLive NNP\nLive-In NN\nLived VBD\nLivermore NNP\nLiverpool NNP\nLiverpudlians NNPS\nLivery JJ\nLives NNS\nLivestock NN\nLiving NNP\nLivingston NNP\nLivshitz NNP\nLiz NNP\nLiza NNP\nLizhi NNP\nLizt NNP\nLizzie NNP\nLizzy NNP\nLlewellyn NNP\nLlosa NNP\nLloyd NNP\nLloyds NNP\nLmao UH\nLo NNP\nLo-Jack NNP\nLoSpam NNP\nLoad NN\nLoan NNP\nLoan-loss JJ\nLoans NNS\nLoantech NNP\nLoathing NN\nLobar NNP\nLobby NNP\nLobbying NN\nLobbyist NN\nLobbyists NNS\nLobl NNP\nLobo NNP\nLobsenz NNP\nLobster NN\nLobularity NN\nLocal JJ\nLocalism NN\nLocally RB\nLocate VB\nLocated VBN\nLocation NNP\nLock NNP\nLock-Up NN\nLocke NNP\nLocked VBN\nLocker NNP\nLocker-room NN\nLockerbie NNP\nLockhart NNP\nLockheed NNP\nLockian JJ\nLockies NNPS\nLocking VBG\nLockman NNP\nLocks NNP\nLockwood NNP\nLoco NNP\nLocust NN\nLodestar NNP\nLodge NNP\nLodging NN\nLodley NNP\nLodowick NNP\nLoeb NNP\nLoen NNP\nLoeser NNP\nLoesser NNP\nLoevner NNP\nLoew NNP\nLoewe NNP\nLoewenson NNP\nLoewenstern NNP\nLoewi NNP\nLoews NNP\nLoewy NNP\nLoftier JJR\nLoftus NNP\nLogan NNP\nLoggia NNP\nLogging NN\nLogic NNP\nLogica NNP\nLogically RB\nLogistics NNP\nLogsdon NNP\nLohman NNP\nLohmans NNP\nLoire NNP\nLois NNP\nLojack NNP\nLok NNP\nLokey NNP\nLol UH\nLola NNP\nLolita NNP\nLollipops NNS\nLolly NNP\nLolotte NNP\nLoma NNP\nLoman NNP\nLomas NNP\nLomax NNP\nLomb NNP\nLombard NNP\nLombarde NNP\nLombardi NNP\nLombardo NNP\nLompoc NNP\nLond. NNP\nLonde NNP\nLondon NNP\nLondon-based JJ\nLondon-bred JJ\nLondonderry NNP\nLondoner NN\nLondono NNP\nLondontowne NNP\nLone NNP\nLoneliness NNP\nLonesome JJ\nLoney NNP\nLong NNP\nLong-Term NNP\nLong-debated JJ\nLong-distance NN\nLong-haul JJ\nLong-lived JJ\nLong-range JJ\nLong-term JJ\nLonger JJR\nLonger-term JJ\nLongest NNP\nLongevity NN\nLongfellow NNP\nLonghorn NNP\nLonghorns NNP\nLonginotti NNPS\nLongley NNP\nLongman NNP\nLongmont NNP\nLongshoremen NNS\nLongstreet NNP\nLongtime JJ\nLongue NNP\nLongview NNP\nLongwood NNP\nLonnie NNP\nLonrho NNP\nLonsdale NNP\nLonski NNP\nLook VB\nLooked VBD\nLooking VBG\nLookit VB\nLookout NNP\nLooks VBZ\nLooky VB\nLoom NNP\nLoomans NNP\nLooming VBG\nLoomis NNP\nLoon NNP\nLoop NNP\nLoopholes NNS\nLoose NNP\nLoosli NNP\nLopatnikoff NNP\nLoper NNP\nLopez NNP\nLopid NNP\nLopukhov NNP\nLora NNP\nLorain NNP\nLoraine NNP\nLoral NNP\nLoran NNP\nLorca NNP\nLord NNP\nLorde NNP\nLords NNPS\nLordstown NNP\nLorelei NNPS\nLoren NNP\nLorena NNP\nLorentz NNP\nLorenz NNP\nLorenzo NNP\nLorex NNP\nLori NNP\nLorillard NNP\nLorimar NNP\nLorin NNP\nLorincze NNP\nLorinda NNP\nLoring NNP\nLorlyn NNP\nLorna NNP\nLorne NNP\nLorrain NNP\nLorraine NNP\nLortie NNP\nLos NNP\nLosec NNP\nLoser JJ\nLosers NNS\nLoses VBZ\nLosing VBG\nLoss NN\nLosses NNS\nLost JJ\nLot NN\nLothario NN\nLothson NNP\nLotos NNP\nLots NNS\nLott NNP\nLotte NNP\nLotteries NNS\nLottery NNP\nLottie NNP\nLotus NNP\nLou NNP\nLouchheim NNP\nLoud JJ\nLoudermilk NNP\nLoudon NNP\nLoudspeakers NNS\nLouella NNP\nLoughlin NNP\nLoughman NNP\nLouis NNP\nLouis-Dreyfus NNP\nLouis-based JJ\nLouisa NNP\nLouise NNP\nLouisiana NNP\nLouisiana-Pacific NNP\nLouisianan NN\nLouisiane NNP\nLouisville NNP\nLounge NNP\nLourie NNP\nLousie NNP\nLousiness NN\nLousy JJ\nLouvre NNP\nLove NNP\nLovejoy NNP\nLovelace NNP\nLoveless NNP\nLovell NNP\nLovely NNP\nLovenberg NNP\nLover NNP\nLovering NNP\nLovers NNPS\nLoves VBZ\nLovett NNP\nLoveways NNP\nLovie UH\nLoving NNP\nLovingly RB\nLovingood NNP\nLovington NNP\nLow NNP\nLow-Income NNP\nLow-flying JJ\nLow-interest-rate JJ\nLow-paying JJ\nLowe NNP\nLowell NNP\nLowenstein NNP\nLowenthal NNP\nLower JJR\nLower-than-expected JJ\nLowery NNP\nLown NNP\nLowndes NNP\nLowry NNP\nLoy NNP\nLoyal JJ\nLoyalist JJ\nLoyalties NNS\nLoyalty NN\nLoyola NNP\nLt. NNP\nLtd NNP\nLtd. NNP\nLtee NNP\nLu NNP\nLuang NNP\nLubar NNP\nLubars NNP\nLubberlanders NNS\nLubbock NNP\nLube NNP\nLubell NNP\nLuber NNP\nLubkin NNP\nLublin NNP\nLubowski NNP\nLubriderm NNP\nLubrizol NNP\nLubyanka NNP\nLuc NNP\nLucas NNP\nLucassen NNP\nLucca NNP\nLuce NNP\nLucerne NNP\nLuci NNP\nLucia NNP\nLucian NNP\nLuciano NNP\nLucie NNP\nLucien NNP\nLucifer NNP\nLucille NNP\nLucinda NNP\nLucio NNP\nLucisano NNP\nLucite NNP\nLucius NNP\nLuck NNP\nLuckily RB\nLucky NNP\nLucky-Goldstar NNP\nLucretia NNP\nLucretius NNP\nLucullan JJ\nLucy NNP\nLudcke NNP\nLudden NNP\nLudie NNP\nLudlow NNPS\nLudlum NNP\nLudmilla NNP\nLudwick NNP\nLudwig NNP\nLudwigshafen NNP\nLudwin NNP\nLuechtefeld NNP\nLueger NNP\nLuehrs NNP\nLuerssen NNP\nLuette NNP\nLufkin NNP\nLuft NNP\nLuftfahrt NNP\nLufthansa NNP\nLuftwaffe NNP\nLugar NNP\nLuger NNP\nLugosi NNP\nLuigi NNS\nLuis NNP\nLuisa NNP\nLuise NNP\nLujan NNP\nLukas NNP\nLukassen NNP\nLuke NNP\nLukens NNP\nLukman NNP\nLuksik NNP\nLukuklu NNP\nLullaby NN\nLullwater NNP\nLully NNP\nLumber NNP\nLumbera NNP\nLumex NNP\nLumia NNP\nLumiere NNP\nLumina NNP\nLummus NNP\nLumpe NNP\nLumped VBN\nLumpur NNP\nLumsden NNP\nLumumba NNP\nLuna NNP\nLunch NN\nLuncheon NNP\nLund NNP\nLunday NNP\nLundberg NNP\nLundeen NNP\nLundy NNP\nLuneburg NNP\nLung NNP\nLung-cancer NN\nLunge NNP\nLupatkin NNP\nLupe NNP\nLupel NNP\nLupo NNP\nLupton NNP\nLura NNP\nLuray NNP\nLurcat NNP\nLure VBP\nLureen NNP\nLurgi NNP\nLurie NNP\nLusaka NNP\nLusignan NNP\nLusser NNP\nLust NNP\nLustgarten NNP\nLuth NNP\nLuther NNP\nLutheran NNP\nLuthringshausen NNP\nLuthuli NNP\nLutsenko NNP\nLutte NNP\nLutz NNP\nLuvs NNPS\nLux FW\nLuxco NNP\nLuxembourg NNP\nLuxembourg-based JJ\nLuxembourg-registered JJ\nLuxemburg NNP\nLuxor NNP\nLuxuries NNP\nLuxurious JJ\nLuxury NN\nLuz NNP\nLuzon NNP\nLvov NNP\nLvovna NNP\nLyaki NNP\nLybrand NNP\nLyceum NNP\nLycidas NNP\nLycra NNP\nLydall NNP\nLydia NNP\nLyford NNP\nLying VBG\nLyle NNP\nLyman NNP\nLyme NNP\nLyme-disease JJ\nLymington NNP\nLyn NNP\nLynch NNP\nLynch-led JJ\nLynchburg NNP\nLynde NNP\nLynden NNP\nLyndhurst NNP\nLyndon NNP\nLynes NNP\nLyneses NNP\nLynford NNP\nLynn NNP\nLynne NNP\nLynnwood NNP\nLynx NNP\nLyon NNP\nLyondell NNP\nLyonnais NNP\nLyons NNP\nLyphomed NNP\nLyric NNP\nLyrics NNS\nLys NNP\nLysle NNP\nLysol NNP\nLyster NNP\nLyttleton NNP\nLytton NNP\nLyubov NNP\nM NNP\nM$ $\nM&A NNP\nM&H NNP\nM&Ms NNS\nM'Bow NNP\nM-1 NNP\nM-19 NN\nM-4 NNP\nM-CSF NNP\nM-K NNP\nM-Whatever NNP\nM-m-m UH\nM. NNP\nM.A. NNP\nM.B.A. NNP\nM.B.A.s NNPS\nM.C. NNP\nM.D NNP\nM.D. NNP\nM.D.-speak JJ\nM.D.C NNP\nM.D.C. NNP\nM.D.s NNS\nM.E. NNP\nM.Ed NNP\nM.G. NNP\nM.I.M. NNP\nM.I.T.-trained JJ\nM.J. NNP\nM.L. NNP\nM.P. NNP\nM.R. NNP\nM.S. NNP\nM.T. NNP\nM.W. NNP\nM2 CD\nM3 CD\nM30 NNP\nM4 NNP\nM8.7sp NNP\nMAC NNP\nMACHINES NNP\nMACMILLAN NNP\nMACPOST NNP\nMACY NNP\nMADD NNP\nMAGURNO NNP\nMAI NNP\nMAILINGS NNS\nMAINTENANCE NNP\nMAITRE'D NNP\nMAJOR JJ\nMAKE VB\nMAKERS NNS\nMAKES VBZ\nMAKING VBG\nMALAISE NNP\nMAN NNP\nMANAGEMENT NNP\nMANAGER NN\nMANAGERS NNS\nMANEUVERS NNS\nMANHATTAN NNP\nMANUALS NNS\nMANUFACTURERS NNPS\nMANUFACTURING NNP\nMANY JJ\nMAPCO NNP\nMARCHED VBD\nMARCOS NNP\nMARCUS NNP\nMARGIN NN\nMARK NNP\nMARKET NNP\nMARKETING NN\nMARKS NNS\nMARYLAND NNP\nMAT NNP\nMATERIALS NNP\nMATTEL NNP\nMAY MD\nMB NNP\nMB-339 NNP\nMBA NN\nMBAs NNS\nMBB NNP\nMBE NNP\nMBI NNP\nMBIA NNP\nMBK NNP\nMBOs NNPS\nMC NNP\nMC68030 NNP\nMC88200 NNP\nMCA NNP\nMCC NNP\nMCI NNP\nMCV NNP\nMCorp NNP\nMD-11 NNP\nMD-80 NN\nMD-80-series NN\nMD-80s NNS\nMD-81 NN\nMD-82s NNPS\nMD-90 NN\nMD-90s NNS\nMD11 NNP\nMD90 NN\nMDC NNP\nMDL-1 NN\nMDT NNP\nME PRP\nMEA NNP\nMEASUREX NNP\nMEATS NNPS\nMEDIA NNP\nMEDICINE NNP\nMEDUSA NNP\nMEI NNP\nMEMOS NNS\nMEN NNS\nMERCHANTS NNPS\nMERGER NN\nMERGING VBG\nMERRILL NNP\nMET VBD\nMETALS NNS\nMEXICAN JJ\nMEXICO NNP\nMF NNP\nMFA NNP\nMFS NNP\nMG NNP\nMGM NNP\nMGM-UA NNP\nMGM\\ NNP\nMGM\\/UA NNP\nMH-60K NN\nMHz NNS\nMICRO NNP\nMICROPOLIS NNP\nMICROSYSTEMS NNP\nMIDDLEMAN NN\nMIDLANTIC NNP\nMIG-1 JJ\nMIG-1\\ JJ\nMIG-2 JJ\nMIG-2\\ NN\nMIGHT MD\nMILEAGE NN\nMINIMUM-WAGE NN\nMINING NNP\nMINISTER NN\nMINISTER'S NN\nMINOR JJ\nMINORITY NN\nMIPS NNP\nMIPS-based JJ\nMIPs NNP\nMISFIRE NN\nMISUSE NNP\nMIServer NNP\nMIT NNP\nMITI NNP\nMJ NNP\nMK-Ferguson NNP\nMKI NNP\nMLD NNP\nMLPI NNP\nMLR NNP\nMLSS NN\nMLX NNP\nMMC NNP\nMMG NNP\nMMI NNP\nMMS NNP\nMNB NNP\nMNC NNP\nMO NNP\nMOB NNP\nMOHAWK NNP\nMONEY NN\nMONITORED VBD\nMONTHLY JJ\nMORE JJR\nMORGAN NNP\nMORTGAGE NNP\nMOST JJS\nMOTOR NNP\nMOTORISTS NNS\nMOTORS NNP\nMOVE NN\nMOVED VBD\nMOVES VBZ\nMP NNP\nMPD NNP\nMPH NNP\nMPI NNP\nMPl NNP\nMPs NNS\nMR NNP\nMRA NNP\nMRC NNP\nMRCA NNP\nMRI NNP\nMRI-type JJ\nMS NNP\nMS-DOS NNP\nMSD-200 NNP\nMSP NNP\nMSU NNP\nMSX NNP\nMSX-run JJ\nMTCR NNP\nMTM NNP\nMTU NNP\nMTV NNP\nMUBARAK'S NNP\nMUMBO NN\nMUNICIPALS NNS\nMURDER NN\nMUST MD\nMUST-SIGN JJ\nMUTUAL JJ\nMV40000 NN\nMVL NNP\nMVP NNP\nMVestment NNP\nMX NNP\nMX-6 NNP\nMX-6s NNPS\nMX-missile NN\nMY DT\nMYERSON NNP\nMYSTERY NNP\nM\\*A\\*S\\*H NNP\nM\\/A-Com NNP\nM\\/I NNP\nMa NNP\nMa'am NNP\nMaack NNP\nMaalox NNP\nMaanen NNP\nMabellini NNP\nMabon NNP\nMac NNP\nMac-Laren NNP\nMac-Reynolds NNP\nMacAllister NNP\nMacAndrews NNP\nMacArthur NNP\nMacArthur-Helen NNP\nMacDonald NNP\nMacDougall NNP\nMacDowell NNP\nMacFarlanes NNP\nMacGregor NNP\nMacGregors NNPS\nMacGyver NNP\nMacInnis NNP\nMacIsaacs NNP\nMacKinnon NNP\nMacLean NNP\nMacLeishes NNPS\nMacLellan NNP\nMacMillan NNP\nMacNamara NNP\nMacNeil-Lehrer NNP\nMacNeil\\ NNP\nMacNeil\\/Lehrer NNP\nMacPhail NNP\nMacPherson NNP\nMacReady NNP\nMacSharry NNP\nMacWeek NNP\nMacWhorter NNP\nMacao NNP\nMacare NNP\nMacari NNP\nMacaroni NNP\nMacassar NNP\nMacaulay NNP\nMacbeth NNP\nMaccabee NNP\nMaccabeus NNP\nMaccaquano NNP\nMaccario NNP\nMacchiarola NNP\nMace NNP\nMacedon NNP\nMacel NNP\nMacfadden NNP\nMacfarlane NNP\nMach NN\nMach't FW\nMachado NNP\nMachelle NNP\nMacheski NNP\nMachiavelli NNP\nMachiavellian JJ\nMachida NNP\nMachiguenga NNP\nMachiguengas NNS\nMachine NNP\nMachine-tool JJ\nMachine-vision JJ\nMachineries NNP\nMachinery NNP\nMachines NNPS\nMachinist NNP\nMachinist-union NNP\nMachinists NNS\nMacho FW\nMachold NNP\nMachon NNP\nMachos FW\nMacintosh NNP\nMack NNP\nMackenzie NNP\nMackey NNP\nMackinac NNP\nMackinack NNP\nMacklin NNP\nMacksey NNP\nMaclaine NNP\nMaclean NNP\nMacmillan NNP\nMacmillan\\ NNP\nMacmillan\\/McGraw NNP\nMacmillan\\/McGraw-Hill NNP\nMacneff NNP\nMacomber NNP\nMacon NNP\nMacquarie NNP\nMacroChem NNP\nMacrodantin NNP\nMacropathological NNP\nMacropathology NN\nMacrophages NNS\nMacwhyte NNP\nMacy NNP\nMad NNP\nMadagascar NNP\nMadam NNP\nMadama NNP\nMadame NNP\nMadaripur NNP\nMaddalena NNP\nMadden NNP\nMaddie NNP\nMadding NNP\nMaddox NNP\nMaddry NNP\nMade VBN\nMadeira NNP\nMadeleine NNP\nMadelon NNP\nMademoiselle NNP\nMadison NNP\nMadonna NNP\nMadre NNP\nMadrid NNP\nMadrid-based JJ\nMadrigal NNP\nMadsen NNP\nMadson NNP\nMae NNP\nMae-backed JJ\nMaecker NNP\nMaeda NNP\nMaersk NNP\nMaestro NNP\nMaeterlinck NNP\nMaffei NNP\nMafia NNP\nMafia-tainted JJ\nMag NNP\nMagadan NNP\nMagarity NNP\nMagarrell NNP\nMagazine NNP\nMagazines NNS\nMagdalena NNP\nMagdalene NNP\nMaged NNP\nMagee NNP\nMagellan NNP\nMager NNP\nMaggart NNP\nMaggetto NNP\nMaggie NNP\nMaggot NNP\nMagi NNP\nMagic NNP\nMagleby NNP\nMagma NNP\nMagna NNP\nMagnascreen NNP\nMagnatek NNP\nMagnavox NNP\nMagnet NNP\nMagnetic JJ\nMagnetics NNPS\nMagnetism NNP\nMagnier NNP\nMagnificent JJ\nMagnin NNP\nMagnolias NNS\nMagnum NN\nMagnums NNS\nMagnus NNP\nMagnusson NNP\nMagog NNP\nMagoon NNP\nMagoun NNP\nMagpie NNP\nMagruder NNP\nMagten NNP\nMaguire NNP\nMaguires NNPS\nMagurno NNP\nMagwitch NNP\nMahagonny NNP\nMahal NNP\nMahal-flavor NNP\nMahan NNP\nMaharashtra NNP\nMahathir NNP\nMahatma NNP\nMahayana NNP\nMahayanist NN\nMahe NNP\nMaher NNP\nMahfouz NNP\nMahler NNP\nMahmoud NNP\nMahoganny NNP\nMahone NNP\nMahoney NNP\nMahran NNP\nMahwah NNP\nMahzeer NNP\nMai NNP\nMaid NNP\nMaiden NNP\nMaidenform NNP\nMaidens NNPS\nMaier NNP\nMail NNP\nMail-Order JJ\nMail-order NN\nMailer NNP\nMailing NNP\nMailings NNS\nMailloux NNP\nMailson NNP\nMain NNP\nMain-d'Oeuvre NNP\nMaine NNP\nMainland NNP\nMainliner-Highland NNP\nMainly RB\nMainstay NN\nMainstream NN\nMaintain VBP\nMaintaining VBG\nMaintenance NNP\nMainz NNP\nMaiorana NNP\nMais FW\nMaitland NNP\nMaitres NNP\nMaize NNP\nMaize-Products NNPS\nMaj. NNP\nMajdan-Tartarski NNP\nMajdanek NNP\nMajestic NNP\nMajesties NNPS\nMajesty NNP\nMajor NNP\nMajor-League NNP\nMajority NNP\nMakato NNP\nMake VB\nMakepeace NNP\nMaker NN\nMakers NNPS\nMakes VBZ\nMakin NNP\nMakinac NNP\nMaking VBG\nMakoto NNP\nMakro NNP\nMaksoud NNP\nMakwah NNP\nMal NNP\nMalabar NNP\nMalacca NNP\nMalamud NNP\nMalapai NNP\nMalapi NNP\nMalaria NN\nMalato NNP\nMalawi NNP\nMalay NNP\nMalay-based JJ\nMalays NNP\nMalaysia NNP\nMalaysian JJ\nMalaysian-based JJ\nMalcolm NNP\nMalcom NNP\nMalden NNP\nMaldutis NNP\nMale JJ\nMalec NNP\nMalek NNP\nMalenkov NNP\nMales NNPS\nMalesherbes NNP\nMali NNP\nMalia NNP\nMalibu NNP\nMalignant NN\nMalik NNP\nMalin NNP\nMalinovsky NNP\nMalizia NNP\nMalknecht NNP\nMalkovich NNP\nMall NNP\nMallet-Prevost NNP\nMallinckrodt NNP\nMallory NNP\nMalloy NNP\nMalmesbury NNP\nMalmo NNP\nMalmros NNP\nMalmud NNP\nMalocclusion NN\nMalone NNP\nMaloney NNP\nMaloof NNP\nMalott NNP\nMalpass NNP\nMalpede NNP\nMalpractice NN\nMalraux NNP\nMalson NNP\nMalt NNP\nMalta NNP\nMaltese NNP\nMaluf NNP\nMalvenius NNP\nMalvern NNP\nMama NNP\nMamaroneck NNP\nMambelli NNP\nMambo NNP\nMame NNP\nMamma NNP\nMammograms NNS\nMan NN\nMan-Made JJ\nMana NNP\nManac NNP\nManafort NNP\nManaged VBN\nManagement NNP\nManagement\\ JJ\nManager NNP\nManagerial JJ\nManagers NNS\nManaging NNP\nManagua NNP\nManaifatturiera NNP\nManalapan NNP\nManas NNP\nManassas NNP\nManchester NNP\nMancini NNP\nMancuso NNP\nMandarin NNP\nMandate NN\nMandel NNP\nMandela NNP\nMandelbaum NNP\nMandell NNP\nManderbach NNP\nManderscheid NNP\nMandhata NNP\nMandina NNP\nMandle NNP\nMando NNP\nMandolin NNP\nMandom NNP\nMandresh NNP\nMandy NNP\nManeret NNP\nManet NNP\nManeuvers NNS\nManfred NNP\nManganese NNP\nMangano NNP\nManger NNP\nManges NNP\nMangino NNP\nManhattan NNP\nManhattan-based JJ\nManiago NNP\nManic NNP\nManifatture NNP\nManiffature NNP\nManigat NNP\nManila NNP\nManila-based JJ\nManin NNP\nManion NNP\nManitoba NNP\nManitoba-based JJ\nManjucri NNP\nMankiewicz NNP\nMankind NNP\nManko NNP\nMankowski NNP\nManley NNP\nManlove NNP\nManly NNP\nMann NNP\nManned NNP\nMannerhouse NNP\nManners NNP\nMannesmann NNP\nMannheim NNP\nManning NNP\nManningham NNP\nMannington NNP\nMannix NNP\nManny NNP\nManon NNP\nManoplax NNP\nManor NNP\nManos NNP\nManpower NNP\nMansfield NNP\nMansion NNP\nManske NNP\nManson NNP\nMantegna NNP\nMantha NNP\nManthey NNP\nMantle NNP\nMantua NNP\nManu NNP\nManual JJ\nManuel NNP\nManuela NNP\nManufacture NN\nManufactured JJ\nManufacturer NNP\nManufacturers NNPS\nManufacturing NNP\nManuscript NNP\nManute NNP\nManville NNP\nMany JJ\nManya NNP\nManzanec NNP\nManzanola NNP\nManzella NNP\nManzi NNP\nManzoni NNP\nMao NNP\nMaoist JJ\nMaoist-style JJ\nMaoists NNPS\nMap NNP\nMapco NNP\nMaple NNP\nMaplecrest NNP\nMapplethorpe NNP\nMaquet NNP\nMaquila NN\nMaquilas NNP\nMar NNP\nMar. NNP\nMarCor NNP\nMara NNP\nMarantz NNP\nMarathon NNP\nMarble NNP\nMarc NNP\nMarcel NNP\nMarcella NNP\nMarcello NNP\nMarcellus NNP\nMarch NNP\nMarchand NNP\nMarche NNP\nMarchers NNPS\nMarches NNPS\nMarchese NNP\nMarching NNP\nMarcia NNP\nMarciano NNP\nMarcile NNP\nMarcilio NNP\nMarcius NNP\nMarckesano NNP\nMarcmann NNP\nMarco NNP\nMarcom NNP\nMarconi NNP\nMarcor NNP\nMarcos NNP\nMarcoses NNPS\nMarcus NNP\nMarcy NNP\nMarder NNP\nMardi NNP\nMardis NNP\nMardon NNP\nMare NNP\nMareb NNP\nMareham NNP\nMarella NNP\nMarenzio NNP\nMarer NNP\nMargaret NNP\nMargaretville NN\nMargarito NNP\nMargaux NNP\nMarge NNP\nMargenau NNP\nMargeotes NNP\nMargery NNP\nMargie NNP\nMargin NN\nMarginal JJ\nMargins NNS\nMargler NNP\nMargo NNP\nMargolin NNP\nMargolis NNP\nMargret NNP\nMarguerite NNP\nMargulies NNP\nMaria NNP\nMariam NNP\nMarian NNP\nMariana NNP\nMariano NNP\nMarico NNP\nMaricopa NNP\nMarie NNP\nMarie-Louise NNP\nMariel NNP\nMarietta NNP\nMarijuana NN\nMarilee NNP\nMarilyn NNP\nMarin NNP\nMarina NNP\nMarinaro NNP\nMarinas NNS\nMarine NNP\nMariners NNPS\nMarines NNPS\nMarino NNP\nMarinvest NNP\nMario NNP\nMarion NNP\nMariotta NNP\nMaris NNP\nMarist NNP\nMaritain NNP\nMaritime NNP\nMarjorie NNP\nMark NNP\nMarkel NNP\nMarkese NNP\nMarket NNP\nMarket-If-Touched NNP\nMarket-based JJ\nMarket-if-touched JJ\nMarket-leader NN\nMarket-research NN\nMarketed VBN\nMarketers NNS\nMarketing NNP\nMarketplace NNP\nMarkets NNPS\nMarkey NNP\nMarkham NNP\nMarkoe NNP\nMarkovic NNP\nMarkovitz NNP\nMarkowitz NNP\nMarkrud NNP\nMarks NNP\nMarksmanship NN\nMarkus NNP\nMarla NNP\nMarlboro NNP\nMarlboros NNPS\nMarlborough NNP\nMarlene NNP\nMarley NNP\nMarlin NNP\nMarlo NNP\nMarlon NNP\nMarlow NNP\nMarlowe NNP\nMarlys NNP\nMarmalstein NNP\nMarmara NNP\nMarmee NNP\nMarmi NNP\nMarmon NNP\nMarne NNP\nMarne-la-Vallee NNP\nMarni NNP\nMaroc NNP\nMarocaine NNP\nMaronite JJ\nMaronites NNPS\nMarous NNP\nMaroy NNP\nMarques NNP\nMarquess NNP\nMarquet NNP\nMarquette NNP\nMarquez NNP\nMarquis NNP\nMarr NNP\nMarra NNP\nMarrakesh NNP\nMarriage NNP\nMarrie NNP\nMarried VBN\nMarrill NNP\nMarriott NNP\nMarron NNP\nMarrow-Tech NNP\nMarry NNP\nMars NNP\nMarsam NNP\nMarschalk NNP\nMarsden NNP\nMarseillaise NNP\nMarseilles NNP\nMarsh NNP\nMarsha NNP\nMarshal NNP\nMarshall NNP\nMarshalls NNP\nMarshes NNP\nMarsicano NNP\nMarsico NNP\nMarskmen NNP\nMarston NNP\nMart NNP\nMartek NNP\nMartens NNP\nMartex NNP\nMartha NNP\nMarthe NNP\nMartian NNP\nMartians NNP\nMartin NNP\nMartin-type JJ\nMartinair NNP\nMartineau NNP\nMartinelli NNP\nMartinez NNP\nMartini NN\nMartinique NNP\nMartinsburg NNP\nMartinsek NNP\nMartinsville NNP\nMartoche NNP\nMarty NNP\nMartyn NNP\nMartyrs NNP\nMarubeni NNP\nMarulanda NNP\nMarum NNP\nMarunouchi NNP\nMarushita NNP\nMaruwa NNP\nMaruzen NNP\nMarv NNP\nMarvellee NNP\nMarvelon NNP\nMarvelous JJ\nMarver NNP\nMarvin NNP\nMarvis NNP\nMarwick NNP\nMarx NNP\nMarxism NNP\nMarxist JJ\nMarxist-Leninist JJ\nMarxist-dominated JJ\nMarxist-leaning NNP\nMarxists NNPS\nMary NNP\nMaryann NNP\nMaryanne NNP\nMaryinsky NN\nMaryland NNP\nMarylanders NNPS\nMarysville NNP\nMaryville NNP\nMasaaki NNP\nMasada NNP\nMasahiko NNP\nMasahiro NNP\nMasaki-Schatz NNP\nMasami NNP\nMasaryk NNP\nMasato NNP\nMascarita NNP\nMascotte NNP\nMaser NNP\nMaserati NNP\nMasillon NNP\nMasius NNP\nMask NNP\nMasket NNP\nMasks VBZ\nMaslyukov NNP\nMasnadieri NNP\nMason NNP\nMasonic NNP\nMasonry NNP\nMasons NNPS\nMasque NNP\nMass NNP\nMass. NNP\nMass.-based JJ\nMassMutual NNP\nMass\\/Amherst NNP\nMassa NNP\nMassachusetts NNP\nMassachussets NNP\nMassacre NNP\nMassacres NNS\nMassage NN\nMasse NNP\nMassell NNP\nMassenet NNP\nMassey NNP\nMassey-Ferguson NNP\nMassicotte NNP\nMassimi NNP\nMassimo NNP\nMassive JJ\nMasson NNP\nMasssachusetts NNP\nMaster NNP\nMasterCard NNP\nMasterCards NNS\nMastergate NNP\nMastering VBG\nMasterpiece NNP\nMasterpieces NNPS\nMasters NNP\nMasterson NNP\nMasterworks NNPS\nMastro NNP\nMasu NNP\nMasuda NNP\nMasur NNP\nMatagorda NNP\nMatais NNP\nMatamoras NNP\nMatamoros NNP\nMatanky NNP\nMatch NNP\nMatchbook-sized JJ\nMatchbox NNP\nMatchett NNP\nMatching VBG\nMateo NNP\nMater NNP\nMaterial NNP\nMaterialism NN\nMaterials NNPS\nMateyo NNP\nMath NNP\nMathavious NNP\nMathematical JJ\nMathematically RB\nMathematics NNP\nMather NNP\nMatheson NNP\nMathews NNP\nMathewson NNP\nMathias NNP\nMathilde NNP\nMathis NNP\nMathues NNP\nMatilda NNP\nMatisse NNP\nMatisses NNPS\nMatlock NNP\nMatlowsky NNP\nMatos NNP\nMatra NNP\nMatra-Harris NNP\nMatrimonial NNP\nMatritech NNP\nMatrix NNP\nMatsing NNP\nMatson NNP\nMatsu NNP\nMatsuda NNP\nMatsui NNP\nMatsunaga NNP\nMatsuo NNP\nMatsushita NNP\nMatsushita-made JJ\nMatsushita-owned JJ\nMatsuura NNP\nMatt NNP\nMattathias NNP\nMattausch NNP\nMattei NNP\nMattel NNP\nMatter NN\nMatters NNP\nMattes NNP\nMatteson NNP\nMatthew NNP\nMatthews NNP\nMatthias NNP\nMatthies NNP\nMattia NNP\nMattie NNP\nMattis NNP\nMattison NNP\nMattone NNP\nMattox NNP\nMattress NNP\nMattsson NNP\nMatunuck NNP\nMaturities NNS\nMaturity NN\nMatuschka NNP\nMatz NNP\nMauch NNP\nMaude NNP\nMaugham NNP\nMaughan NNP\nMaui NNP\nMauldin NNP\nMaumee NNP\nMaung NNP\nMaura NNP\nMaureen NNP\nMaurer NNP\nMaurice NNP\nMaurier NNP\nMaurine NNP\nMauritania NNP\nMaurits NNP\nMaury NNP\nMauve-colored JJ\nMavis NNP\nMawr NNP\nMax NNP\nMaxell NNP\nMaxentius NNP\nMaxhuette NNP\nMaxicare NNP\nMaxim NNP\nMaxima NNP\nMaximilian NNP\nMaximizing VBG\nMaximum NNP\nMaxine NNP\nMaxtor NNP\nMaxus NNP\nMaxwell NNP\nMaxxam NNP\nMay NNP\nMay\\ NNP\nMaya FW\nMayan JJ\nMayans NNS\nMaybe RB\nMaybelline NNP\nMayberry NNP\nMayer NNP\nMayfair NNP\nMayfield NNP\nMayflower NNP\nMayhap RB\nMayland NNP\nMaynard NNP\nMayne NNP\nMaynor NNP\nMayo NNP\nMayor NNP\nMayor-elect NNP\nMayor-nominate NNP\nMayoral JJ\nMayors NNS\nMays NNP\nMaytag NNP\nMayumi NNP\nMaywood NNP\nMazda NNP\nMazeroski NNP\nMazilo NNP\nMazowiecki NNP\nMazowsze NNP\nMazza NNP\nMazzera NNP\nMazzone NNP\nMazzoni NNP\nMazzorana NNP\nMc NNP\nMcAbee NNP\nMcAfee NNP\nMcAlester NNP\nMcAlinden NNP\nMcAlister NNP\nMcAllen NNP\nMcAllister NNP\nMcAlpine NNP\nMcArthur NNP\nMcArtor NNP\nMcAuley NNP\nMcAuliffe NNP\nMcAvity NNP\nMcBee NNP\nMcBride NNP\nMcCabe NNP\nMcCafferty NNP\nMcCaffrey NNP\nMcCain NNP\nMcCall NNP\nMcCamant NNP\nMcCammon NNP\nMcCann NNP\nMcCann-Erickson NNP\nMcCann-Erikson NNP\nMcCanna NNP\nMcCarran NNP\nMcCarran-Ferguson NNP\nMcCarthy NNP\nMcCarthy-era JJ\nMcCarthyite JJ\nMcCartin NNP\nMcCartney NNP\nMcCarty NNP\nMcCarver NNP\nMcCaskey NNP\nMcCaskill NNP\nMcCaughan NNP\nMcCaughey NNP\nMcCauley NNP\nMcCauliffe NNP\nMcCaw NNP\nMcCay NNP\nMcChesney NNP\nMcChicken NNP\nMcClatchy NNP\nMcClave NNP\nMcClellan NNP\nMcClelland NNP\nMcClements NNP\nMcCleod NNP\nMcClintick NNP\nMcClintock NNP\nMcCloy NNP\nMcClure NNP\nMcCluskey NNP\nMcColl NNP\nMcCollum NNP\nMcColm NNP\nMcCombs NNP\nMcCone NNP\nMcConnell NNP\nMcCord NNP\nMcCormack NNP\nMcCormick NNP\nMcCovey NNP\nMcCoy NNP\nMcCracken NNP\nMcCrady NNP\nMcCraw NNP\nMcCrory NNP\nMcCullers NNP\nMcCulley NNP\nMcCullough NNP\nMcCurdy NNP\nMcCurry NNP\nMcCutchen NNP\nMcDLT NNP\nMcDade NNP\nMcDaniel NNP\nMcDermid NNP\nMcDermott NNP\nMcDonald NNP\nMcDonalds NNP\nMcDonnell NNP\nMcDonough NNP\nMcDougall NNP\nMcDowell NNP\nMcDuffie NNP\nMcEachern NNP\nMcElroy NNP\nMcElvaney NNP\nMcElyee NNP\nMcEnaney NNP\nMcEnany NNP\nMcEnroe NNP\nMcFadden NNP\nMcFall NNP\nMcFarlan NNP\nMcFarland NNP\nMcFee NNP\nMcFeeley NNP\nMcFeely RB\nMcGann NNP\nMcGee NNP\nMcGehee NNP\nMcGeorge NNP\nMcGhie NNP\nMcGill NNP\nMcGillicuddy NNP\nMcGillivray NNP\nMcGinley NNP\nMcGinty NNP\nMcGlade NNP\nMcGlothlin NNP\nMcGlynn NNP\nMcGonagle NNP\nMcGovern NNP\nMcGowan NNP\nMcGrath NNP\nMcGraw NNP\nMcGraw-Hill NNP\nMcGregor NNP\nMcGrevin NNP\nMcGroarty NNP\nMcGruder NNP\nMcGuane NNP\nMcGuigan NNP\nMcGuire NNP\nMcGuirk NNP\nMcGurk NNP\nMcGwire NNP\nMcHenry NNP\nMcInerney NNP\nMcInnes NNP\nMcInroy NNP\nMcIntosh NNP\nMcIntyre NNP\nMcIver NNP\nMcKENZIE NNP\nMcKay NNP\nMcKee NNP\nMcKeever NNP\nMcKellar NNP\nMcKenna NNP\nMcKennon NNP\nMcKenzie NNP\nMcKeon NNP\nMcKeown NNP\nMcKesson NNP\nMcKibben NNP\nMcKid NNP\nMcKim NNP\nMcKinley NNP\nMcKinleyville NNP\nMcKinney NNP\nMcKinnon NNP\nMcKinsey NNP\nMcKinzie NNP\nMcKnight NNP\nMcKusick NNP\nMcLauchlan NNP\nMcLauchlin NNP\nMcLaughlin NNP\nMcLean NNP\nMcLelland NNP\nMcLemore NNP\nMcLendon NNP\nMcLendon-Ebony NNP\nMcLennan NNP\nMcLeod NNP\nMcLish NNP\nMcLoughlin NNP\nMcLuhan NNP\nMcMahon NNP\nMcManus NNP\nMcMaster NNP\nMcMeel NNP\nMcMillen NNP\nMcMillin NNP\nMcMoRan NNP\nMcMullan NNP\nMcMullin NNP\nMcN NNP\nMcNabb NNP\nMcNair NNP\nMcNally NNP\nMcNamar NNP\nMcNamara NNP\nMcNamee NNP\nMcNaughton NNP\nMcNeal NNP\nMcNealy NNP\nMcNear NNP\nMcNeil NNP\nMcNeill NNP\nMcNerney NNP\nMcNichols NNP\nMcPherson NNP\nMcQueen NNP\nMcQuillan NNP\nMcQuown NNP\nMcRae NNP\nMcRaney NNP\nMcRoberts NNP\nMcShane NNP\nMcSorley NNP\nMcToxics NNP\nMcVay NNP\nMcVities NNP\nMcWhinney NNP\nMcWilliams NNP\nMcdonald NNP\nMd NNP\nMd. NNP\nMe PRP\nMe'a NNP\nMe-210 NNP\nMead NNP\nMeaden NNP\nMeador NNP\nMeadow NNP\nMeadowland NNP\nMeadows NNP\nMeager JJ\nMeagher NNP\nMeals NNP\nMean VB\nMeana NNP\nMeaney NNP\nMeaning NN\nMeaningful JJ\nMeanings NNS\nMeans NNP\nMeantime RB\nMeanwhile RB\nMeanwile RB\nMears NNP\nMeasure NN\nMeasured VBN\nMeasurement NNP\nMeasurements NNS\nMeasures NNS\nMeasuring VBG\nMeat NNP\nMeatheads NNS\nMeats NNS\nMecaniques NNP\nMecca NNP\nMechanics NNP\nMechanicsburg NNP\nMechanisms NNPS\nMechanix NNP\nMechanized VBN\nMecholyl NNP\nMecklenberg NNP\nMed-Chemical NNP\nMedChem NNP\nMedal NNP\nMedco NNP\nMedea NNP\nMedecine NNP\nMedellin NNP\nMedfield NNP\nMedford NNP\nMedgyessy NNP\nMedi-Mail NNP\nMediVision NNP\nMedia NNP\nMedia-buying NN\nMedialink NNP\nMedian JJ\nMediation NNP\nMedibank NNP\nMedicaid NNP\nMedicaid-covered JJ\nMedicaid-paid JJ\nMedical NNP\nMedical-instrument JJ\nMedical-supply JJ\nMedicale NNP\nMedicare NNP\nMedicare-approved JJ\nMedicare-catastrophic-care JJ\nMedicare-eligible JJ\nMedici NNPS\nMedicine NNP\nMedicines NNP\nMedicis NNPS\nMedicus NNP\nMedieval NNP\nMediobanca NNP\nMeditations NNPS\nMediterranean NNP\nMediterranean-inspired JJ\nMediumistic JJ\nMedlin NNP\nMedmenham NNP\nMednis NNP\nMedstone NNP\nMedtronic NNP\nMedtronics NNP\nMedusa NN\nMedvedev NNP\nMeech NNP\nMeehan NNP\nMeek NNP\nMeeker NNP\nMeekison NNP\nMeese NNP\nMeet VB\nMeeting VBG\nMeetings NNS\nMeets NNP\nMeg NNP\nMegEcon NNP\nMega JJ\nMega-hits NNS\nMegamarketing NN\nMegane NNP\nMegargel NNP\nMegarians NNPS\nMegat NNP\nMegdal NNP\nMeggs NNP\nMeharry NNP\nMehitabel NNP\nMehl NNP\nMehrens NNP\nMehta NNP\nMeidinger NNP\nMeigher NNP\nMeils NNP\nMeinckian NNP\nMeinders NNP\nMeineke NNP\nMeinung FW\nMeir NNP\nMeisenheimer NNP\nMeissner NNP\nMeister NNP\nMeistersinger NNP\nMekong NNP\nMel NNP\nMelamed NNP\nMelamine JJ\nMelancholy JJ\nMelanesian NNP\nMelanie NNP\nMelanto NNP\nMelbourne NNP\nMelbourne-based JJ\nMelcher NNP\nMelies NNP\nMelinda NNP\nMelisande NNP\nMelissa NNP\nMellal NNP\nMellanby NNP\nMellen NNP\nMeller NNP\nMelling NNP\nMello NNP\nMelloan NNP\nMellon NNP\nMellor NNP\nMellow JJ\nMelodious JJ\nMelodramatic JJ\nMelody NNP\nMelott NNP\nMelrose NNP\nMelsungen NNP\nMelted VBN\nMeltex NNP\nMeltnomah NNP\nMelton NNP\nMeltzer NNP\nMelville NNP\nMelvin NNP\nMelvyn NNP\nMelzi NNP\nMember NN\nMembers NNS\nMembership NNP\nMementoes NNS\nMemoir NN\nMemoirs NNP\nMemorex NNP\nMemorial NNP\nMemorials NNP\nMemories NNPS\nMemory NN\nMemotec NNP\nMemphis NNP\nMen NNS\nMenagerie NNP\nMenahem NNP\nMenas NNP\nMencius NNP\nMencken NNP\nMendell NNP\nMendelsohn NNP\nMendelson NNP\nMendelssohn NNP\nMenderes NNP\nMendes NNP\nMendez NNP\nMendoza NNP\nMenelaus NNP\nMenell NNP\nMenem NNP\nMenendez NNP\nMenenendez NNP\nMenet NNP\nMenfolk NNS\nMengistu NNP\nMengitsu NNP\nMenilmontant NNP\nMeninas NNP\nMenlo NNP\nMennen NNP\nMennis NNP\nMennonite JJ\nMennonites NNPS\nMenomonee NNP\nMenshikov NNP\nMent NNP\nMental NNP\nMentality NN\nMenton NNP\nMentor NNP\nMentum NNP\nMentz NNP\nMenu NNP\nMenuhin NNP\nMenuhin-Amadeus NNP\nMenzel NNP\nMephistopheles NNP\nMeps NNP\nMeraBank NNP\nMerabank NNP\nMerapi NNP\nMerc NNP\nMercantile NNP\nMercantilists NNS\nMerce NNP\nMerced NNP\nMercedes NNP\nMercedes-Benz NNP\nMercedes-Benzes NNPS\nMercenary NN\nMercer NNP\nMercer-Meidinger-Hansen NNP\nMercers NNPS\nMerchandise NNP\nMerchandising NNP\nMerchant NNP\nMerchants NNP\nMerchantsBank NNP\nMercier NNP\nMerciful JJ\nMercifully RB\nMerck NNP\nMercury NNP\nMercy NNP\nMeredith NNP\nMerely RB\nMergens NNP\nMerger NN\nMergers NNPS\nMerhige NNP\nMeriden NNP\nMeridian NNP\nMerieux NNP\nMerieux-Connaught NNP\nMerigan NNP\nMerighi NNP\nMerill NNP\nMerion NNP\nMerit NNP\nMerited JJ\nMeritor NNP\nMerits NNS\nMeriwether NNP\nMerkel NNP\nMerksamer NNP\nMerkur NNP\nMerkurs NNPS\nMerle NNP\nMerleau-Ponty NNP\nMerlis NNP\nMerlo NNP\nMerner NNP\nMerola NNP\nMerom NNP\nMerrell NNP\nMerriam-Webster NNP\nMerrick NNP\nMerrill NNP\nMerrill-Lynch NNP\nMerrimac NNP\nMerrimack NNP\nMerritt NNP\nMerritt-Chapman NNP\nMerry NNP\nMerry-Go-Round NNP\nMerry-go-round NNP\nMerryman NNP\nMersa NNP\nMertle NNP\nMerton NNP\nMerv NNP\nMervin NNP\nMervyn NNP\nMeryl NNP\nMerz NNP\nMesa NNP\nMesaba NNP\nMescalero NNP\nMeselson NNP\nMeshulam NNP\nMesirov NNP\nMesnil NNP\nMeson NNP\nMess NN\nMessa FW\nMessage NN\nMessaggero NNP\nMesselt NNP\nMessenger NNP\nMessengers NNPS\nMesserschmitt NN\nMesserschmitt-Boelkow NNP\nMesserschmitt-Boelkow-Blohm NNP\nMesserschmitt-Bolkow NNP\nMessiaen NNP\nMessiah NNP\nMessina NNP\nMessinesi NNP\nMessing VBG\nMessinger NNP\nMessner NNP\nMessrs NNPS\nMessrs. NNPS\nMesta NNP\nMet NNP\nMetWest NNP\nMeta NNP\nMetabolite NN\nMetal NNP\nMetall NNP\nMetallgesellschaft NNP\nMetallurgical NNP\nMetals NNP\nMetamorphose NNP\nMetamorphosis NN\nMetamucil NNP\nMetaphysics NNS\nMetatrace NNP\nMetcalf NNP\nMeteorological NNP\nMethanol NN\nMethod NN\nMethodism NNP\nMethodist NNP\nMethodists NNPS\nMethods NNS\nMethuselah NNP\nMethuselahs NNPS\nMethyl NN\nMethylene NN\nMetier NNP\nMetrecal NNP\nMetric NNP\nMetrically RB\nMetro NNP\nMetro-Goldwyn-Mayer NNP\nMetroCorp NNP\nMetrocorp NNP\nMetromedia NNP\nMetromedia-ITT NNP\nMetronic NNP\nMetronome NNP\nMetroplex NNP\nMetropolian NNP\nMetropolis NNP\nMetropolitan NNP\nMetruh NNP\nMets NNP\nMetschan NNP\nMetter NNP\nMetz NNP\nMetzenbaum NNP\nMetzenbaums NNPS\nMetzler NNP\nMeurer NNP\nMeurons NNS\nMevacor NNP\nMevalotin NN\nMexicali NNP\nMexican JJ\nMexican-food JJ\nMexicana NNP\nMexicanos NNP\nMexicans NNPS\nMexico NNP\nMexico-United NNP\nMexico-based JJ\nMexico-watchers NNS\nMeyer NNP\nMeyerbeer NNP\nMeyers NNP\nMeyerson NNP\nMeyle NNP\nMeynell NNP\nMeyner NNP\nMeyohas NNP\nMezzanine NNP\nMezzogiorno NNP\nMfg. NNP\nMfume NNP\nMi NNP\nMiG-23 NNP\nMiG-23BN NN\nMiG-26 NNP\nMiG-29 NNP\nMiG-29s NNS\nMiGs NNPS\nMia NNP\nMiami NNP\nMiami-Madrid NNP\nMiami-based JJ\nMiantonomi NNP\nMicawber NNP\nMice NNS\nMicelles NNS\nMicelli NNP\nMich NNP\nMich. NNP\nMich.-based JJ\nMicha NNP\nMichael NNP\nMichaelcheck NNP\nMichaels NNP\nMichaelson NNP\nMichel NNP\nMichel-Etienne NNP\nMichelangelo NNP\nMichelangelos NNPS\nMichele NNP\nMichelin NNP\nMichelin\\ NNP\nMichelle NNP\nMichelman NNP\nMichelob NNP\nMichels NNP\nMichelson NNP\nMichigan NNP\nMichigan-based JJ\nMichilimackinac NNP\nMichio NNP\nMick NNP\nMickelberry NNP\nMickey NNP\nMickie NNP\nMicro NNP\nMicro-Economics NNPS\nMicroAge NNP\nMicroBilt NNP\nMicroGeneSys NNP\nMicroamerica NNP\nMicrobilt NNP\nMicrobiological NNP\nMicrobiology NNP\nMicrochannel NNP\nMicrocom NNP\nMicrodyne NNP\nMicroelectronics NNPS\nMicrolog NNP\nMicron NNP\nMicronic NNP\nMicronics NNP\nMicronite NN\nMicronyx NNP\nMicroorganisms NNS\nMicrophones NNS\nMicropolis NNP\nMicroprocessor NNP\nMicroscopes NNS\nMicroscopic JJ\nMicroscopically RB\nMicrosoft NNP\nMicrosoft-Apple NNP\nMicrosystems NNPS\nMicrowave NNP\nMicrowaves NNS\nMid NNP\nMid-America NNP\nMid-Atlantic NN\nMid-Century NNP\nMid-Continent NNP\nMid-State NNP\nMid-sized JJ\nMidas NNP\nMidco NNP\nMiddenstandsbank NNP\nMiddle NNP\nMiddle-Eastern JJ\nMiddle-South NNP\nMiddle-aged JJ\nMiddle-class JJ\nMiddlebury NNP\nMiddlefield NNP\nMiddleman NN\nMiddleness NN\nMiddlesex NNP\nMiddletown NNP\nMideast NNP\nMideastern JJ\nMidge NNP\nMidgetman NNP\nMidi NNP\nMidland NNP\nMidlantic NNP\nMidler NNP\nMidmorning NN\nMidnight NNP\nMidshipman NNP\nMidsized JJ\nMidvale NNP\nMidway NNP\nMidwesco NNP\nMidwest NNP\nMidwestern JJ\nMidwesterners NNS\nMidwood NNP\nMiert NN\nMifepristone NNP\nMifflin NNP\nMig NN\nMight MD\nMighty NNP\nMiglia NNP\nMigliorino NNP\nMignanelli NNP\nMignon NNP\nMignott NNP\nMigrant NNP\nMigs NNS\nMiguel NNP\nMihalek NNP\nMihaly NNP\nMij NNP\nMijbil NNP\nMikado NNP\nMike NNP\nMikeen NNP\nMikhail NNP\nMikie NNP\nMiklos NNP\nMikoyan NNP\nMikulich NNP\nMikulski NNP\nMil-Spec NNP\nMilacron NNP\nMilan NNP\nMilan-based JJ\nMilano NNP\nMilanoff NNP\nMilbank NNP\nMilbankes NNPS\nMilbauer NNP\nMilberg NNP\nMilburn NNP\nMilcote NNP\nMildner NNP\nMile NNP\nMileage NN\nMilenoff NNP\nMiles NNP\nMilford NNP\nMilgrim NNP\nMilhaud NNP\nMilitant JJ\nMilitary NNP\nMilitia NNS\nMilk NN\nMilka NNP\nMilkaukee NNP\nMilken NNP\nMilkens NNPS\nMilko NNP\nMilky NNP\nMill NNP\nMillard NNP\nMillay NNP\nMillbrae NNP\nMillburn NNP\nMille NNP\nMilledgeville NNP\nMillen NNP\nMillenarianism NN\nMillenbruch NNP\nMillennium NN\nMiller NNP\nMiller-Studds NNP\nMillers NNPS\nMillicent NNP\nMillicom NNP\nMillie NNP\nMilling NNP\nMilling-Stanley NNP\nMillion CD\nMillion-dollar JJ\nMillions NNS\nMillipore NNP\nMillis NNP\nMillkens NNP\nMillo NNP\nMills NNP\nMillstein NNP\nMillstone NNP\nMilman NNP\nMilne NNP\nMilos NNP\nMilpitas NNP\nMilquetoasts NNS\nMilstar NNP\nMilstein NNP\nMilt NNP\nMilties NNP\nMilton NNP\nMiltonic JJ\nMilunovich NNP\nMilwaukee NNP\nMilwaukee-based JJ\nMimesis NN\nMimi NNP\nMimieux NNP\nMinHa NNP\nMinato-Mirai NNP\nMind VB\nMindanao NNP\nMinden NNP\nMindlin NNP\nMinds NNPS\nMindscape NNP\nMindy NNP\nMine NNP\nMinella NNP\nMineola NNP\nMiner NNP\nMinera NNP\nMineral NNP\nMineralogies NNPS\nMineralogy NNP\nMinerals NNPS\nMinero NNP\nMiners NNP\nMinerva NNP\nMines NNPS\nMineworkers NNPS\nMing NNP\nMingo NNP\nMingus NNP\nMinh NNP\nMiniScribe NNP\nMiniSport NNP\nMinicar JJ\nMinikes NNP\nMinimum NNP\nMining NNP\nMinisPort NNP\nMiniscribe NNP\nMinister NNP\nMinisters NNPS\nMinistries NNP\nMinistry NNP\nMinitruck NN\nMiniver NNP\nMinkow NNP\nMinks NNP\nMinn NNP\nMinn. NNP\nMinn.-based JJ\nMinna NNP\nMinneapolis NNP\nMinneapolis-St NNP\nMinneapolis-based JJ\nMinnelli NNP\nMinnery NNP\nMinnesota NNP\nMinnesotan NNP\nMinnesotans NNPS\nMinnetonka NNP\nMinnett NNP\nMinnie NNP\nMinns NNP\nMinny NNP\nMinoan-Mycenaean NNP\nMinolta NNP\nMinor NNP\nMinorco NNP\nMinority NNP\nMinors NNS\nMinoru NNP\nMinoso NNP\nMinot NNP\nMinpeco NNP\nMinpeco-Manufacturers NNPS\nMinsk NNP\nMinster NNP\nMint NNP\nMintel NNP\nMinter NNP\nMints NNS\nMintz NNP\nMinuses NNS\nMinute NNP\nMinuteman NNP\nMinutemen NNPS\nMinutes NNPS\nMinwax NNP\nMio NNP\nMips NNP\nMira NNP\nMirabella NNP\nMirabello NNP\nMiracle NNP\nMiraculously RB\nMiraflores NNP\nMirage NNP\nMiranda NNP\nMirante NNP\nMired NNP\nMirek NNP\nMirella NNP\nMiriam NNP\nMiriani NNP\nMiringoff NNP\nMiro NNP\nMiron NNP\nMironenko NNP\nMirror NNP\nMirsky NNP\nMis-ter NNP\nMisa NNP\nMisanthrope NN\nMisawa NNP\nMisbegotten NNP\nMiscellaneous JJ\nMiscellany NNP\nMischa NNP\nMisconceptions NNS\nMisdemeanors NNS\nMiser NNP\nMiserables FW\nMisery NN\nMises NNP\nMishelevka NNP\nMishkin NNP\nMisinformation NN\nMiss NNP\nMiss. NNP\nMissa NNP\nMissail NNP\nMisses NNPS\nMissett NNP\nMissile NNP\nMissiles NNP\nMissing JJ\nMission NNP\nMissionary JJ\nMissions NNP\nMississippi NNP\nMississippian NNP\nMississippians NNS\nMissoula NNP\nMissouri NNP\nMissouri-Illinois NNP\nMissy NNP\nMist NNP\nMistake NNP\nMister NNP\nMistsubishi NNP\nMisubishi NNP\nMisunderstanding VBG\nMita NNP\nMitch NNP\nMitchel NNP\nMitchell NNP\nMitchells NNP\nMite NNP\nMitofksy NNP\nMitofsky NNP\nMitre NNP\nMitropoulos NNP\nMitsotakis NNP\nMitsu NNP\nMitsubishi NNP\nMitsui NNP\nMitsukoshi NNP\nMitsuo NNP\nMitsuoka NNP\nMitsuru NNP\nMittag NNP\nMitterrand NNP\nMityukh NNP\nMitzel NNP\nMiullo NNP\nMix NNP\nMix-Up NN\nMixed NNP\nMixte NNP\nMixtec JJ\nMiyagi NNP\nMiyata NNP\nMiyazaki NNP\nMiyoshi NNP\nMizell NNP\nMizuno NNP\nMlangeni NNP\nMlle NNP\nMme NNP\nMmes NNPS\nMmes. NNPS\nMmm UH\nMmmm UH\nMnemosyne NNP\nMnouchkine NNP\nMnuchin NNP\nMo NNP\nMo. NNP\nMo.-based JJ\nMob NN\nMobiTel NNP\nMobil NNP\nMobile NNP\nMobilfunk NNP\nMobilia NNP\nMobilization NNP\nMobs NNS\nMobutu NNP\nMoby NNP\nMoccasin NNP\nMochida NNP\nMocking NNP\nMockler NNP\nMockowiczes NNPS\nMode NNP\nModel NN\nModeling NNP\nModell NNP\nModels NNS\nModerate JJ\nModerating VBG\nModern NNP\nModest JJ\nModestly RB\nModesto NNP\nModifications NNS\nModigliani NNP\nModrall NNP\nModrow NNP\nModular NNP\nModzelewski NNP\nMoe NNP\nMoehn NNP\nMoeller NNP\nMoertel NNP\nMoet NNP\nMoet-Hennessy NNP\nMoffett NNP\nMoffitt NNP\nMogadishu NNP\nMogan NNP\nMogavero NNP\nMogg NNP\nMogul NNP\nMohamad NNP\nMohamed NNP\nMohammad NNP\nMohammed NNP\nMohammedanism NNP\nMohan NNP\nMohandas NNP\nMohasco NNP\nMohawk NNP\nMohlere NNP\nMoineau NNP\nMoines NNP\nMoines-based JJ\nMoira NNP\nMoise NNP\nMoises NNP\nMoiseyev NNP\nMoiseyeva NNP\nMoisture NN\nMojave NNP\nMokaba NNP\nMokae NNP\nMokhiber NNP\nMolard NNP\nMold NN\nMoldavia NNP\nMoldavian NNP\nMolding NN\nMole NNP\nMolecular NNP\nMoleculon NNP\nMolesworth NNP\nMoliere NNP\nMolinari NNP\nMolinaro NNP\nMoline NNP\nMoll NNP\nMoller NNP\nMollica NNP\nMollie NNP\nMolloy NNP\nMollusks NNS\nMolly NNP\nMoloch NNP\nMolokai NNP\nMolotov NNP\nMolson NNP\nMolten JJ\nMoluccas NNP\nMolvar NNP\nMom NN\nMomentarily RB\nMoments NNS\nMomentum NN\nMomma NNP\nMommor NNP\nMommy NNP\nMomoyama NNP\nMon NNP\nMon-Columbia NNP\nMon-Fay NNP\nMon-Goddess NNP\nMon-Khmer NNP\nMona NNP\nMonaco NNP\nMonagan NNP\nMonahan NNP\nMonarch NNP\nMonarque FW\nMonastery NNP\nMonchecourt NNP\nMondale NNP\nMonday NNP\nMonday's NNP\nMonday-Friday NNP\nMonday-morning JJ\nMondays NNPS\nMonde NNP\nMondonville NNP\nMondrian NNP\nMondry NNP\nMondschein NNP\nMonel NNP\nMonet NNP\nMonetary NNP\nMonets NNPS\nMonetta NNP\nMonex NNP\nMoney NNP\nMoney-fund NN\nMoney-making JJ\nMoney-market NN\nMoney-saving JJ\nMoneyed NNP\nMoneyletter NNP\nMongan NNP\nMongi NNP\nMongolia NNP\nMonica NNP\nMonier NNP\nMonieson NNP\nMonilia NN\nMonitor NNP\nMonitoring NN\nMonitors NNP\nMoniuszko NNP\nMonk NNP\nMonkey NNP\nMonmouth NNP\nMono-unsaturated JJ\nMonocite NNP\nMonoclonal JJ\nMonogamy NN\nMonogram NNP\nMonopolies NNPS\nMonopoly NN\nMonorail NNP\nMonroe NNP\nMonsanto NNP\nMonsieur NNP\nMonsky NNP\nMonster NN\nMont NNP\nMont. NNP\nMontagu NNP\nMontaigne NNP\nMontana NNP\nMontbrial NNP\nMonte NNP\nMonteath NNP\nMontedision NN\nMontedison NNP\nMonteith NNP\nMontenegrin NNP\nMonterey NNP\nMontero NNP\nMonterrey NNP\nMonterrey-based JJ\nMontesano NNP\nMonteverdi NNP\nMontevideo NNP\nMontfaucon NNP\nMontgolfier NNP\nMontgomery NNP\nMontgoris NNP\nMonth NNP\nMonthly NNP\nMonths NNS\nMonticciolo NNP\nMonticello NNP\nMontle NNP\nMontmartre NNP\nMontpelier NNP\nMontrachet NNP\nMontreal NNP\nMontreal-Toronto JJ\nMontreal-based JJ\nMontreux NNP\nMontrose NNP\nMontserrat NNP\nMontvale NNP\nMonty NNP\nMonument NNP\nMony NNP\nMood NNP\nMoods NNP\nMoody NNP\nMoog NNP\nMoon NNP\nMoon-faced JJ\nMoonachie NNP\nMoonan NNP\nMooney NNP\nMoonie NN\nMoonies NNPS\nMoonlighting NN\nMoore NNP\nMoorhead NNP\nMoorish JJ\nMoors NNPS\nMoos NNP\nMoosilauke NNP\nMor-ee-air-teeeee NNP\nMoraine NNP\nMoral NNP\nMorale NN\nMorals NNS\nMoran NNP\nMorarji NNP\nMoravcsik NNP\nMoravian NNP\nMorbid JJ\nMorcott NNP\nMore RBR\nMore-detailed JJR\nMoreau NNP\nMorehouse NNP\nMoreira NNP\nMorel NNP\nMoreland NNP\nMorelli NNP\nMoreno NNP\nMoreover RB\nMoreton NNP\nMorever RB\nMorey NNP\nMorfey NNP\nMorgan NNP\nMorgantown NNP\nMorgart NNP\nMorgenthau NNP\nMorgenzon NNP\nMori NNP\nMoriarty NNP\nMorikawa NNP\nMorimoto NNP\nMorin NNP\nMorinaga NNP\nMorino NNP\nMorishita NNP\nMorison NNP\nMorita NNP\nMoritz NNP\nMorley NNP\nMormon NNP\nMorning NNP\nMorningStar NNP\nMorningstar NNP\nMoroccan NNP\nMorocco NNP\nMoross NNP\nMorover JJR\nMorozov NNP\nMorphophonemic JJ\nMorrell NNP\nMorrill NNP\nMorris NNP\nMorrison NNP\nMorrissey NNP\nMorristown NNP\nMorrow NNP\nMorse NNP\nMort NNP\nMortage NNP\nMortality NN\nMortals NNS\nMortar NNP\nMortars NNS\nMortgage NNP\nMortgage-Backed JJ\nMortgage-backed JJ\nMortimer NNP\nMorton NNP\nMorvillo NNP\nMory NNP\nMosbacher NNP\nMoscom NNP\nMoscone NNP\nMoscow NNP\nMoscow-Shannon JJ\nMoscow-allied JJ\nMoscow-based JJ\nMose NNP\nMoselle NNP\nMoses NNP\nMosettig NNP\nMoshe NNP\nMosher NNP\nMosk NNP\nMoskovskaya NNP\nMosle NNP\nMoslem NNP\nMoslems NNPS\nMosnier NN\nMosque NNP\nMoss NNP\nMossberg JJ\nMossman NNP\nMossoviet NNP\nMost JJS\nMost-Favored JJS\nMost-Remarkable JJS\nMost-recommended JJ\nMostly RB\nMotel NNP\nMother NNP\nMothers NNPS\nMotherwell NNP\nMotif NN\nMotion NNP\nMotion-picture JJ\nMotivated VBN\nMotive NN\nMotley NNP\nMoto NNP\nMotor NNP\nMotorcars NNPS\nMotorcycle NNP\nMotorcycles NNS\nMotoren NNP\nMotoren-und NNP\nMotorfair NNP\nMotorists NNS\nMotorized NNP\nMotorola NNP\nMotors NNPS\nMotown NNP\nMotoyuki NNP\nMotsoaledi NNP\nMott NNP\nMottice NNP\nMottram NNP\nMottus NNP\nMouchet NNP\nMoudy NNP\nMough NN\nMoulin NNP\nMoulinex NNP\nMoulins NNP\nMoulton NNP\nMoultons NNPS\nMound NNP\nMoune NNP\nMount NNP\nMountain NNP\nMountain-Hi NNP\nMountainBikes NNPS\nMountaineer NNP\nMountaineering NNP\nMountains NNPS\nMounted NNP\nMourning VBG\nMouse NNP\nMousie NNP\nMouth NNP\nMouvement NNP\nMovable JJ\nMovats NNP\nMove VB\nMovement NNP\nMovements NNS\nMoves NNS\nMovie NNP\nMovieline NNP\nMovies NNP\nMovietime\\/Alfalfa NNP\nMoving VBG\nMoxley NNP\nMoynihan NNP\nMozambiquans NNS\nMozambique NNP\nMozart NNP\nMr NNP\nMr. NNP\nMrad NN\nMrads NNS\nMrs NNP\nMrs. NNP\nMs NNP\nMs. NNP\nMsec. NNS\nMt NNP\nMt. NNP\nMts. NNP\nMuammar NNP\nMubarak NNP\nMuch RB\nMuck NNP\nMud NNP\nMudd NNP\nMudge NNP\nMudugno NNP\nMueller NNP\nMuench NNP\nMuenchen NNP\nMuenchmeyer NNP\nMueslix NNP\nMuffin NNP\nMuffler NNP\nMuffling VBG\nMugabe NNP\nMuggeridge NNP\nMuhammad NNP\nMuir NNP\nMukachevo NNP\nMukherjee NNP\nMuki NNP\nMulberry NNP\nMulcahy NNP\nMuldoon NNP\nMulford NNP\nMulhouse NNP\nMullaney NNP\nMullen NNP\nMullenax NNP\nMullendore NNP\nMuller NNP\nMullerin NNP\nMulligan NNP\nMulligatawny NNP\nMullins NNP\nMulloy NNP\nMulroney NNP\nMulrooney NNP\nMulti-Income NNP\nMulti-employer JJ\nMultiMedia NNP\nMultiflow NNP\nMultifoods NNP\nMultilateral NNP\nMultimate NNP\nMultimedia NNP\nMultinational JJ\nMultiphastic NNP\nMultiple NNP\nMultiples NNPS\nMultiplexers NNS\nMultiplication NN\nMultiply VB\nMultiplying VBG\nMultnomah NNP\nMulvoy NNP\nMumford NNP\nMunchen NNP\nMunching VBG\nMuncie NNP\nMuncie-Peru NNP\nMuncipal NNP\nMuncke NNP\nMundo NNP\nMundt NNP\nMunger NNP\nMuni JJ\nMuniak NNP\nMunich NNP\nMunich-based JJ\nMunicipal JJ\nMunicipalities NNS\nMunicipals NNS\nMuniz NNP\nMunk NNP\nMunoz NNP\nMunro NNP\nMunroe NNP\nMunsell NNP\nMunster NNP\nMunsters NNPS\nMuong NNP\nMurai NNP\nMurakami NNP\nMuramatsu NNP\nMurasawa NNP\nMurat NNP\nMurata NNP\nMuratore NNP\nMurder NN\nMurderers NNS\nMurderous JJ\nMurders NNS\nMurdoch NNP\nMurfreesboro NNP\nMurguia NNP\nMurilo NNP\nMurjani NNP\nMurkland NNP\nMurmann NNP\nMurphy NNP\nMurray NNP\nMurrin NNP\nMurrow NNP\nMurtaugh NNP\nMurville NNP\nMuscat NNP\nMuscatine NNP\nMuscle NN\nMuscolina NNP\nMuscovite NNP\nMuscovites NNS\nMuscovy NNP\nMuscular NNP\nMuse NNP\nMusee NNP\nMuses NNP\nMuseum NNP\nMuseums NNS\nMushkat NNP\nMushr NN\nMusial NNP\nMusic NNP\nMusica NNP\nMusical NNP\nMusicale NNP\nMusically RB\nMusician NN\nMusicians NNS\nMusil NNP\nMusique NNP\nMuskegon NNP\nMuskoka NNP\nMuslim NNP\nMuslims NNPS\nMusmanno NNP\nMuss NNP\nMussett NNP\nMussolini NNP\nMussolini-like JJ\nMussolinis NNPS\nMussorgsky NNP\nMust MD\nMustafa NNP\nMustain NNP\nMustang NNP\nMustangs NNP\nMustard NN\nMutant NNP\nMutants NNS\nMutchin NNP\nMutinies NNS\nMutsch NNP\nMutton NNP\nMutual NNP\nMutual-fund JJ\nMutuelles NNP\nMuynak NNP\nMuzak NNP\nMuzo NNP\nMuzyka NNP\nMuzzling JJ\nMy PRP$\nMycenae NNP\nMyers NNP\nMyerson NNP\nMylan NNP\nMylanta NNP\nMylar NNP\nMynheer NNP\nMyra NNP\nMyrdal NNP\nMyron NNP\nMyrtle NNP\nMyself NNP\nMysteries NNP\nMysterious JJ\nMystery NN\nMyth NNP\nMythical JJ\nMythological JJ\nMytton NNP\nMyung NNP\nN NN\nN'Djamena NNP\nN-W NNP\nN-acetylcysteine NNP\nN-no UH\nN. NNP\nN.A NN\nN.A. NNP\nN.C NNP\nN.C. NNP\nN.C.-based JJ\nN.D NNP\nN.D. NNP\nN.E. NNP\nN.F. NNP\nN.H NNP\nN.H. NNP\nN.J NNP\nN.J. NNP\nN.J.-based JJ\nN.L. NNP\nN.M NNP\nN.M. NNP\nN.M.-based JJ\nN.R. NNP\nN.V NNP\nN.V. NNP\nN.Y NNP\nN.Y. NNP\nN.Y.-based JJ\nN.Y.U. NNP\nN/NNP.Y.C. NNP\nNAACP NNP\nNAB NNP\nNAC NNP\nNAEBM NNP\nNAFTA NNP\nNAHB NNP\nNAIR NNP\nNAIRO NNP\nNALU NNP\nNAM NNP\nNAR NNP\nNAREB NNP\nNAS NNP\nNASA NNP\nNASA-Air NNP\nNASAA NNP\nNASD NNP\nNASDA NNP\nNASDAQ NNP\nNATION'S NN\nNATIONAL NNP\nNATIONWIDE NNP\nNATO NNP\nNATO-Warsaw NNP\nNAV:22.15 NN\nNB NNP\nNBA NNP\nNBC NNP\nNBC-Sears NNP\nNBC-TV NNP\nNBC-owned JJ\nNBI NNP\nNBS NNP\nNC NNP\nNCAA NNP\nNCAAs NNS\nNCB NNP\nNCI NNP\nNCNB NNP\nNCR NNP\nNCTA NNP\nNDN NNP\nNE NNP\nNEA NNP\nNEARLY JJ\nNEATNESS NN\nNEC NNP\nNEC-compatible JJ\nNED NNP\nNEEDS NNS\nNEG NNP\nNEKOOSA NNP\nNESB NNP\nNET JJ\nNETWORK NN\nNEVER RB\nNEW JJ\nNEWHALL NNP\nNEWS NN\nNEWSPAPERS NNS\nNEWT NN\nNFA NNP\nNFC NNP\nNFIB NNP\nNFL NNP\nNGL NNP\nNH NNP\nNHI NNP\nNHL NNP\nNHTSA NNP\nNIAGARA NNP\nNICHOLS NNP\nNIGHT NN\nNIH NNP\nNIH-appointed JJ\nNJ NNP\nNKF NNP\nNKK NNP\nNL NNP\nNL. NNP\nNLD NNP\nNLO NNP\nNLRB NNP\nNLRDA NNP\nNMB NNP\nNME NNP\nNMR NNP\nNMS NNP\nNMTBA NNP\nNO DT\nNOC NNP\nNOP NN\nNORAD NNP\nNORC NNP\nNORDSTROM NNP\nNORIEGA NNP\nNORIEGA'S NNP\nNORTH NNP\nNORTHEAST NN\nNORTHERN NNP\nNOT RB\nNOT-GUILTY JJ\nNOTE NN\nNOTES NNS\nNOVA NNP\nNOVEMBER NNP\nNOW RB\nNP NNP\nNP-27 NNP\nNPD NNP\nNPL NNP\nNRA NNP\nNRC NNP\nNRDC NNP\nNRL NNP\nNRLDA NNP\nNRM NNP\nNS NNP\nNS-X NNP\nNSA NNP\nNSBU NNP\nNSC NNP\nNSM NNP\nNSPA NNP\nNT&SA NNP\nNT&SA-run JJ\nNTC NNP\nNTG NNP\nNTSB NNP\nNTT NNP\nNU NNP\nNUCLEAR NN\nNUM NNP\nNUMBER NN\nNUMBERS NNS\nNURSING NN\nNUS NNP\nNV NNP\nNW NNP\nNWA NNP\nNY NNP\nNYC NNP\nNYSE NNP\nNYU NNP\nNZ$ $\nNZI NNP\nNabisco NNP\nNabokov NNP\nNac NNP\nNacchio NNP\nNachman NNP\nNachmany NNP\nNacht FW\nNacion NNP\nNacional NNP\nNaclerio NNP\nNadeau NNP\nNadelmann NNP\nNader NNP\nNaderite NNP|JJ\nNaderites NNS\nNadine NNP\nNadir NNP\nNadja NNP\nNae UH\nNaess NNP\nNaftalis NNP\nNaga NNPS\nNagamo NNP\nNaganawa NNP\nNagano NNP\nNagasaki NNP\nNagayama NNP\nNagel NNP\nNagelvoort NNP\nNagin NNP\nNagle NNP\nNagorno-Karabakh NNP\nNagorski NNP\nNagoya NNP\nNagrin NNP\nNaguib NNP\nNagy NNP\nNagyAntal NNP\nNagykanizsa NNP\nNagymaros NNP\nNahas NNP\nNail NNP\nNaiman NNP\nNairne NNP\nNairobi NNP\nNaive JJ\nNajarian NNP\nNaji NNP\nNakagawa NNP\nNakajima NNP\nNakamura NNP\nNakasone NNP\nNakayasu NNP\nNakazato NNP\nNaked JJ\nNakhamkin NNP\nNakoma NNP\nNaktong NNP\nNalbone NNP\nNalcor NNP\nNalick NNP\nNam NNP\nName NN\nName-dropping NN\nNamed VBN\nNameless NNP\nNamely RB\nNames NNS\nNamib NNP\nNamibia NNP\nNamibian JJ\nNamibian-independence NN\nNan NNP\nNana NNP\nNancy NNP\nNando NNP\nNanjing NNP\nNanofilm NNP\nNanook NNP\nNantucket NNP\nNaomi NNP\nNap NNP\nNapa NNP\nNaperville NNP\nNaphta NNP\nNapkin NN\nNapkins NNS\nNaples NNP\nNaples-born JJ\nNapoleon NNP\nNapoleonic JJ\nNapolitan NNP\nNara NNP\nNarberth NNP\nNarbonne NNP\nNarcotics NNPS\nNaren NNP\nNarita NNP\nNarragansett NNP\nNarrative JJ\nNarrow JJ\nNarrow-gauged JJ\nNarrowing VBG\nNarrowly NNP\nNarver NNP\nNary NNP\nNasdaq NNP\nNasdaq-traded JJ\nNasdaq\\/National NNP\nNash NNP\nNashua NNP\nNashville NNP\nNasional NNP\nNassau NNP\nNassau-Suffolk NNP\nNasser NNP\nNast NNP\nNaster NNP\nNastro NNP\nNasty JJ\nNat NNP\nNatWest NNP\nNatalia NNP\nNatalie NNP\nNatcher NNP\nNatchez NNP\nNate NNP\nNath NNP\nNathan NNP\nNathan-Bond NNP\nNathanael NNP\nNathaniel NNP\nNatick NNP\nNation NN\nNational NNP\nNationalcar NNP\nNationale NNP\nNationalism NN\nNationalist JJ\nNationalistic JJ\nNationalists NNPS\nNationalized VBN\nNationally RB\nNations NNPS\nNations-monitored JJ\nNationwide NNP\nNative NNP\nNatrona NNP\nNattily RB\nNatural NNP\nNaturalization NNP\nNaturally RB\nNaturals NNPS\nNaturam FW\nNature NNP\nNatwest NNP\nNauman NNP\nNaumberg NNP\nNausea NN\nNautilus NNP\nNavajo NNP\nNavajos NNPS\nNaval NNP\nNavcom NNP\nNavforJapan NNP\nNavigation NNP\nNavin NNP\nNavistar NNP\nNavona NNP\nNavy NNP\nNaw UH\nNawal NNP\nNawbo NNP\nNaxos NNP\nNazal NNP\nNazar NNP\nNazarene NNP\nNazario NNP\nNazarova NNP\nNazem NNP\nNazer NNP\nNazi NNP\nNazi-minded JJ\nNazi-occupied JJ\nNazia NNP\nNazionale NNP\nNazis NNPS\nNazism NNP\nNazzella NNP\nNdola NNP\nNe NNP\nNeal NNP\nNeanderthal JJ\nNeanderthals NNS\nNeapolitan NNP\nNear IN\nNear-Term RB\nNear-term JJ\nNearby RB\nNearing VBG\nNearly RB\nNearness NN\nNeas NNP\nNeave NNP\nNeb NNP\nNeb. NNP\nNeb.-based JJ\nNeblett NNP\nNebraska NNP\nNec FW\nNecci NNP\nNecesarily NNP\nNecessary JJ\nNecessity NN\nNeck NNP\nNecklace NNP\nNed NNP\nNedelman NNP\nNedelya NNP\nNederland NNP\nNederlanden NNP\nNederlander NNP\nNederlandsche NNP\nNederlandse NNP\nNedlloyd NNP\nNeece NNP\nNeed VB\nNeedham NNP\nNeeding VBG\nNeedless JJ\nNeeds NNS\nNeedy NNP\nNeesen NNP\nNeff NNP\nNegas NNP\nNegative JJ\nNeglect VBP\nNeglected NNP\nNeglecting VBG\nNegligence NN\nNegmegan NNP\nNegotiable JJ\nNegotiating VBG\nNegotiation NN\nNegotiations NNS\nNegotiators NNS\nNegro NNP\nNegro-appeal JJ\nNegroes NNPS\nNegroid JJ\nNegus NNP\nNehf NNP\nNehru NNP\nNeibart NNP\nNeidl NNP\nNeighbor NN\nNeihart NNP\nNeil NNP\nNeill NNP\nNeils NNP\nNeilson NNP\nNeiman NNP\nNeiman-Marcus NNP\nNeinas NNP\nNeisse NNP\nNeisse-Oder NNP\nNeither CC\nNeitzbohr NNP\nNekoosa NNP\nNell NNP\nNellcor NNP\nNellie NNP\nNellies NNPS\nNelms NNP\nNelson NNP\nNelson-Atkins NNP\nNemesis NNP\nNemeth NNP\nNennius NNP\nNeo-Classicism NNP\nNeo-Classicists NNPS\nNeo-Ecclesiasticism NNP\nNeo-Jazz NNP\nNeo-Paganism NNP\nNeo-Popularism NNP\nNeo-Romanticism NNP\nNeoax NNP\nNeodata NNP\nNeoliberal JJ\nNeon NNP\nNepal NNP\nNepalese NNPS\nNeptune NNP\nNerds NNS\nNerien NNP\nNerio NNP\nNernst NNP\nNero NNP\nNerves NNS\nNervous JJ\nNervousness NN\nNesbit NNP\nNesbitt NNP\nNesconset NNP\nNesi NNP\nNessel NNP\nNessen NNP\nNest NNP\nNeste NNP\nNestle NNP\nNestled VBN\nNestor NNP\nNet JJ\nNetFrame NNP\nNetWare NNP\nNetherland NNP\nNetherlands NNP\nNetherlands-based JJ\nNetsch NNP\nNett NNP\nNettleton NNP\nNetto NNP\nNetty NNP\nNetwork NNP\nNetwork-access JJ\nNetworks NNP\nNeubauer NNP\nNeuberger NNP\nNeue NNP\nNeuharth NNP\nNeuharths NNPS\nNeuhaus NNP\nNeumann NNP\nNeurenschatz NNP\nNeurex NNP\nNeurological NNP\nNeurosciences NNP\nNeurotron NNP\nNeusteter NNP\nNeusteters NNP\nNeutral NNP\nNev NNP\nNev. NNP\nNevada NNP\nNevah NNP\nNeveh NNP\nNever RB\nNevermind VB\nNeversink NNP\nNevertheless RB\nNeveu NNP\nNeville NNP\nNevsky NNP\nNew NNP\nNew-England NNP\nNew-Waver NNP\nNew-York NNP\nNew-construction NN\nNew-home JJ\nNew-issue JJ\nNewVector NNP\nNewall NNP\nNewark NNP\nNewarker NNP\nNewberg NNP\nNewbery NNP\nNewbiggin NNP\nNewbold NNP\nNewbridge NNP\nNewburger NNP\nNewburgh NNP\nNewbury NNP\nNewburyport NNP\nNewcastle NNP\nNewcomb NNP\nNewcomers NNS\nNewell NNP\nNewells NNPS\nNewer JJR\nNewest JJS\nNewfoundland NNP\nNewgate NNP\nNewhart NNP\nNewhouse NNP\nNewitt NNP\nNewkirk NNP\nNewly RB\nNewlywed NNP\nNewman NNP\nNewmark NNP\nNewmont NNP\nNewport NNP\nNewport-based JJ\nNewquist NNP\nNews NNP\nNews-American NNP\nNewsEdge NNP\nNewsHour NNP\nNews\\/Retrieval NNP\nNewsday NNP\nNewshour NN\nNewsletter NNP\nNewsnight NNP\nNewsom NNP\nNewsote NNP\nNewspaper NNP\nNewspapermen NNS\nNewspapers NNPS\nNewspeak NNP\nNewsprint NN\nNewsreel NNP\nNewsstands NNS\nNewsweek NNP\nNewswire NNP\nNewt NNP\nNewton NNP\nNewton-John NNP\nNewtonian JJ\nNewtonville NNP\nNewtown NNP\nNewts NNP\nNext JJ\nNext-Most-Remarkable JJ\nNezhari NNP\nNg NNP\nNghe NNP\nNgo NNP\nNgoc NNP\nNguyen NNP\nNiagara NNP\nNiarchos NNP\nNibble NNP\nNibelungenlied NNP\nNicandra NNP\nNicaragua NNP\nNicaraguan JJ\nNicaraguans NNPS\nNicastro NNP\nNiccolo NNP\nNice JJ\nNiche-itis NN\nNichias NNP\nNichido NNP\nNichol NNP\nNicholas NNP\nNichols NNP\nNicholson NNP\nNichtige NN\nNiciporuk NNP\nNick NNP\nNickel-iron JJ\nNickelodeon NNP\nNickelson NNP\nNickerson NNP\nNicki NNP\nNicklaus NNP\nNickle NNP\nNickles NNP\nNickless NNP\nNico NNP\nNicodemus NNP\nNicol NNP\nNicolas NNP\nNicole NNP\nNicolo NNP\nNicolson NNP\nNicos NNP\nNicosia NNP\nNidal NNP\nNiebuhr NNP\nNiedermaier NNP\nNiels NNP\nNielsen NNP\nNielson NNP\nNiem NNP\nNieman NNP\nNiepce NNP\nNietzsche NNP\nNigel NNP\nNiger NNP\nNigeria NNP\nNigga NN\nNigger NN\nNiggertown NNP\nNight NNP\nNightclubs NNPS\nNightingale NN\nNightlife NN\nNightline NNP\nNightly NNP\nNightmare NNP\nNights NNP\nNightshade NNP\nNightwatch NNP\nNihon NNP\nNijinska NNP\nNijinsky NN\nNika NNP\nNike NNP\nNike-Zeus NNP\nNikes NNPS\nNikita NNP\nNikitas NNP\nNikka NNP\nNikkei NNP\nNikkhah NNP\nNikko NNP\nNikolai NNP\nNikolais NNP\nNikon NNP\nNikonov NNP\nNikons NNPS\nNile NNP\nNiles NNP\nNilsen NNP\nNilson NNP\nNilsson NNP\nNimbus-7 NNP\nNimitz NNP\nNina NNP\nNine CD\nNine-month JJ\nNines NNPS\nNineteen CD\nNineteen-sixty NNP\nNineteenth JJ\nNineteenth-century JJ\nNineties NNPS\nNinety CD\nNinety-Eight NNP\nNinety-Two NNP\nNinety-nine CD\nNineveh NNP\nNinja NNP\nNino NNP\nNinomiya NNP\nNintendo NNP\nNintendos NNPS\nNinth NNP\nNiobe VB\nNipe NNP\nNipp NNP\nNippon NNP\nNipponese JJ\nNippur NN\nNipsco NNP\nNisbet NNP\nNischwitz NNP\nNishi NNP\nNishiki NNP\nNishima NNP\nNishimo NNP\nNishimura NNP\nNishizuka NNP\nNissan NNP\nNissans NNPS\nNissei NNP\nNisshin NNP\nNisshinbo NNP\nNissho NNP\nNissho-Iwai NNP\nNissin NNP\nNite NNP\nNitrogen NN\nNitsuko NNP\nNitto NNP\nNitze NNP\nNiva NNP\nNiven NNP\nNixdorf NNP\nNixon NNP\nNizer NNP\nNjust NNP\nNkrumah NNP\nNo DT\nNo-Cal NNP\nNo-Name NNP\nNo-Smoking NNP\nNo-Tobacco NNP\nNo-o-o UH\nNo. NN\nNo.3 JJ\nNoah NNP\nNoam NNP\nNob NNP\nNobel NNP\nNobels NNPS\nNoble NNP\nNoblesville NNP\nNobody NN\nNobrega NNP\nNobuto NNP\nNobuya NNP\nNobuyuki NNP\nNoces NNP\nNoctiluca NN\nNocturne NNP\nNod NNP\nNodding VBG\nNoel NNP\nNoffsinger NNP\nNofzinger NNP\nNogales NNP\nNogaret NNP\nNogay NNP\nNogol NNP\nNokia NNP\nNokomis NNP\nNolan NNP\nNolen NNP\nNoll NNP\nNomani NNP\nNomenklatura NN\nNomi NNP\nNomia NNP\nNomination NN\nNominations NNS\nNomisma NNP\nNomo NNP\nNomura NNP\nNon FW\nNon-Catholics NNS\nNon-Dissonant NNP\nNon-God UH\nNon-Proliferation NNP\nNon-Smokers NNP\nNon-`` ``\nNon-actors NNS\nNon-bank JJ\nNon-callable JJ\nNon-cosmetic JJ\nNon-executive JJ\nNon-interest JJ\nNon-lawyers NNS\nNon-money JJ\nNon-performing JJ\nNon-residential JJ\nNon-smoking NN\nNon-steel JJ\nNonProfit NNP\nNonbuilding JJ\nNonconformist NNP\nNonconformists NNS\nNone NN\nNonelectrical JJ\nNonetheless RB\nNonfat NNP\nNonfinancial JJ\nNonmagical NNP\nNonperformers NNS\nNonperforming JJ\nNonprofit JJ\nNonrecurring JJ\nNonresident JJ\nNonresidential JJ\nNonsense NN\nNonsexist NNP\nNonsmokers NNP\nNonspecific JJ\nNonunion NNP\nNoon NNP\nNoonan NNP\nNoonday NNP\nNope UH\nNor CC\nNora NNP\nNorall NNP\nNoranda NNP\nNorberg NNP\nNorbert NNP\nNorberto NNP\nNorborne NNP\nNorcen NNP\nNorcross NNP\nNord NNP\nNorddeutsche NNP\nNordic JJ\nNordine NNP\nNordmann NNP\nNordson NNP\nNordstrom NNP\nNordyke NNP\nNorell NNP\nNorex NNP\nNorfolk NNP\nNorge NNP\nNorgle NNP\nNori NNP\nNoriega NNP\nNoriegan JJ\nNoriegas NNS\nNorimasa NNP\nNorio NNP\nNorm NNP\nNorma NNP\nNormal JJ\nNormalize VB\nNormally RB\nNorman NNP\nNormandy NNP\nNorment NNP\nNorms NNS\nNormura NNP\nNorodom NNP\nNorris NNP\nNorris-LaGuardia NNP\nNorristown NNP\nNorsemen NNPS\nNorsk NNP\nNorske NNP\nNorte NNP\nNortek NNP\nNortex NNP\nNorth NNP\nNorth-Central JJ\nNorth-Rhine NNP\nNorthampton NNP\nNorthamptonshire NNP\nNorthbrook NNP\nNortheast NNP\nNortheastern JJ\nNortheners NNP\nNorthern NNP\nNortherner NN\nNortherners NNPS\nNorthfield NNP\nNorthgate NNP\nNorthington NNP\nNorthland NN\nNorthlich NNP\nNorthridge NNP\nNorthrop NNP\nNorthrup NNP\nNorths NNPS\nNorthumberland NN\nNorthview NNP\nNorthwest NNP\nNorthwest-Skinner NNP\nNorthwestern NNP\nNorthwood NNP\nNorthy NNP\nNorton NNP\nNorville NNP\nNorwalk NNP\nNorway NNP\nNorwegian JJ\nNorwegians NNPS\nNorwell NNP\nNorwest NNP\nNorwich NNP\nNorwick NNP\nNorwitz NNP\nNorwood NNP\nNos. NNS\nNoschese NNP\nNosebleed NN\nNoskova NNP\nNostalgia NN\nNostalgic JJ\nNostradamus NNP\nNot RB\nNot-Held NNP\nNot-held JJ\nNotable NNP\nNotably RB\nNotarius NNP\nNote VB\nNotebooks NNP\nNoted JJ\nNotes NNS\nNoteware NNP\nNothing NN\nNotice NN\nNoticias NNP\nNoticing VBG\nNoting VBG\nNotitia NNS\nNotre NNP\nNotre-Dame NNP\nNott NNP\nNotte NNP\nNotwithstanding IN\nNoufou NNP\nNouns NNS\nNourbakhsh NNP\nNourishing JJ\nNouveaux NNP\nNouvelle NNP\nNouvelle-Heloise NNP\nNov NNP\nNov. NNP\nNov.30 CD\nNova NNP\nNovacor NNP\nNovak NNP\nNovalta NNP\nNovametrix NNP\nNovato NNP\nNovaya NNP\nNovell NNP\nNovello NNP\nNovember NNP\nNovember-December NNP\nNovember\\ JJ\nNovick NNP\nNovo NNP\nNovo\\ NNP\nNovosibirsk NNP\nNovosti NNP\nNow RB\nNowacki NNP\nNowadays RB\nNowak NNP\nNowhere RB\nNoxell NNP\nNoxema NNP\nNoxzema NNP\nNoyes NNP\nNoyon-la-Sainte NNP\nNozze FW\nNu NNP\nNu-Med NNP\nNu-West NNP\nNucci NNP\nNuclear NNP\nNuclepore NNP\nNucor NNP\nNucor-like JJ\nNude NNP\nNuell NNP\nNueva NNP\nNuf RB\nNugent NNP\nNugget NNP\nNuggets NNPS\nNuit NNP\nNujoma NNP\nNumb JJ\nNumber NN\nNumbers NNS\nNumeral NNP\nNumerous JJ\nNummi NNP\nNunes NNP\nNunn NNP\nNunn-McCurdy NNP\nNuns NNPS\nNunzio NNP\nNuovo NNP\nNuremberg NNP\nNureyev NNP\nNurse NNP\nNurseries NNPS\nNursery NNP\nNurses NNS\nNursing NNP\nNusbaum NNP\nNussbaum NNP\nNut NNP\nNutcracker NNP\nNutley NNP\nNutmeg NNP\nNutraSweet NNP\nNutrasweet NNP\nNutrition NNP\nNutritional NNP\nNutritionists NNS\nNutritious JJ\nNutt NNP\nNuttall NNP\nNutting NNP\nNuttle NNP\nNuveen NNP\nNux NN\nNuys NNP\nNuzhet NNP\nNyack NNP\nNyberg NNP\nNyckeln NNP\nNye NNP\nNyers NNP\nNyheter NNP\nNyiregyhaza NNP\nNykvist NNP\nNylev NNP\nNymagic NNP\nNymark NNP\nNymex NNP\nNymphomaniacs NNS\nNynex NNP\nNyunt NNP\nO NNP\nO&Y NNP\nO'Banion NNP\nO'Boyle NNP\nO'Brian NNP\nO'Brien NNP\nO'Brien's NNP\nO'Casey NNP\nO'Clock NNP\nO'Connell NNP\nO'Connor NNP\nO'Connor's NNP\nO'Donnell NNP\nO'Donnell's NNP\nO'Donnell-Usen NNP\nO'Donovan NNP\nO'Dwyer NNP\nO'Dwyer's NNP\nO'Dwyers NNPS\nO'Gara NNP\nO'Grady NNP\nO'Hanlon NNP\nO'Hara NNP\nO'Hare NNP\nO'Herron NNP\nO'Keefe NNP\nO'Kicki NNP\nO'Lakes NNP\nO'Linn NNP\nO'Linn's NNP\nO'Loughlin NNP\nO'Malley NNP\nO'Meara NNP\nO'Melveny NNP\nO'Neil NNP\nO'Neill NNP\nO'Neill's NNP\nO'Reilly NNP\nO'Rourke NNP\nO'Shea NNP\nO'Sullivan NNP\nO'Toole NNP\nO*/NNP&M NN\nO*/NNP&Y NN\nO-B NNP\nO. NNP\nO.B. NNP\nO.E. NNP\nO.E.C.D. NNP\nO.G. NNP\nO.J. NNP\nO.K UH\nO.K. UH\nO.N. NNP\nO.P. NNP\nO.S.K. NNP\nO.T. NNP\nOAS NNP\nOBE NNP\nOBERMAIER NNP\nOBTS NNP\nOBrion NNP\nOCC NNP\nOCC-member JJ\nOCCIDENTAL NNP\nOCN-PPL NNP\nOCR NNP\nODDITIES NNS\nODI NNP\nOEC NNP\nOECD NNP\nOEL NNP\nOEP NNP\nOEX NNP\nOF IN\nOFF IN\nOFFENSIVE JJ\nOFFERED NNP\nOFFICER NN\nOFFICES NNS\nOFFICIALS NNS\nOGDEN NNP\nOGURA NNP\nOH NN\nOHIO NNP\nOIF NNP\nOIL NNP\nOK JJ\nOK. UH\nOKC NNP\nOKI NNP\nOKing NNP\nOLE NNP\nOLYMPIA NNP\nOMB NNP\nOME NNP\nOMG UH\nON IN\nONCE RB\nONE CD\nONE-DAY JJ\nONEIDA NNP\nONEZIE NNP\nOOH NNP\nOPA-LOCKA NNP\nOPEC NNP\nOPEN JJ\nOPPENHEIMER NNP\nOPTIONS NNS\nOR CC\nORACLE NNP\nORANGE NN\nORDER NNP\nORDERED VBN\nORDERS VBZ\nORGAN-TRANSPLANT JJ\nORGANIZED VBN\nORTEGA NNP\nOSHA NNP\nOST NNP\nOS\\ NNP\nOS\\/2 NNP\nOTC NNP\nOTC-market JJ\nOTS NNP\nOUR PRP$\nOUSTED VBN\nOUT IN\nOUTLOOK NNP\nOUTRAGE NN\nOUTSIDE JJ\nOVER IN\nOVERHAUL NN\nOVERSEAS JJ\nOWI NNP\nOWNER NNP\nOafid NNP\nOak NNP\nOakar NNP\nOakbrook NNP\nOakes NNP\nOakhurst NNP\nOakland NNP\nOakland-Alameda NNP\nOakland-Berkeley NNP\nOaklanders NNPS\nOakmont NNP\nOaks NNP\nOakwood NNP\nOana NNP\nOases NNS\nOasis NNP\nOat NNP\nOatnut NNP\nOats NNPS\nOb-Irtysh NNP\nObama NNP\nObedience NN\nObelisk NNP\nOberhausen NNP\nOberkfell NNP\nOberlin NNP\nObermaier NNP\nOberman NNP\nObernauer NNP\nOberreit NNP\nOberstar NNP\nOberweis NNP\nObesity NN\nObey NNP\nObeying VBG\nObispo NNP\nObject NN\nObjections NNS\nObjects NNS\nObligations NNS\nObligingly RB\nObservations NNS\nObservatory NNP\nObserver NNP\nObservers NNS\nObserving VBG\nObsolescence NNP\nObstacles NNS\nObviously RB\nOccasional JJ\nOccasionally RB\nOccident NNP\nOccidental NNP\nOccupation NNP\nOccupational NNP\nOccupational-Urgent NNP\nOce NNP\nOce-Van NNP\nOcean NNP\nOceana NNP\nOceania NNP\nOceanic NNP\nOceanography NNP\nOceans NNS\nOceanside NNP\nOchoa NNP\nOchs NNP\nOchsenschlager NNP\nOct NNP\nOct. NNP\nOct.13 NNP\nOctave NNP\nOctavia NNP\nOctel NNP\nOctet NNP\nOctober NNP\nOctober-December NNP\nOctober-March NNP\nOctobers NNPS\nOctobrists NNPS\nOctopus NNP\nOctoroon NNP\nOculon NNP\nOczakov NNP\nOdakyu NNP\nOdd NNP\nOdd-lot JJ\nOdd-year JJ\nOddly RB\nOdds NNS\nOddy NNP\nOdean NNP\nOdell NNP\nOdeon NNP\nOder NNP\nOdessa NNP\nOdetics NNP\nOdilo NNP\nOdom NNP\nOdors NNP\nOdysseus NNP\nOdyssey NNP\nOedipal JJ\nOedipus NNP\nOei NNP\nOerlikon-Buehrle NNP\nOersted NNP\nOeschger NNP\nOesterreichische NNP\nOestreich NNP\nOf IN\nOff IN\nOff-Broadway NNP\nOff-Road NNP\nOff-Track NNP\nOff-flavor NN\nOff-price JJ\nOff-season JJ\nOffenbach NNP\nOffenses NNS\nOffensive NNP\nOffer VB\nOffered NNP\nOffering NN\nOffers VBZ\nOffice NNP\nOffice. NNP\nOfficer NNP\nOfficers NNS\nOffices NNS\nOfficial JJ\nOfficially RB\nOfficials NNS\nOfficielle NNP\nOfficine NNP\nOffsetting VBG\nOffshore NNP\nOffutt NNP\nOften RB\nOgallala NNP\nOgden NNP\nOgilvy NNP\nOgilvyspeak NNP\nOgisu NNP\nOglethorpe NNP\nOgonyok NNP\nOgunjobi NNP\nOgura NNP\nOh UH\nOh-Hyun NNP\nOh-the-pain-of-it UH\nOhara NNP\nOhbayashi NNP\nOher NNP\nOhga NNP\nOhio NNP\nOhio-based JJ\nOhio-chartered JJ\nOhioan NNP\nOhioans NNPS\nOhira NNP\nOhkuma NNP\nOhlman NNP\nOhls NNP\nOhmae NNP\nOi NNP\nOil NNP\nOil-field NN\nOil-related JJ\nOil-tool NN\nOilcloth NN\nOilers NNP\nOilfields NNS\nOilgram NNP\nOils NNS\nOilwell NNP\nOistrakh NNP\nOji NNP\nOjibwa NNP\nOk NNP\nOka NNP\nOkada NNP\nOkamoto NNP\nOkasan NNP\nOkay UH\nOkayama NNP\nOkies NNP\nOkinawa NNP\nOkla NNP\nOkla. NNP\nOklahoma NNP\nOklahoman NNP\nOkobank NNP\nOkrent NNP\nOkuma NNP\nOkura NNP\nOl JJ\nOlaf NNP\nOlathe NNP\nOlatunji NNP\nOlav NNP\nOlay NNP\nOlayan NNP\nOld NNP\nOld-House NNP\nOld-time JJ\nOld-timers NNS\nOlde NNP\nOldenburg NNP\nOlder JJR\nOldham NNP\nOlds NNP\nOldsmobile NNP\nOle JJ\nOlea NNP\nOlean NNP\nOleanders NNS\nOlechowski NNP\nOleg NNP\nOlenegorsk NNP\nOlerichs NNPS\nOlestra NN\nOley NNP\nOlga NNP\nOlgivanna NNP\nOlick NNP\nOlin NNP\nOlissa NNP\nOlivares NNP\nOlive NNP\nOliveira NNP\nOliver NNP\nOlivet NNP\nOlivetti NNP\nOlivia NNP\nOlivier NNP\nOllari NNP\nOlle NNP\nOllie NNP\nOlney NNP\nOlof NNP\nOlsen NNP\nOlshan NNP\nOlson NNP\nOlsson NNP\nOlszewski NNP\nOlszewskiof NNP\nOlvey NNP\nOlympia NNP\nOlympian JJ\nOlympic NNP\nOlympics NNPS\nOlympus NN\nOmaha NNP\nOman NNP\nOmani JJ\nOmar NNP\nOmega NNP\nOmegaSource NNP\nOmg UH\nOmission NN\nOmni NNP\nOmniBank NNP\nOmnibank NNP\nOmnibus NN\nOmnicare NNP\nOmnicom NNP\nOmnicorp NNP\nOmron NNP\nOmsk NNP\nOn IN\nOn-Broadway NNP\nOn-Line NNP\nOn-Site NNP\nOn-Target NNP\nOn-to-Spokane NNP\nOnan NNP\nOnce RB\nOnce-only JJ\nOncoScint NNP\nOncogen NNP\nOncogene NNP\nOncogenes NNS\nOncology NNP\nOncor NNP\nOncotech NNP\nOndaatje NNP\nOne CD\nOne-Cancels-The-Other NNP\nOne-Horse JJ\nOne-Leg NNP\nOne-Step NNP\nOne-armed JJ\nOne-day JJ\nOne-fourth NN\nOne-inch JJ\nOne-third NN\nOne-time JJ\nOne-year NNP\nOnegin NNP\nOneida NNP\nOneita NNP\nOneok NNP\nOnes NNP\nOneupmanship NN\nOnex NNP\nOng NNP\nOnidi NNP\nOnleh RB\nOnline NNP\nOnlookers NNS\nOnly RB\nOnni NNP\nOnno NNP\nOno NNP\nOnondaga NNP\nOnset NN\nOnsets NNS\nOnstage RB\nOnt. NNP\nOntario NNP\nOooo UH\nOops UH\nOopsie NNP\nOopsie-Cola NNP\nOp. NNP\nOpa-Locka NNP\nOpaque JJ\nOpax NNP\nOpel NNP\nOpelika NNP\nOpen NNP\nOpen-adoption NN\nOpen-end JJ\nOpen-flame JJ\nOpening VBG\nOpera NNP\nOperating NN\nOperating-profit NN\nOperating-system JJ\nOperation NNP\nOperational JJ\nOperationally RB\nOperations NNP\nOperators NNP\nOpere NNP\nOphthalmic NNP\nOpinion NNP\nOpinions NNS\nOpositora NNP\nOppen NNP\nOppenheim NNP\nOppenheimer NNP\nOpponents NNS\nOpportunities NNS\nOpportunity NNP\nOpposed VBN\nOpposite IN\nOpposition NN\nOppressive JJ\nOprah NNP\nOptek NNP\nOptic-Electronic NNP\nOptical NNP\nOptical-storage JJ\nOptics NNP\nOptima NNP\nOptimism NN\nOptimists NNS\nOption NNP\nOptions NNPS\nOptique NNP\nOpus NNP\nOr CC\nOracle NNP\nOral NNP\nOran NNP\nOrange NNP\nOrangeburg NNP\nOranges NNPS\nOranjemund NNP\nOratory NNP\nOrban NNP\nOrbe NNP\nOrben NNP\nOrbis NNP\nOrbital NNP\nOrbiting NNP\nOrchard NNP\nOrchesis NNP\nOrchester NNP\nOrchestra NNP\nOrchestral NNP\nOrchestration NNP\nOrchestre NNP\nOrcutt NNP\nOrd NNP\nOrden NNP\nOrder NNP\nOrder-Entry NN\nOrdered VBD\nOrders NNS\nOrdinance NNP\nOrdinaries NNPS\nOrdinarily RB\nOrdinary JJ\nOrdnance NNP\nOre NNP\nOre. NNP\nOre.-based JJ\nOregon NNP\nOregonian NNP\nOregonians NNPS\nOrejuela NNP\nOrel NNP\nOrem NNP\nOremland NNP\nOrens NNP\nOreos NNPS\nOresme NNP\nOresteia NNP\nOrestes NNP\nOrfeo NNP\nOrg NNP\nOrgan NN\nOrganic NNP\nOrganification NN\nOrganisation NNP\nOrganization NNP\nOrganizational JJ\nOrganizations NNP\nOrganized NNP\nOrganizers NNS\nOrganizing NNP\nOrgotein NNP\nOriani NNP\nOrient NNP\nOriental JJ\nOrigen NNP\nOrigin NN\nOriginal NNP\nOriginally RB\nOriginals NNS\nOrigins NNP\nOrin NNP\nOrinoco NNP\nOriole NNP\nOrioles NNP\nOrion NNP\nOrissa NNP\nOrix NNP\nOrkem NNP\nOrkney NNP\nOrlando NNP\nOrleans NNP\nOrleans-based JJ\nOrlick NNP\nOrlowski NNP\nOrly NNP\nOrmat NNP\nOrmoc NNP\nOrmsby NNP\nOrmstedt NNP\nOrnament NN\nOrnelas NNP\nOrnette NNP\nOrnithological NNP\nOrnstein NNP\nOrondo NNP\nOros NNP\nOrpheus NNP\nOrphic JJ\nOrr NNP\nOrrick NNP\nOrrie NNP\nOrrin NNP\nOrso NNP\nOrson NNP\nOrtega NNP\nOrtegas NNPS\nOrtho NNP\nOrthodontic JJ\nOrthodox NNP\nOrthodoxy NNP\nOrthopedic NNP\nOrtiz NNP\nOrvil NNP\nOrville NNP\nOrvis NNP\nOrwell NNP\nOrwellian JJ\nOry NNP\nOryx NNP\nOsaka NNP\nOsake NNP\nOsamu NNP\nOsbert NNP\nOsborn NNP\nOsborne NNP\nOscar NNP\nOshinsky NNP\nOshkosh NNP\nOshry NNP\nOsipenko NNP\nOsis NNP\nOskar NNP\nOsler NNP\nOslo NNP\nOsnos NNP\nOso NNP\nOsprey NNP\nOsram NNP\nOsric NNP\nOssad NNP\nOstentatious JJ\nOsterman NNP\nOsterreichische NNP\nOstlandske NNP\nOstpolitik NNP\nOstrager NNP\nOstrander NNP\nOstriches NNS\nOstro NNP\nOstroff NNP\nOstrovsky NNP\nOstrowsky NNP\nOswald NNP\nOswego NNP\nOtaiba NNP\nOtero NNP\nOthello NNP\nOther JJ\nOthers NNS\nOtherwise RB\nOthon NNP\nOtis NNP\nOtradovec NNP\nOtros NNP\nOtsego NNP\nOttauquechee NNP\nOttawa NNP\nOttaway NNP\nOtte NNP\nOtterlo NNP\nOttermole NNP\nOtto NNP\nOttoman NNP\nOttoni NNP\nOubati NNP\nOuedraogo NNP\nOuellette NNP\nOught MD\nOuija NNP\nOum NNP\nOur PRP$\nOuray NNP\nOurs PRP\nOuse NNP\nOusley NNP\nOut IN\nOutboard NNP\nOutbreaks NNS\nOutcome NN\nOutdoor JJ\nOuter NNP\nOutfielder NNP\nOutflows NNS\nOutgoing JJ\nOuthwaite NNP\nOuting NNP\nOutlays NNS\nOutlet NNP\nOutline NN\nOutlook NN\nOutlooks NNS\nOutokumpu NNP\nOutpatient NN\nOutperform NNP\nOutplacement NN\nOutput NN\nOutputs NNS\nOutraged JJ\nOutrageous NNP\nOutreach NNP\nOutright JJ\nOutrunning VBG\nOutside IN\nOutsiders NNS\nOutstanding JJ\nOutsville NNP\nOutwardly RB\nOuzo NN\nOval NNP\nOvalle NNP\nOvcharenko NNP\nOvens NNS\nOver IN\nOver-50 JJ\nOver-achievers NNS\nOver-chilling NN\nOver-the-counter JJ\nOverall RB\nOverbuilding VBG\nOverbuilt JJ\nOverextension NN\nOverfall NNP\nOverfunding VBG\nOverhanging VBG\nOverhead NN\nOverland NNP\nOverlords NNPS\nOverly RB\nOvernight RB\nOvernite NNP\nOverpriced NNP\nOverreach NNP\nOverreacting VBG\nOverriding NN\nOverseas NNP\nOverseeing VBG\nOverseers NNPS\nOversight NNP\nOversized JJ\nOverstreet NNP\nOvert JJ\nOvertega NNP\nOvertones NNS\nOverture NNP\nOverturf NNP\nOvervalued JJ\nOverweight JJ\nOverwhelmed VBN\nOverwhelming JJ\nOvitz NNP\nOvonic NNP\nOwasso NNP\nOwego NNP\nOwen NNP\nOwens NNP\nOwens-Corning NNP\nOwens-Ilinois NNP\nOwens-Illinois NNP\nOwing RB\nOwings NNP\nOwl NN\nOwls NNS\nOwn JJ\nOwned NNP\nOwner NN\nOwners NNS\nOwnership NNP\nOwning VBG\nOxford NNP\nOxfordshire NNP\nOxidation NN\nOxley NNP\nOxnard NNP\nOxy NNP\nOxygen NN\nOxytetracycline NN\nOy NNP\nOyajima NNP\nOyster NNP\nOz NNP\nOzagen NNP\nOzagenians NNS\nOzal NNP\nOzanne NNP\nOzark NNP\nOzarks NNPS\nOzick NNP\nOzon NN\nOzone NN\nOzzie NNP\nP NN\nP&C NNP\nP&G NNP\nP&S NNP\nP*/NNP&G NN\nP-11 NN\nP-20 NN\nP-3 NN\nP-5-39 NNP\nP-7A NNP\nP-E NNP\nP. NNP\nP.-T.A. NNP\nP.A. NN\nP.D.I. NNP\nP.GA NNP\nP.I. NN\nP.J. NNP\nP.L. NNP\nP.M. RB\nP.R. JJ\nP.S NN\nP.m NN\nP350 CD\nPA NNP\nPABA NN\nPAC NNP\nPACIFIC NNP\nPACS NNS\nPACs NNPS\nPAN NNP\nPANDA NNP\nPANEL NN\nPANHANDLER NN\nPAP NNP\nPAPER NN\nPAPERS NNS\nPARENT NN\nPARENTAL JJ\nPARIS NNP\nPARK NN\nPARKER NNP\nPARS NNP\nPARS-Datas NNP\nPARTICIPATED VBD\nPARTNER NN\nPARTNERS NNS\nPARTNERSHIP NNP\nPARTS NN\nPARTY NNP\nPASOK NNP\nPATCO NNP\nPATH NNP\nPATIENCE NN\nPATOIS NNP\nPATRON NNP\nPATTON NNP\nPAUL NNP\nPAY NN\nPAYMENTS NNS\nPAYS VBZ\nPBS NNP\nPBX NNP\nPC NN\nPC-magazine JJ\nPC9801LX5C NNP\nPCBs NNS\nPCM NNP\nPCP NNP\nPCS NNP\nPCST NNP\nPCs NNS\nPDI NNP\nPDN NNP\nPDT NNP\nPEDAL NN\nPENALTY NNP\nPENCIL NNP\nPENCILS NNS\nPENNEY NNP\nPENSION NN\nPENTAGON NNP\nPEOPLE NNS\nPERFORMANCE NN\nPERIOD NN\nPERIPATETIC JJ\nPERKS NNS\nPERMANENTE NNP\nPERSUADING VB\nPETROLEUM NNP\nPETS NNS\nPF NNP\nPFC NNP\nPG&E NNP\nPG-13 NN\nPGH NNP\nPGM NNP\nPHH NNP\nPHILADELPHIA NNP\nPHOBIA NN\nPHOENIX NNP\nPHONE NNP\nPHOTOGRAPH NN\nPHP NNP\nPHS NNP\nPHYSICIANS NNS\nPIC NNP\nPIERCE NNP\nPIK NNP\nPILGRIM NNP\nPILING VBG\nPINDLING NNP\nPIPELINE NNP\nPIPELINES NNPS\nPIR NNP\nPITCH NNP\nPKbanken NNP\nPL-480 NN\nPLACE NNP\nPLAN NN\nPLANS VBZ\nPLANTS NNS\nPLASTIC NN\nPLAYER NNP\nPLC NNP\nPLC. NNP\nPLEA NN\nPLEASURE NN\nPLO NNP\nPLO-backed JJ\nPLODDERS NNS\nPLUNGED VBD\nPM NNP\nPMR NNP\nPMs NNS\nPNC NNP\nPOINTS NNPS\nPOLICE NN\nPOLICY NNP\nPOLITICAL JJ\nPOLITICS NNS\nPONT NNP\nPOOCH NN\nPOP NNP\nPOPs NNS\nPORTFOLIO NN\nPORTING VBG\nPOST-TRIAL NNP\nPOTABLES NNS\nPOUNDED VBD\nPOW NN\nPOWER NNP\nPOWERS NNS\nPOWs NNS\nPPG NNP\nPPI NNP\nPPP NNP\nPQ NN\nPR NNP\nPR-wise JJ\nPRA NNP\nPRATT NNP\nPRC NNP\nPRECIOUS JJ\nPREDAWN NN\nPRESIDENT NN\nPRI NNP\nPRICES NNS\nPRICIEST JJS\nPRIME JJ\nPRIMERICA NNP\nPRINCE NNP\nPRISON NN\nPRISON-SHOP NNP\nPRIVILEGE NN\nPRO FW\nPRO-CHOICE JJ\nPROCEEDINGS NNS\nPROCTER NNP\nPRODUCT NN\nPRODUCTS NNS\nPROFESSOR NN\nPROFIT NN\nPROFIT-SHARING NN\nPROFITS NNS\nPROFITT NNP\nPROGRAM NN\nPROMISE NN\nPROMOTION NNP\nPROPERTIES NNPS\nPROPERTY NN\nPROPOSAL NN\nPROPOSALS NNS\nPROPOSE VB\nPROPOSED VBD\nPROSECUTIONS NNS\nPROSECUTOR NNP\nPROSECUTORS NNS\nPROSPECTORS NNS\nPROSPECTS NNS\nPROSPER VBP\nPS NNP\nPSA NNP\nPSE NNP\nPS\\ NN\nPS\\/2 NNP\nPTA NNP\nPTC NNP\nPTL NNP\nPUBLIC JJ\nPUBLICITY NN\nPUBLISHING NN\nPUNITIVE JJ\nPUTS NNPS\nPVC NNP\nPW-2000 NN\nPW-4000 NN\nPW4000 NNP\nPW4060 NNP\nPWA NNP\nPWA-owned JJ\nPX NNP\nP\\ NNP\nP\\/E NNP\nPa NNP\nPa. NNP\nPa.-based JJ\nPaata NNP\nPablo NNP\nPabor NNP\nPabst NNP\nPac NNP\nPace NNP\nPaced VBN\nPacemakers NNPS\nPacheco NNP\nPachelbel NNP\nPachinko NN\nPacholik NNP\nPachyderms NNPS\nPacifiCare NNP\nPacific NNP\nPacific-listed JJ\nPacify VB\nPacitti NNP\nPack VB\nPackage NN\nPackaged-goods NNS\nPackages NNS\nPackaging NNP\nPackard NNP\nPackards NNPS\nPacker NNP\nPackers NNP\nPacket NN\nPacking NNP\nPacks NNPS\nPackwood NNP\nPackwood-Roth NNP\nPact NNP\nPacta FW\nPacwest NNP\nPaddle VB\nPaddock NNP\nPaddy NNP\nPadget NNP\nPadgett NNP\nPadovan NNP\nPadre NNP\nPadres NNPS\nPae NNP\nPaestum NNP\nPaev NNP\nPagan NNP\nPaganini NNS\nPagans NNS\nPage NNP\nPageAmerica NNP\nPageMaker NNP\nPageant NNP\nPageants NNS\nPagemaker NNP\nPages NNPS\nPaget NNP\nPaging NNP\nPaglieri NNP\nPagliuca NNP\nPagni NNP\nPagnol NNP\nPagones NNP\nPagong NNP\nPagurian NNP\nPah NNP\nPaid VBN\nPain NN\nPaine NNP\nPaineWebber NNP\nPaineWebber-involved JJ\nPainful JJ\nPaini NNP\nPains NNS\nPaint NN\nPainter NNP\nPainters NNS\nPainting VBG\nPaintings NNS\nPaints NNP\nPaisley NNP\nPaix NNP\nPak NNP\nPakistan NNP\nPakistani JJ\nPakistanis NNPS\nPal NNP\nPalace NNP\nPalaces NNPS\nPalache NNP\nPalacio NNP\nPaladin NNP\nPalamara NNP\nPalash NNP\nPalasts NNPS\nPalatine NNP\nPalazzo NNP\nPalcy NNP\nPale NNP\nPalermo NNP\nPalestine NNP\nPalestine-General NNP\nPalestinian JJ\nPalestinians NNPS\nPaley NNP\nPalfrey NNP\nPalicka NNP\nPalisades NNP\nPall NNP\nPalladian NNP\nPalladio NNP\nPallavicini NNP\nPallo NNP\nPalm NNP\nPalma NNP\nPalmatier NNP\nPalmdale NNP\nPalme NNP\nPalmer NNP\nPalmero NNP\nPalmetto NNP\nPalmingiano NNP\nPalmolive NNP\nPalms NNPS\nPalmtops NNS\nPalo NNP\nPalomar NNP\nPalomino NNP\nPalos NNP\nPalsy NNP\nPaluck NNP\nPalumbo NNP\nPam NNP\nPamasu NNP\nPamela NNP\nPamorex NNP\nPamour NNP\nPampa NNP\nPampel NNP\nPampers NNPS\nPamphili NNP\nPamplin NNP\nPan NNP\nPan-Alberta NNP\nPan-American JJ\nPanAm NNP\nPanam NNP\nPanama NNP\nPanama-based JJ\nPanama-incorporated JJ\nPanamanian JJ\nPanamanians NNS\nPanasonic NNP\nPancho NNP\nPancoast NNP\nPancrazio NNP\nPanda NNP\nPandelli NNP\nPandick NNP\nPandora NNP\nPanel NNP\nPanelli NNP\nPanels NNS\nPanet-Raymond NNP\nPanetta NNP\nPanglossian JJ\nPanhandle NNP\nPanic NN\nPanicked JJ\nPanisse NNP\nPankki NNP\nPankowski NNP\nPankyo NNP\nPanmunjom NNP\nPanny NNP\nPanorama NNP\nPanoz NNP\nPansies NNS\nPantages NNS\nPantas NNP\nPantasaph NNP\nPantasote NNP\nPantera NNP\nPantheon NNP\nPanther NNP\nPanting VBG\nPantyhose NN\nPanyotis NNP\nPanza NNP\nPanzhihua NNP\nPao NNP\nPaolo NNP\nPaos NNPS\nPap-pap-pap-hey UH\nPapa NNP\nPapa-san NNP\nPapal JJ\nPapandreou NNP\nPapanicolaou NN\nPapasan NNP\nPaper NNP\nPaperboard NNP\nPaperhouse NNP\nPaperin NNP\nPapermate NNP\nPapermils NNP\nPapers NNP\nPaperweight NNP\nPaperwork NNP\nPapetti NNP\nPapp NNP\nPappas NNP\nPappy NNP\nPaprika NN\nPapua NNP\nPapua-New NNP\nPaquin NNP\nPar NNP\nParacchini NNP\nParade NNP\nParadise NNP\nParadox NNP\nParadoxically RB\nParagon NNP\nParagould NNP\nParagraph NNP\nParallel JJ\nParamedics NNS\nParametric NNP\nParamount NNP\nParamount-MCA JJ\nParamus NNP\nParanormal NNP\nParapsychology NNP\nParaquat NN\nParay NNP\nParc NNP\nParcel NNP\nPardo NNP\nPardon NN\nPardus NNP\nParedon NN\nParee NNP\nParella NNP\nParent NNP\nParental JJ\nParenthesis NN\nParenthood NNP\nParents NNS\nPareo NNP\nParfums NNP\nParibas NNP\nParichy NNP\nParichy-Hamm NNP\nParioli NNP\nParis NNP\nParis-based JJ\nParish NNP\nParisian NNP\nParisians NNPS\nParisien NNP\nParisina NNP\nParity NN\nParizeau NNP\nPark NNP\nPark-affiliated JJ\nParke NNP\nParke-Davis NNP\nParker NNP\nParkersburg NNP\nParkhaji NNP\nParkhouse NNP\nParkhurst NNP\nParkinson NNP\nParkland NNP\nParkos NNP\nParks NNP\nParkshore NNP\nParkway NNP\nParkways NNP\nParliament NNP\nParliamentarians NNP\nParliamentary JJ\nParmer NNP\nParodi NNP\nParodis NNS\nParretti NNP\nParrillo NNP\nParrino NNP\nParris NNP\nParrot NNP\nParrott NNP\nParry NNP\nParsifal NNP\nParsippany NNP\nParsley NNP\nParson NNP\nParsons NNP\nParsow NNP\nPart NN\nPart-time JJ\nPartecipazioni NNP\nParthenon NNP\nParti NNP\nParticipants NNS\nParticipating VBG\nParticipation NN\nParticular JJ\nParticularly RB\nParties NNS\nPartisan NNP\nPartisans NNS\nPartisanship NN\nPartlow NNP\nPartly RB\nPartner NNP\nPartners NNPS\nPartnership NNP\nPartnerships NNS\nParts NNS\nParty NNP\nParty. NNP\nParvenu NNP\nPas FW\nPasadena NNP\nPasatieri NNP\nPascagoula NNP\nPascal NNP\nPascale NNP\nPascataqua NNP\nPaschal NNP\nPaschall NNP\nPaschi NNP\nPascual NNP\nPascutto NNP\nPasha NNP\nPasley NNP\nPaso NNP\nPasoan NNP\nPasquale NNP\nPass NNP\nPassage NN\nPassaic NNP\nPassaic-Clifton NNP\nPassat NNP\nPassavant NNP\nPassed VBN\nPassenger NN\nPassengers NNS\nPassing VBG\nPassion NNP\nPassive NNP\nPassos NNP\nPassport NN\nPast JJ\nPasta NNP\nPaster NNP\nPastern NNP\nPasternack NNP\nPasternak NNP\nPasterns NNPS\nPasteur NNP\nPastiche NN\nPastor NNP\nPasture NNP\nPastures NNS\nPasztor NNP\nPat NNP\nPatagonia NNP\nPatagonians NNPS\nPatch NNP\nPatchen NNP\nPate NNP\nPatel NNP\nPatent NNP\nPatentees NNS\nPatents NNP\nPater NNP\nPaternelle NNP\nPaterson NNP\nPath NNP\nPathans NNPS\nPathe NNP\nPathet NNP\nPathology NNP\nPati FW\nPatience NN\nPatiently RB\nPatients NNS\nPatil NNP\nPatman NNP\nPatmore NNP\nPatriarca NNP\nPatriarch NNP\nPatriarchy NNP\nPatrice NNP\nPatricelli NNP\nPatricia NNP\nPatrician NN\nPatricio NNP\nPatrick NNP\nPatricof NNP\nPatrimony NNP\nPatriot NNP\nPatriots NNPS\nPatrol NNP\nPatrolman NNP\nPatrolmen NNP\nPatronage NN\nPatsy NNP\nPatten NNP\nPattenden NNP\nPattern NN\nPatterns NNS\nPatterson NNP\nPatti NNP\nPattison NNP\nPattisson NNP\nPatton NNP\nPatty NNP\nPaul NNP\nPaul-Minneapolis NNP\nPaula NNP\nPaulah NNP\nPauletta NNP\nPauley NNP\nPauleys NNPS\nPauline NNP\nPauling NNP\nPaulo NNP\nPaulus NNP\nPaus'l NN\nPausing VBG\nPauson NNP\nPautsch NNP\nPavane NNP\nPavarotti NNP\nPaved VBN\nPavel NNP\nPavese NNP\nPavillion NNP\nPavletich NNP\nPavlov NNP\nPavlova NNP\nPavlovitch NNP\nPavlovsky NNP\nPaw NN\nPawcatuck NNP\nPawley NNP\nPawleys NNP\nPawlowski NNP\nPawtucket NNP\nPawtuxet NNP\nPax NNP\nPaxson NNP\nPaxton NNP\nPaxus NNP\nPay VB\nPay-Per-View NNP\nPayback NN\nPaychex NNP\nPayco NNP\nPayers NNS\nPaying VBG\nPayless NNP\nPayline NNP\nPayment NN\nPayments NNS\nPayne NNP\nPaynes NNPS\nPayola NN\nPayout NN\nPayouts NNS\nPayroll NNP\nPayson NNP\nPayton NNP\nPaz NNP\nPe NNP\nPeabody NNP\nPeace NNP\nPeaceable NNP\nPeaceful JJ\nPeacekeeper NNP\nPeach NNP\nPeacocks NNS\nPeak NNP\nPeake NNP\nPeal NNP\nPeale NNP\nPeanut NN\nPeanuts NNP\nPeapack NNP\nPearce NNP\nPearl NNP\nPearlman NNP\nPearlstine NNP\nPearson NNP\nPeasant NNP\nPeasants NNPS\nPease NNP\nPeat NNP\nPebworth NNP\nPechiney NNP\nPechman NNP\nPechora NNP\nPechora-class JJ\nPeck NNP\nPecks NNPS\nPecorone NNP\nPecos NNP\nPedde NNP\nPeden NNP\nPedersen NNP\nPederson NNP\nPedestrian NNP\nPediatric NNP\nPediatricians NNS\nPedigree NNP\nPedigree-contemplating VBG\nPedigrees NNS\nPedone NNP\nPedott NNP\nPedro NNP\nPedroli NNP\nPeduzzi NNP\nPee NNP\nPeebles NNP\nPeeking VBG\nPeel NNP\nPeep NNP\nPeeping NNP\nPeepy NNP\nPeer NNP\nPeerless NNP\nPeery NNP\nPeeter NNP\nPeg NNP\nPegaSys NNP\nPegasus NNP\nPeggy NNP\nPegler NNP\nPei NNP\nPeiping NNP\nPekin NNP\nPeking NNP\nPeladeau NNP\nPelham NNP\nPelican NNP\nPelin NNP\nPell NNP\nPellegrini NNP\nPeller NNP\nPelletier NNP\nPellicano NNP\nPels NNP\nPelto NNP\nPeltz NNP\nPemberton NNP\nPembina NNP\nPembridge NNP\nPembroke NNP\nPemex NNP\nPen NNP\nPena NNP\nPenal NNP\nPenang NNP\nPence NNP\nPencil NNP\nPencils NNS\nPendant NNP\nPendergast NNP\nPending VBG\nPendleton NNP\nPenelope NNP\nPeng NNP\nPengally NNP\nPenguin NNP\nPenh NNP\nPeninsula NNP\nPenman NNP\nPenn NNP\nPennCorp NNP\nPenna. FW\nPennell NNP\nPenney NNP\nPenniman NNP\nPennington NNP\nPennock NNP\nPennsauken NNP\nPennsylvania NNP\nPennsylvania-based JJ\nPennview NNP\nPenny NNP\nPennzoil NNP\nPennzoil\\/Texaco NNP\nPenrose NNP\nPensacola NNP\nPension NN\nPension-fund NN\nPensive JJ\nPensupreme NNP\nPentagon NNP\nPentagon-related JJ\nPentagonese NNP\nPentecostal NNP\nPenthouse NNP\nPenutian NNP\nPeony NNP\nPeople NNS\nPeoples NNPS\nPeoria NNP\nPepcid NNP\nPepinsky NNP\nPepper NNP\nPepper\\/Seven NNP\nPepperdine NNP\nPepperell NNP\nPepperidge NNP\nPeppers NNP\nPepsi NNP\nPepsi-Cola NNP\nPepsiCo NNP\nPepsiCola NNP\nPepto-Bismol NNP\nPer IN\nPer-capita JJ\nPer-share JJ\nPeralta NNP\nPerasso NNP\nPercent NN\nPercentage NN\nPerception NN\nPerch NNP\nPerchdale NNP\nPerched VBN\nPerches NNP\nPercival NNP\nPercussion NNP\nPercussive NNP\nPercy NNP\nPerdido NNP\nPerdue NNP\nPere NNP\nPeregrine NNP\nPereira NNP\nPerella NNP\nPerelman NNP\nPerennial JJ\nPerennian NNP\nPeres NNP\nPerestroika FW\nPerez NNP\nPerfect JJ\nPerfecta NNP\nPerfection NNP\nPerformance NN\nPerformances NNPS\nPerformed VBN\nPerformers NNS\nPerforming VBG\nPerfume NN\nPerfumes NNPS\nPergamon NNP\nPergolesi NNP\nPerham NNP\nPerhaps RB\nPericle NNP\nPericlean NNP\nPericles NNP\nPerier NNP\nPerignon NNP\nPerimeter NNP\nPerin NNP\nPerinetti NNP\nPeriod NN\nPeriodic JJ\nPeriodically RB\nPeriods NNS\nPeripherals NNPS\nPerish VB\nPerito NNP\nPerk NNP\nPerken NNP\nPerkin-Elmer NNP\nPerkinElmer NNP\nPerkins NNP\nPerle NNP\nPerlman NNP\nPerluss NNP\nPermanent JJ\nPermanente NNP\nPermian NNP\nPermission NN\nPermit VB\nPermits NNS\nPermut NNP\nPerna NNP\nPernod NN\nPeron NNP\nPeronist NNP\nPerot NNP\nPerot-EDS JJ\nPerozo NNP\nPerpetual JJ\nPerrier NNP\nPerrin NNP\nPerritt NNP\nPerro NNP\nPerry NNP\nPerse NNP\nPershare JJ\nPershing NNP\nPersia NNP\nPersian NNP\nPersianesque JJ\nPersians NNPS\nPersico NNP\nPersky NNP\nPerskys NNPS\nPerson NNP\nPersona NNP\nPersonages NNS\nPersonal JJ\nPersonal-computer NN\nPersonality NNP\nPersonally RB\nPersonnel NNP\nPersons NNS\nPerspective NNP\nPersuading VBG\nPersuasion NN\nPertamina NNP\nPerth NNP\nPerth-based JJ\nPertschuk NNP\nPeru NNP\nPeruvian JJ\nPervanas NNP\nPerzio-Biroli NNP\nPesaro NNP\nPesce NNP\nPesqueira NNP\nPestered VBN\nPesticide NNP\nPesticides NNS\nPestillo NNP\nPestle NNP\nPet NNP\nPetaluma NNP\nPetco NNP\nPete NNP\nPeter NNP\nPeterborough NNP\nPeterbroeck NNP\nPeterhouse NNP\nPeterman NNP\nPetermann NNP\nPeterpaul NNP\nPeters NNP\nPetersburg NNP\nPetersen NNP\nPeterson NNP\nPeterson-Kroll NNP\nPetery NNP\nPetey NN\nPetfoods NNPS\nPetipa NNP\nPetipa-Minkus NNP\nPetipa-Tschaikowsky NNP\nPetit NNP\nPetite JJ\nPetitio NNP\nPetitioner NN\nPetitions NNS\nPetrarchan JJ\nPetre NNP\nPetrie NNP\nPetrini NNP\nPetro NNP\nPetro-Canada NNP\nPetrobras NNP\nPetrochemical NNP\nPetrocorp NNP\nPetrofina NNP\nPetrograd NNP\nPetrolane NNP\nPetroleos NNP\nPetroles NNP\nPetroleum NNP\nPetroliam NNP\nPetronas NNP\nPetrone NNP\nPetrossian NNP\nPetrovich NNP\nPetruchka NNP\nPetrus NNP\nPetruzzi NNP\nPetry NNP\nPets NNS\nPettee NNP\nPettersson NNP\nPettibone NNP\nPettigrew NNP\nPettis NNP\nPettit NNP\nPetty NNP\nPeugeot NNP\nPew NNP\nPewabic NNP\nPeyrelongue NNP\nPezza NNP\nPfaff NNP\nPfau NNP\nPfc. NNP\nPfeiffer NNP\nPfiefer NNP\nPfizer NNP\nPflaum NNP\nPflugerville NNP\nPfohl NNP\nPh. NNP\nPhacoFlex NNP\nPhalanx NNP\nPhamaceutical NNP\nPhamaceuticals NNPS\nPhantom NNP\nPharaoh NNP\nPharma NNP\nPharmaKinetics NNP\nPharmacal NNP\nPharmaceutical NNP\nPharmaceuticals NNP\nPharmacia NNP\nPharmacies NNS\nPharmacopoeia NN\nPharmacuetica NNP\nPharmacy NNP\nPharmical NNP\nPharmics NNP\nPhase NN\nPhase-2 NN\nPhase-3 NN\nPhedre NNP\nPhelan NNP\nPhelps NNP\nPhenix-Transmission NNP\nPhenolic JJ\nPhenothiazine NN\nPherwani NNP\nPhi NNP\nPhibro NNP\nPhil NNP\nPhiladelphia NNP\nPhiladelphia-area JJ\nPhiladelphia-based JJ\nPhilanthropic NNP\nPhilco NNP\nPhilco-sponsored JJ\nPhilharmonic NNP\nPhilharmonique NNP\nPhilibert NNP\nPhilinte NNP\nPhilip NNP\nPhilippe NNP\nPhilippi NNP\nPhilippians NNS\nPhilippine JJ\nPhilippine-studies NN\nPhilippines NNP\nPhilippines-backed JJ\nPhilippoff NNP\nPhilips NNP\nPhilistines NNPS\nPhillies NNP\nPhillip NNP\nPhillipe NNP\nPhillipines NNS\nPhillippe-Francois NNP\nPhillips NNP\nPhilly RB\nPhilmont NNP\nPhilo NNP\nPhilosophic JJ\nPhilosophical NNP\nPhilosophies NNP\nPhilosophy NN\nPhils NNPS\nPhineas NNP\nPhineoppus NNP\nPhipps NNP\nPhnom NNP\nPhoenician JJ\nPhoenicians NNS\nPhoenix NNP\nPhoenix-based JJ\nPhoenixville NNP\nPhone NN\nPhonemes NNS\nPhosphate NNP\nPhosphates NNP\nPhotek NNP\nPhoto NNP\nPhotofinishing NNP\nPhotofrin NN\nPhotograph NN\nPhotographer NNP\nPhotographers NNP\nPhotographic JJ\nPhotographing NNP\nPhotography NNP\nPhotonics NNP\nPhotoprotective NNP\nPhotos NNS\nPhouma NNP\nPhrase NNP\nPhuong NNP\nPhyfe NNP\nPhyllis NNP\nPhysical NNP\nPhysically RB\nPhysician NN\nPhysicians NNP\nPhysicist NNP\nPhysicists NNS\nPhysicochemical JJ\nPhysics NNP\nPhysiological NNP\nPhysiologically RB\nPhysiologist NNP\nPhysiology NNP\nPhysique NN\nPi NN\nPia NNP\nPianists NNS\nPiano NNP\nPianos NNP\nPiazza NNP\nPiazzo NNP\nPic NNP\nPicasso NNP\nPicassos NNPS\nPiccadilly NNP\nPicchi NNP\nPiccolino NNP\nPichia NN\nPick VB\nPickard NNP\nPickens NNP\nPickering NNP\nPickett NNP\nPickfair NNP\nPickford NNP\nPickin VBG\nPickle NNP\nPickman NNP\nPicks VBZ\nPickup NNP\nPicon NNP\nPicop NNP\nPicoult NNP\nPicture NNP\nPictures NNPS\nPicturing VBG\nPicus NNP\nPiddington NNP\nPie NNP\nPieces NNP\nPiedmont NNP\nPiepsam NNP\nPier NNP\nPierce NNP\nPierluigi NNP\nPiero NNP\nPierpont NNP\nPierre NNP\nPierre-Karl NNP\nPiers NNP\nPiersee NNP\nPierson NNP\nPiet NNP\nPieta NNP\nPieter NNP\nPietermartizburg NNP\nPietism NNP\nPietro NNP\nPietruski NNP\nPigeon NNP\nPiggybacking VBG\nPignatelli NNP\nPigs NNPS\nPikaia NNP\nPike NNP\nPikeville NNP\nPilate NNP\nPile NNP\nPileggi NNP\nPilevsky NNP\nPilferage NN\nPilgrim NNP\nPilgrimage NNP\nPilgrims NNPS\nPilgrin NNP\nPilgrm NNP\nPilipino NN\nPilko NNP\nPillay NNP\nPiller NNP\nPillsbury NNP\nPilot NN\nPiloting VBG\nPilots NNS\nPils NNP\nPilson NNP\nPilsudski NNP\nPimen NNP\nPimlott NNP\nPin VB\nPina NNP\nPinar NNP\nPincavage NNP\nPincian NNP\nPincus NNP\nPindling NNP\nPine NNP\nPinel NNP\nPinellas NNP\nPines NNP\nPing-pong NN\nPinick NNP\nPinion NNP\nPink NNP\nPinkerton NNP\nPinkie NN\nPinky NNP\nPinnacle NNP\nPinned VBN\nPinola NNP\nPinpoint NNP\nPinscher NN\nPinsk NNP\nPinsoneault NNP\nPinter NNP\nPioneer NNP\nPioneering NNP\nPioneers NNPS\nPiovra FW\nPip NNP\nPipe NNP\nPipeLines NNP\nPipeline NNP\nPiper NNP\nPipes NNP\nPipgras NNP\nPiping NN\nPiraeus NNP\nPirandello NNP\nPiranesi NNP\nPiraro NNP\nPirate NNP\nPirates NNP\nPirelli NNP\nPirie NNP\nPirko NNP\nPirrie NNP\nPisa NNP\nPiscataway NNP\nPisces NNP\nPischinger NNP\nPiscopo NNP\nPissarro NNP\nPissocra NNP\nPistol-whipping IN\nPiszczalski NNP\nPit NN\nPita NNP\nPitch NN\nPitcher NN\nPitchers NNS\nPitching VBG\nPitcoff NNP\nPitfalls NNS\nPitiful NNP\nPitman NNP\nPitman-Moore NNP\nPitney NNP\nPitney-Bowes NNP\nPitt NNP\nPitt-Rivers NNP\nPitted VBN\nPittenger NNP\nPittman NNP\nPittsboro NNP\nPittsburg NNP\nPittsburgh NNP\nPittsburgh-based JJ\nPittsburghers NNPS\nPittston NNP\nPity NNP\nPitz NNP\nPius NNP\nPivot NNP\nPiwen NNP\nPixley NNP\nPizarro NNP\nPizza NNP\nPizzo NNP\nPlace NNP\nPlace-names NNS\nPlacement NNP\nPlacements NNP\nPlacentia NNP\nPlacer NNP\nPlaces NNS\nPlacid NNP\nPlacido NNP\nPlacing VBG\nPlain NNP\nPlain-vanilla JJ\nPlaines NNP\nPlainfield NNP\nPlainly RB\nPlains NNP\nPlaintiffs NNS\nPlaintiffs`` ``\nPlainview NNP\nPlan NNP\nPlanEcon NNP\nPlanar NNP\nPlanck NNP\nPlane NNP\nPlanes NNS\nPlanet NNP\nPlaneten NNP\nPlanitzer NNP\nPlank VB\nPlanned NNP\nPlanners NNS\nPlanning NNP\nPlano NNP\nPlans NNS\nPlant NNP\nPlantago NN\nPlantation NNP\nPlantations NNS\nPlanter NNP\nPlanters NNP\nPlants NNS\nPlaskett NNP\nPlaster NNP\nPlasti-Bars NNP\nPlastic JJ\nPlastics NNS\nPlastow NNP\nPlate NNP\nPlateadas NNP\nPlateau NNP\nPlates NNS\nPlatform NN\nPlath NNP\nPlatinum NN\nPlato NNP\nPlatonic JJ\nPlatonica FW\nPlatonism NN\nPlatonist NN\nPlatoons NNS\nPlatt NNP\nPlatter NNP\nPlatzer NNP\nPlaude NNP\nPlaumann NNP\nPlay NNP\nPlaya NNP\nPlayback NNP\nPlayboy NNP\nPlayboy-Show-Biz NNP\nPlayboy-at-Night NNP\nPlayed VBN\nPlayer NNP\nPlayers NNPS\nPlayes NNP\nPlaygirl NNP\nPlayground NNP\nPlayhouse NNP\nPlayhouses NNP\nPlaying VBG\nPlaymates NNPS\nPlays NNP\nPlayskool NNP\nPlaytex NNP\nPlayworld NNP\nPlaywrights NNP\nPlaza NNP\nPlazek NNP\nPlea NN\nPleas NNPS\nPleasant NNP\nPleasanton NNP\nPleasantville NNP\nPlease VB\nPleasure NN\nPlebian JJ\nPledge NNP\nPlee-Zing NNP\nPlekhanov NNP\nPlenary NNP\nPlenitude NNP\nPlenty NN\nPlentywood NNP\nPlessey NNP\nPlessis NNP\nPlews NNP\nPlexiglas NN\nPlimpton NNP\nPliny NN\nPlot NN\nPlotkin NNP\nPlouf NNP\nPlow NNP\nPlowman NN\nPloys NNS\nPlug-in JJ\nPlugging VBG\nPlumbing NNP\nPlummer NNP\nPlump JJ\nPlumrose NNP\nPlunge NN\nPlunging VBG\nPlunkett NNP\nPlunking VBG\nPlus NNP\nPlus-one JJ\nPluses NNS\nPlutarch NNP\nPlymouth NNP\nPlympton NNP\nPm NN\nPng NNP\nPo NNP\nPoach VB\nPoachers NNS\nPoag NNP\nPocasset NNP\nPocket NNP\nPocketing VBG\nPockets NNS\nPocklington NNP\nPockmanster NNP\nPoconos NNPS\nPod NNP\nPodell NNP\nPodger NNP\nPodgers NNS\nPodolia NNP\nPodolsky NNP\nPodufaly NNP\nPoduska NNP\nPoe NNP\nPoehl NNP\nPoelker NNP\nPoeme NNP\nPoems NNPS\nPoesy NN\nPoet NNP\nPoetics NNP\nPoetrie NNP\nPoetry NNP\nPoets NNS\nPogue NNP\nPohl NNP\nPohlad NNP\nPohly NNP\nPohs NNP\nPoindexter NNP\nPoint NNP\nPoint-Pepperell NNP\nPointe NNP\nPointer NNP\nPointers NNS\nPointes NNP\nPointing VBG\nPoints NNPS\nPoirot NNP\nPoised NNP\nPoison NN\nPoitrine NNP\nPoker NN\nPokorny NNP\nPol NNP\nPola NNP\nPoland NNP\nPolar NNP\nPolaris NNP\nPolaroid NNP\nPoldowski NNP\nPole NNP\nPoles NNPS\nPolevoi NNP\nPolian NNP\nPolice NNP\nPolice-man NNP\nPoliceman NNP\nPolicemen NNS\nPolicies NNS\nPolicy NNP\nPolimotor NNP\nPoling NNP\nPolish JJ\nPolished JJ\nPolitan NNP\nPolitburo NNP\nPolitical JJ\nPolitical-Military NNP\nPolitically RB\nPoliticians NNS\nPolitics NNP\nPolitics-ridden JJ\nPolitizdat NNP\nPolitrick NN\nPolk NNP\nPoll NNP\nPollack NNP\nPollak NNP\nPollare NNP\nPollen NNP\nPollin NNP\nPollitt NNP\nPollnow NNP\nPollo NNP\nPollock NNP\nPolls NNS\nPollution NNP\nPollution-control JJ\nPolly NNP\nPolo NNP\nPolo\\/Ralph NNP\nPololu NNP\nPolsky NNP\nPoltava NNP\nPoltawa NNP\nPoltrack NNP\nPolyGram NNP\nPolyakova NNP\nPolyanka NNP\nPolycast NNP\nPolychemicals NNP\nPolyconomics NNP\nPolygram NNP\nPolymerix NNP\nPolymerization NN\nPolyphosphates NNS\nPolypropylene NN\nPolysar NNP\nPolysilicon NN\nPolystyrene NNP\nPolytechnic NNP\nPolyurethane NN\nPolyvinyl NN\nPomerania NNP\nPomerantz NNP\nPomham NNP\nPomicino NNP\nPomona NNP\nPompadour NNP\nPompano NNP\nPompeii NNP\nPompey NNP\nPomton NNP\nPonce NNP\nPonchartrain NNP\nPonchielli NNP\nPond NNP\nPonder VBP\nPong NNP\nPonkob NNP\nPonoluu NNP\nPons NNP\nPont NNP\nPontchartrain NNP\nPontiac NNP\nPontiac-Cadillac NNP\nPontiff NNP\nPontissara NNP\nPontius NNP\nPony NNP\nPonzi NNP\nPoo NNP\nPoodle NNP\nPooh NNP\nPooh-like JJ\nPool NNP\nPoole NNP\nPooling NNP\nPoong NNP\nPoor NNP\nPoore NNP\nPoorer JJR\nPoorest JJS\nPop NN\nPope NNP\nPopes NNPS\nPopeye NNP\nPopish NNP\nPopkin NNP\nPopoff NNP\nPopolare NNP\nPoppea FW\nPoppenberg NNP\nPopping VBG\nPoppins NNP\nPops NNP\nPopulace NN\nPopulaire NNP\nPopulaires NNP\nPopular NNP\nPopulares NNP\nPopularism NN\nPopulation NNP\nPoquet NNP\nPorcaro NNP\nPorch NNP\nPorche NNP\nPorgy NNP\nPork NNP\nPork-barrel JJ\nPorkapolis NNP\nPornographer NNP\nPornsen NNP\nPorres NNP\nPorretti NNP\nPorsche NNP\nPorsche-like JJ\nPorsches NNPS\nPort NNP\nPort-au-Prince NNP\nPorta NNP\nPorta-Potti NNP\nPortage NNP\nPortago NNP\nPorter NNP\nPorterhouse NN\nPorters NNPS\nPortfolio NNP\nPortfolios NNPS\nPortia NNP\nPortico NNP\nPortillo NNP\nPortland NNP\nPortman NNP\nPorto NNP\nPortrait NN\nPortraits NNPS\nPortrayal NN\nPorts NNP\nPortsmouth NNP\nPortugal NNP\nPortuguese JJ\nPortuguese-language JJ\nPortwatchers NNPS\nPorum NNP\nPoseidon NNP\nPosey NNP\nPosh JJ\nPosition NN\nPositive JJ\nPosix NNP\nPosner NNP\nPossible JJ\nPossibly RB\nPost NNP\nPost-Dispatch NNP\nPost-Graduate NNP\nPost-Newsweek NNP\nPost-Serialism NNP\nPost-tragedy RB\nPostScript NNP\nPostal NNP\nPostbank NNP\nPosted VBN\nPostel NNP\nPostelle NNP\nPostels NNPS\nPoster NNP\nPosterity NN\nPostipankki NNP\nPostmaster NNP\nPosts VBZ\nPostscript NNP\nPostwar RB\nPoszgay NNP\nPot NNP\nPotala NNP\nPotash NNP\nPotato NN\nPotemkin NNP\nPotential JJ\nPotentially RB\nPothier NNP\nPothitos NNP\nPotlatch NNP\nPotlatches NNPS\nPotomac NNP\nPotowomut NNP\nPotpourri NNS\nPotsdam NNP\nPottawatomie NNP\nPotter NNP\nPottery NNP\nPotts NNP\nPoughkeepsie NNP\nPouilly-Fuisse NNP\nPoul NNP\nPoulenc NNP\nPoulin NNP\nPoultry NN\nPound NNP\nPounds NNS\nPountain NNP\nPoupin NNP\nPour NNP\nPoussin NNP\nPoussins NNS\nPoverty NN\nPovich NNP\nPowder NNP\nPowell NNP\nPower NNP\nPower-Seek NN\nPower-generation JJ\nPowerful JJ\nPowers NNP\nPowicke NNP\nPowless NNP\nPoxon NNP\nPoyne NNP\nPoyner NNP\nPoynting-Robertson NNP\nPozen NNP\nPozzatti NNP\nPp. NN\nPrab NNP\nPrabang NNP\nPractical JJ\nPractically RB\nPractice NNP\nPractices NNPS\nPrado NNP\nPrager NNP\nPragmatism NN\nPrague NNP\nPrairie NNP\nPraise NN\nPraisegod NNP\nPraises VBZ\nPramual NNP\nPrandini NNP\nPrandtl NNP\nPrapas NNP\nPratap NNP\nPrater NNP\nPratt NNP\nPrattville NNP\nPravda NNP\nPraver NNP\nPravo NNP\nPrawiro NNP\nPraxis NNP\nPray NNP\nPrayer NNP\nPrayers NNS\nPre-College NNP\nPre-Legislative NNP\nPre-attack JJ\nPre-decoration NN\nPre-inaugural JJ\nPre-refunded JJ\nPre-shaped JJ\nPre-trial JJ\nPreamble NN\nPreambles NNS\nPrebon NNP\nPrechter NNP\nPrecinct NNP\nPrecious NNP\nPrecious-metals NNS\nPrecise JJ\nPrecisely RB\nPrecision NNP\nPredictably RB\nPredicting VBG\nPredictions NNS\nPredispositions NNS\nPrednisone NN\nPreface NNP\nPrefecture NNP\nPreferably RB\nPreferences NNP\nPreferred NNP\nPreferred-dividend JJ\nPrego NNP\nPrejudice NNP\nPreliminary JJ\nPrelude NNP\nPreludes NNPS\nPremarin NNP\nPremark NNP\nPremier NNP\nPremiere NNP\nPremise NNP\nPremium NNP\nPremner NNP\nPremont NNP\nPrenatal JJ\nPrence NNP\nPrendergast NNP\nPrentice NNP\nPrentice-Hall NNP\nPrentiss NNP\nPreoccupied VBN\nPreparation NN\nPreparation-Inquirers NNP\nPreparations NNP\nPrepared JJ\nPreparedness NN\nPrepayments NNS\nPrepulsid NN\nPresbyterian NNP\nPresbyterian-St JJ|NP\nPresbyterianism NN\nPresbyterians NNPS\nPrescience NNP\nPrescott NNP\nPrescribed VBN\nPrescription NNP\nPrescription-drug NN\nPreseault NNP\nPresence NNP\nPresent JJ\nPresentation NN\nPresenting VBG\nPresently RB\nPreservation NNP\nPreserve NNP\nPreserving VBG\nPresidency NNP\nPresident NNP\nPresident-elect NNP\nPresidential JJ\nPresidents NNS\nPresiding NNP\nPresidio NNP\nPresley NNP\nPress NNP\nPressburger NNP\nPresse NNP\nPressed VBN\nPresser NN\nPressing VBG\nPressler NNP\nPressman NNP\nPressure NN\nPressure-happy JJ\nPressured VBN\nPressures NNS\nPrestige NN\nPresto FW\nPreston NNP\nPresumably RB\nPresupposed VBN\nPretax JJ\nPretend VB\nPretender NN\nPreti NNP\nPretl NNP\nPretoria NNP\nPrettier JJR\nPretty RB\nPrettyman NNP\nPreussag NNP\nPrevent VB\nPrevented VBN\nPrevention NNP\nPreventive JJ\nPrevents VBZ\nPreviewing VBG\nPrevious JJ\nPreviously RB\nPrevost NNP\nPrevot NNP\nPrexy NNP\nPreyss NNP\nPriMerit NNP\nPriam NNP\nPrice NNP\nPrice-Fleming NNP\nPrice-boosting JJ\nPrice-earnings JJ\nPrices NNS\nPricey JJ\nPricing NN\nPrick VB\nPrickly JJ\nPricor NNP\nPriddy NNP\nPride NNP\nPride-Starlette NNP\nPride-Venus NNP\nPrideaux NNP\nPrielipp NNP\nPriem NNP\nPrieska NNP\nPriest NNP\nPriestess NNP\nPrieta NNP\nPrieur NNP\nPrimakov NNP\nPrimarily RB\nPrimark NNP\nPrimary JJ\nPrimate NNP\nPrimaxin NNP\nPrime NNP\nPrime-1 JJ\nPrime-2 JJ\nPrime-3 JJ\nPrimeTime NNP\nPrimerica NNP\nPrimo NNP\nPrince NNP\nPrinces NNPS\nPrincess NNP\nPrinceton NNP\nPrinceton\\ NNP\nPrinceton\\/Newport NNP\nPrinceton\\/Newport-like JJ\nPrincipal NNP\nPrincipal-only JJ\nPrincipals NNS\nPrincipia NNP\nPrinciple NN\nPrinciples NNS\nPringle NNP\nPrins NNP\nPrint VB\nPrinted JJ\nPrintemps NNP\nPrinting NNP\nPrintout NNP\nPrior RB\nPriorities NNPS\nPriory NNP\nPripet NNP\nPrisca NNP\nPriscilla NNP\nPrism NNP\nPrison NNP\nPrisoners NNP\nPritchett NNP\nPritikin NNP\nPritzker NNP\nPritzkers NNPS\nPrivacy NN\nPrivate JJ\nPrivate-property NN\nPrivate-sector JJ\nPrivately RB\nPrivatization NN\nPrivatize VB\nPrivatizing NN\nPriviet NNP\nPrivileged NNP\nPrivy NNP\nPrix NNP\nPrize NNP\nPrize-winning JJ\nPrizes NNPS\nPrizm NNP\nPrizms NNPS\nPrizzi NNP\nPro NNP\nPro-Am NNP\nPro-Choice JJ\nPro-Family NNP\nPro-Iranian NNP\nPro-choice JJ\nPro-forma JJ\nPro-life JJ\nPro-rated JJ\nProBody NNP\nProCyte NNP\nProbable JJ\nProbably RB\nProbe NNP\nProbes NNPS\nProbhat NNP\nProbing VBG\nProblem NNP\nProblems NNS\nProbus NNP\nProcaine NN\nProcardia NNP\nProcedural JJ\nProcedure NN\nProcedures NNPS\nProceeding VBG\nProceedings NNP\nProceeds NNS\nProcepe NNP\nProcess NNP\nProcessed NNP\nProcessing NNP\nProcessors NNPS\nProclamation NNP\nProcreation NN\nProcter NNP\nProctor NNP\nProcurement NN\nProdded VBN\nProdigall NNP\nProdigy NNP\nProduce VB\nProducer NN\nProducer-Price NNP\nProducers NNS\nProducing NNP\nProduct NNP\nProduction NN\nProductions NNPS\nProductivity NN\nProducts NNPS\nProefrock NNP\nProf NNP\nProf. NNP\nProfessional NNP\nProfessionally RB\nProfessionals NNP\nProfessor NNP\nProfessors NNP\nProfile NN\nProfili NNP\nProfit NN\nProfit-taking NN\nProfits NNS\nProfitt NNP\nProgram NN\nProgram-Trading JJ\nProgramming NNP\nPrograms NNS\nProgress NN\nProgressive NNP\nProgressivism NNP\nProhibited NNP\nProhibition NNP\nProject NNP\nProjected VBN\nProjecting VBG\nProjections NNS\nProjects NNPS\nProkofieff NNP\nProler NNP\nProleukin NNP\nProlonged VBN\nProlusion NNP\nPromazine JJ\nPromenade NNP\nPrometheus NNP\nPrometrix NNP\nProminent JJ\nPromise NNP\nPromised JJ\nPromises VBZ\nPromo NN\nPromoters NNP\nPromotion NNP\nPromotional JJ\nPrompt NNP\nPrompted VBN\nPromptly RB\nProof NN\nProp NN\nProp. NNP\nPropaganda NNP\nPropane NNP\nProper JJ\nProperly RB\nProperties NNP\nPropertius NNP\nProperty NNP\nProperty-tax JJ\nProperty\\ JJ\nProphet NNP\nProponents NNS\nProposals NNS\nProposed VBN\nProposition NNP\nPropper NNP\nProprietary NNP\nProprietorship NNP\nProprietorships NNP\nPropriety NN\nPropulsion NNP\nPropylaea NNP\nPropylene NN\nPros NNS\nProse NNP\nProsecutor NNP\nProsecutorial JJ\nProsecutors NNS\nProskauer NNP\nProsopopoeia NNP\nProspect NNP\nProspective JJ\nProspects NNS\nProsperity NN\nProsser NNP\nProstitutes NNS\nProtection NNP\nProtectionism NNP\nProtectionist JJ\nProtective JJ\nProtectorate NNP\nProtege NNP\nProteins NNPS\nProtestant NNP\nProtestant-dominated JJ\nProtestantism NNP\nProtestants NNPS\nProtesters NNS\nProtesting VBG\nProtests NNS\nProthro NNP\nProtitch NNP\nProtocol NNP\nProtogeometric JJ\nProtons NNS\nPrototype NN\nPrototypes NNS\nProtracted JJ\nProudfoot NNP\nProudhon NNP\nProust NNP\nProvato NNP\nProvenza NNP\nProverbs NNS\nProves VBZ\nProvide VB\nProvided VBN\nProvidence NNP\nProvident NNP\nProviding VBG\nProvigo NNP\nProvince NNP\nProvinces NNP\nProvincetown NNP\nProvincial NNP\nProvincie NNP\nProving NNP\nProvision NN\nProvisional NNP\nProvo NNP\nProvost NNP\nProximate JJ\nProxmire NNP\nProxy NN\nProzac NNP\nPru-Bache NNP\nPrucker NNP\nPrudence NNP\nPrudent NNP\nPrudential NNP\nPrudential-Bache NNP\nPrudentialBache NNP\nPrudhoe NNP\nPruett NNP\nPrufrock NNP\nPrussia NNP\nPrussian NNP\nPrussin NNP\nPryce NNP\nPryor NNP\nPsalm NNP\nPseudomonas NNS\nPsithyrus NNP\nPsyche NNP\nPsychiatric NNP\nPsychiatry NNP\nPsychical JJ\nPsychoanalytic NNP\nPsychologically RB\nPsychologists NNS\nPsychology NNP\nPsychotherapist NN\nPsychotherapy NNP\nPsyllium NN\nPt NNP\nPt. NN\nPtachia NNP\nPte NNP\nPte. NNP\nPtolemaic JJ\nPtolemaists NNS\nPtolemy NNP\nPty. NNP\nPualani NNP\nPublic NNP\nPublic-health JJ\nPublic-spirited JJ\nPublic-works NNS\nPublication NN\nPublications NNPS\nPublicis NNP\nPublicity NN\nPublick NNP\nPublicly RB\nPublique NNP\nPublished VBN\nPublisher NNP\nPublishers NNPS\nPublishing NNP\nPuccini NNP\nPuccio NNP\nPuche NNP\nPucik NNP\nPuddingstone NNP\nPudwell NNP\nPueblo NNP\nPuente NNP\nPueri FW\nPuerto NNP\nPuette NNP\nPuffing VBG\nPuget NNP\nPugh UH\nPuglisi NNP\nPugo NNP\nPuhl NNP\nPulaski NNP\nPulitzer NNP\nPulkova NNP\nPull VB\nPullen NNP\nPulley NNP\nPulliam NNP\nPulling VBG\nPullings NNP\nPullman NNP\nPullmans NNS\nPullover NNP\nPulova NNP\nPulp NNP\nPuma NN\nPumblechook NNP\nPummeled VBN\nPump NNP\nPumpkin NNP\nPumwani NNP\nPuna NNP\nPunch VB\nPunching VBG\nPundits NNS\nPune NNP\nPunishment NN\nPunitive JJ\nPunjab NNP\nPuny JJ\nPupil NN\nPupils NNS\nPuppeteer NN\nPuppies NNS\nPuppy NNP\nPurcell NNP\nPurchase NNP\nPurchases NNS\nPurchasing NNP\nPurdew NNP\nPurdie NNP\nPurdue NNP\nPurdy NNP\nPure NNP\nPurely RB\nPurepac NNP\nPurgatory NNP\nPurification NN\nPurified VBN\nPurina NNP\nPuritan NNP\nPuritans NNS\nPurkis NNP\nPurloined NNP\nPurnick NNP\nPurple NNP\nPurpose NNP\nPurse NNP\nPursewarden NNP\nPursuing VBG\nPursuit NN\nPurves NNP\nPurvis NNP\nPush NN\nPush-Pull NNP\nPush-ups NNS\nPushing VBG\nPushkin NNP\nPushup NNP\nPut VB\nPutas NNP\nPutka NNP\nPutnam NNP\nPuts VBZ\nPutt NNP\nPuttana NN\nPuttin NNP\nPutting VBG\nPuttnam NNP\nPutty NN\nPutzi NNP\nPuzzled VBN\nPye NNP\nPyhrric JJ\nPyle NNP\nPymm NNP\nPyne NNP\nPyo NNP\nPyongyang NNP\nPyramid NNP\nPyramids NNPS\nPyrex NNP\nPyrometer NNP\nPyrrhic JJ\nPysllium NN\nPyszkiewicz NNP\nPythagoreans NNPS\nPython NNP\nPyxis NNP\nPyzhyanov NNP\nQ NN\nQ. NNP\nQ3 CD\nQ45 NNP\nQB NNP\nQE NNP\nQFC NNP\nQUANTUM NNP\nQUARTER NN\nQUOTABLE JJ\nQVC NNP\nQantas NNP\nQatar NNP\nQing NNP\nQinghua NNP\nQintex NNP\nQintex-MGM\\/UA NNP\nQizhen NNP\nQuack NNP\nQuackenbush NNP\nQuacks NNS\nQuad NNP\nQuadra NNP\nQuadrant NNP\nQuadrex NNP\nQuadrille NNP\nQuadrum NNP\nQuaid NNP\nQuake NN\nQuaker NNP\nQuakeress NN\nQuakers NNS\nQualitative JJ\nQualities NNPS\nQuality NN\nQualls NNP\nQuant NN\nQuantum NNP\nQuarry NNP\nQuarter NN\nQuarterback NNP\nQuarterly JJ\nQuartermaster NNP\nQuartet NNP\nQuasimodo NNP\nQuatre NNP\nQuatsch FW\nQuattlebaum NNP\nQuattro NNP\nQuattro. NNP\nQuayle NNP\nQuebec NNP\nQuebecers NNPS\nQuebeckers NNPS\nQuebecois NNP\nQuebecor NNP\nQuebequois NNP\nQueen NNP\nQueenan NNP\nQueens NNP\nQueensland NNP\nQuek NNP\nQueks NNPS\nQuelch NNP\nQuell NNP\nQuelle NNP\nQuemoy NNP\nQuennell NNP\nQuentin NNP\nQuerecho NNP\nQueried VBN\nQuesTech NNP\nQuesada NNP\nQuesadas NNPS\nQuest NNP\nQuestion NN\nQuestioned VBN\nQuestions NNS\nQuezon NNP\nQui FW\nQuick NNP\nQuick-Wate NNP\nQuickening VBG\nQuicker JJR\nQuickly RB\nQuickview NNP\nQuiet JJ\nQuieter JJR\nQuietism NNP\nQuietist NNP\nQuietly RB\nQuigley NNP\nQuiksilver NNP\nQuill NNP\nQuill\\/William NNP\nQuilt NNP\nQuilted NNP\nQuina NNP\nQuince NN\nQuincy NNP\nQuindlen NNP\nQuiney NNP\nQuinlan NNP\nQuinn NNP\nQuint NNP\nQuinta NNP\nQuintana NNP\nQuintet NNP\nQuinton NNP\nQuintus NNP\nQuinzaine NNP\nQuips VBZ\nQuirinal NNP\nQuist NNP\nQuit VB\nQuite RB\nQuitslund NNP\nQuivar NNP\nQuixote NNP\nQuizzical NNP\nQuod FW\nQuota NNP\nQuotable NNP\nQuotas NNS\nQuotation NNP\nQuotations NNPS\nQuote NN\nQuotidien NNP\nQuoting VBG\nQuotron NNP\nQuotrons NNPS\nQureshey NNP\nQuyne NNP\nQuyney NN\nR NN\nR&D NN\nR&M NNP\nR's NNS\nR-5th JJ\nR-6th NNP\nR-Bergen NNP\nR-Cape NNP\nR-Warren NNP\nR-shaped JJ\nR-stage JJ\nR. NNP\nR.,Iowa NNP\nR.,Vitro NNP\nR.A.F. NNP\nR.B. NNP\nR.C. NNP\nR.D. NNP\nR.E. NNP\nR.F. NNP\nR.G. NNP\nR.H. NNP\nR.I NNP\nR.I. NNP\nR.I.-based JJ\nR.J. NNP\nR.L. NNP\nR.N. NNP\nR.P. NNP\nR.R. NNP\nR.S. NNP\nR.T. NNP\nR.V. NNP\nR.W. NNP\nR/NNP.A. NN\nR/NNP.C/NNP.A. NN\nR/NNP.H.S. NNP\nR/NNP.I. NN\nR2-D2 NN\nRA NNP\nRAAF NNP\nRACIST JJ\nRACKS NNS\nRADIO NN\nRAF NNP\nRAISED VBD\nRALLIED VBD\nRAND NNP\nRANDELL NNP\nRANSOM NNP\nRATE NN\nRATES NNS\nRATIOS NNS\nRATTLED VBD\nRAVAGES NNS\nRAX NNP\nRAYCHEM NNP\nRB&H NNP\nRBC NNP\nRBS NNP\nRBSPr NNP\nRC6280 NN\nRCA NNP\nRCA-Victor NNP\nRCA\\/Ariola NNP\nRCSB NNP\nRD NNP\nRDF NNP\nRDW NN\nRDWS NN\nRE-ENTRY NNP\nREACHED NNP\nREACTOR NN\nREADY NNP\nREAGAN NNP\nREAL JJ\nREAL-ESTATE JJ\nREALLY NNP\nREALTY NNP\nREAP VBP\nREBUFF NN\nRECEIVED VBD\nRECENT JJ\nRECORD NNP\nRECORDS NNS\nRECRUITING NN\nRECRUITS VBZ\nREFLECTIONS NNP\nREFUSED VBD\nREGULATIONS NNS\nREIGNS VBZ\nREINSURERS NNS\nREIS NNP\nREIT NNP\nREITs NNS\nREJECTED VBN\nREJECTS VBZ\nRELEASE NN\nREMEMBER VB\nREMIC NNP\nREMICs NNS\nREN NNP\nRENAISSANCE NNP\nRENT-A-CAR NNP\nREPAIR NN\nREPLICATION NN\nREPLIGEN NNP\nREPORTED VBN\nREPORTS NNS\nREQUESTS NNS\nREQUIRED NNP\nRESEARCH NNP\nRESEARCHERS NNS\nRESIDENTIAL NNP\nRESIGNATIONS NNS\nRESIGNED VBD\nRESOURCES NNP\nRETIREMENT NNP\nRETREAT NN\nREVENUE NN\nREVIEW NNP\nREVISED VBN\nRF-082 NN\nRFM NNP\nRIAA NNP\nRICHARD NNP\nRICHMOND NNP\nRICO NNP\nRICO-forfeiture JJ\nRICOed JJ\nRICOing NN\nRID VB\nRIGHTS NNS\nRIP UH\nRISC NNP\nRISC-based JJ\nRISE NN\nRISK NN\nRIT NNP\nRIVALRIES NNS\nRIVER NNP\nRJR NNP\nRJR-Macdonald NNP\nRJR-style JJ\nRLLY NNP\nRMC NNP\nRMI NNP\nRMS NNP\nRMd NN\nRNA NNP\nRNA-based JJ\nRNAs NNS\nROARED VBD\nROBERT NNP\nRODE VBD\nROFLMAO UH\nROGERS NNP\nROK NNP\nROME NNP\nROOM NN\nROOSEVELT'S NNP\nROSS NNP\nROSTY'S NNP\nROTC NNP\nROUGH JJ\nROUND NN\nROY NNP\nRPM NNP\nRTC NNP\nRTC-appointed JJ\nRTC-owned JJ\nRTRSY NNP\nRTS NNP\nRTZ NNP\nRU NNP\nRU-486 NNP\nRULE VBP\nRULERS NNS\nRULES NNS\nRULING NN\nRUN NNP\nRUSH NN\nRUSSIANS NNS\nRV NN\nRVs NNS\nRXDC NNP\nRabat NNP\nRabaul NNP\nRabb NNP\nRabbi NNP\nRabbits NNS\nRabble-rousing JJ\nRabia NNP\nRabies NN\nRabin NNP\nRabinowiczes NNPS\nRabinowitz NNP\nRabkin NNP\nRaboy NNP\nRacal NNP\nRaccoon NNP\nRaccoons NNS\nRace NNP\nRace-drivers NNS\nRaceway NNP\nRachael NNP\nRachel NNP\nRachelle NNP\nRachmaninoff NNP\nRachwalski NNP\nRacial JJ\nRacie NNP\nRacin NNP\nRacine NNP\nRacing NNP\nRacism NN\nRacketeer NNP\nRacketeering NNP\nRackmil NNP\nRacks VBZ\nRacquet NNP\nRadames NNP\nRadar NNP\nRadarange NN\nRadcliffe NNP\nRademacher NNP\nRadetzky NNP\nRadha NNP\nRadhakrishnan NNP\nRadiant JJ\nRadiation NN\nRadic NNP\nRadical NNP\nRadio NNP\nRadio-Television NNP\nRadio-television NN\nRadio-transmitter NN\nRadioing VBG\nRadiopasteurization NN\nRadiosterilization NN\nRadius NNP\nRadnor NNP\nRadzymin NNP\nRae NNP\nRaeder NNP\nRaesz NNP\nRaether NNP\nRafael NNP\nRafale NNP\nRafales NNPS\nRafeedie NNP\nRafer NNP\nRaffaello NNP\nRafferty NNP\nRafi NNP\nRafsanjani NNP\nRaft NN\nRafter NNP\nRaful NNP\nRag NNP\nRagalyi NNP\nRagan NNP\nRagavan NNP\nRage NN\nRagged JJ\nRaghavan NNP\nRaghib NNP\nRagnar NNP\nRagsdale NNP\nRagu NNP\nRaheem NNP\nRahill NNP\nRahman NNP\nRahn NNP\nRahway NNP\nRaich NNP\nRaider NNP\nRaiders NNPS\nRaiff NNP\nRaikes NNP\nRaikin NNP\nRail NNP\nRail-transit NN\nRailbikers NNS\nRailbikes NNS\nRailcar NNP\nRailroad NNP\nRailroad-rate JJ\nRailroads NNPS\nRails NNPS\nRailway NNP\nRaimer NNP\nRaimondo NNP\nRaimu NNP\nRain NNP\nRainbow NNP\nRaine NNP\nRainer NNP\nRaines NNP\nRainey NNP\nRainier NNP\nRainman NNP\nRainwater NNP\nRainy NNP\nRaisa NNP\nRaise VB\nRaised VBN\nRaising VBG\nRaitt NNP\nRaj NNP\nRajiv NNP\nRajter NNP\nRak NNP\nRake NN\nRakestraw NNP\nRaleigh NNP\nRales NNP\nRall NNP\nRally NNP\nRalph NNP\nRalphs NNP\nRalston NNP\nRalston-Purina NNP\nRam NNP\nRama NNP\nRamada NNP\nRamathan NNP\nRamble NNP\nRambo NNP\nRamcharger NNP\nRameau NNP\nRamesh NNP\nRamey NNP\nRamfis NNP\nRamillies NNP\nRamirez NNP\nRammin VBG\nRamo NNP\nRamon NNP\nRamona NNP\nRamone NNP\nRamos NNP\nRamparts NNS\nRampell NNP\nRamseier NNP\nRamsey NNP\nRamsperger NNP\nRamtron NNP\nRan VBD\nRanavan NNP\nRanch NNP\nRancher NNP\nRancho NNP\nRand NNP\nRandall NNP\nRande NNP\nRandell NNP\nRandi NNP\nRandol NNP\nRandolph NNP\nRandom NNP\nRandy NNP\nRange NN\nRangel NNP\nRanger NNP\nRangers NNPS\nRanging VBG\nRangoni NNP\nRangoon NNP\nRangoon-Bangkok NNP\nRanieri NNP\nRank NNP\nRanke NNP\nRanked VBN\nRankin NNP\nRanking NN\nRankings NNS\nRanks NNP\nRanney NNP\nRansom NNP\nRansomes NNP\nRansy NNP\nRanyard NNP\nRanzer NNP\nRaos NNP\nRaoul NNPS\nRaoul-Duval NNP\nRap NN\nRapanelli NNP\nRapatee NNP\nRape NNP\nRaphael NNP\nRaphaels NNS\nRapid NNP\nRapids NNP\nRapier NN\nRapoport NNP\nRapp NNP\nRapping VBG\nRapport NNP\nRaptopoulos NNP\nRapture NN\nRapunzel NNP\nRare JJ\nRarely RB\nRarer JJR\nRascal NN\nRash NNP\nRashid NNP\nRashomon NNP\nRaskolnikov NNP\nRaspberry NN\nRastus NNP\nRat NNP\nRat-face NN\nRatajczak NNP\nRatcliff NNP\nRatcliffe NNP\nRate NNP\nRated VBN\nRates NNS\nRath NNP\nRathbone NNP\nRathbones NNPS\nRather RB\nRatican NNP\nRatified VBN\nRating NNP\nRatings NNS\nRational NNP\nRatliff NNP\nRatner NNP\nRatners NNP\nRaton NNP\nRats NNP\nRattigan NNP\nRattner NNP\nRatto NNP\nRattzhenfuut NNP\nRauch NNP\nRaucher NNP\nRauh NNP\nRaul NNP\nRausch NNP\nRauschenberg NNP\nRauschenbusch NNP\nRauscher NNP\nRavel-like JJ\nRavencroft NNP\nRavenscroft NNP\nRavenspurn NNP\nRavenswood NNP\nRavich NNP\nRavine NNP\nRavitch NNP\nRavitz NNP\nRaw JJ\nRaw-steel NN\nRawl NNP\nRawleigh NNP\nRawlings NNP\nRawlins NNP\nRawls NNP\nRawson NNP\nRax NNP\nRay NNP\nRayburn NNP\nRayburn-Johnson NNP\nRaydiola NNP\nRayfield NNP\nRayle NNP\nRaymon NNP\nRaymond NNP\nRaymonda NNP\nRaymondville NNP\nRaymont NNP\nRaynal NNP\nRayon NNP\nRaytheon NNP\nRazors NNS\nRd. NNP\nRe NNP\nRe-Birth NNP\nRe-creating VBG\nRe-enactments NNS\nReach NNP\nReached VBN\nReaching VBG\nReacting VBG\nReaction NN\nReactionaries NNS\nReactionary JJ\nReactions NNS\nReactors NNP\nRead NNP\nReader NNP\nReaderman NNP\nReaders NNS\nReadily RB\nReadiness NN\nReading NNP\nReadings NNS\nReady JJ\nReaffirming VBG\nReagan NNP\nReagan-Bush JJ\nReagan-Republican JJ\nReagan-era NN\nReagan-like JJ\nReaganauts NNS\nReaganite JJ\nReaganites NNPS\nReaganomics NNP\nReal JJ\nReal-estate NN\nRealism NNP\nRealist NNP\nReality NN\nReally RB\nRealtor NN\nRealtors NNS\nRealty NNP\nReama NNP\nReames NNP\nRear JJ\nRearding VBG\nReared VBN\nReason NNP\nReasonable JJ\nReasoner NNP\nReasoning NN\nReasons NNS\nReavey NNP\nReavis NNP\nReb NN\nRebaja NNP\nRebates NNS\nRebecca NNP\nRebel NN\nRebellion NN\nRebels NNS\nReber NNP\nRebounding VBG\nRebs NNS\nRebuilding VBG\nRecall VB\nRecalls VBZ\nRecapitulation NNP\nReceave VBP\nReceipts NNPS\nReceivables NNPS\nReceiving VBG\nRecent JJ\nRecently RB\nReceptech NNP\nReception NN\nRecess NN\nRecession NN\nRecessions NNS\nRecherche NNP\nRecherches FW\nReciprocal NNP\nRecital NNP\nReckitt NNP\nRecklessly RB\nReckon VB\nReclamation NNP\nRecognition NNP\nRecognize VB\nRecognizing VBG\nRecommendations NNS\nReconciliation NNP\nReconsider VB\nReconsideration NN\nReconstruction NNP\nRecord NNP\nRecording NNP\nRecordings NNP\nRecords NNPS\nRecords\\/SONY NNP\nRecounting VBG\nRecoup VB\nRecovering VBG\nRecovery NNP\nRecreation NNP\nRecruit NNP\nRecruited VBN\nRecruiter NNP\nRectangular JJ\nRectifier NNP\nRector NNP\nRectum NN\nRecurring VBG\nRecyclers NNPS\nRecycling NNP\nRed NNP\nRed-Green NNP\nRed-Greens NNPS\nRed-blooded JJ\nRed-prone JJ\nReda NNP\nRedbirds NNP\nRedbook NNP\nRedding NNP\nReddington NNP\nRede NNP\nRedeemable NNP\nRedeemer NNP\nRederi NNP\nRedesign NN\nRedevelopment NNP\nRedfield NNP\nRedford NNP\nRedgrave NNP\nRedhook NNP\nReding NN\nRedland NNP\nRedmond NNP\nRedondo NNP\nRedoute NNP\nReds NNPS\nRedskins NNPS\nRedstone NNP\nReduce VB\nReduced NNP\nReduces VBZ\nReducing VBG\nReduction NNP\nReductions NNS\nRedundant NNP\nRedwood NNP\nReebok NNP\nReeboks NNPS\nReed NNP\nReeder NNP\nReedville NNP\nReedy NNP\nReef NNP\nReefs NNS\nReels NNPS\nReenact VB\nRees NNPS\nReese NNP\nReeve NNP\nReeves NNP\nReeves-type JJ\nRef. NN\nRefco NNP\nRefcorp NNP\nRefcorps NNS\nReference NNP\nReferences NNS\nReferrals NNS\nReferring VBG\nRefill VB\nRefinancing NN\nRefined NNP\nRefinements NNS\nRefiners NNS\nRefinery NN\nRefining NNP\nReflecting VBG\nReflections NNP\nReflects VBZ\nReflex NN\nReform NNP\nReformation NNP\nReformed NNP\nReforms NNS\nRefractories NNPS\nRefrigeration NN\nRefsnes NNP\nRefsum NNP\nRefuge NNP\nRefugee NNP\nRefugees NNS\nRefund NN\nRefunds NNS\nRefuses VBZ\nReg NNP\nRegaard NNP\nRegains VBZ\nRegal NNP\nRegalia NNP\nRegan NNP\nRegarded VBN\nRegarding VBG\nRegardless RB\nRegatta NNP\nRegency NNP\nRegent NNP\nReggie NNP\nRegie NNP\nRegime NNP\nRegiment NNP\nRegina NNP\nReginald NNP\nRegine NNP\nRegion NNP\nRegional NNP\nRegionalism NNP\nRegionally RB\nRegions NNS\nRegis NNP\nRegister NNP\nRegistered VBN\nRegistration NN\nRegistrations NNS\nRegistry NNP\nRegius NNP\nRegnery NNP\nRego NNP\nRegret NN\nRegretfully RB\nRegrets VBZ\nRegrettably RB\nRegular NNP\nRegulars NNS\nRegulation NN\nRegulations NNS\nRegulative JJ\nRegulator NNP\nRegulators NNS\nRegulatory NNP\nRegulus NN\nRehabilitation NNP\nRehfeld NNP\nRehnquist NNP\nReich NNP\nReichenberg NNP\nReichhart NNP\nReichhold NNP\nReichmann NNP\nReichmann-controlled JJ\nReichmanns NNPS\nReichstag NNP\nReid NNP\nReider NNP\nReidy NNP\nReifenrath NNP\nReik NNP\nReilly NNP\nReily NNP\nReimbursement NN\nRein NNP\nReina NNP\nReinaldo NNP\nReine NNP\nReinforced NNP\nReinforcements NNS\nReinforcing VBG\nReinhard NNP\nReinhardt NNP\nReinhold NNP\nReinisch NNP\nReinker NNP\nReins NNP\nReinstatement NN\nReinsurance NNP\nReintroducing VBG\nReinvestment NNP\nReis NNP\nReiser NNP\nReisert NNP\nReiss NNP\nReitman NNP\nRejection NN\nRejoins VBZ\nRekindled VBN\nRelated NNP\nRelating VBG\nRelation NN\nRelational NNP\nRelations NNPS\nRelationship NNP\nRelationships NNPS\nRelative JJ\nRelatively RB\nRelatives NNS\nRelativism NN\nRelax VB\nRelease NNP\nRelentless JJ\nRelentlessly RB\nRelevant JJ\nReliability NN\nReliable NNP\nReliance NNP\nRelief NNP\nRelieved JJ\nReligion NN\nReligione NNP\nReligious JJ\nRelishes NNS\nRelocation NNP\nReluctant JJ\nRelying VBG\nRemain VB\nRemaining VBG\nRemains NNS\nRemaking VBG\nRemarketers NNS\nRemarks NNS\nRemarque NNP\nRembrandt NNP\nRemember VB\nRemembering VBG\nRemembrance NN\nRemic NNP\nRemic-related JJ\nRemics NNS\nRemington NNP\nRemingtons NNPS\nRemoval NNP\nRemove VB\nRemoved VBN\nRemphan NNP\nRempsberger NNP\nRemus NNP\nRemy NNP\nRenaissance NNP\nRenaissance-style JJ\nRenata NNP\nRenault NNP\nRenaults NNPS\nRence NNP\nRenchard NNP\nRenck NNP\nRendell NNP\nRendering VBG\nRene NNP\nRenee NNP\nRenewal NNP\nRenewed VBN\nRenfrew NNP\nRenfro NNP\nRenk NNP\nRennell NNP\nRennie NNP\nReno NNP\nReno-Lake NNP|NP\nRenoir NNP\nRenoirs NNPS\nRenovo NNP\nRenowned VBN\nRenshaw NNP\nRensselaer NNP\nRensselaerwyck NNP\nRent NNP\nRent-A-Car NNP\nRent-A-Lease NNP\nRenta NNP\nRental NNP\nRenton NNP\nRents NNS\nRenville NNP\nRenwick NNP\nRenzas NNP\nReorganization NNP\nReorganized NNP\nReorganizing VBG\nRep NNP\nRep. NNP\nRepairing VBG\nRepayment NNP\nRepeal NN\nRepeat NN\nRepeated VBN\nRepeatedly RB\nRepeating VBG\nRepertory NNP\nReplace VB\nReplacement NN\nReplacing VBG\nReplied VBD\nReplies NNS\nRepligen NNP\nReplogle NNP\nReply NN\nRepnin NNP\nReport NNP\nReporter NNP\nReporters NNS\nReporting NNP\nReports NNS\nRepository NNP\nRepresentative NNP\nRepresentatives NNPS\nRepresenting VBG\nRepression NN\nReprimand NN\nReprinted VBN\nReprints NNS\nReprisals NNS\nReproach VB\nReproduced VBN\nReproduction NNP\nReproductive NNP\nReps. NNP\nRepsol NNP\nReptilian NNP\nRepublic NNP\nRepublicBank NNP\nRepublican NNP\nRepublican-controlled JJ\nRepublican-governor\\ JJ\nRepublicanism NNP\nRepublicans NNPS\nRepublics NNPS\nReputedly RB\nRequests NNS\nRequiem NNP\nRequire VB\nRequired VBN\nRequirements NNS\nRescue NNP\nRescued VBN\nRescues NNS\nResearch NNP\nResearch-and-development NN\nResearchers NNS\nResearching VBG\nResentment NN\nReservation NNP\nReserve NNP\nReserved NNP\nReserves NNS\nReservists NNPS\nReservoir NNP\nReservoirs NNP\nReshaping VBG\nResidence NNP\nResident NNP\nResidential NNP\nResidents NNS\nResignedly RB\nResins NNPS\nResist VB\nResistance NNP\nResisting VBG\nResistol NNP\nResler NNP\nResnick NNP\nResnik NNP\nResolute NNP\nResolution NNP\nResolve NNP\nResolved VBN\nResolves NNPS\nResolving NNP\nResort NNP\nResorts NNPS\nResource NNP\nResourceful JJ\nResources NNPS\nResourcesrose NNP\nRespect NN\nRespectability NN\nRespecting VBG\nRespiratory NNP\nRespond VBP\nRespondents NNS\nResponding VBG\nResponse NNP\nResponses NNS\nResponsibility NNP\nResponsible JJ\nResrve NNP\nRess NNP\nRest VB\nRestaurant NNP\nRestaurants NNP\nResting VBG\nRestless JJ\nReston NNP\nRestoration NNP\nRestraint NNP\nRestrict VB\nRestrictive JJ\nRestructure VBP\nRestructuring NN\nRests VBZ\nRestudy VB\nResult NN\nResults NNS\nResuming VBG\nRet NNP\nRetail JJ\nRetailer NN\nRetailers NNS\nRetailing NN\nRetails NNS\nRetardation NNP\nRetention NNP\nRetin-A NNP\nRetired NNP\nRetiree NN\nRetirement NNP\nRetiring VBG\nRetrace VB\nRetracing VBG\nRetrieval NNP\nRetrovir NNP\nRetrovirus NNP\nRetton NNP\nReturn NN\nReturning VBG\nReturns NNS\nReub NNP\nReuben NNP\nReuling NNP\nReunification NN\nReunion NNP\nReupke NNP\nReuschel NNP\nReuss NNP\nReuter NNP\nReuters NNP\nReuther NNP\nReuven NNP\nReuveni NNP\nRev NNP\nRev. NNP\nReva NNP\nRevamps NNP\nRevco NNP\nReveals VBZ\nRevelation NNP\nRevell NNP\nRevenge NN\nRevenue NN\nRevenue-short JJ\nRevenues NNS\nReverdy NNP\nRevere NNP\nReverend NNP\nReverently RB\nReversal NNP\nReverse VB\nReversing VBG\nReview NNP\nReviewing VBG\nReviglio NNP\nRevise VB\nRevised NNP\nRevising VBG\nRevision NNP\nRevisited NNP\nRevitalization NNP\nRevitalized VBN\nRevivals NNS\nRevlon NNP\nRevolt NN\nRevolution NNP\nRevolutionaries NNS\nRevolutionary NNP\nRevolutionibus FW\nRevolving VBG\nRevson NNP\nRevulsion NNP\nRevzin NNP\nReward VB\nRewarding NN\nRewards NNS\nRex NNP\nRexall NNP\nRexene NNP\nRexinger NNP\nRexroth NNP\nRey NNP\nRey-controlled JJ\nReye NNP\nReyes NNP\nReyes-Requena NNP\nReykjavik NNP\nReynolds NNP\nRezneck NNP\nReznichenko NNP\nRezsoe NNP\nRh NNP\nRhea NNP\nRheims NNP\nRheingold NNP\nRheinholdt NNP\nRheinstahl NNP\nRheinstein NNP\nRhenish JJ\nRhett NNP\nRheumatics NN|NNS\nRheumatism NNP\nRhin NNP\nRhine NNP\nRhine-Main NNP\nRhine-Westphalia NNP\nRhineland NN\nRhinoceros NNP\nRhoads NNP\nRhoda NNP\nRhode NNP\nRhodes NNP\nRhodesia NNP\nRhona NNP\nRhone NNP\nRhone-Poulenc NNP\nRhu-beb-ni-ice NN\nRhyme VB\nRhys NNP\nRhythm NN\nRhythm-Wily NNP\nRhythmic JJ\nRhythms NNPS\nRiad NNP\nRianta NNP\nRibas NNP\nRibeiro NNP\nRiben NNP\nRibes NNP\nRibozymes NNS\nRica NNP\nRican JJ\nRican-American NNP\nRicans NNS\nRicardo NNP\nRicca NNP\nRiccardo NNP\nRicci NNP\nRicco NNP\nRice NNP\nRich NNP\nRich-affiliated JJ\nRichard NNP\nRichardot NNP\nRichards NNP\nRichardson NNP\nRichardson-Merrell NNP\nRichardson-Smith NNP\nRichardson-Vicks NNP\nRichco NNP\nRichebourg NNP\nRichelieu NNP\nRicher NNP\nRichert NNP\nRicheson NNP\nRichey NNP\nRichfield NNP\nRichland NNP\nRichman NNP\nRichmond NNP\nRichmond-Petersburg NNP\nRichmond-San NNP\nRichmond-Watson NNP\nRichmond-area JJ\nRichstone NNP\nRichter NNP\nRichter-Haaser NNP\nRichterian JJ\nRichwhite NNP\nRick NNP\nRickards NNP\nRickel NNP\nRicken NNP\nRickenbaugh NNP\nRicketts NNP\nRickettsia NN\nRickey NNP\nRickshaw NNP\nRico NNP\nRicoh NNP\nRicostruzioni NNP\nRidder NNP\nRiddle NN\nRide VB\nRider NNP\nRiders NNPS\nRidge NNP\nRidgefield NNP\nRidgway NNP\nRidiculing VBG\nRidiculous JJ\nRiding VBG\nRidley NNP\nRidpath NNP\nRiedel NNP\nRiefenstahl NNP\nRiefling NNP\nRiegger NNP\nRiegle NNP\nRieke NNP\nRiely NNP\nRiemann NNP\nRiepe NNP\nRies NNP\nRiese NNP\nRieslings NNPS\nRiesman NNP\nRifenburgh NNP\nRifkin NNP\nRifkind NNP\nRifkinesque JJ\nRifle NNP\nRiflery NN\nRifles NNS\nRig-Veda NNP\nRiga NNP\nRiger NNP\nRiggs NNP\nRight RB\nRight-hander JJ\nRight-to-Die JJ\nRight-wing JJ\nRighteous JJ\nRightly RB\nRights NNP\nRigid JJ\nRigoletto NNP\nRihanna NNP\nRiiiing UH\nRiklis NNP\nRiley NNP\nRilke NNP\nRill NNP\nRilling NNP\nRilly NNP\nRilwanu NNP\nRim NNP\nRim-Fire JJ\nRima NNP\nRimanelli NNP\nRimbaud NN\nRimes NNP\nRimini NNP\nRimmer NNP\nRimstalker NNP\nRinascimento NNP\nRinat NNP\nRincon NNP\nRindos NNP\nRinehart NNP\nRiney NNP\nRing NNP\nRingel NNP\nRingenbach NNP\nRinger NNP\nRingers NNS\nRinging NN\nRingler NNP\nRingo NNP\nRingwood NNP\nRink NNP\nRinker NNP\nRinsing VBG\nRio NNP\nRiordan NNP\nRios NNP\nRios-embryos NNS\nRip NNP\nRipa NNP\nRipe NNP\nRippe NNP\nRipper NNP\nRipplemeyer NNP\nRipples NNS\nRise NN\nRiserva NNP\nRises NNP\nRising VBG\nRisk NN\nRisking NNP\nRisks NNS\nRisky NNP\nRisley NNP\nRisparmio NNP\nRisques NNP\nRita NNP\nRita-Sue NNP\nRitchie NNP\nRite NNP\nRito NNP\nRitschl NNP\nRittenhouse NNP\nRitter NNP\nRitterman NNP\nRittlemann NNP\nRitz NNP\nRitz-Carlton NNP\nRiunite NNP\nRiunitie NNP\nRival NNP\nRivals NNS\nRiver NNP\nRivera NNP\nRiverboat NNP\nRiverfront NNP\nRivers NNPS\nRiverside NNP\nRiverview NNP\nRiverwalk NNP\nRiviera NNP\nRivkin NNP\nRivlin NNP\nRivoli FW\nRiyadh NNP\nRizopolous NNP\nRizvi NNP\nRizzello NNP\nRizzuto NNP\nRoach NNP\nRoaco NNP\nRoad NNP\nRoadRailer NNP\nRoadRailers NNPS\nRoadRailing VBG\nRoads NNP\nRoadway NNP\nRoald NNP\nRoaming VBG\nRoanoke NNP\nRoaring NNP\nRoark NNP\nRoast VB\nRoasters NNS\nRob NNP\nRobards NNP\nRobb NNP\nRobbers NNS\nRobbery NNP\nRobbie NNP\nRobbins NNP\nRobby NNP\nRobec NNP\nRobert NNP\nRoberta NNP\nRoberti NNP\nRoberto NNP\nRoberts NNP\nRobertsCorp NNP\nRobertson NNP\nRobertsons NNPS\nRobeson NNP\nRobie NNP\nRobin NNP\nRobinowitz NNP\nRobins NNP\nRobinson NNP\nRobinson-Humphrey NNP\nRobinsonville NNP\nRobles NNP\nRobot NN\nRobotics NNP\nRobots NNP\nRobusta-producing JJ\nRocco NNP\nRoch NNP\nRocha NNP\nRochdale NNP\nRoche NNP\nRochelle NNP\nRochester NNP\nRochford NNP\nRock NNP\nRock'n NNP\nRockabye NNP\nRockaways NNPS\nRockefeller NNP\nRocket NNP\nRocket-powered JJ\nRocketdyne NNP\nRockettes NNPS\nRockford NNP\nRockfork NNP\nRockhall NNP\nRockies NNPS\nRocking NNP\nRockport NNP\nRockville NNP\nRockwell NNP\nRocky NNP\nRococo JJ\nRod NNP\nRodale NNP\nRodding NN\nRodent NN\nRodeo NNP\nRodeph NNP\nRoderick NNP\nRodgers NNP\nRodman NNP\nRodney NNP\nRodney-Honor NNP\nRodney-Miss NNP\nRodney-The NNP\nRodolfo NNP\nRodrigo NNP\nRodriguez NNP\nRodriquez NNP\nRoe NNP\nRoebuck NNP\nRoeck NNP\nRoederer NNP\nRoehm NNP\nRoemer NNP\nRoeser NNP\nRoessler NNP\nRoffman NNP\nRogaine NNP\nRoger NNP\nRogers NNP\nRogin NNP\nRognoni NNP\nRogues NNPS\nRoh NNP\nRohatyn NNP\nRohm NNP\nRohr NNP\nRohrer NNP\nRohs NNP\nRoine NNP\nRoizen NNP\nRojas NNP\nRojo NNP\nRolaids NNP\nRoland NNP\nRole NN\nRoleplaying NN\nRoles NNS\nRolette NNP\nRolex NNP\nRolexes NNPS\nRolf NNP\nRolfe NNP\nRolfes NNP\nRoling NNP\nRoll NNP\nRolland NNP\nRolled VBN\nRoller NNP\nRollie NNP\nRollin NNP\nRolling NNP\nRollins NNP\nRolls NNP\nRolls-Royce NNP\nRolls-Royces NNPS\nRolm NNP\nRolnick NNP\nRolodex NNP\nRolodexes NNPS\nRoloff NNP\nRoma NNP\nRomagnosi NNP\nRomain NNP\nRoman NNP\nRoman-camp NN\nRomana NNP\nRomances NNP\nRomanee-Conti NNP\nRomanesque JJ\nRomania NNP\nRomanian JJ\nRomaniuk NNP\nRomano NNP\nRomans NNPS\nRomantic JJ\nRomanza NNP\nRome NNP\nRome-based JJ\nRomeo NNP\nRomer NNP\nRomero NNP\nRomm NNP\nRommel NNP\nRomo NNP\nRomulo NNP\nRon NNP\nRona NNP\nRonald NNP\nRondanini NNP\nRondo NN\nRong NNP\nRonkonkoma NNP\nRonnel NN\nRonnie NNP\nRoof NNP\nRooker NNP\nRookie NN\nRoom NNP\nRoomberg NNP\nRoommates NNS\nRooms NNS\nRooney NNP\nRoos NNP\nRoosevelt NNP\nRooseveltian JJ\nRoot NN\nRoots NNPS\nRopart NNP\nRoper NNP\nRopes NNPS\nRoquemore NNP\nRorer NNP\nRorschach NNP\nRory NNP\nRosa NNP\nRosabelle NNP\nRosabeth NNP\nRosalco NNP\nRosalie NNP\nRosalind NNP\nRosalyn NNP\nRosalynn NNP\nRosburg NNP\nRoscoe NNP\nRose NNP\nRoseanne NNP\nRoseland NNP\nRosella NNP\nRoselle NNP\nRosemary NNP\nRosemont NNP\nRosen NNP\nRosenau NNP\nRosenbach NNP\nRosenbaum NNP\nRosenberg NNP\nRosenblatt NNP\nRosenblum NNP\nRosencrants NNP\nRosenfeld NNP\nRosenfield NNP\nRosenmueller NNP\nRosenstein NNP\nRosenthal NNP\nRosenwald NNP\nRoses NNPS\nRosett NNP\nRosewood NNP\nRosie NNP\nRoskind NNP\nRoslev NNP\nRoslyn NNP\nRosman NNP\nRosner NNP\nRosoff NNP\nRosow NNP\nRospatch NNP\nRoss NNP\nRosser NNP\nRossi NNP\nRossides NNP\nRossilini NNP\nRossini NNP\nRosso NNP\nRossoff NNP\nRost NNP\nRostagno NNP\nRostagnos NNPS\nRostenkowski NNP\nRosty NNP\nRoswell NNP\nRosy NNP\nRotan NNP\nRotarians NNPS\nRotary NNP\nRotelli NNP\nRotenberg NNP\nRoth NNP\nRotha NNP\nRothamsted NNP\nRothe NNP\nRothenberg NNP\nRothko NNP\nRothman NNP\nRothmans NNP\nRothmeier NNP\nRothschild NNP\nRothschilds NNPS\nRothshchild NNP\nRothwell NNP\nRotie NNP\nRotman NNP\nRoto-Rooter NNP\nRotonda NNP\nRotondo NNP\nRotorex NNP\nRotterdam NNP\nRottger NNP\nRottosei NNP\nRotunda NNP\nRouben NNP\nRouge NNP\nRough JJ\nRoughly RB\nRoukema NNP\nRoulac NNP\nRoulet NNP\nRound NNP\nRounded JJ\nRounding VBG\nRounding-off NN\nRoundtable NNP\nRoundup NNP\nRourke NNP\nRous NNP\nRousell NNP\nRousseau NNP\nRousseauan JJ\nRoussel NNP\nRoussel-Uclaf NNP\nRoustabouts NNPS\nRoute NNP\nRoutine JJ\nRouto-Jig NN\nRover NNP\nRow NNP\nRowan NNP\nRowe NNP\nRowell NNP\nRowland NNP\nRowland-Molina NNP\nRowland-Morin NNP\nRowlands NNP\nRowley NNP\nRowman NNP\nRowse NNP\nRowswell NNP\nRoxani NNP\nRoxanne NNP\nRoxboro NNP\nRoxy NNP\nRoy NNP\nRoyal NNP\nRoyale NNP\nRoyalty NNP\nRoyaux NNP\nRoybal NNP\nRoyce NNP\nRoylott NNP\nRozella NNP\nRozelle NNP\nRte. NNP\nRuanda-Urundi NNP\nRuark NNP\nRubber NNP\nRubbermaid NNP\nRubbish NN\nRube NNP\nRubega NNP\nRubel NNP\nRubeli NNP\nRubendall NNP\nRubenesquely JJ\nRubens NNP\nRubenstein NNP\nRuberg NNP\nRubicam NNP\nRubik NNP\nRubin NNP\nRubinfien NNP\nRubins NNS\nRubinstein NNP\nRubio NNP\nRuby NNP\nRucellai NNP\nRuckdeschel NNP\nRuckert NNP\nRudder NNP\nRude NNP\nRuder NNP\nRuderman NNP\nRudi NNP\nRudibaugh NNP\nRuding NNP\nRudkoebing NNP\nRudman NNP\nRudner NNP\nRudnick NNP\nRudoff NNP\nRudolf NNP\nRudolph NNP\nRudy NNP\nRudyard NNP\nRue NNP\nRuettgers NNP\nRufenacht NNP\nRuff NNP\nRuffel NNP\nRuffians NNS\nRuffled VBN\nRuffo NNP\nRufus NNP\nRuger NNP\nRugeroni NNP\nRugged JJ\nRuggiero NNP\nRuhnau NNP\nRuhollah NNP\nRuidoso NNP\nRuined VBN\nRuiz NNP\nRuiz-Mateos NNP\nRukeyser NNP\nRul. NNP\nRule NNP\nRuled VBN\nRulers NNPS\nRules NNP\nRuling NN\nRullo NNP\nRum NNP\nRumack NNP\nRumania NNP\nRumanian JJ\nRumanians NNPS\nRumasa NNP\nRumford NNP\nRummaging VBG\nRummel NNP\nRumor NN\nRumors NNS\nRumpelstiltskin NNP\nRumscheidt NNP\nRun NNP\nRun-down JJ\nRuncie NNP\nRundfunk NNP\nRundfunk-Sinfonie-Orchester NNP\nRundfunkchor NNP\nRundlett NNP\nRune NNP\nRunge NNP\nRuniewicz NNP\nRunkel NNP\nRunnan NNP\nRunner NNP\nRunners NNS\nRunning VBG\nRuntagh NNP\nRunways NNS\nRunyon NNP\nRuoff NNP\nRupert NNP\nRuppert NNP\nRural NNP\nRus NNP\nRuschkowski NNP\nRush NNP\nRush-Presbyterian-St NNP\nRushall NNP\nRushdie NNP\nRushforth NNP\nRushmore NNP\nRusk NNP\nRuskin NNP\nRuss NNP\nRussel NNP\nRussell NNP\nRusses NNP\nRussia NNP\nRussian NNP\nRussian-dominated JJ\nRussian-language JJ\nRussians NNPS\nRusso NNP\nRusso-American JJ\nRust NNP\nRustin NNP\nRusting VBG\nRuston NNP\nRusty NNP\nRutan NNP\nRutgers NNP\nRuth NNP\nRuthann NNP\nRutherford NNP\nRuthlessness NN\nRutstein NNP\nRuttenbur NNP\nRuvolo NNP\nRuwe NNP\nRuxpin NNP\nRuys NNP\nRuysch NNP\nRwanda NNP\nRy. NNP\nRyan NNP\nRyc NNP\nRychard NNP\nRydell NNP\nRyder NNP\nRye NNP\nRyerson NNP\nRykoff-Sexton NNP\nRyland NNP\nRylie NNP\nRymer NNP\nRyne NNP\nRyosuke NNP\nRyrie NNP\nRyskamp NNP\nRyukichi NNP\nRyusenji NNP\nRyutaro NNP\nRyzhkov NNP\nS NNP\nS$ $\nS&L NNP\nS&Ls NNS\nS&P NNP\nS&P-500 NNP\nS&P-down NN\nS'Mores NNP\nS* NNP\nS*/NN&L NNP\nS*/NNP&L NN\nS*/NNP&P NN\nS*/NNS&Ls NNP\nS-10 NNP\nS-11 NN\nS-20 NN\nS-Cargo NNP\nS-D NN\nS-K-I NNP\nS-curve NN\nS-s-sahjunt NN\nS. NNP\nS.A NNP\nS.A. NNP\nS.A.F.E. NNP\nS.C NNP\nS.C. NNP\nS.C.-based JJ\nS.D NNP\nS.D. NNP\nS.G. NNP\nS.Grove NNP\nS.I. NNP\nS.J. NNP\nS.K. NNP\nS.O.B NNP\nS.O.B. NN\nS.O.B.s NNS\nS.P. NNP\nS.P.C.A. NN\nS.S. NNP\nS.S.R. NNP\nS.W. NNP\nS.p NNP\nS.p.A. NNP\nS/O VB\nSA NNP\nSA-12 NN\nSAAMI NNP\nSAATCHI NNP\nSAB NNP\nSABH NNP\nSABLE NNP\nSAC NNP\nSAFEWAY NNP\nSAID VBD\nSAINT NNP\nSAKOS FW\nSALARIES NNS\nSALE NN\nSALES NNS\nSALT NNP\nSAME JJ\nSAMOS NNP\nSAMURAI NNP\nSAN NNP\nSANTA NNP\nSARK NNP\nSAS NNP\nSAT NNP\nSAVINGS NNP\nSBA NNP\nSBCI NNP\nSC NNP\nSCA NNP\nSCANDALS NNS\nSCE NNP\nSCECorp NNP\nSCHLOSS NNP\nSCHMIDT NNP\nSCHOOL NN\nSCHWAB NNP\nSCHWARTZ NNP\nSCI NNP\nSCIENTISTS NNS\nSCORE NNP\nSCR NNP\nSCRAMBLE VBP\nSCRAP VBP\nSCUD NNP\nSD NNP\nSDI NNP\nSE NNP\nSEAGATE NNP\nSEAQ NNP\nSEAT NNP\nSEATO NNP\nSEC NNP\nSEC. NNP\nSECOND JJ\nSECTION NN\nSECURITY NN\nSEE VBP\nSEEK VB\nSEEKING VBG\nSEEKS VBZ\nSEEQ NNP\nSEI NNP\nSELF-DESTROYED VBN\nSELL VB\nSELL-OFFS NNS\nSELLING NNP\nSEM NNP\nSEMICONDUCTOR NNP\nSENATE NNP\nSENIOR JJ\nSEPARATE JJ\nSEPARATED VBN\nSEPT. NNP\nSERVE VBP\nSERVICE NN\nSERVICES NNP\nSES NNP\nSESCO NNP\nSET VBD\nSETSW NN\nSETTING VBG\nSEVEN-UP NNP\nSE\\/30 NNP\nSEi NNP\nSF NNP\nSFD NNP\nSFE NNP\nSFX NNP\nSFr2 NNP\nSFr3 NNP\nSGA NNP\nSGB NNP\nSGC NNP\nSH NN\nSH-11 NNP\nSHAKE VB\nSHAREDATA NNP\nSHAREHOLDER NN\nSHEA NNP\nSHEARSON NNP\nSHEDDING VBG\nSHELTERS NNS\nSHEVARDNADZE NNP\nSHIBUMI NNP\nSHIELD NNP\nSHIPPING NNP\nSHIT NN\nSHOPPE NNP\nSHOPPERS NNS\nSHOPS NNS\nSHORT JJ\nSHORT-TERM JJ\nSHORTAGE NN\nSHOULD MD\nSHOWY JJ\nSHUN VBP\nSHUT VB\nSHUTTLE NN\nSHV NNP\nSIA NNP\nSIBV-MS NNP\nSICK NNP\nSIDE NNP\nSIDES NNS\nSIERRA NNP\nSIGNAL NN\nSIGNALED VBN\nSIGNED VBN\nSILLY JJ\nSIMPLIFYING VBG\nSINCE IN\nSISAL NNP\nSITE NN\nSIZING NNP\nSJO NNP\nSK NNP\nSKF NNP\nSKIDDED VBD\nSKIES NNS\nSKILLED JJ\nSKIRTS NNP\nSKr1.5 NNS\nSKr20 NNS\nSKr205 NNS\nSKr225 NNS\nSKr29 NNS\nSLHD NNP\nSLIPPAGE NN\nSLIPS VBZ\nSLOGANS NNS\nSLORC NNP\nSLTI NNP\nSMALL NNP\nSMALL-BUSINESS NN\nSMALL-COMPANY JJ\nSMART JJ\nSMD NNP\nSMOKING NN\nSMU NNP\nSMYRNA NNP\nSNET NNP\nSNIA NNP\nSNP NN\nSO RB\nSO-CALLED JJ\nSOARED VBD\nSOARS VBZ\nSOCIAL JJ\nSOCIETY'S NNP\nSOFT JJ\nSOFTWARE NNP\nSOME DT\nSONG NNP\nSONGsters NNS\nSORRY JJ\nSOS NNP\nSOUTH NNP\nSOUTHERN NNP\nSOUVENIRS NNS\nSOVIET JJ\nSOYBEANS NNS\nSP NNP\nSP-44001 LS\nSP-44002 LS\nSP-44005 LS\nSP-44006 LS\nSP-44007 LS\nSP1 JJ\nSP1-plus JJ\nSPAN NNP\nSPCA NNP\nSPECIALIZED JJ\nSPENDING NN\nSPENT VBD\nSPERANDEO NNP\nSPLIT-UP NN\nSPORTS NNS\nSPRINGFIELD NNP\nSPRUCING VBG\nSPWL NNP\nSQUARE NNP\nSQUIBB NNP\nSR NNP\nSRELEASE NN\nSRESERVE NN\nSRS NNP\nSS NNP\nSS-18s NNS\nSS-20 NNP\nSS-20s NNPS\nSS-24 NNP\nSS-24s NNPS\nSS-25 NNP\nSS-25s NNPS\nSS. NNP\nSSI NNP\nSSMC NNP\nSST NNP\nSTAGED VBD\nSTANDARDS NNPS\nSTANLEY NNP\nSTAR NN\nSTAR-STUDDED JJ\nSTARS NNP\nSTART NNP\nSTARTING NNP\nSTATE NNP\nSTATES NNS\nSTC NNP\nSTEEL NNP\nSTERLING NNP\nSTET NNP\nSTOCK NN\nSTOCK-INDEX NN\nSTOCKS NNS\nSTODGY JJ\nSTOPPED VBN\nSTORES NNP\nSTREET NNP\nSTRIP VB\nSTRIPES NNP\nSTRUCK VBD\nSTRUGGLED VBD\nSTS NNP\nSTSN NNP\nSTUBBED VBN\nSTUDENTS NNS\nSTUDIES NNS\nSTUDY NN\nSU-27 NN\nSUBURBIA NN\nSUES VBZ\nSUGAR NN\nSUIT NN\nSUN NNP\nSUNDSTRAND NNP\nSUNY NNP\nSUPERIOR NNP\nSUPERPOWERS NNPS\nSUPREME NNP\nSURGED VBD\nSURVEYS NNS\nSUSPECT JJ\nSUSPENDED VBD\nSV-10 NN\nSW NNP\nSWAO NNP\nSWAPO NNP\nSWC NNP\nSWIFT NNP\nSWITCH NN\nSWITCHING VBG\nSWUNG VBD\nSX-21 NNP\nSYDNEY-Qintex NNP\nSYSCO NNP\nSYSTEMS NNP\nSa'dawi NNP\nSa-Duk NNP\nSaab NNP\nSaab-Scania NNP\nSaabye NNP\nSaadi NNP\nSaalfeld NNP\nSaatchi NNP\nSaatchis NNPS\nSaba NNP\nSabaneta NNP\nSabbath NNP\nSabella NNP\nSabena NNP\nSabha NNP\nSabhavasu NNP\nSabina NNP\nSabinas FW\nSabine NNP\nSabinson NNP\nSable NNP\nSabo NNP\nSabol NNP\nSabras NNS\nSabre NNP\nSabreliner NNP\nSabrina NN\nSacco NNP\nSacheverell NNP\nSachs NNP\nSack NNP\nSaco NNP\nSacramento NNP\nSacramento-based JJ\nSacre NNP\nSacred NNP\nSacremento NNP\nSacrestia NNP\nSacrifice NN\nSacrifices NNS\nSad JJ\nSadakane NNP\nSaddam NNP\nSaddle NNP\nSadie NNP\nSadler NNP\nSadly RB\nSafari NNP\nSafavids NNPS\nSafe NNP\nSafeco NNP\nSafeguards NNS\nSafely RB\nSafer NNP\nSafety NNP\nSafety-Kleen NNP\nSafeway NNP\nSaffer NNP\nSafford NNP\nSafi NNP\nSafra NNP\nSaftey NNP\nSag NNP\nSaga NNP\nSagami NNP\nSagan NNP\nSage NNP\nSago NNP\nSagos NNS\nSahara NNP\nSahjunt NNP\nSahour NNP\nSaicheua NNP\nSaid VBD\nSaigon NNP\nSail NNP\nSailing NNP\nSailor NNP\nSailors NNS\nSain NNP\nSainsbury NNP\nSaint NNP\nSaint-Geours NNP\nSaint-Saens NNP\nSainte-Chapelle NNP\nSainted NNP\nSaints NNP\nSaintsbury NNP\nSaison NNP\nSaitama NNP\nSaito NNP\nSaitoti NNP\nSajak NNP\nSakaguchi NNP\nSakata NNP\nSake FW\nSakellariadis NNP\nSakellariadises NNS\nSakharov NNP\nSaklad NNP\nSako NN\nSakowitz NNP\nSaks NNP\nSakura NNP\nSal NNP\nSalFininistas NNP\nSala NNP\nSalaam FW\nSalads NNS\nSalamander NNP\nSalang NNP\nSalant NNP\nSalaries NNS\nSalary NN\nSalazar NNP\nSale NNP\nSaledo NNP\nSaleh NNP\nSalem NNP\nSalembier NNP\nSalerno NNP\nSalerno-Sonnenberg NNP\nSales NNS\nSalesman NN\nSalesmanship NN\nSalespeople NNS\nSalhany NNP\nSalida NNP\nSalim NNP\nSalina NNP\nSalinas NNP\nSalinger NNP\nSalinity NN\nSalins NNP\nSalisbury NNP\nSalish NNP\nSaliva NN\nSalive NNP\nSalk NNP\nSalle NNP\nSallie NNP\nSally NNP\nSalman NNP\nSalmon NNP\nSalomon NNP\nSalomonovich NNP\nSalon NNP\nSaloojee NNP\nSaloon NNP\nSalpetriere NNP\nSalsich NNP\nSalt NNP\nSalted JJ\nSalter NNP\nSaltiel NNP\nSaltis-McErlane NNP\nSalton NNP\nSaltonstall NNP\nSalty NNP\nSaltzburg NNP\nSalu NNP\nSalvador NNP\nSalvadoran JJ\nSalvadorans NNS\nSalvagni NNP\nSalvation NNP\nSalvatore NNP\nSalvatori NNP\nSalvesen NNP\nSalwen NNP\nSalyer NNP\nSalzgitter NNP\nSalzman NNP\nSam NNP\nSamakow NNP\nSamar NNP\nSamara NNP\nSamaritan NNP\nSamaritans NNS\nSamba NNP\nSambuca NNP\nSame JJ\nSame-store JJ\nSameness NN\nSamengo-Turner NNP\nSamford NNP\nSammartini NNP\nSammi NNP\nSammy NNP\nSammye NNP\nSamnick NNP\nSamoa NNP\nSamoilov NNP\nSamovar NNP\nSamper NNP\nSample NN\nSamples NNS\nSampson NNP\nSamson NNP\nSamsung NNP\nSamsung-Corning NNP\nSamuel NNP\nSamuels NNP\nSamuelson NNP\nSamurai NNP\nSan NNP\nSanAntonio NNP\nSanaa NNP\nSanatorium NNP\nSanchez NNP\nSancho NNP\nSancken NNP\nSanctam NNP\nSanctions NNS\nSanctuary NNP\nSand NNP\nSandalphon NNP\nSandalwood NNP\nSandberg NNP\nSandburg NNP\nSandburgs NNPS\nSande NNP\nSander NNP\nSanderoff NNP\nSanders NNP\nSanderson NNP\nSandhills NNP\nSandhurst NNP\nSandia NNP\nSandifer NNP\nSandinista NNP\nSandinistas NNPS\nSandinistas... :\nSandip NNP\nSandler NNP\nSandlund NNP\nSandman NNP\nSandner NNP\nSandor NNP\nSandoz NNP\nSandra NNP\nSandro NNP\nSands NNP\nSandusky NNP\nSandwich NNP\nSandwiched VBN\nSandwiches NNS\nSandy NNP\nSane NNP\nSanford NNP\nSang NNP\nSanga NNP\nSangallo NNP\nSangamon NNP\nSanger NNP\nSanger-Harris NNP\nSangetsu NNP\nSangyo NNP\nSanitary NNP\nSanitation NNP\nSanity NN\nSanjay NNP\nSanjiv NNP\nSanka NNP\nSankai NNP\nSankei NNP\nSankyo NNP\nSanlandro NNP\nSann NNP\nSanraku NNP\nSans NNP\nSansom NNP\nSansome NNP\nSanson NNP\nSansone NNP\nSansui NNP\nSant NNP\nSant'Angelo NNP\nSanta NNP\nSantacruz NNP\nSantamaria NNP\nSantas NNPS\nSantayana NNP\nSante NNP\nSantiago NNP\nSantiveri NNP\nSanto NNP\nSantovenia NNP\nSantry NNP\nSantucci NNP\nSanwa NNP\nSanyo NNP\nSao NNP\nSaouma NNP\nSapanski NNP\nSaperstein NNP\nSapio NNP\nSapp NNP\nSappho NNP\nSapporo NNP\nSara NNP\nSaracens NNPS\nSarah NNP\nSaran NNP\nSarandon NNP\nSarasate NNP\nSarason NNP\nSarasota NNP\nSaratoga NNP\nSarawak NNP\nSardanapalus NNP\nSardi NNP\nSardina NNP\nSardinia NNP\nSargent NNP\nSark NNP\nSarkees NNP\nSarmi NNP\nSarney NNP\nSarpsis NNP\nSarrebourg NNP\nSarsaparilla NN\nSarti NNP\nSartoris NNP\nSartre NNP\nSarum NNP\nSary NNP\nSary-Shagan NNP\nSasaki NNP\nSasea NNP\nSasebo NNP\nSasha NNP\nSashimi FW\nSaskatchewan NNP\nSass NNP\nSasser NNP\nSassy NNP\nSat VBD\nSatan NNP\nSatanic JJ\nSatellite NNP\nSatellites NNS\nSatires NNPS\nSatis NNP\nSatisfaction NN\nSatisfactory JJ\nSatisfied VBN\nSatisfying VBG\nSatoh NNP\nSatoko NNP\nSatoshi NNP\nSatrum NNP\nSatterfield NNP\nSattig NNP\nSaturated JJ\nSaturday NNP\nSaturday-night JJ\nSaturdays NNPS\nSaturn NNP\nSauce NNP\nSaucer NNP\nSaucony NNP\nSaud NNP\nSaudi NNP\nSaudi-American NNP\nSaudis NNPS\nSauerteig NNP\nSaul NNP\nSaull NNP\nSault NNP\nSaunder NNP\nSaunders NNP\nSaundra NNP\nSaupiquet NNP\nSausage NNP\nSausalito NNP\nSauter NNP\nSauter\\/Piller\\/Percelay NNP\nSauternes NNP\nSauvignon NNP\nSavage NNP\nSavageau NNP\nSavaiko NNP\nSavannah NNP\nSavannakhet NNP\nSavath NNP\nSave VB\nSaved NNP\nSavelyeva NNP\nSavers NNP\nSaveth NNP\nSaville NNP\nSavimbi NNP\nSavin NNP\nSaving VBG\nSavings NNP\nSavior NNP\nSaviour NNP\nSavoca NNP\nSavona NNP\nSavonarola NNP\nSavory JJ\nSavoy NNP\nSavoyards NNP\nSaw VBD\nSawalisch NN\nSawallisch NNP\nSawhill NNP\nSawicki NNP\nSawnders NNP\nSawyer NNP\nSaxe NNP\nSaxon NNP\nSaxons NNP\nSaxony NNP\nSaxton NNP\nSay VB\nSayegh NNP\nSayers NNP\nSaying VBG\nSayles NNP\nSaylor NNP\nSayre NNP\nSays VBZ\nSbCs-type JJ\nScala NNP\nScale NNP\nScalfaro NNP\nScali NNP\nScalia NNP\nScam NN\nScambio NNP\nScampini NNP\nScams NNS\nScan NNP\nScana NNP\nScandal NN\nScandalios NNP\nScandanavian JJ\nScandia NNP\nScandinavia NNP\nScandinavian NNP\nScandinavians NNPS\nScania NNP\nScanlon NNP\nScannell NNP\nScanner NNP\nScapin NNP\nScarborough NNP\nScarcity NN\nScare NNP\nScared VBN\nScarface NNP\nScaring VBG\nScarlatti NNP\nScarlet NNP\nScarpia NNP\nScarsdale NNP\nScasi NNP\nScattered VBN\nScenario NN\nScenarios NNS\nScene NNP\nScenes NNS\nScenic JJ\nSchaack NNP\nSchaaf NNP\nSchabowski NNP\nSchacht NNP\nSchachter NNP\nSchaefer NNP\nSchaeffer NNP\nSchafer NNP\nSchaffner NNP\nSchall NNP\nSchang NNP\nSchantz NNP\nSchapiro NNP\nSchaumburg NNP\nSchechter NNP\nSchedule NNP\nScheduled VBN\nSchedules NNS\nScheetz NNP\nScheherazade NNP\nSchein NNP\nSchell NNP\nSchelling NNP\nSchellke NNP\nSchemes NNS\nSchenectady NNP\nSchenk NNP\nSchenley NNP\nScherer NNP\nSchering NNP\nSchering-Plough NNP\nScheringPlough NN\nSchicchi FW\nSchick NNP\nSchieffelin NNP\nSchiele NNP\nSchiff NNP\nSchiffs NNPS\nSchilling NNP\nSchillinger NNP\nSchimberg NNP\nSchimmel NNP\nSchindler NNP\nSchlang NNP\nSchleiermacher NNP\nSchlek NNP\nSchlemmer NNP\nSchlesinger NNP\nSchleswig-Holstein NNP\nSchley NNP\nSchlieren NNP\nSchlitz NNP\nSchloss NNP\nSchlossberg NNP\nSchlumberger NNP\nSchmalensee NNP\nSchmalma UH\nSchmalzried NNP\nSchmedel NNP\nSchmetterer NNP\nSchmidl-Seeberg NNP\nSchmidlin NNP\nSchmidt NNP\nSchmidt-Chiari NNP\nSchmitt NNP\nSchmolka NNP\nSchmotter NNP\nSchnabel NNP\nSchnabel-Pro NNP\nSchnabelian JJ\nSchnacke NNP\nSchnader NNP\nSchneider NNP\nSchneier NNP\nSchnitz NNP\nSchnitzer NNP\nSchnuck NNP\nSchober NNP\nSchoch NNP\nSchockler NNP\nSchoder NNP\nSchoenberg NNP\nSchoeneman NNP\nSchoenfeld NNP\nSchoenholtz NNP\nSchoeppner NNP\nScholar NNP\nScholars NNPS\nScholarship NN\nScholastic NNP\nScholastica NNP\nScholey NNP\nSchonberg NNP\nSchone NNP\nSchool NNP\nSchoolmarm NN\nSchools NNP\nSchopenhauer NNP\nSchorr NNP\nSchott NNP\nSchottenstein NNP\nSchotter NNP\nSchraffts NNP\nSchrage NNP\nSchrager NNP\nSchramm NNP\nSchreibman NNP\nSchreyer NNP\nSchrier NNP\nSchroder NNP\nSchroders NNP\nSchroeder NNP\nSchroer NNP\nSchroll NNP\nSchrunk NNP\nSchubert NNP\nSchubert-Beethoven-Mozart JJ\nSchueler NNP\nSchuette NNP\nSchuler NNP\nSchuller NNP\nSchulman NNP\nSchulof NNP\nSchulte NNP\nSchultz NNP\nSchulz NNP\nSchulze NNP\nSchumacher NNP\nSchuman NNP\nSchumann NNP\nSchumer NNP\nSchumpeter NNP\nSchuster NNP\nSchutz NNP\nSchuyler NNP\nSchuylkill NNP\nSchwab NNP\nSchwada NNP\nSchwalbe NNP\nSchwartau NNP\nSchwartz NNP\nSchwartzman NNP\nSchwarz NNP\nSchwarzen FW\nSchwarzenberger NNP\nSchwarzer NNP\nSchwarzkopf NNP\nSchwarzman NNP\nSchwarzwaldklinik NNP\nSchweicker NNP\nSchweiker NNP\nSchweitzer NNP\nSchweitzers NNPS\nSchweiz NNP\nSchweizer NNP\nSchweizerische NNP\nSchwemer NNP\nSchwemm NNP\nSchwengel NNP\nSchweppes NNP\nSchwerdt NNP\nSchwerin NNP\nSchwinn NNP\nSci-Med NNP\nSciMed NNP\nScience NNP\nSciences NNPS\nScientech NNP\nScientific NNP\nScientific-Atlanta NNP\nScientifique NNP\nScientists NNS\nScientology NNP\nScituate NNP\nScobee-Frazier NNP\nScofield NNP\nScolatti NNP\nScollard NNP\nScopes NNP\nScopo NNP\nScore VB\nScorecard NNP\nScores NNS\nScoring NNP\nScorpio NNP\nScorpios NNPS\nScorsese NNP\nScot NNP\nScotch NNP\nScotch-Irish-Scandinavian NNP\nScotch-and-soda NN\nScotchgard NNP\nScotchman NN\nScotia NNP\nScotia-McLeod NNP\nScotian NNP\nScotland NNP\nScots NNS\nScott NNP\nScottish NNP\nScottish-born JJ\nScotto NNP\nScotts NNP\nScottsdale NNP\nScotty NNP\nScout NNP\nScouting VBG\nScouts NNPS\nScowcroft NNP\nScrabble NNP\nScrambling VBG\nScranton NNP\nScrap NN\nScrapings NNS\nScrapiron NNP\nScraps NNS\nScratch NN\nScratchard NNP\nScratching VBG\nScreen NN\nScreenwriter NN\nScrevane NNP\nScrew NNP\nScrewed JJ\nScribe VB\nScrimgeour NNP\nScripp NNP\nScripps NNP\nScripps-Howard NNP\nScriptural JJ\nScripture NNP\nScriptures NNPS\nScrivener NNP\nScrooge-like JJ\nScrub VB\nScrum NNP\nScrupulous JJ\nScudder NNP\nScull NNP\nSculley NNP\nScully NNP\nScurlock NNP\nScwhab NNP\nScypher NNP\nSe NNP\nSea NNP\nSea-Land NNP\nSea-road NN\nSeaEscape NNP\nSeaFest\\/JAC NNP\nSeaboard NNP\nSeaborg NNP\nSeabrook NNP\nSeacomb NNP\nSeafirst NNP\nSeafood NN\nSeaga NNP\nSeagate NNP\nSeagle NNP\nSeagoville NNP\nSeagram NNP\nSeagull NNP\nSeahorse NNP\nSeal NNP\nSealed NNP\nSealey NNP\nSealtest NNP\nSeaman NNP\nSean NNP\nSeaquarium NNP\nSear VB\nSearby NNP\nSearch VB\nSearching VBG\nSearle NNP\nSearles NNP\nSears NNP\nSears-McDonald NNP\nSeas NNP\nSeashore NNP\nSeason NN\nSeasonal JJ\nSeasonally RB\nSeasoned JJ\nSeasonings NNPS\nSeasons NNPS\nSeat NN\nSeated VBN\nSeaton NNP\nSeats NNS\nSeattle NNP\nSeattle-First NNP\nSeattle-Northwest NNP\nSeattle-based JJ\nSeattlite NNP\nSeattlites NNS\nSebastian NNP\nSec. NN\nSecaucus NNP\nSecesh NNP\nSecilia NNP\nSeco NNP\nSecom NNP\nSecomerica NNP\nSecond JJ\nSecond-half JJ\nSecond-highest JJ\nSecond-quarter NNP\nSecond-tier JJ\nSecondary JJ\nSecondly RB\nSeconds NNS\nSecord NNP\nSecrecy NN\nSecret NNP\nSecretariat NNP\nSecretariate NNP\nSecretaries NNPS\nSecretary NNP\nSecretary-General NNP\nSecretary-designate NNP\nSecretion NN\nSection NN\nSections NNS\nSector NNP\nSecular JJ\nSecure VB\nSecured JJ\nSecurities NNPS\nSecurities-trading JJ\nSecurity NNP\nSecurity-Connecticut NNP\nSecutities NNPS\nSedan NNP\nSeddon NNP\nSedgwick NNP\nSedimentation NN\nSedona NNP\nSeduction NN\nSee VB\nSee-through JJ\nSeebohm NNP\nSeed NN\nSeeds NNS\nSeeing VBG\nSeek NNP\nSeeking VBG\nSeekonk NNP\nSeeks VBZ\nSeelbinder NNP\nSeelenfreund NNP\nSeeley NNP\nSeelig NNP\nSeeming VBG\nSeemingly RB\nSeems VBZ\nSeen VBN\nSeerey NNP\nSees VBZ\nSega NNP\nSegal NNP\nSegalas NNP\nSegall NNP\nSegar NNP\nSeger NNP\nSeger-Elvekrog NNP\nSegnar NNP\nSegovia NNP\nSegundo NNP\nSegur NNP\nSegura NNP\nSeib NNP\nSeidel NNP\nSeiders NNP\nSeidler NNP\nSeidman NNP\nSeife NNP\nSeifert NNP\nSeigel NNP\nSeigner NNP\nSeiki NNP\nSeiko NNP\nSeikosha NNP\nSeiler NNP\nSeimei NNP\nSeiren NNP\nSeisakusho NNP\nSeismographic NNP\nSeita NNP\nSeitz NNP\nSeiyu NNP\nSeize NNP\nSeizes VBZ\nSeizin VBG\nSeizing VBG\nSejm NNP\nSekel NNP\nSekisui NNP\nSeko NNP\nSelassie NNP\nSelavo NNP\nSelden NNP\nSeldes NNP\nSeldom RB\nSelect NNP\nSelected JJ\nSelecting VBG\nSelection NN\nSelections NNS\nSelective JJ\nSelectives NNPS\nSelectmen NNS\nSelectol NNP\nSelena NNP\nSelf NNP\nSelf-Government NNP\nSelf-censorship NN\nSelf-contained JJ\nSelf-criticism NN\nSelf-designated JJ\nSelf-expression NN\nSelf-sufficiency NN\nSelig NNP\nSeligman NNP\nSelkin NNP\nSelkirk NNP\nSelkirkers NNS\nSell VB\nSellars NNP\nSeller NN\nSellers NNP\nSelling VBG\nSells NNP\nSelma NNP\nSelman NNP\nSelmer-Sande NNP\nSeltzer NNP\nSelve NNP\nSelway-Swift NNP\nSelwyn NNP\nSelz NNP\nSemegran NNP\nSemel NNP\nSemenov NNP\nSemi-Tech NNP\nSemiconductor NNP\nSemiconductors NNPS\nSemifinished VBN\nSeminar NNP\nSeminario NNP\nSeminary NNP\nSeminole NNP\nSemiramis NNP\nSemmel NNP\nSemmelman NNP\nSemmes NNP\nSemon NNP\nSemple-Lisle NNP\nSemra NNP\nSen NNP\nSen. NNP\nSenate NNP\nSenate-House NNP\nSenate-backed JJ\nSenate-passed JJ\nSenator NNP\nSenators NNS\nSend VB\nSendler NNP\nSener NNP\nSenesac NNP\nSenese NNP\nSeng NNP\nSenior JJ\nSeniors NNS\nSenium FW\nSenk NNP\nSenor NNP\nSenora NNP\nSenorita NNP\nSens. NNP\nSense NN\nSensenbrenner NNP\nSenshukai NNP\nSensibility NN\nSensing VBG\nSensitive JJ\nSensor NNP\nSent VBN\nSentelle NNP\nSentence NN\nSentences NNS\nSentencing NN\nSentiment NN\nSentiments NNS\nSentor NNP\nSentra NNP\nSentry NNP\nSeoul NNP\nSeoul-Moscow NNP\nSeparate JJ\nSeparately RB\nSeparating VBG\nSeparation NN\nSept NNP\nSept. NNP\nSept.1 NNP\nSept.30 CD\nSeptember NNP\nSeptember-October NNP\nSepulveda NNP\nSequa NNP\nSequent NNP\nSequester NN\nSequoia NNP\nSerafin NNP\nSerbantian NNP\nSerenade NNP\nSerene NNP\nSerenissimus NNP\nSerenity NN\nSerex NNP\nSerge NNP\nSergeant NNP\nSergei NNP\nSergio NNP\nSergiusz NNP\nSerial JJ\nSeries NNP\nSerieuses NNP\nSerif NNP\nSerious JJ\nSerkin NNP\nSerlin NNP\nSermon NN\nSerological JJ\nSerpentine NNP\nSerra NNP\nSerrana NNP\nSerum NN\nServ-Air NNP\nServanda FW\nServant NNP\nServantCor NNP\nServatius NNP\nServe VB\nServe-Air NNP\nServed VBN\nServes VBZ\nService NNP\nServiceMaster NNP\nServices NNPS\nServices\\/Japan NNP\nServicios NNP\nServifilm NNP\nServing VBG\nServive NNP\nSesame NNP\nSesit NNP\nSeso NNP\nSesshu NNP\nSession NN\nSessions NNP\nSet VB\nSeth NNP\nSethness NNP\nSeto NNP\nSeton NNP\nSets NNS\nSetsuo NNP\nSetter NN\nSetting VBG\nSettle VB\nSettled VBN\nSettlement NN\nSettlements NNP\nSeung NNP\nSeurat NNP\nSeven CD\nSeven-Eleven NNP\nSeven-Up NNP\nSeventeen CD\nSeventeenth JJ\nSeventh NNP\nSeventies NNPS\nSeventy CD\nSeventy-fourth NNP\nSeventy-nine JJ\nSeventy-seven JJ\nSeventy-six JJ\nSevera NNP\nSeveral JJ\nSevere JJ\nSeverence NNP\nSeverna NNP\nSevers NNP\nSeveso NNP\nSevigli NNP\nSevigny NNP\nSeville NNP\nSevin NN\nSewage NNP\nSewanee NNP\nSeward NNP\nSewell NNP\nSewer NNP\nSewickley NNP\nSewing NNP\nSex NN\nSexism NN\nSextet NNP\nSexton NN\nSextuor NNP\nSexual NNP\nSexy JJ\nSeydoux NNP\nSeymour NNP\nSeynes NNP\nSez NNP\nSforzt NNP\nSgt. NNP\nSha. NNP\nShabbat NNP\nShack NNP\nShad NNP\nShade NNP\nShades NNP\nShadow NNP\nShady NNP\nShaefer NNP\nShaevitz NNP\nShafer NNP\nShaffer NNP\nShaffner NN\nShafroth NNP\nShagan NNP\nShah NNP\nShahal NNP\nShahn NNP\nShahon NNP\nShahrabani NNP\nShahrokh NNP\nShaiken NNP\nShak. NNP\nShakarchi NNP\nShake VB\nShaken VBN\nShaker NNP\nShakes VBZ\nShakespeare NNP\nShakespearean JJ\nShakespearian JJ\nShaking VBG\nShakshuki NNP\nShakya NNP\nShale NNP\nShales NNP\nShall MD\nShalom NNP\nShalov NNP\nShame NNP\nShamir NNP\nShampoo NNP\nShamrock NNP\nShamu NNP\nShan NNP\nShandong NNP\nShane NNP\nShanghai NNP\nShanghai-born JJ\nShangkun NNP\nShangri-La NNP\nShank NNP\nShanken NNP\nShanker NNP\nShann NNP\nShannon NNP\nShansi NNP\nShanties NNPS\nShantou NNP\nShantung NNP\nShantytowns NNS\nShantz NNP\nShanyun NNP\nShape NNP\nShaped JJ\nShapes NNS\nShapiro NNP\nShapovalov NNP\nShardlow NNP\nShare NN\nShareData NNP\nSharecropping NN\nShared NNP\nShareholder NN\nShareholders NNS\nSharer NNP\nShares NNS\nSharesBase NNP\nSharfman NNP\nShari NNP\nSharing VBG\nSharkey NNP\nSharon NNP\nSharp NNP\nSharp-witted JJ\nSharpe NNP\nSharpest JJS\nSharply RB\nSharps NNP\nSharpshooter NNP\nSharpshooters NNPS\nSharrock NNP\nShartzer NNP\nShatilov NNP\nShattered JJ\nShattuck NNP\nShaughnessy NNP\nShaver NNP\nShaving NNP\nShaw NNP\nShaw-Crier NNP\nShaw-Walker NNP\nShawano NNP\nShawl NN\nShawmut NNP\nShawn NNP\nShawnee NNP\nShawomet NNP\nShay NNP\nShayne NNP\nShayol NNP\nShays NNP\nShcherbitsky NNP\nShe PRP\nShe'arim NNP\nShea NNP\nShealy NNP\nShearing NNP\nShearman NNP\nShearn NNP\nShearon NNP\nShearson NNP\nSheboygan NNP\nSheckley NNP\nShedding VBG\nSheehan NNP\nSheehy NNP\nSheen NNP\nSheena NNP\nSheep NNP\nSheer NNP\nSheeran NNP\nSheet NNP\nSheeting NN\nSheets NNP\nSheffield NNP\nShegog NNP\nSheik NNP\nSheila NNP\nSheinberg NNP\nSheindlin NNP\nSheiner NNP\nShelagh NNP\nShelby NNP\nShelbyville NNP\nSheldon NNP\nShell NNP\nSheller-Globe NNP\nShelley NNP\nShellpot NNP\nShelly NNP\nShelter NN\nShelters NNPS\nShelton NNP\nShemiatenkov NNP\nShemona NNP\nShenandoah NNP\nShensi NNP\nShenzhen NNP\nShep NNP\nShepard NNP\nShepherd NNP\nShepherds NNPS\nShepperd NNP\nSheraton NNP\nSheraton-Biltmore NNP\nSheraton-Dallas NNP\nSheraton-Pan NNP\nSherblom NNP\nShere NNP\nSheremetyevo NNP\nSheri NNP\nSheridan NNP\nSheriff NNP\nSherlock NNP\nSherlund NNP\nSherman NNP\nSherren NNP\nSherrie NNP\nSherrill NNP\nSherry NNP\nSherwin NNP\nSherwin-Williams NNP\nSherwood NNP\nShevack NNP\nShevardnadze NNP\nShevchenko NNP\nShh UH\nShi'ite NNP\nShicoff NNP\nShidler NNP\nShield NNP\nShields NNP\nShietz NNP\nShiflett NNP\nShiftan NNP\nShifte NNP\nShige NNP\nShigeru NNP\nShigezo NNP\nShih NNP\nShiite NNP\nShiites NNPS\nShijie NNP\nShikotan NNP\nShilling NNP\nShillong NNP\nShiloh NNP\nShima NNP\nShimbun NNP\nShimizu NNP\nShimon NNP\nShimson NNP\nShin NNP\nShin-Daiwa NNP\nShinagawa NNP\nShinbun NNP\nShine NNP\nShing NNP\nShingles NNS\nShining NNP\nShinn NNP\nShinpan NNP\nShintaro NNP\nShintoism NNP\nShinton NNP\nShiny NNP\nShionogi NNP\nShioya NNP\nShip NNP\nShipbuilders NNPS\nShipbuilding NNP\nShipley NNP\nShipman NNP\nShipments NNS\nShippers NNS\nShippey NNP\nShippin VB\nShipping NNP\nShippings NNS\nShips NNS\nShipston NNP\nShipyard NNP\nShipyards NNP\nShira NNP\nShiremanstown NNP\nShirer NNP\nShires NNP\nShirl NNP\nShirley NNP\nShirt NNP\nShirwen NNP\nShiseido NNP\nShit NN\nShitts NNP\nShiu-Lok NNP\nShivering VBG\nShivers NNP\nShizue NNP\nShlaes NNP\nShlenker NNP\nShlomo NNP\nShoals NNP\nShochiku NNP\nShochiku-Fuji NNP\nShock NN\nShocked VBN\nShoe NNP\nShoemaker NNP\nShoettle NNP\nShogun NNP\nShoichi NNP\nShoichiro NNP\nShokubai NNP\nSholom NNP\nShoney NNP\nShook VBD\nShooter NNP\nShootin VBG\nShooting NN\nShop NNP\nShopkorn NNP\nShoppers NNS\nShoppes NNP\nShopping NNP\nShoppsers NNS\nShops NNPS\nShore NNP\nShoreline NN\nShores NNP\nShorn VBN\nShort JJ\nShort-sellers NNP\nShort-term JJ\nShortage NN\nShortageflation NN\nShortages NNS\nShortcuts NNS\nShorted JJ\nShortening VBG\nShorter JJR\nShorting NN\nShortly RB\nShortridge NNP\nShortstop NNP\nShostakovich NNP\nShot VBN\nShotgun-type JJ\nShotguns NNS\nShots NNS\nShotwell NNP\nShould MD\nShoulder NN\nShouldering VBG\nShoup NNP\nShoupe NNP\nShout VB\nShoutout VB\nShow NNP\nShowBiz NNP\nShowa NNP\nShowalter NNP\nShowbiz NNP\nShowdown NNP\nShowers NNP\nShowing VBG\nShowmanship NN\nShowrooms NNS\nShows NNS\nShowtime NNP\nShreveport NNP\nShrewd JJ\nShrewsbury NNP\nShribman NNP\nShrieves NNP\nShrine NNP\nShrinking VBG\nShriver NNP\nShroeder NNP\nShrontz NNP\nShropshire NNP\nShrove NNP\nShrubs NNS\nShrug NN\nShrugged VBN\nShrugs NNP\nShrum NNP\nShtern NNP\nShtromas NNP\nShu NNP\nShu-tt VB\nShucks UH\nShugart NNP\nShui NNP\nShuiski NNP\nShukri NNP\nShulman NNP\nShultis NNP\nShultz NNP\nShuman NNP\nShun NNP\nShunted VBN\nShupe NNP\nShurtleff NNP\nShut VB\nShutter NNP\nShuttle NNP\nShuwa NNP\nShuxian NNP\nShuz NNP\nShvartzer NNP\nShvets NNP\nShy JJ\nShycon NNP\nShylock NNP\nShylockian JJ\nSi NNP\nSiH NN\nSiad NNP\nSiam NNP\nSiamese NNP\nSiano NNP\nSibaral NNP\nSiberia NNP\nSiberian JJ\nSibley NNP\nSibling NN\nSibly NNP\nSibra NNP\nSibson NNP\nSibylla NNP\nSibyls NNPS\nSic FW\nSichuan NNP\nSicilian JJ\nSiciliana NNP\nSicilians NNS\nSicily NNP\nSick NNP\nSickness NN\nSicurella NNP\nSid NNP\nSidak NNP\nSiddeley NNP\nSiddo NNP\nSide NNP\nSidecar NN\nSidekick NNP\nSider NNP\nSides NNP\nSidestepping VBG\nSidewalk NNP\nSidewalks NNPS\nSidhpur NNP\nSidley NNP\nSidley-Ashurst NNP\nSidney NNP\nSidorenko NNP\nSidoti NNP\nSidra NNP\nSie FW\nSiebel NNP\nSiebern NNP\nSiebert NNP\nSieckman NNP\nSiecle NNP\nSiecles NNPS\nSiedenburg NNP\nSiedlungs NNP\nSiegal NNP\nSiege NNP\nSiegel NNP\nSiegfried NNP\nSiegler NNP\nSiegman NNP\nSiemaszko NNP\nSiemens NNP\nSiemens-GEC-Plessey NNP\nSiemienas NNP\nSiena NNP\nSienkiewicz NNP\nSiepi NNP\nSierra NNP\nSierras NNPS\nSietsma NNP\nSieux NNP\nSievers NNP\nSiewert NNP\nSifco NNP\nSifton NNP\nSigemund NNP\nSighing VBG\nSighting VBG\nSigler NNP\nSigma NNP\nSigman NNP\nSigmen NNP\nSigmund NNP\nSign NNP\nSignal NNP\nSignature NNP\nSigned VBN\nSigners NNS\nSignet NNP\nSignificance NN\nSignificant JJ\nSignificantly RB\nSignificants NNS\nSignor NNP\nSignora FW\nSignore NNP\nSigns NNS\nSigoloff NNP\nSigourney NNP\nSigurd NNP\nSihanouk NNP\nSik NNP\nSikes NNP\nSikh NNP\nSikhs NNPS\nSikkim NNP\nSikorski NNP\nSilas NNP\nSilber NNP\nSilberberg NNP\nSilberman NNP\nSilbermann NNP\nSilbert NNP\nSilence NN\nSilences NNS\nSilent NNP\nSilently RB\nSilesia NNP\nSilicon NNP\nSilk NNP\nSilkworms NNP\nSill NNP\nSills NNP\nSilly NNP\nSilone NNP\nSilva NNP\nSilver NN\nSilvercrest NNP\nSilverman NNP\nSilvers NNP\nSilvershoe NNP\nSilverstein NNP\nSilvio NNP\nSim NNP\nSimai NNP\nSimak NNP\nSimat NNP\nSimba NNP\nSimca NNP\nSimeon NNP\nSimes NNP\nSimilar JJ\nSimilarities NNS\nSimilarly RB\nSimmel NNP\nSimmer VB\nSimmon NNP\nSimmons NNP\nSimmonsville NNP\nSimms NNP\nSimon NNP\nSimonds NNP\nSimonds-Gooding NNP\nSimonelli NNP\nSimonson NNP\nSimpkins NNP\nSimple JJ\nSimplesse NNP\nSimplex JJ\nSimplification NN\nSimplot NNP\nSimply RB\nSimpson NNP\nSimpsons NNPS\nSims NNP\nSimsbury NNP\nSimulated JJ\nSimulation NN\nSimulator NNP\nSimultaneous JJ\nSimultaneously RB\nSin NNP\nSin\\/Your NNP\nSinai NNP\nSinan NNP\nSinatra NNP\nSince IN\nSincere NNP\nSinclair NNP\nSindona NNP\nSinemet NNP\nSinfonia NNP\nSinfonica NNP\nSing NNP\nSingapore NNP\nSinger NNP\nSingh NNP\nSingin VBG\nSinging VBG\nSingle NNP\nSingle-A-2 JJ\nSingle-A-3 JJ\nSingle-cell JJ\nSingle-color JJ\nSingle-occupancy NN\nSingle-seeded JJ\nSingle-subject JJ\nSingles NNS\nSingletary NNP\nSingleton NNP\nSinhalese JJ\nSinhalese-dominated JJ\nSinhalese. JJ\nSiniscal NNP\nSink NNP\nSinkula NNP\nSinner NNP\nSino-British JJ\nSino-Soviet JJ\nSino-U.S. JJ\nSino-foreign JJ\nSinopoli NNP\nSintel NNP\nSintered VBN\nSinton NN\nSinyard NNP\nSioux NNP\nSipping VBG\nSippl NNP\nSir NNP\nSirinjani NNP\nSirot NNP\nSirota NNP\nSirowitz NNP\nSirrine NNP\nSirs NNPS\nSis NNP\nSischy NNP\nSisk NNP\nSisley NNP\nSistemas NNP\nSister NN\nSisters NNP\nSistine NNP\nSisulu NNP\nSit VB\nSitco NNP\nSite NNP\nSites NNS\nSithe NNP\nSiti NNP\nSitter NNP\nSitting VBG\nSituated VBN\nSituation NNP\nSituations NNS\nSitus NN\nSitwell NNP\nSitz NNP\nSiva NNP\nSix CD\nSix-Day NNP\nSix-month JJ\nSix-year-old JJ\nSixteen CD\nSixteenth NNP\nSixth NNP\nSixties NNPS\nSixty CD\nSixty-eighth NNP\nSixty-five JJ\nSixty-seven CD\nSizable JJ\nSize NN\nSizova NNP\nSizwe NNP\nSizzling JJ\nSkadden NNP\nSkaggs NNP\nSkala NNP\nSkandia NNP\nSkandinaviska NNP\nSkanska NNP\nSkase NNP\nSkates NNP\nSkating NNP\nSkeletal JJ\nSkelly NNP\nSkelton NNP\nSkeoch NNP\nSkepticism NN\nSkeptics NNS\nSki NNP\nSkid NNP\nSkidmore NNP\nSkies NNPS\nSkiing NN\nSkill JJ\nSkilled JJ\nSkillman NNP\nSkills NNS\nSkilton NNP\nSkim JJ\nSkinner NNP\nSkinnerish JJ\nSkinny NNP\nSkip VB\nSkipjack NNP\nSkipper NNP\nSkipping VBG\nSkippy NNP\nSkittish JJ\nSkiway NNP\nSkoal NNP\nSkokie NNP\nSkolkau NNP\nSkolman NNP\nSkolniks NNP\nSkolovsky NNP\nSkopas NNP\nSkopbank NNP\nSkorich NNP\nSkrunda NNP\nSkubal NNP\nSkulls NNS\nSky NNP\nSky-god NNP\nSkyWest NNP\nSkybolt NN\nSkydome NNP\nSkye NNP\nSkylark NNP\nSkyline NNP\nSkypak NNP\nSkyros NNP\nSkywalker NNP\nSkywave NNP\nSkyway NNP\nSlab NN\nSlack NNP\nSlackened VBN\nSlash VB\nSlash-B NNP\nSlate NNP\nSlated VBN\nSlater NNP\nSlatkin NNP\nSlaughter NNP\nSlavery NN\nSlavic NNP\nSlavin NNP\nSlavs NNPS\nSlay VBP\nSleep NN\nSleep-disorder JJ\nSleeper NNP\nSleepers NNP\nSleepily RB\nSleepinal NNP\nSleeping NNP\nSleepwalkers NNS\nSleepwalking NN\nSleepy-eyed JJ\nSleight NNP\nSlemrod NNP\nSlenczynka NNP\nSlender JJ\nSlice NN\nSlick JJ\nSlickers NNPS\nSlider NNP\nSlides NNS\nSlight JJ\nSlightam NNP\nSlightly RB\nSlim NNP\nSlim-Fast NNP\nSlims NNPS\nSlippery NNP\nSlipping VBG\nSlivka NNP\nSlo-Flo NNP\nSloan NNP\nSloanaker NNP\nSloane NNP\nSlobodin NNP\nSlocum NNP\nSlogan NNP\nSlope NNP\nSlosberg NNP\nSlote NNP\nSlotnick NNP\nSlough NNP\nSlovakia NNP\nSlovenia NNP\nSlovenian JJ\nSloves NNP\nSlow JJ\nSlower JJR\nSlowing VBG\nSlowly RB\nSludge NNP\nSlug VB\nSlugger NNP\nSluggish JJ\nSlums NNP\nSlutsky NNP\nSlyke NNP\nSmaby NNP\nSmaedt NNP\nSmale NNP\nSmall JJ\nSmall-business NN\nSmall-company JJ\nSmall-lot JJ\nSmall-stock NN\nSmaller JJR\nSmaller-stock JJR\nSmalling NNP\nSmallwood NNP\nSmart NNP\nSmarter RB\nSmartt NNP\nSmeal NNP\nSmedes NNP\nSmelov NNP\nSmelting NNP\nSmerdyakov NNP\nSmetek NNP\nSmilin NNP\nSmiling VBG\nSmirnoff NNP\nSmith NNP\nSmith-Colmer NNP\nSmith-Hughes NNP\nSmith-Kline NNP\nSmithKline NNP\nSmith\\/Greenland NNP\nSmithfield NNP\nSmiths NNPS\nSmithson NNP\nSmithsonian NNP\nSmithtown NNP\nSmitty NNP\nSmoak NNP\nSmoke NNP\nSmokers NNS\nSmokey NNP\nSmokies NNPS\nSmoking NNP\nSmoky NNP\nSmoldering VBG\nSmolensk NNP\nSmoot-Hawley NNP\nSmorgon NNP\nSmug JJ\nSmukler NNP\nSmurfit NNP\nSmuzynski NNP\nSmyrna NNP\nSmyth NNP\nSmythe NNP\nSnack-food NN\nSnacking NN\nSnake NNP\nSnakes NNS\nSnap-On NNP\nSnapped VBD\nSnaresbrook NNP\nSnatchers NNPS\nSnatching VBG\nSnead NNP\nSneaker NNP\nSnecma NNP\nSnedaker NNP\nSnedeker NNP\nSneed NNP\nSnelling NNP\nSnellville NNP\nSnezak NNP\nSniffing VBG\nSniffle NNP\nSniper NNP\nSnodgrass NNP\nSnook NNP\nSnoopy NNP\nSnoozing VBG\nSnopes NNP\nSnow NNP\nSnowball NN\nSnowmass NNP\nSnuff NNP\nSnug-Grip NNP\nSnuggle NNP\nSnyder NNP\nSo RB\nSo-Ho NNP\nSo-called JJ\nSo-so NN\nSoHo NNP\nSoak VB\nSoap NNP\nSoapy JJ\nSoares-Kemp NNP\nSoaring VBG\nSoba FW\nSobel NNP\nSober NNP\nSobey NNP\nSobibor NNP\nSoccer NNP\nSochaux NNP\nSochi NNP\nSocial NNP\nSocialism NN\nSocialist NNP\nSocialist-led JJ\nSocialists NNS\nSocialization NN\nSocieta NNP\nSociete NNP\nSocieties NNS\nSociety NNP\nSocinianism NNP\nSociological JJ\nSock VB\nSocola NNP\nSoconoco NNP\nSocrates NNP\nSoda NNP\nSoderblom NNP\nSodium NN\nSoeren NNP\nSoering NNP\nSofia NNP\nSofitel NNP\nSoft JJ\nSoft-Sell JJ\nSoft-drink NN\nSoft-spoken JJ\nSoftLetter NNP\nSoftener NN\nSofter JJR\nSofter-than-expected JJ\nSoftletter NNP\nSoftly RB\nSoftness NN\nSoftsoap NNP\nSoftware NNP\nSogo NNP\nSohmer NNP\nSohn NNP\nSoho NNP\nSoichiro NNP\nSoifer NNP\nSoignee FW\nSoil NN\nSoir NNP\nSoiree NNP\nSojourner NNP\nSojuzpushnina NNP\nSokol NNP\nSokolev NNP\nSokolov NNP\nSokolsky NNP\nSol NNP\nSolaia NNP\nSolana NNP\nSolano NNP\nSolar NNP\nSolar-powered JJ\nSolarz NNP\nSolchaga NNP\nSold VBN\nSoldado NNP\nSoldatenko NNP\nSolder VB\nSoldier NNP\nSoldiers NNS\nSole NNP\nSolebury NNP\nSoleil NNP\nSolel NNP\nSolemnis NNP\nSolemnly RB\nSoler NNP\nSolesmes NNP\nSolicitor NNP\nSolid JJ\nSolidarity NNP\nSolidarity-led JJ\nSolidarityled NNP\nSolihull NNP\nSolis-Cohen NNP\nSolitudinem FW\nSoliz NNP\nSoll NNP\nSolloway NNP\nSolly NNP\nSolna NNP\nSolo NNP\nSolodar NNP\nSolomon NNP\nSolomon-like JJ\nSolomonic JJ\nSolomons NNPS\nSolon NNP\nSoloviev NNP\nSoloviev-Sedoi NNP\nSolovyov NNP\nSolow NNP\nSolution NNP\nSolutions NNPS\nSolvay NNP\nSolved VBD\nSolving VBG\nSolzhenitsyn NNP\nSomali JJ\nSomalia NNP\nSomalis NNPS\nSomay NNP\nSombrotto NNP\nSome DT\nSomebody NN\nSomeday RB\nSomehow RB\nSomeone NN\nSomers NNP\nSomersaults NNS\nSomerset NNP\nSomerville NNP\nSomething NN\nSometime RB\nSometimes RB\nSomewhat RB\nSomewhere RB\nSommer NNP\nSommers NNP\nSomoza NNP\nSon NNP\nSon-of-DAT NNP\nSonambula NNP\nSonar NN\nSonata NNP\nSonatas NNS\nSonates NNPS\nSondheim NNP\nSonenberg NNP\nSonet NNP\nSonet-based JJ\nSonet-compatible JJ\nSong NNP\nSong-sam NNP\nSongau NNP\nSongbag NNP\nSongs NNPS\nSonia NNP\nSonic JJ\nSonja NNP\nSonnenschein NNP\nSonnett NNP\nSonni NNP\nSonntag FW\nSonny NNP\nSonoma NNP\nSonora NN\nSons NNP\nSontag NNP\nSonuvabitch UH\nSony NNP\nSony-Columbia JJ\nSony-owned JJ\nSony\\/Columbia NNP\nSoo NNP\nSoon RB\nSooner RB\nSooraji NNP\nSoothing VBG\nSoothsayer NNP\nSophia NNP\nSophias NNP\nSophie NNP\nSophisticated JJ\nSophoclean NNP\nSophocles NNP\nSophomore NN\nSophomores NNS\nSopsaisana NNP\nSorbus NNP\nSore JJ\nSorecom NNP\nSoren NNP\nSorenson NNP\nSorge NNP\nSoria NNP\nSorkin NNP\nSoros NNP\nSorrell NNP\nSorrentine NNP\nSorrentino NNP\nSorrow NNP\nSorry JJ\nSort NN\nSorting VBG\nSosnick NNP\nSosnoff NNP\nSosuke NNP\nSotela NNP\nSotheby NNP\nSotnikov NNP\nSoto NNP\nSotun NNP\nSouci NNP\nSoucy NNP\nSoukhouma NNP\nSoul NNP\nSoule NNP\nSound NNP\nSoundView NNP\nSounder NNP\nSounds VBZ\nSoundview NNP\nSounion NNP\nSoup NNP\nSouper NNP\nSouphanouvong NNP\nSoups NNP\nSoupy JJ\nSour NNP\nSource NN\nSource:New NNP\nSources NNS\nSourcing VBG\nSousa NNP\nSouth NNP\nSouth-Asian NNP\nSouth-East NNP\nSoutham NNP\nSouthampton NNP\nSouthbrook NNP\nSouthdown NNP\nSoutheast NNP\nSoutheastern NNP\nSouthern NNP\nSouthern-Republican NNP\nSoutherner NNP\nSoutherners NNPS\nSouthey NNP\nSouthfield NNP\nSouthgate NNP\nSouthhampton NNP\nSouthlake NNP\nSouthland NNP\nSouthlife NNP\nSouthmark NNP\nSouthmark-sponsored JJ\nSouthmark-supported JJ\nSouthmark\\/Envicon NNP\nSouthon NNP\nSouthport NNP\nSouths NNPS\nSouthwest NNP\nSouthwestern NNP\nSouthwide NNP\nSouthwood NNP\nSouvanna NNP\nSouza NNP\nSovereign NNP\nSoviet JJ\nSoviet-American JJ\nSoviet-Chinese NNP\nSoviet-Finnish JJ\nSoviet-German NNP\nSoviet-Israeli JJ\nSoviet-Korean JJ\nSoviet-Western NNP\nSoviet-accredited JJ\nSoviet-backed JJ\nSoviet-bloc JJ\nSoviet-built JJ\nSoviet-controlled JJ\nSoviet-finished JJ\nSoviet-made JJ\nSoviet-style JJ\nSoviet-supplied JJ\nSoviet-trained JJ\nSovietized JJ\nSovietologist NN\nSoviets NNPS\nSovietskaya NNP\nSovran NNP\nSovtransavto NNP\nSowell NNP\nSoweto NNP\nSows NNS\nSox NNP\nSoxhlet NN\nSoya NNP\nSoybean NN\nSoybeans NNS\nSoyuz NNP\nSoyuzgoscirk NNP\nSp NNP\nSpA NNP\nSpa NNP\nSpaarbank NNP\nSpace NNP\nSpace-net NNP\nSpaced NNP\nSpacenet NNP\nSpaces NNPS\nSpada NNP\nSpadafora NNP\nSpade NNP\nSpady NNP\nSpaeth NNP\nSpaghetti NNP\nSpagna FW\nSpago NNP\nSpahn NNP\nSpahnie NN\nSpahr NNP\nSpain NNP\nSpalding NNP\nSpalsbury NNP\nSpam NNP\nSpan NN\nSpanberg NNP\nSpangenberg NNP\nSpangled NNP\nSpanish JJ\nSpanish-American NNP\nSpanish-born JJ\nSpanish-language JJ\nSpanish-speaking JJ\nSpanos NNP\nSpar NNP\nSparc NNP\nSparcstation NNP\nSpare JJ\nSpark NNP\nSparkling NNP\nSparkman NNP\nSparks NNP\nSparky NNP\nSparling NNP\nSparrow-size NNP\nSparrows NNP\nSparta NNP\nSpartan NNP\nSpatial JJ\nSpatiality NN\nSpaulding NNP\nSpaull NNP\nSpeak VB\nSpeaker NNP\nSpeakers NNS\nSpeakership NNP\nSpeaking VBG\nSpear NNP\nSpec. NN\nSpecial JJ\nSpecial-election NN\nSpecial-interest JJ\nSpecialist NNP\nSpecialists NNS\nSpecialized NNP\nSpecially RB\nSpecialties NNP\nSpecialty NNP\nSpecies NNP\nSpecific JJ\nSpecific-Time NNP\nSpecifically RB\nSpecifications NNS\nSpecifics NNS\nSpecimens NNS\nSpectator NNP\nSpectators NNS\nSpecter NNP\nSpecthrie NNP\nSpector NNP\nSpectra NNS\nSpectradyne NNP\nSpectrum NNP\nSpeculation NN\nSpeculative JJ\nSpeculators NNS\nSpeeches NNS\nSpeed NN\nSpeedup NN\nSpeedway NNP\nSpeedy NNP\nSpeer NNP\nSpegititgninino NNP\nSpeidel NNP\nSpellRight NNP\nSpelling NNP\nSpelman NNP\nSpence NNP\nSpencer NNP\nSpencerian JJ\nSpend VB\nSpending NN\nSpendthrift NNP\nSpengler NNP\nSpenglerian JJ\nSpenser NNP\nSperandeo NNP\nSperling NNP\nSperry NNP\nSpethmann NNP\nSpherical JJ\nSphinx NNP\nSpic NNP\nSpice-Nice NNP\nSpicer NNP\nSpider NNP\nSpiegel NNP\nSpiegelman NNP\nSpielberg NNP\nSpielvogel NNP\nSpierer NNP\nSpievack NNP\nSpike NNP\nSpike-haired JJ\nSpikes NNP\nSpill NN\nSpillane NNP\nSpiller NNP\nSpilman NNP\nSpin NNP\nSpinco NNP\nSpinelli NNP\nSpinley NNP\nSpinnaker NNP\nSpinners NNPS\nSpinney NNP\nSpinning VBG\nSpinoffs NNS\nSpinola NNP\nSpinrad NNP\nSpiotto NNP\nSpirit NNP\nSpirited JJ\nSpirito NNP\nSpirits NNP\nSpiritual JJ\nSpirituals NNS\nSpiro NNP\nSpirrison NNP\nSpitalnick NNP\nSpitler NNP\nSpitzenburg NNP\nSplendid JJ\nSplendide NNP\nSplendor NN\nSplenomegaly NN\nSplinting NNP\nSplit VBN\nSplits NNS\nSpofford NNP\nSpogli NNP\nSpoilage NN\nSpokane NNP\nSpoken NNP\nSpokesman NNP\nSpokesmen NNS\nSpokespersons NNS\nSpokeswomen NNS\nSponge NNP\nSponsor NNP\nSponsored VBN\nSponsors NNS\nSpontaneity NN\nSpontex NNP\nSpook VBP\nSpooked VBN\nSpoon NNP\nSporadic JJ\nSporkin NNP\nSport NNP\nSport-King NN\nSportdom NN\nSportin VBG\nSporting NNP\nSporto NNP\nSports NNPS\nSportscasters NNS\nSportscreme NNP\nSportsman NNP\nSportsmen NNS\nSportswear NNP\nSportswriters NNS\nSposato NNP\nSpot NN\nSpotlight NNP\nSpots NNS\nSpotted VBN\nSpouse NN\nSprague NNP\nSpraying VBG\nSpread VB\nSpreading NNP\nSpreads NNS\nSprecher NNP\nSprenger NNP\nSpring NNP\nSpringdale NNP\nSpringerville NNP\nSpringfield NNP\nSpringing VBG\nSprings NNP\nSprinkel NNP\nSprinkle VB\nSprinkled VBN\nSprint NNP\nSprite NNP\nSprizzo NNP\nSprouted VBN\nSprouting NN\nSpruce NNP\nSpruell NNP\nSpruill NNP\nSprung NNP\nSpumoni NNS\nSpurdle NNP\nSpurgeon NNP\nSpurred VBN\nSputnik NNP\nSpuyten NNP\nSpy NNP\nSpycatcher NN\nSpycket NNP\nSquad NN\nSquadron NNP\nSquadrons NNP\nSquare NNP\nSquaresville NNP\nSquat-style JJ\nSquats NNS\nSquatting VBG\nSqueezed VBN\nSqueezing VBG\nSquibb NNP\nSquier NNP\nSquint NN\nSquire NNP\nSquires NNP\nSr NNP\nSr. NNP\nSri NNP\nSsangYong NNP\nSsmc NN\nSssshoo NN\nSt NNP\nSt-Laurent NNP\nSt-story NN\nSt. NNP\nSt.-Pol NNP\nStaar NNP\nStabat NNP\nStabbert NNP\nStabenau NNP\nStabilizing VBG\nStacey NNP\nStack NNP\nStacked JJ\nStackup NNP\nStacy NNP\nStadium NNP\nStadiums NNS\nStadt NNP\nStadtisches NNP\nStadtmauer NNP\nStaff NNP\nStaffe NNP\nStaffers NNS\nStaffing NNP\nStafford NNP\nStaffordshire NNP\nStaffs NNS\nStag NNP\nStage NNP\nStagecoach NNP\nStaged VBN\nStaggeringly RB\nStahl NNP\nStaiger NNP\nStained VBN\nStaining VBG\nStainless NNP\nStains NNS\nStaircase NN\nStairs NNP\nStake VB\nStakes NNP\nStalag NNP\nStale JJ\nStaley NNP\nStalin NNP\nStalingr NNP\nStalinism NNP\nStalinist JJ\nStalinist-corrupted JJ\nStalinists NNPS\nStalins NNPS\nStalk NNP\nStalker NNP\nStall NN\nStallard NNP\nStalled VBN\nStalling VBG\nStallings NNP\nStallkamp NNP\nStallone NNP\nStaloff NNP\nStalone NNP\nStals NNP\nStamford NNP\nStammering NN\nStan NNP\nStanbury NNP\nStancs NNP\nStand VB\nStandard NNP\nStandard-Times NNP\nStandard-issue JJ\nStandardization NN\nStandardized JJ\nStandards NNPS\nStanding VBG\nStands NNP\nStanford NNP\nStanford-Idec NNP\nStanger NNP\nStanhope NNP\nStanislas NNP\nStanislav NNP\nStanislaw NNP\nStaniszkis NNP\nStanley NNP\nStannard NNP\nStans NNP\nStansbery NNP\nStansfield NNP\nStanton NNP\nStanwick NNP\nStanza NNP\nStapf NNP\nStaples NNP\nStapleton NNP\nStar NNP\nStar-Spangled NNP\nStarbird NNP\nStarch NNP\nStardel NNP\nStardent NNP\nStardust NN\nStaring VBG\nStark NNP\nStarke NNP\nStarkey NNP\nStarkov NNP\nStarks NNP\nStarling NNP\nStarlings NNS\nStarpointe NNP\nStarr NNP\nStars NNP\nStart VB\nStart-up JJ\nStarted VBN\nStarter NNP\nStarting VBG\nStartled VBN\nStarts VBZ\nStarve NNP\nStarzl NNP\nStash NNP\nStat. NNP\nState NNP\nState-Local NNP\nState-capitol NN\nState-controlled JJ\nState-financed JJ\nState-owned JJ\nState-run JJ\nStated VBN\nStatehood NNP\nStatehouse NN\nStatements NNS\nStaten NNP\nStater NNP\nStates NNPS\nStates-Yugoslav NNP\nStatesWest NNP\nStatesman NNP\nStateswest NNP\nStation NNP\nStations NNS\nStatistical NNP\nStatistically RB\nStatistics NNP\nStatistique NNP\nStatue NNP\nStatues NNS\nStature NN\nStatus NN\nStatus-roles NNS\nStatute NN\nStatutes NNS\nStatuto NN\nStauffer NNP\nStaunton NNP\nStavropoulos NNP\nStay VB\nSte. NNP\nSteady JJ\nSteak NNP\nStealth NNP\nSteam NN\nSteamboat NNP\nSteamed VBN\nSteamship NNP\nStearn NNP\nStearns NNP\nSteckles NNP\nStedt NNP\nSteel NNP\nSteele NNP\nSteelers NNP\nSteelmakers NNS\nSteelmaking NN\nSteels NNP\nSteelton NNP\nSteelworkers NNPS\nSteen NNP\nSteep NNP\nSteer VB\nSteeves NNP\nStefan NNP\nSteffens NNP\nSteffes NNP\nStegemeier NNP\nStehelin NNP\nStehlin NNP\nSteichen NNP\nSteidtmann NNP\nSteiger NNP\nStein NNP\nSteinbach NNP\nSteinbeck NNP\nSteinbecks NNPS\nSteinberg NNP\nSteinbergs NNP\nSteinbrenner NNP\nSteiner NNP\nSteiners NNPS\nSteinhager NNP\nSteinhardt NNP\nSteinhart NNP\nSteinkerque NNP\nSteinkrauss NNP\nSteinkuehler NNP\nSteinkuhler NNP\nSteinman NNP\nSteinmetz NNP\nStelco NNP\nStella NNP\nStellar NNP\nStelzer NNP\nStempel NNP\nStems NNS\nStena NNP\nStena-Tiphook NNP\nStendhal NNP\nStendler NNP\nStenexport NNP\nStengel NNP\nStenhach NNP\nStenhachs NNPS\nStenholm NNP\nStennett NNP\nStennis NNP\nStensrud NNP\nStenton NNP\nStep NN\nStepanian NNP\nStepanova NNP\nStepanovich NNP\nStephan NNP\nStephane NNP\nStephanie NNP\nStephen NNP\nStephens NNP\nStephenson NNP\nSteppan NNP\nSteppel NNP\nSteppenwolf NNP\nSteppers NNPS\nSteps NNPS\nStepson NNP\nSteptoe NNP\nSterba NNP\nSterbas NNPS\nSterile NNP\nSterilized JJ\nSterling NNP\nSterlings NNPS\nStern NNP\nStern-faced JJ\nSternbach NNP\nSternberg NNP\nSternenberg NNP\nSteroids NNS\nStertz NNP\nStetson NNP\nStetsons NNPS\nStettin NNP\nSteuben NNP\nSteudler NNP\nSteve NNP\nSteven NNP\nStevens NNP\nStevenses NNPS\nStevenson NNP\nStevie NNP\nStevric NNP\nSteward NN\nStewart NNP\nStibel NNP\nStick NNP\nSticker NN\nStickers NNS\nSticking NNP\nStickler NN\nStickney NNP\nSticks NNP\nStidger NNP\nStieglitz NNP\nStiemerling NNP\nStifel NNP\nStiff JJ\nStifter NNP\nStigmata NNS\nStikeman NNP\nStileman NNP\nStiles NNP\nStiling NNP\nStill RB\nStiller NNP\nStillerman NNP\nStillwater NNP\nStillwell NNP\nStilts NNP\nStimson NNP\nStimulates VBZ\nStimulating VBG\nSting NNP\nStinger NNP\nStingers NNPS\nStinky NNP\nStinnett NNP\nStinson NNP\nStiritz NNP\nStirlen NNP\nStirling NNP\nStirring VBG\nStirs VBZ\nStitched VBN\nStjernsward NNP\nStober NNP\nStock NNP\nStock-Index NN\nStock-fund JJ\nStock-index NN\nStock-loan NN\nStock-market NN\nStockard NNP\nStockbrokers NNS\nStockdale NNP\nStockgrowers NNPS\nStockhausen NNP\nStockholder NN\nStockholders NNS\nStockholm NNP\nStockman NNP\nStocks NNS\nStocks\\/Mutual NNP\nStockton NNP\nStoddard NNP\nStoeckel NNP\nStoecker NNP\nStoecklin NNP\nStoic NNP\nStoic-patristic JJ\nStoicism NN\nStoics NNS\nStokely NNP\nStolen NNP\nStolichnaya NNP\nStoll NNP\nStoller NNP\nStolley NNP\nStoltenberg NNP\nStoltz NNP\nStoltzman NNP\nStolz NNP\nStolzenbach NNP\nStolzman NNP\nStomach NNP\nStone NNP\nStone-Consolidated NNP\nStonehenge NNP\nStoneman NNP\nStoner NNP\nStoneridge NNP\nStones NNP\nStonestown NNP\nStonewall NNP\nStoneware JJ\nStony NNP\nStooges NNPS\nStookey NNP\nStoops NNP\nStop VB\nStop-Limit NNP\nStop-close-only JJ\nStop-limit JJ\nStop-loss NN\nStoppard NNP\nStopped VBN\nStopping VBG\nStops NNP\nStorage NNP\nStore NNP\nStorehouse NNP\nStorekeepers NNS\nStorer NNP\nStoreria NNP\nStores NNPS\nStories NNP\nStork NNP\nStorm NN\nStormy NNP\nStory NNP\nStoryboard NNP\nStoryteller NNP\nStotler NNP\nStott NNP\nStouffer NNP\nStout NNP\nStoutt NNP\nStovall NNP\nStover NNP\nStowe NNP\nStowey NNP\nStoyer NNP\nStrafaci NNP\nStraight JJ\nStraight-Arm NNP\nStraighten VB\nStraightened VBN\nStraightening VBG\nStraights NNS\nStrait NNP\nStraits NNPS\nStram NNP\nStranahan NNP\nStrand NNP\nStrang NNP\nStrange JJ\nStrangelove NNP\nStrangely RB\nStranger JJR\nStrangfeld NNP\nStrangler NNP\nStraniera NNP\nStrapless NNP\nStrasbourg NNP\nStrasny NNP\nStrasser NNP\nStrassner NNP\nStraszheim NNP\nStratagene NNP\nStratas NNP\nStrategic NNP\nStrategies NNS\nStrategists NNS\nStrategy NN\nStratford NNP\nStratforde NNP\nStratton NNP\nStratus NNP\nStraub NNP\nStraus NNP\nStrauss NNP\nStravinsky NNP\nStrawberry NNP\nStrawbridge NNP\nStreak NNP\nStream NNP\nStreep NNP\nStreet NNP\nStreet-inspired JJ\nStreet-style JJ\nStreeter NNP\nStreeters NNP\nStreets NNP\nStreetspeak NNP\nStrehler NNP\nStreisand NNP\nStrekel NNP\nStrenger NNP\nStrength NN\nStrenuous JJ\nStreptococcus NN\nStress NN\nStressed VBN\nStressed-out JJ\nStretch NNP\nStretching VBG\nStricken NNP\nStrickland NNP\nStrict JJ\nStrictly RB\nStride NNP\nStrident JJ\nStrieber NNP\nStrike VB\nStrikes NNS\nStriking VBG\nStrindberg NNP\nString NNP\nStringer NNP\nStringfellow NNP\nStringing VBG\nStrings NNPS\nStrip NNP\nStripes NNP\nStrippers NNS\nStrips NNS\nStritch NNP\nStrivers NNPS\nStrobel NNP\nStroh NNP\nStrohman NNP\nStroked VBD\nStrokes NNS\nStroking VBG\nStrolling VBG\nStrom NNP\nStromeyer NNP\nStronach NNP\nStrong JJ\nStrong-earnings NNS\nStronger JJR\nStrongheart NNP\nStronghold JJ\nStrongin NNP\nStrongly RB\nStrother NNP\nStroud NNP\nStrouds NNP\nStroup NNP\nStrub NNP\nStructural NNP\nStructures NNS\nStruggle NNP\nStruggles NNP\nStruggling VBG\nStrukturbericht NNP\nStrum NNP\nStrumwasser NNP\nStrut VB\nStruthers NNP\nStuart NNP\nStuart-James NNP\nStuart-family NN\nStubblefield NNP\nStubblefields NNPS\nStubbs NNP\nStuck-up NN\nStuckert NNP\nStuckey NNP\nStudach NNP\nStudds NNP\nStudds-Miller NNP\nStudebaker NNP\nStudent NNP\nStudents NNS\nStudies NNS\nStudio NNP\nStudio-City NNP\nStudios NNP\nStudwell NNP\nStudy NNP\nStudying VBG\nStuecker NNP\nStuff NN\nStuffing VBG\nStumbles VBZ\nStumbling JJ\nStumpf NNP\nStung VBN\nStunned VBN\nStupid JJ\nSturbridge NNP\nSturch NNP\nSturdy JJ\nSture NNP\nSturge NNP\nSturges NNP\nSturgess NNP\nSturley NNP\nStuttgart NNP\nStuttgart-based JJ\nStygian JJ\nStyka NNP\nStyle NNP\nStyles NNS\nStyrofoam NNP\nStyron NNP\nSu NNP\nSuarez NNP\nSub NNP\nSub-Saharan NNP\nSubaru NNP\nSubcommittee NNP\nSubcontractors NNS\nSubdivision NNP\nSubdued JJ\nSubgroups NNS\nSubic NNP\nSubject NN\nSubjects NNS\nSubmarines NNS\nSubpoenas NNS\nSubroto NNP\nSubs NNP\nSubscribers NNS\nSubscribing VBG\nSubsequent JJ\nSubsequently RB\nSubsidiaries NNS\nSubsidiary NN\nSubsidies NNS\nSubsidizing VBG\nSubsistencias NNP\nSubstance NN\nSubstances NNS\nSubstantial JJ\nSubstantive NNP\nSubstitute JJ\nSubstituting VBG\nSubsystems NNS\nSubtitled VBN\nSubtle JJ\nSuburban NNP\nSuburbs NNP\nSubverts NNP\nSubway NNP\nSubways NNS\nSuccasunna NNP\nSucceed NNP\nSucceeding VBG\nSuccess NN\nSuccessful JJ\nSuccession NN\nSuccessive JJ\nSuccessors NNS\nSuch JJ\nSuchard NNP\nSuchocki NNP\nSuckow NNP\nSucks NNS\nSucre NNP\nSucrerie NNP\nSudan NNP\nSudanese NNP\nSudden JJ\nSuddenly RB\nSudier NNP\nSudikoff NNP\nSudol NNP\nSue NNP\nSuemeg NNP\nSuez NNP\nSuez-Hungary NNP\nSuffer VB\nSuffering VBG\nSuffers VBZ\nSuffice VB\nSufficient JJ\nSuffolk NNP\nSufi JJ\nSugar NNP\nSugarman NNP\nSugarman-led JJ\nSugars NNPS\nSugary JJ\nSuggest VB\nSuggested VBN\nSuggestion NNP\nSuggestions NNS\nSuggests NNS\nSuggs NNP\nSuh NNP\nSuhey NNP\nSuhler NNP\nSuicide NN\nSuisse NNP\nSuisse-First NNP\nSuit NN\nSuitable JJ\nSuite NN\nSuites NNPS\nSuitors NNS\nSuits NNS\nSuiza NNP\nSukarno NNP\nSukhoi NNP\nSukio NNP\nSukle NNP\nSukuma NNP\nSulaiman NNP\nSulamite NN\nSulamith NNP\nSulcer NNP\nSulfaquinoxaline NN\nSulgrave NNP\nSuliman NNP\nSulka NNP\nSullam NNP\nSullivan NNP\nSully NNP\nSulphur NN\nSultan NNP\nSultanate NNP\nSultane NNP\nSultanov NNP\nSultans NNS\nSulya NNP\nSulzberger NNP\nSulzer NNP\nSum NNP\nSumarlin NNP\nSumat NNP\nSumatra NNP\nSumita NNP\nSumitomo NNP\nSumma NNP\nSummarizing VBG\nSummary NNP\nSummaryof NNP\nSummcorp NNP\nSummer NNP\nSummerdale NN\nSummerfolk NNP\nSummerland NNP\nSummers NNP\nSummerspace NNP\nSummertime NN\nSummit NNP\nSumner NNP\nSumo NN\nSumter NNP\nSun NNP\nSun-3\\ NNP\nSun-3\\/50 NNP\nSun-Times NNP\nSunAmerica NNP\nSunCor NNP\nSunGard NNP\nSunTrust NNP\nSunay NNP\nSunbelt NNP\nSunbird NNP\nSunburst NNP\nSunbury NNP\nSuncor NNP\nSunda NNP\nSundance NNP\nSundance-based JJ\nSundarji NNP\nSunday NNP\nSunday-Tuesday NNP\nSunday-newspaper NNP\nSunday-school JJ\nSundays NNPS\nSundome NNP\nSundor NNP\nSundstrand NNP\nSunflowers NNS\nSung NNP\nSung-Shan NNP\nSung-il NNP\nSungene NNP\nSunken NNP\nSunkist NNP\nSunlight NNP\nSunman NNP\nSunni NNP\nSunny NNP\nSunnyvale NNP\nSunoco NNP\nSunrise NNP\nSuns NNPS\nSunset NNP\nSunshine NNP\nSuntory NNP\nSuntrust NNP\nSununu NNP\nSunward NNP\nSuominen NNP\nSuor FW\nSupavud NNP\nSuper NNP\nSuper-NOW NNP\nSuper-Protein NNP\nSuper-Set NNP\nSuper-Sets NNP\nSuperDot NNP\nSupercomputers NNPS\nSuperconcentrates NNS\nSuperconductivity NN\nSuperconductor NNP\nSuperconductors NNS\nSupercritical NNP\nSuperdome NNP\nSuperfund NNP\nSuperintendent NNP\nSuperintendents NNS\nSuperior NNP\nSuperlative NNP\nSuperman NNP\nSupermarket NN\nSupermarkets NNS\nSupermatic JJ\nSuperposed VBD\nSuperslim NNP\nSuperslims NNPS\nSuperstar NNP\nSuperstate NNP\nSuperstation NNP\nSuperstition NN\nSuperstitions NNPS\nSuperstores NNPS\nSupervision NNP\nSupervisor NNP\nSupervisors NNPS\nSupper NNP\nSupplee NNP\nSupplement NNP\nSupplemental NNP\nSupplementary NNP\nSupplementing VBG\nSuppliers NNS\nSupplies NNS\nSupply NNP\nSupply-sider NNP\nSupport NNP\nSupported VBN\nSupporters NNS\nSupporting VBG\nSupportive JJ\nSupports VBZ\nSuppose VB\nSupposedly RB\nSupposing VBG\nSuppression NN\nSupra-Expressionism NNP\nSupremacy NN\nSupreme NNP\nSupt. NNP\nSur FW\nSurcliffe NNP\nSurcliffes NNPS\nSure RB\nSure-sure JJ\nSurely RB\nSuresh NNP\nSurety NNP\nSurface NN\nSurge NNP\nSurgeon NNP\nSurgeons NNPS\nSurgery NNP\nSurgical NNP\nSurging VBG\nSurlyn NNP\nSurmanek NNP\nSurplus NNP\nSurprise NN\nSurprised VBN\nSurprises NNS\nSurprising JJ\nSurprisingly RB\nSurrealists NNS\nSurrender VB\nSurrendering VBG\nSurrey NNP\nSurrounded VBN\nSurrounding VBG\nSurvanta NNP\nSurveillance NN\nSurvey NNP\nSurveying VBG\nSurveys NNS\nSurvivability NN\nSurvival NNP\nSurvive VB\nSurvived VBD\nSurviving NNP\nSurvivors NNS\nSusan NNP\nSushi NN\nSusie NNP\nSusitna NNP\nSuspect JJ\nSuspected VBN\nSuspecting VBG\nSuspension NNP\nSuspicion NN\nSusquehanna NNP\nSussex NNP\nSussman NNP\nSustaining VBG\nSusumu NNP\nSut NNP\nSutcliffe NNP\nSutermeister NNP\nSutherland NNP\nSutpen NNP\nSutra NN\nSutro NNP\nSuttle NNP\nSutton NNP\nSutz NNP\nSuu NNP\nSuvorov NNP\nSuzanne NNP\nSuzman NNP\nSuzuka NNP\nSuzuki NNP\nSuzy NNP\nSven NNP\nSvensk NNP\nSvenska NNP\nSvenskarna FW\nSventek NNP\nSverdlovsk NNP\nSvevo NNP\nSwadesh NNP\nSwaggart NNP\nSwahili NNP\nSwaine NNP\nSwallow NNP\nSwallow-Barn NNP\nSwamped VBN\nSwan NNP\nSwank NNP\nSwansea NNP\nSwanson NNP\nSwapo NNP\nSwaps NNS\nSwartz NNP\nSwasey NNP\nSwavely NNP\nSweanor NNP\nSwearingen NNP\nSwears VBZ\nSweat NN\nSweathouse NN\nSweating VBG\nSweaty JJ\nSweazey NNP\nSwed NNP\nSwedBank NNP\nSwede NN\nSweden NNP\nSwedes NNPS\nSwedish JJ\nSwedish-Swiss JJ\nSween NNP\nSweeney NNP\nSweeneys NNPS\nSweeping VBG\nSweepstakes NNP\nSweet NNP\nSweet-scented JJ\nSweet-sour JJ\nSweetener NNP\nSweezey NNP\nSweig NNP\nSwelling JJ\nSwenson NNP\nSwept VBN\nSwift NNP\nSwiftly RB\nSwifts NNPS\nSwiggett NNP\nSwim NNP\nSwinburne NNP\nSwine JJ\nSwing NNP\nSwingin NNP\nSwinging VBG\nSwink NNP\nSwire NNP\nSwirsky NNP\nSwisher NNP\nSwiss JJ\nSwiss-German JJ\nSwiss-based JJ\nSwiss-born JJ\nSwiss-cheese NN\nSwiss-franc NN\nSwissair NNP\nSwissmade JJ\nSwitch NN\nSwitches NNS\nSwitchgear NNP\nSwitzer NNP\nSwitzerland NNP\nSwitzerland-based JJ\nSwiveling VBG\nSword NNP\nSy NNP\nSyb NNP\nSybase NNP\nSybert NNP\nSybil NNP\nSybron NNP\nSydney NNP\nSydney-based JJ\nSyed NNP\nSyferd NNP\nSykes NNP\nSyllabicity NN\nSyllabification NN\nSyllables NNS\nSylmar NNP\nSylphide NNP\nSylvan NNP\nSylvania NNP\nSylvester NNP\nSylvia NNP\nSylvie NNP\nSylvio NNP\nSymantec NNP\nSymbion NNP\nSymbol NN\nSymbol:HRB NNP\nSymbolist NNP\nSymbolizing VBG\nSymes NNP\nSymington NNP\nSymms NNP\nSymonds NNP\nSymons NNP\nSympathy NN\nSymphony NNP\nSymposium NNP\nSymptomatic JJ\nSyms NNP\nSynOptics NNPS\nSynar NNP\nSynbiotics NNP\nSync NN\nSynchronized VBN\nSyncor NNP\nSyndic NNP\nSyndicate NNP\nSyndicated NNP\nSyndicates NNS\nSyndication NNP\nSyndrome NNP\nSynergistics NNP\nSynod NNP\nSyntex NNP\nSynthelabo NNP\nSynthetic JJ\nSyracuse NNP\nSyrdarya NNP\nSyria NNP\nSyrian JJ\nSyrian-backed JJ\nSyrians NNPS\nSysco NNP\nSyse NNP\nSystem NNP\nSystem-specific JJ\nSystemOne NNP\nSystematically RB\nSysteme NNP\nSystemic JJ\nSystems NNPS\nSystemwide JJ\nSystran NNP\nSzabad NNP\nSzanton NNP\nSzelenyi NNP\nSzeto NNP\nSzocs NNP\nSzold NNP\nSzolds NNPS\nSzuros NNP\nT NN\nT'ai-Shan NNP\nT'ien NNP\nT-1000 NNP\nT-1600 NNP\nT-34 NN\nT-37 NN\nT-38 NN\nT-45 NNP\nT-72 NN\nT-Max NNP\nT-Mobile NNP\nT-bill NN\nT-bills NNS\nT-bond JJ\nT-cell NN\nT-helper NN\nT-shirt NN\nT-shirts NNS\nT. NNP\nT.B. NNP\nT.D. NNP\nT.E. NNP\nT.F. NNP\nT.H. NNP\nT.J. NNP\nT.M.B. NNP\nT.R. NNP\nT.S. NNP\nT.T. NNP\nT.V. NNP\nT.W. NNP\nT34C CD\nT4 CD\nT8 NNP\nTA NNP\nTAINTS VBZ\nTAKEOVER NN\nTAKING VBG\nTALENT NN\nTALK NNP\nTALKS VBZ\nTAMMY NNP\nTAMPA NNP\nTANDEM NNP\nTARP NNP\nTASS NNP\nTASTY JJ\nTAX NN\nTAXPAYERS NNS\nTB NN\nTBS NNP\nTBWA NNP\nTC NNP\nTCF NNP\nTCI NNP\nTCMP NNP\nTCR NNP\nTCU NNP\nTD NNP\nTDK NNP\nTEA NNP\nTEACH VB\nTEACHERS NNP\nTEAMSTERS NNPS\nTECHNOLOGIES NNP\nTECHNOLOGY NNP\nTECO NNP\nTED NNP\nTEDs NNS\nTEK NNP\nTELESIS NNP\nTELEVISION NN\nTELV NNP\nTEMPORARY JJ\nTEP NNP\nTESTS NNS\nTEXAS NNP\nTGS NNP\nTHACHER NNP\nTHAN IN\nTHANK VB\nTHANKS NNS\nTHAT WDT\nTHC NNP\nTHE DT\nTHERE'S VB\nTHF NNP\nTHIDIU NNP\nTHIEVES NNS\nTHINK VB\nTHIS PRP\nTHOSE DT\nTHR NNP\nTHREAT NN\nTHREE CD\nTHROUGHOUT IN\nTHYSELF PRP\nTI NNP\nTIGRs NNP\nTILT NN\nTIME NN\nTIMES NNP\nTINTING NN\nTIP NN\nTIPS NNS\nTIRED JJ\nTIRES NNS\nTML NNP\nTND.B NNP\nTNF NNP\nTNN NNP\nTNT NNP\nTO TO\nTODAY NNP\nTOOK NNP\nTOOLWORKS NNP\nTOP NNP\nTOPAZ NNP\nTOPIC NN\nTOURISM NN\nTOW NN\nTOYOTA'S NNP\nTPA NNP\nTPS NNP\nTR NNP\nTR. NNP\nTRACY-LOCKE NNP\nTRADE NN\nTRADING NN\nTRANSAMERICA NNP\nTRANSCANADA NNP\nTRANSFER NN\nTRANSPLANT NNP\nTRANSPORTATION NNP\nTRAVEL NN\nTRAVELS VBZ\nTRC NNP\nTREASURY NNP\nTREAT NN\nTREATING VBG\nTREND-SETTER NN\nTRIAD NNP\nTRIAL NN\nTRIMMING VBG\nTRIPS NNS\nTRO NN\nTROUBLES NNS\nTROs NNS\nTRS-80 NNP\nTRT NNP\nTRUCK NNP\nTRUE JJ\nTRUST NNP\nTRUSTEE NN\nTRUSTS NNS\nTRV NNP\nTRW NNP\nTSB NNP\nTSEM NN\nTSH NNP\nTSH-treated JJ\nTUC NNP\nTUCSON NNP\nTUMBLE JJ\nTURMOIL NN\nTURNS VBZ\nTV NN\nTV-Cable NNP\nTV-production JJ\nTVA NNP\nTVS NNP\nTVSM NNP\nTVX NNP\nTVs NNS\nTVwhich NNP\nTW NNP\nTWA NNP\nTWO CD\nTWO-A-DAY JJ\nTWX NNP\nTXO NNP\nT\\/A NNP\nTa-Hu-Wa-Hu-Wai NNP\nTabacs NNP\nTabak NNP\nTabarro FW\nTabb NNP\nTabellen FW\nTaber NNP\nTabernacle NNP\nTabit NNP\nTable NN\nTables NNS\nTabs NNS\nTabuchi NNP\nTaccetta NNP\nTache NNP\nTacit NNP\nTacitus NNP\nTack NN\nTack-solder VB\nTacker NNP\nTackle NNP\nTackles VBZ\nTacloban NNP\nTaco NNP\nTacoma NNP\nTaconic NNP\nTact NN\nTactical NNP\nTactically RB\nTactics NNS\nTad NNP\nTadahiko NNP\nTadashi NNP\nTadeusz NNP\nTadzhikistan NNP\nTae NNP\nTaek NNP\nTaff NNP\nTaffner NNP\nTaft NNP\nTaft-Hartley NNP\nTagalog NNP\nTagamet NNP\nTagg NNP\nTagliabue NNP\nTahiti NNP\nTahitian JJ\nTahoe NNP\nTahse NNP\nTai NNP\nTaif NNP\nTaikisha NNP\nTail NNP\nTailback NNP\nTailin NN\nTailors NNP\nTaipei NNP\nTaisei NNP\nTaisho NNP\nTait NNP\nTaito NNP\nTaittinger NNP\nTaiwan NNP\nTaiwan-born JJ\nTaiwanese JJ\nTaiyo NNP\nTaizo NNP\nTaj NNP\nTakaezu NNP\nTakagi NNP\nTakahashi NNP\nTakako NNP\nTakakura NNP\nTakamori NNP\nTakanashi NNP\nTakanori NNP\nTakao NNP\nTakasago NNP\nTakashi NNP\nTakashima NNP\nTakashimaya NNP\nTakayama NNP\nTake VB\nTake-up JJ\nTaken VBN\nTakeover NN\nTakeover-stock JJ\nTakeovers NNS\nTakes VBZ\nTakeshi NNP\nTakihyo NNP\nTakimura NNP\nTaking VBG\nTakoma NNP\nTaksim NNP\nTakuma NNP\nTakuro NNP\nTakushoku NNP\nTalbot NNP\nTalbott NNP\nTalcott NNP\nTale NN\nTalent NN\nTales NNS\nTaliesin NNP\nTalk NN\nTalking VBG\nTalks NNS\nTall JJ\nTallahassee NNP\nTallahatchie NNP\nTallahoosa NNP\nTallarico NNP\nTallchief NNP\nTalley NNP\nTalleyrand NNP\nTalmadge NNP\nTalmo NNP\nTalmud NNP\nTalon NNP\nTalsky NNP\nTalton NNP\nTalyzin NNP\nTama NNP\nTamales NNPS\nTamar NNP\nTamara NNP\nTamarijn NNP\nTambo NNP\nTambrands NNP\nTamerlane NNP\nTamil NNP\nTaming VBG\nTamiris NNP\nTamiris-Daniel NNP\nTamm NNP\nTammany NNP\nTammen NNP\nTammy NNP\nTamotsu NNP\nTampa NNP\nTampa-based JJ\nTampa. NNP\nTampering VBG\nTan NNP\nTana NNP\nTanabe NNP\nTanaka NNP\nTancred NNP\nTandem NNP\nTandler NNP\nTandy NNP\nTaney NNP\nTanganika NNP\nTangible JJ\nTango NNP\nTanii NNP\nTanin FW\nTank NNP\nTanker NNP\nTankers NNS\nTanks NNS\nTannenbaum NNP\nTanner NNP\nTannhaeuser NNP\nTanny NNP\nTanqueray NNP\nTanzi NNP\nTanzman NNP\nTao NNP\nTaoism NNP\nTaoist NNP\nTaoists NNP\nTaos NNP\nTap VB\nTape NN\nTaped VBN\nTaper NNP\nTapley NNP\nTappan NNP\nTappets NNS\nTaps VBZ\nTar NNP\nTara NNP\nTaraday NNP\nTarantino NNP\nTaras NNP\nTaras-Tchaikovsky NNP\nTarboro NNP\nTardily RB\nTareytown NNP\nTarget NNP\nTargets VBZ\nTargetted NNP\nTargo JJ\nTarheelia NNP\nTariff NN\nTariffs NNPS\nTarkeshian NNP\nTarkington NNP\nTarmac NNP\nTarnoff NNP\nTarnopol NNP\nTarot-like JJ\nTarrant NNP\nTarrytown NNP\nTartaglia NNP\nTartan NNP\nTartar JJ\nTartarughe NNP\nTartary NNP\nTarter NNP\nTartikoff NNP\nTartuffe NNP\nTaruffi NNP\nTarwhine NNP\nTarzan NNP\nTarzana NNP\nTasaki NNP\nTasaki-Riger NNP\nTascher NNP\nTaschereau NNP\nTash NNP\nTashi NNP\nTashjian NNP\nTashkent NNP\nTask NNP\nTasmania NNP\nTass NNP\nTassel NNP\nTassinari NNP\nTasso NNP\nTaste NN\nTaster NNP\nTastes NNPS\nTasti-Freeze NNP\nTasuku NNP\nTasurinchi NNP\nTata NNP\nTatanga NNP\nTate NNP\nTateishi NNP\nTateisi NNP\nTatian NNP\nTatler NNP\nTatman NNP\nTator NNP\nTatras NNS\nTatsuhara NNP\nTatsunori NNP\nTattingers NNPS\nTatzel NNP\nTau NNP\nTaubman NNP\nTaught VBN\nTaui NNP\nTauke NNP\nTaunton NNP\nTaurida NNP\nTaurog NNP\nTaurus NNP\nTaussig NNP\nTaviani NNP\nTavoy NNP\nTawana NNP\nTawes NNP\nTawney NNP\nTax NNP\nTax-exempt JJ\nTax-exempts NNS\nTax-free JJ\nTax-loss NN\nTaxable NNP\nTaxation NNP\nTaxes NNS\nTaxi NN\nTaxing VBG\nTaxonomists NNS\nTaxpayer NN\nTaxpayers NNS\nTaylor NNP\nTaylors NNPS\nTbilisi NNP\nTbond JJ\nTchaikovsky NNP\nTchalo FW\nTea NNP\nTeach VBP\nTeacher NN\nTeachers NNPS\nTeaching NN\nTeagan NNP\nTeagarden NNP\nTeague NNP\nTeam NNP\nTeams NNS\nTeamsters NNPS\nTeaneck NNP\nTearle NNP\nTears NNS\nTeatime NN\nTeatro NNP\nTebuthiuron NN\nTech NNP\nTech-Sym NNP\nTechDesign NNP\nTechcorps NNP\nTechnical NNP\nTechnical-chart JJ\nTechnically RB\nTechnician NNP\nTechnicians NNPS\nTechnik NNP\nTechnique NN\nTechniques NNPS\nTechnodyne NNP\nTechnological NNP\nTechnologies NNP\nTechnology NNP\nTechnomic NNP\nTeck NNP\nTecumseh NNP\nTed NNP\nTeddy NNP\nTedi NNP\nTee NNP\nTee-wah NNP\nTeeley NNP\nTeen NNPS\nTeen-age JJ\nTeen-agers NNS\nTeenage NNP\nTeens NNS\nTeerlink NNP\nTeeter NNP\nTeeth NNS\nTeferi NNP\nTeflon NNP\nTegal NNP\nTegner NNP\nTegretol NNP\nTegucigalpa NNP\nTeheran NNP\nTehran NNP\nTeich NNP\nTeijin NNP\nTeikoku NNP\nTeipel NNP\nTeito NNP\nTeixeira NNP\nTeknowledge NNP\nTektronix NNP\nTel NNP\nTela NNP\nTelaction NNP\nTele-Communications NNP\nTele1st NNP\nTeleCable NNP\nTeleVideo NNP\nTelecharge NNP\nTelecom NNP\nTelecommuncations NNPS\nTelecommunications NNPS\nTelectronics NNP\nTelecussed VBD\nTeleflora NNP\nTelefonica NNP\nTelefonos NNP\nTelefunken NN\nTelegraaf NNP\nTelegraph NNP\nTelegraphers NNS\nTelegraphie NNP\nTelelawyer NNP\nTelemann NNP\nTelemedia NNP\nTelemetries NNPS\nTelemunchen NNP\nTelemundo NNP\nTelenet NNP\nTelephone NNP\nTelephone-operations NNS\nTelephones NNP\nTelepictures NNPS\nTeleport NNP\nTeleprompter NNP\nTelerama NNP\nTelerate NNP\nTelescope NNP\nTelesis NNP\nTelesphere NNP\nTelesystems NNP\nTeletrac NNP\nTeletypes NNS\nTelevision NNP\nTelevision-Electronics NNP\nTelex NN\nTelford NNP\nTelford-made JJ\nTell VB\nTeller NNP\nTelli NNP\nTellier NNP\nTelling VBG\nTells VBZ\nTelmex NNP\nTelos NNP\nTelsmith NNP\nTelxon NNP\nTelzrow NNP\nTempe NNP\nTemper NN\nTemperature NN\nTemperatures NNS\nTempering VBG\nTempesst NNP\nTempest NNP\nTemple NNP\nTemple-Inland NNP\nTempleman NNP\nTempleton NNP\nTempo NNP\nTemporary JJ\nTempos NNS\nTemptation NN\nTempter NNP\nTen CD\nTen-thousand-dollar JJ\nTen-year JJ\nTen-year-old NNP\nTenants NNPS\nTend VBP\nTenda NNP\nTender NN\nTendered JJ\nTenderfoot NN\nTenderloin NNP\nTenderly RB\nTenders NNS\nTenements NNS\nTeniente NNP\nTenite NNP\nTenn NNP\nTenn. NNP\nTenn.-based JJ\nTennant NNP\nTenneco NNP\nTennenbaum NNP\nTennesse NNP\nTennessean NNP\nTennessee NNP\nTenney NNP\nTennis NNP\nTennyson NNP\nTens NNS\nTensile JJ\nTensing NNP\nTension NN\nTensions NNPS\nTentative JJ\nTenth NNP\nTenure NN\nTeodorani NNP\nTeodulo NNP\nTepid NNP\nTepper NNP\nTequila NNP\nTer-Arutunian NNP\nTer-Stepanova NNP\nTer. NN\nTeraoka NNP\nTercel NNP\nTerence NNP\nTeresa NNP\nTerex NNP\nTerg-O-Tometer NNP\nTerm NN\nTerminal NNP\nTerminaling NNP\nTerminals NNS\nTerminating VBG\nTermination NN\nTerminator NNP\nTerminiello NNP\nTerms NNS\nTerpers NNPS\nTerra NNP\nTerrace NNP\nTerral NNP\nTerramycin NN\nTerranomics NNS\nTerree NNP\nTerrell NNP\nTerrence NNP\nTerrible NNP\nTerrier NNP\nTerritorial NNP\nTerritories NNP\nTerritory NNP\nTerrizzi NNP\nTerror NN\nTerrorism NNP\nTerrours NNS\nTerry NNP\nTertre NNP\nTeschner NNP\nTesco NNP\nTese NNP\nTeslik NNP\nTesoro NNP\nTess NNP\nTessie NNP\nTessler NNP\nTest NNP\nTest-preparation JJ\nTesta NNP\nTestament NNP\nTestament-style JJ\nTestaments NNP\nTesticular NNP\nTestifies VBZ\nTestifying VBG\nTestimony NN\nTesting NN\nTests NNS\nTesty JJ\nTet NNP\nTetanus NN\nTeter NNP\nTetley NNP\nTetrameron NNP\nTetris NN\nTettamanti NNP\nTeutonic JJ\nTevye NNP\nTewary NNP\nTewfik NNP\nTewksbury NNP\nTex NNP\nTex-Mex NNP\nTex. NNP\nTexaco NNP\nTexan NNP\nTexans NNPS\nTexas NNP\nTexas-Louisiana NNP\nTexas-based JJ\nTexasness NN\nTexoma NNP\nText NN\nTextbook NN\nTextbooks NNS\nTextile NNP\nTextiles NNP\nTextron NNP\nTexts NNS\nThacher NNP\nThackeray NNP\nThad NNP\nThaddeus NNP\nThai NNP\nThai-Cambodian JJ\nThailand NNP\nThais NNPS\nThakhek NNP\nThal NNP\nThalbergs NNPS\nThaler NNP\nThalmann NNP\nThames NNP\nThamnophis NNS\nThan IN\nThanh NNP\nThank VB\nThankful JJ\nThanks NNS\nThanksgiving NNP\nThant NNP\nTharp NNP\nThat DT\nThat's VBZ\nThat-a-way RB\nThatcher NNP\nThatcher-style JJ\nThatcherian JJ\nThatcherism NNP\nThatcherite JJ\nThaxter NNP\nThaxters NNPS\nThay NN\nThayer NNP\nThe DT\nThe'burbs NNPS\nThe'lock-in JJ\nThe'separatist NN\nThe'takeover JJR\nThea NNP\nTheater NNP\nTheaters NNS\nTheatre NNP\nTheatre-by-the-Sea NNP\nTheatres NNP\nThee PRP\nTheft NN\nThefts NNS\nTheir PRP$\nTheirs JJ\nThelma NNP\nThem PRP\nThema NNP\nThen RB\nThen-Navy NNP\nThence RB\nThenceforth NN\nTheo NNP\nTheo-Dur NNP\nTheocracy NN\nTheodor NNP\nTheodore NNP\nTheodosian JJ\nTheodosius NNP\nTheological NNP\nTheology NNP\nTheon NNP\nTheorem NN\nTheoretical JJ\nTheoretically RB\nTheories NNPS\nTheorists NNS\nTheory NNP\nTheran NNP\nTherapeutics NNPS\nTherapy NNP\nThere EX\nThere'a NN\nThere's NNS\nThereafter RB\nThereby RB\nTherefore RB\nTheresa NNP\nTherese NNP\nThereupon RB\nThermal JJ\nThermedics NNP\nThermo NNP\nThermoforming VBG\nThermogravimetric JJ\nThermometer NNP\nThermopylae NNP\nThese DT\nThesis NN\nThevenot NNP\nThevenow NNP\nThey PRP\nThey're VB\nThi NNP\nThiebaud NNP\nThief NN\nThiele NNP\nThielsch NNP\nThieme NNP\nThiep NNP\nThierry NNP\nThieu NNP\nThieves NNS\nThin JJ\nThing NNP\nThings NNS\nThink VBP\nThinking VBG\nThiokol NNP\nThiot NNP\nThird NNP\nThird-Period JJ\nThird-Quarter JJ\nThird-party JJ\nThird-period JJ\nThird-quarter JJ\nThirdly RB\nThirteen CD\nThirties NNS\nThirty CD\nThirty-eighth NNP\nThirty-five CD\nThirty-four CD\nThirty-fourth NNP\nThirty-month NNP\nThirty-ninth NNP\nThirty-one JJ\nThirty-six CD\nThirty-three NNP\nThis DT\nThistle NNP\nTho RB\nThom NNP\nThoma NNP\nThomae NNP\nThomajan NNP\nThomas NNP\nThomases NNP\nThomasini NNP\nThomp NN\nThompson NNP\nThompson-CSF NNP\nThomson NNP\nThomson-CSF NNP\nThor NNP\nThoreau NNP\nThorn NNP\nThorn-EMI NNP\nThornburg NNP\nThornburgh NNP\nThorndike NNP\nThorne NNP\nThornton NNP\nThoroughbred NNP\nThoroughly NNP\nThorp NNP\nThorpe NNP\nThorstein NNP\nThortec NNP\nThose DT\nThou PRP\nThough IN\nThought NNP\nThoughts NNP\nThousand NNP\nThousands NNS\nThrall NNP\nThread VB\nThreaded VBN\nThreadgill NNP\nThreads NNS\nThreat NN\nThreatened VBD\nThreatening VBG\nThreats NNS\nThree CD\nThree-and-a-half JJ\nThree-day JJ\nThree-fourths NNS\nThree-month JJ\nThree-part JJ\nThree-quarters NNS\nThree-year-old JJ\nThreepenny NN\nThrelkeld NNP\nThreshold NNP\nThrice RB\nThrift NNP\nThrifts NNS\nThrifty NNP\nThrive VBP\nThriving JJ\nThroat NNP\nThrombinar NNP\nThrone NN\nThroneberry NNP\nThrough IN\nThroughout IN\nThrow VB\nThrowing VBG\nThrows VBZ\nThru IN\nThrush NNP\nThruston NNP\nThuggee NNP\nThule NNP\nThun NNP\nThunder NN\nThunderbird NNP\nThunderbirds NNPS\nThurber NNP\nThurday NNP\nThurgood NNP\nThurman NNP\nThurmond NNP\nThurow NNP\nThursday NNP\nThursday-night JJ\nThursdays NNPS\nThus RB\nThutmose NNP\nThy PRP\nThygerson NNP\nThynne NNP\nThynnes NNPS\nThyroglobulin NN\nThyroid NN\nThyssen NNP\nTi NNP\nTiananmen NNP\nTiant NNP\nTiao NNP\nTibbs NNP\nTiber NNP\nTibet NNP\nTibetan JJ\nTibetan-like JJ\nTiburon NNP\nTic-Tac-Toe NNP\nTichenor NNP\nTichy NNP\nTickell NNP\nTicker NNP\nTicket NN\nTicketron NNP\nTickets NNS\nTiconderoga NNP\nTicor NNP\nTidal NNP\nTide NNP\nTidewatch NNP\nTidewater NNP\nTie VB\nTie-vole-ee NN\nTieck NNP\nTieken NNP\nTiempo NNP\nTien NNP\nTiepolo NNP\nTiernan NNP\nTierney NNP\nTierno NNP\nTies NNPS\nTietmeyer NNP\nTiffany NNP\nTift NNP\nTigard NNP\nTiger NNP\nTiger-Heli NNP\nTiger-turned-Federal JJ\nTigers NNP\nTigershark NNP\nTigert NNP\nTight JJ\nTightened JJ\nTigre NNP\nTigrean JJ\nTigreans NNPS\nTigris NNP\nTigue NNP\nTijd NNP\nTijuana NNP\nTikopia NNP\nTiles NNS\nTilghman NNP\nTill IN\nTillery NNP\nTillet NNP\nTillich NNP\nTillie NNP\nTillinghast NNP\nTillotson NNP\nTilly NNP\nTilted NNP\nTim NNP\nTimber NN\nTimberlake NNP\nTimbers NNP\nTimbuktu NNP\nTime NNP\nTime-Life NNP\nTime-Mynah NNP\nTime-Olivette NNP\nTime-Warner NNP\nTime-servers NNS\nTimen NNP\nTimes NNP\nTimes-Mirror NNP\nTimes-Picayune NNP\nTimes-Stock NNP\nTimex NNP\nTimidly RB\nTiming NN\nTimken NNP\nTimmy NNP\nTimna NNP\nTimon NNP\nTimony NNP\nTimor NNP\nTimothy NNP\nTimpanogos NNP\nTims NNP\nTin NNP\nTina NNP\nTindal NNP\nTineo NNP\nTing NNP\nTingley NNP\nTinker NNP\nTinseltown NNP\nTinsman NNP\nTintoretto NNP\nTiny NNP\nTip NNP\nTipasa NNP\nTiphook NNP\nTipoff NNP\nTippecanoe NNP\nTipperary NNP\nTippet NNP\nTippett NNP\nTipping NN\nTips NNP\nTipton NNP\nTiptonville NNP\nTire NNP\nTired JJ\nTirello NNP\nTires NNS\nTirpak NNP\nTisch NNP\nTishman NNP\nTissues NNPS\nTitan NNP\nTitanic NNP\nTitanium NNP\nTitans NNS\nTitche NNP\nTithing NN\nTitian NNP\nTitle NN\nTitled VBN\nTitles NNPS\nTito NNP\nTittabawassee NNP\nTitus NNP\nTiveden NNP\nTivoli NNP\nTizard NNP\nTjokorda NNP\nTo TO\nTo'read VB\nToa NNP\nToagosei NNP\nToalster NNP\nToast NNP\nToasting VBG\nTobacco NNP\nTobias NNP\nTobin NNP\nTobishima NNP\nTobruk NNP\nToby NNP\nToccata NNP\nToch NNP\nTockman NNP\nTocqueville NNP\nToday NN\nTodays NNP\nTodd NNP\nTodman NNP\nTodt NNP\nToe NNP\nToensing NNP\nToepfer NNP\nToffenetti NNP\nTogether RB\nTogs NNP\nTohmatsu NNP\nToho NNP\nToi NNP\nToil NN\nToit NNP\nTojos NNPS\nTok NNP\nTokai NNP\nTokio NNP\nToklas NNP\nTokoi NNP\nTokuo NNP\nTokuyama NNP\nTokyo NNP\nTokyo-based JJ\nTokyu NNP\nToland NNP\nTold VBN\nToledo NNP\nTolek NNP\nTolentino NNP\nToler NNP\nTolerance NN\nToll NN\nTolley NNP\nTollman-Hundley NNP\nTolls NNS\nTolstoy NNP\nTolubeyev NNP\nTom NNP\nTom-and-Jerry NNP\nToman NNP\nTomas NNP\nTomash NNP\nTomaso NNP\nTomato NNP\nTombigbee NNP\nTombrello NNP\nTomczak NNP\nTomilson NNP\nTomkin NNP\nTomkins NNP\nTomlin NNP\nTommie NNP\nTommy NNP\nTomonggong NNP\nTomorrow NN\nTomoshige NNP\nTompkins NNP\nToms NNP\nTomsho NNP\nTonal JJ\nTonawanda NNP\nTone NN\nTones NNPS\nToney NNP\nTong NNP\nTong'Il NNP\nToni NNP\nTonight NNP\nTonio NNP\nTonka NNP\nTonkin NNP\nTons NNS\nTony NNP\nToo RB\nToobin NNP\nToodle NNP\nTook VBD\nTool NNP\nToole NNP\nTooling VBG\nTools NNPS\nToomey NNP\nToonker NNP\nToornstra NNP\nToot NNP\nToot-toot UH\nTootal NNP\nTooth NN\nTooth-hurty NN\nTootsie NNP\nTop JJ\nTop-20 JJ\nTop-of-the-Line JJ\nTopaz NNP\nTopeka NNP\nTopic NNP\nTopix NNP\nTopkapi NNP\nTopography NN\nTopper NNP\nToppers NNP\nTopping VBG\nTopps NNP\nTopton NNP\nTora NNP\nTorah NNP\nTorbjoern NNP\nTorch NNP\nTorchmark NNP\nTordella NNP\nTorell NNP\nTories NNPS\nTorino NNP\nTorme NNP\nTornado NNP\nToro NNP\nToronado NNP\nToronto NNP\nToronto-Dominion NNP\nToronto-area JJ\nToronto-based JJ\nToros NNP\nTorpetius NNP\nTorquato NNP\nTorquemada NNP\nTorrance NNP\nTorrence NNP\nTorres NNP\nTorresi NNP\nTorrey NNP\nTorrid NNP\nTorrid-Adios NNP\nTorrid-Breeze NNP\nTorrid-Mighty NNP\nTorrijos NNP\nTorrington NNP\nTorrio NNP\nTorrio-Capone JJ\nTorstar NNP\nTorsten NNP\nTort NNP\nTortillas NNPS\nTortoises NNPS\nTortola NNP\nTortorello NNP\nTortoriello NNP\nTorts NNP\nTory NNP\nTosca NNP\nToscanini NNP\nTosco NNP\nTose NNP\nToseland NNP\nToshiba NNP\nToshiichi NNP\nToshiki NNP\nToshiko NNP\nToshimitsu NNP\nToshio NNP\nToshiyuki NNP\nToss VB\nTossing VBG\nTotal JJ\nTotal-Cie NNP\nTotaling VBG\nTotalitarianism NNP\nTotally RB\nToth NNP\nToto NNP\nTots NNP\nTotten NNP\nToubro NNP\nTouch NNP\nTouche NNP\nTouches VBZ\nTouchstone NNP\nToufexis NNP\nTougas NNP\nTough JJ\nTougher JJR\nToughest NNP\nToujours FW\nToulouse NNP\nToulouse-Lautrec NNP\nTour NNP\nTouring VBG\nTourism NNP\nTourist NNP\nTournament NNP\nTournier NNP\nTours NNPS\nToussie NNP\nTouted VBN\nTouting VBG\nToward IN\nTowards NNP\nTower NNP\nTowering VBG\nTowers NNP\nTowing NNP\nTowle NNP\nTown NNP\nTowne NNP\nTownes NNP\nTownley NNP\nTowns NNP\nTownsend NNP\nTownship NNP\nTowsley NNP\nTowson NNP\nToxic JJ\nToxicology NNP\nToxics NNP\nToy NNP\nToying VBG\nToyko NNP\nToynbee NNP\nToyo NNP\nToyobo NNP\nToyoda NNP\nToyota NNP\nToyotas NNS\nToys NNPS\nTrabants NNPS\nTrabb NNP\nTrabold NNP\nTrac NNP\nTrace NNP\nTracer NNP\nTracers NNP\nTraces NNS\nTracey NNP\nTrachea NN\nTracinda NNP\nTracing VBG\nTrack NNP\nTrackdown NNP\nTracking NNP\nTracks NNS\nTracor NNP\nTract NNP\nTractarians NNS\nTractebel NNP\nTractor NNP\nTracy NNP\nTracy-Locke NNP\nTracys NNP\nTrade NNP\nTraded NNP\nTrader NNP\nTraders NNS\nTrades NNPS\nTrading NN\nTradition NN\nTraditional JJ\nTraditionalism NN\nTraditionalist NN\nTraditionalists NNPS\nTraditionally RB\nTraffic NNP\nTrafficking NN\nTraficant NNP\nTrafton NNP\nTragedy NN\nTrager NNP\nTragically RB\nTrail NNP\nTrailer NNP\nTrailing VBG\nTrain NNP\nTrained VBN\nTrainer NNP\nTraining NNP\nTrains NNS\nTraitor NN\nTraits NNP\nTrammell NNP\nTramp NNP\nTranportation NNP\nTranquility NN\nTrans NNP\nTrans-Alaska NNP\nTrans-Mediterranean NNP\nTrans-Pacific NNP\nTrans-Pecos NNP\nTrans-illuminated JJ\nTransAmerican NNP\nTransAtlantic NNP\nTransCanada NNP\nTransNet NNP\nTransTechnology NNP\nTransactions NNS\nTransamerica NNP\nTransatlantic NNP\nTranscat NNP\nTranscaucasian JJ\nTranscaucasus NNP\nTranscendental JJ\nTranscendentalism NNP\nTranscendentalists NNPS\nTransco NNP\nTranscontinental NNP\nTransfer NN\nTransfers NNS\nTransformers NNPS\nTransgenic NNP\nTransgenics NNP\nTransit NNP\nTransition NN\nTransitional JJ\nTranskei NNP\nTranslant NNP\nTranslated VBN\nTranslation NNP\nTranslink NNP\nTranslocations NNS\nTransmanche-Link NNP\nTransmancheLink NNP\nTransmation NNP\nTransmission NNP\nTransol NNP\nTransparent JJ\nTranspiration NN\nTransplantation NNP\nTransport NNP\nTransportation NNP\nTransportek NNP\nTransporting VBG\nTransports NNS\nTranstar NNP\nTransvaal NNP\nTranswestern NNP\nTransylvania NNP\nTrap NNP\nTrapp FW\nTrapped VBN\nTrappings NNP\nTrappist JJ\nTraps NNS\nTrash NNP\nTrastevere NNP\nTraub NNP\nTravancore NNP\nTravel NNP\nTravel-Holiday NNP\nTraveler NNP\nTravelers NNP\nTraveling VBG\nTravellers NNS\nTravelling VBG\nTravels NNP\nTraverse NNP\nTraverso NNP\nTraviata NNP\nTravis NNP\nTraxel NNP\nTraxler NNP\nTray NNP\nTraynor NNP\nTreadway NNP\nTreadwell NNP\nTreasonable JJ\nTreasure NNP\nTreasurer NNP\nTreasurers NNS\nTreasures NNS\nTreasury NNP\nTreasury-Fed NNP\nTreasury-bill NN\nTreasury-bond JJ\nTreasurys NNPS\nTreat VB\nTreating VBG\nTreatment NNP\nTreaty NNP\nTreausry NNP\nTreble NNP\nTrecker NNP\nTredding NNP\nTredegar NNP\nTredici NNP\nTredyffrin NNP\nTree NNP\nTreece NNP\nTrees NNP\nTregnums NNPS\nTrego NNP\nTreiger NNP\nTreitel NNP\nTrek NNP\nTrelleborg NNP\nTremblay NNP\nTremdine NNP\nTremendae NNP\nTrempler NNP\nTrenchard NNP\nTrend NNP\nTrend-following JJ\nTrends NNP\nTrendy JJ\nTrent NNP\nTrenton NNP\nTrepp NNP\nTrettien NNP\nTrevelyan NNP\nTrevino NNP\nTrevor NNP\nTrexler NNP\nTreybig NNP\nTri-Star NNP\nTri-State NNP\nTriStar NNP\nTriad NNP\nTrial NN\nTriamcinolone NN\nTriandos NNP\nTriangle NNP\nTrianon NNP\nTrib NNP\nTribal NNP\nTribe NNP\nTribes NNS\nTriborough NNP\nTribou NNP\nTribuna NNP\nTribunal NNP\nTribune NNP\nTribune-Democrat NNP\nTrichieri NNP\nTrichinella NN\nTrichrome JJ\nTricia NNP\nTricks NNPS\nTrickster NNP\nTrident NNP\nTridex NNP\nTrifari NNP\nTrig NNP\nTrigg NNP\nTriggering VBG\nTrikojus NNP\nTriland NNP\nTrim VB\nTrim-your-own-franks VB\nTrimble NNP\nTrimedyne NNP\nTrimmer NNP\nTrinen NNP\nTrinidad NNP\nTrinitarian NNP\nTrinitarians NNP\nTrinitron NNP\nTrinity NNP\nTrinkaus NNP\nTrinova NNP\nTrio NNP\nTriomphe NNP\nTripartite NNP\nTripe NNP\nTriple NNP\nTriple-A NNP\nTripod NNP\nTripod-Laing NNP\nTripoli NNP\nTriptych NNP\nTris NNP\nTrish NNP\nTristan NNP\nTristano NNP\nTristars NNPS\nTrite JJ\nTritium NN\nTriton NNP\nTrittico FW\nTrivelpiece NNP\nTrivest NNP\nTrivia NNP\nTrizec NNP\nTrockenbeerenauslesen NNP\nTroeltsch NNP\nTrofeo NNP\nTrohan NNP\nTrojan NNP\nTrompe FW\nTroop NNP\nTrooper NNP\nTroopers NNS\nTroops NNS\nTrop NNP\nTropez NNP\nTrophy NNP\nTropic NNP\nTropical NNP\nTropicana NNP\nTropics NNPS\nTropidoclonion NNP\nTropworld NNP\nTrotsky NNP\nTrotter NNP\nTrotting VBG\nTrouble NN\nTrouble-free JJ\nTroubled JJ\nTroup NNP\nTrout NNP\nTroutman NNP\nTrovatore NNP\nTroy NNP\nTroyes NNP\nTruck NNP\nTruckee NNP\nTruckers NNS\nTrucking NNP\nTrucks NNS\nTrud NNP\nTrudeau NNP\nTrue JJ\nTruell NNP\nTruesdell NNP\nTruffaut NNP\nTrujillo NNP\nTrujillos NNPS\nTruly NNP\nTruman NNP\nTrumbull NNP\nTrumka NNP\nTrump NNP\nTrump-watchers NNS\nTrumped VBN\nTrumplane NNP\nTrumps NNPS\nTrunk NN\nTrunkline NNP\nTrupin NNP\nTrupin-related JJ\nTrupins NNPS\nTrusk NNP\nTrust NNP\nTrustco NNP\nTrustcorp NNP\nTrustee NNP\nTrustees NNS\nTrusthouse NNP\nTruth NN\nTry VB\nTrygve NNP\nTryin VBG\nTrying VBG\nTryon NNP\nTsai NNP\nTsao NNP\nTsar NNP\nTsarevich NNP\nTsarism NNP\nTschilwyk NNP\nTschoegl NNP\nTse-tung NNP\nTshombe NNP\nTshombe-Gizenga-Goa-Ghana NNP\nTsitouris NNP\nTsk UH\nTsou NNP\nTsunami NNS\nTsunozaki NNP\nTsur NNP\nTsuruo NNP\nTsvetkov NNP\nTu NNP\nTuHulHulZote NNP\nTualatin NNP\nTube NNP\nTuberculosis NNP\nTuborg NNP\nTuchman NNP\nTuck NNP\nTucked VBN\nTucker NNP\nTucson NNP\nTudor NNP\nTudor-style JJ\nTuesday NNP\nTuesdays NNPS\nTufts NNP\nTugaru NN\nTuitions NNS\nTulane NNP\nTulip NNP\nTullio NNP\nTulln NNP\nTullock NNP\nTully NNP\nTulsa NNP\nTumazos NNP\nTumbling JJ\nTumor NNP\nTune NNP\nTunica NNP\nTunick NNP\nTunis NNP\nTunisia NNP\nTunisian NNP\nTunnard NNP\nTunnel NNP\nTuohy NNP\nTupelev-144 NNP\nTupolev NNP\nTupper NNP\nTupperware NNP\nTurandot NNP\nTurben NNP\nTurbin NNP\nTurbine NNP\nTurbinen NNP\nTurbinen-Union NNP\nTurbofan NN\nTurbulence NN\nTurbulent JJ\nTurbyfill NNP\nTurchin NNP\nTurf NNP\nTurgut NNP\nTurin NNP\nTurin-based JJ\nTurk NNP\nTurkey NNP\nTurkey. NNP\nTurkish JJ\nTurkmenia NNP\nTurks NNPS\nTurn VB\nTurnaround NNP\nTurnbull NNP\nTurned VBN\nTurner NNP\nTurning VBG\nTurnkey NNP\nTurnock NNP\nTurnout NN\nTurnover NN\nTurnpike NNP\nTurnpike-widening JJ\nTurns VBZ\nTurpin NNP\nTurtle NNP\nTurtles NNPS\nTuscany NNP\nTuskegee NNP\nTussard NNP\nTussle NNP\nTustin NNP\nTut NNP\nTuttle NNP\nTutu NNP\nTutunik NNP\nTuxapoka NNP\nTwain NNP\nTwaron NNP\nTweed NNP\nTweet VB\nTwelve CD\nTwenties NNP\nTwentieth NNP\nTwentieth-Century NNP\nTwenty CD\nTwenty-First NNP\nTwenty-eight CD\nTwenty-five CD\nTwenty-four CD\nTwenty-nine CD\nTwenty-one CD\nTwenty-one-year-old NN\nTwenty-second NNP\nTwenty-seven JJ\nTwenty-six JJ\nTwenty-two CD\nTwenty-year-old JJ\nTwice RB\nTwiggy NNP\nTwigs NNS\nTwilight NNP\nTwin NNP\nTwinkies NNPS\nTwins NNP\nTwinsburg NNP\nTwist NN\nTwitter NNP\nTwo CD\nTwo-Head NNP\nTwo-Stem JJ\nTwo-Way NNP\nTwo-Year JJ\nTwo-day JJ\nTwo-income NN\nTwo-month JJ\nTwo-part JJ\nTwo-thirds NNS\nTwo-year JJ\nTwomey NNP\nTy NNP\nTyburn NN\nTyco NNP\nTygartis NNP\nTylan NNP\nTylenol NNP\nTylenol-tampering JJ\nTyler NNP\nTymnet NNP\nTyndall NNP\nTyne NNP\nTyner NNP\nType NN\nType-O JJ\nTypes NNS\nTypical JJ\nTypically RB\nTyping NN\nTyrannosaurus NNP\nTyranny NNP\nTyre NNP\nTyson NNP\nTyson-Spinks JJ\nTyszkiewicz NNP\nTzora NNP\nU NNP\nU-2 NNP\nU-I NNP\nU-Save NNP\nU-turn NN\nU. NNP\nU.B.U. NNP\nU.Cal-Davis NNP\nU.K NNP\nU.K. NNP\nU.K.-based JJ\nU.LLO NNP\nU.M.C.I.A. NNP\nU.M.T. NN\nU.N NNP\nU.N. NNP\nU.N.-backed JJ\nU.N.-chartered JJ\nU.N.-monitored JJ\nU.N.-sponsored JJ\nU.N.-supervised JJ\nU.N.C.L.E NNP\nU.N.F.P NNP\nU.N.F.P. NNP\nU.N.F.P./NNP. JJ\nU.S NNP\nU.S-based JJ\nU.S. NNP\nU.S.$ $\nU.S.-Canada NNP\nU.S.-Canadian JJ\nU.S.-China NNP\nU.S.-Czech JJ\nU.S.-European JJ\nU.S.-German JJ\nU.S.-Israel-Egyptian JJ\nU.S.-Japan JJ\nU.S.-Japanese JJ\nU.S.-Korean JJ\nU.S.-Mexican JJ\nU.S.-Mexico JJ\nU.S.-Philippine JJ\nU.S.-SOVIET JJ\nU.S.-South JJ\nU.S.-Soviet JJ\nU.S.-U.K. JJ\nU.S.-U.S.S.R. NNP\nU.S.-about IN\nU.S.-backed JJ\nU.S.-based JJ\nU.S.-built JJ\nU.S.-developed JJ\nU.S.-dollar NN\nU.S.-dominated JJ\nU.S.-donated JJ\nU.S.-endorsed JJ\nU.S.-grown JJ\nU.S.-led JJ\nU.S.-made JJ\nU.S.-owned JJ\nU.S.-produced JJ\nU.S.-style JJ\nU.S.-supplied JJ\nU.S.56 CD\nU.S.A NNP\nU.S.A. NNP\nU.S.C. NNP\nU.S.Japan JJ\nU.S.S.R NNP\nU.S.S.R. NNP\nU.S.backed JJ\nU.S.based JJ\nU.S.concerns NNS\nU.S.investors NNS\nU.S.that NN\nU.s NNP\nU/NNP.S.C. NNP\nUAE NNP\nUAL NNP\nUAL'S NNP\nUAP NNP\nUAW NNP\nUBS NNP\nUBS-Phillips NNP\nUCC NNP\nUCLA NNP\nUCSF NNP\nUDAG NNP\nUDC NNP\nUEP NNP\nUFO NNP\nUFOs NNS\nUGF NNP\nUGI NNP\nUH NNP\nUH-60A NNP\nUIC NNP\nUJB NNP\nUK NNP\nUKRAINIANS NNS\nULI NNP\nUMNO NNP\nUMW NNP\nUN NNP\nUNA NNP\nUNC NNP\nUNCERTAINTY NN\nUNDEFINED JJ\nUNDER IN\nUNESCO NNP\nUNFLUORIDATED JJ\nUNIFIED JJ\nUNIFIRST NNP\nUNION NN\nUNITED NNP\nUNIX NNP\nUNR NNP\nUNRESOLVED JJ\nUNVEILED VBD\nUP IN\nUPHELD VBN\nUPI NNP\nUPJOHN NNP\nUPS NNP\nURGED VBD\nUS PRP\nUS$ $\nUS-Travel NNP\nUS116.7 CD\nUS45.9 CD\nUS72.3 CD\nUS8.9 CD\nUSA NNP\nUSAA NNP\nUSACafes NNP\nUSAF NNP\nUSAir NNP\nUSC NNP\nUSDA NNP\nUSDA-sponsored JJ\nUSED VBD\nUSED-CAR NN\nUSF&G NNP\nUSFL NNP\nUSG NNP\nUSGA NNP\nUSI NNP\nUSIA NNP\nUSIS NNP\nUSN NNP\nUSN. NNP\nUSO NNP\nUSOM NNP\nUSP NNP\nUSS NNP\nUSSR NNP\nUST NNP\nUSW NNP\nUSX NNP\nUTA NNP\nUTILITIES NNP\nUTL JJ\nUTLs NNS\nUV-B NN\nUVB NN\nUbberroth NNP\nUbermenschen NNPS\nUchida NNP\nUclaf NNP\nUdall NNP\nUdayan NNP\nUdvar-Hazy NNP\nUeberroth NNP\nUerkesh NNP\nUgh UH\nUgly JJ\nUh UH\nUh-huh UH\nUh-uh UH\nUhhu UH\nUhl NNP\nUhles NNP\nUhlmann NNP\nUhr NNP\nUkiah NNP\nUkraine NNP\nUkrainian JJ\nUkrainians NNPS\nUkranians NNPS\nUkropina NNP\nUlanys NNP\nUlbricht NNP\nUlisse NNP\nUllman NNP\nUlric NNP\nUlrich NNP\nUltimate NNP\nUltimately RB\nUltra NNP\nUltracentrifugation NN\nUltramar NNP\nUltraviolet NN\nUlyate NNP\nUlysses NNP\nUm UH\nUmberson NNP\nUmberto NNP\nUmkhonto NNP\nUmm UH\nUmpire NN\nUmschlagplatz NNP\nUn-American NNP\nUnable JJ\nUnam NNP\nUnamused JJ\nUnanalyzed JJ\nUnanimity NN\nUnanimously RB\nUnbelievable JJ\nUncas NNP\nUncertain NNP\nUncertainty NN\nUnckle NNP\nUncle NNP\nUncomfortably RB\nUncommon JJ\nUnconcerned JJ\nUnconfirmed JJ\nUnconscionable JJ\nUnconscious NNP\nUnconsciously RB\nUnconstitutional JJ\nUncontrolled JJ\nUndaunted JJ\nUndead NN\nUnder IN\nUnderage JJ\nUnderberg NNP\nUnderclass JJ\nUndergraduates NNS\nUnderground JJ\nUnderhill NNP\nUnderlying VBG\nUnderneath IN\nUnderperform NNP\nUnderscoring VBG\nUnderseas NNP\nUndersecretary NNP\nUnderserved NNP\nUnderstandably RB\nUnderstanding VBG\nUndertaken VBN\nUnderwater NNP\nUnderwear NN\nUnderwood NNP\nUnderwoods NNPS\nUnderwriter NNP\nUnderwriters NNS\nUnderwriting NN\nUndeterred JJ\nUndismayed JJ\nUndoubtedly RB\nUndugu NNP\nUnease NN\nUneasiness NN\nUnemployed JJ\nUnemployment NN\nUneven JJ\nUnexpected JJ\nUnfilled JJ\nUnflattering JJ\nUnfortunately RB\nUnfriendly JJ\nUnfurling VBG\nUngaretti NNP\nUngava NNP\nUnger NNP\nUngermann-Bass NNP\nUnglazed VBN\nUngrateful JJ\nUnhappily RB\nUniFirst NNP\nUniHealth NNP\nUniate NNP\nUnice NNP\nUnico NNP\nUniconer NNP\nUnicorp NNP\nUnida NNP\nUnification NNP\nUnificationism NNP\nUnificationist JJ\nUnificationists NNS\nUnified NNP\nUnifil NNP\nUniform JJ\nUnify VB\nUnigesco NNP\nUnilab NNP\nUnilever NNP\nUnimin NNP\nUnimpressed JJ\nUnincorporated NNP\nUninhibited NNP\nUnion NNP\nUnion. NNP\nUnionFed NNP\nUniondale NNP\nUnione NNP\nUnionized VBN\nUnions NNS\nUnique JJ\nUniqueness NNP\nUniroyal NNP\nUniroyal-Goodrich NNP\nUniroyal\\ NNP\nUnisys NNP\nUnit NN\nUnitarian NNP\nUnitarianism NNP\nUnitarians NNPS\nUnitas NNP\nUnited NNP\nUnitel NNP\nUnitholders NNS\nUnitika NNP\nUnitil NNP\nUnitours NNPS\nUnitrode NNP\nUnits NNP\nUnity NNP\nUniversal NNP\nUniversal-International NNP\nUniversal-Morning NNP\nUniversal-Rundle NNP\nUniverse NNP\nUniversities NNS\nUniversity NNP\nUniversity-EPA NNP\nUniversity-based JJ\nUnivest NNP\nUnivision NNP\nUnix NNP\nUnknown JJ\nUnleaded JJ\nUnless IN\nUnlike IN\nUnlikely RB\nUnlimited NNP\nUnlisted NNP\nUnloading VBG\nUnloved NNP\nUnmanned JJ\nUnmarried JJ\nUno NNP\nUno-Ven NNP\nUnocal NNP\nUnoccupied JJ\nUnofficial JJ\nUnpaid JJ\nUnpleasant JJ\nUnpopular JJ\nUnprovable JJ\nUnpublished JJ\nUnquestionably RB\nUnreported JJ\nUnresolved JJ\nUnruh NNP\nUnruly JJ\nUnseasonably RB\nUnsecured JJ\nUnsettling JJ\nUnsinkable NNP\nUnsolved NNP\nUnspeakable JJ\nUnstained JJ\nUnsuccessful JJ\nUnsuspecting JJ\nUntch NNP\nUntil IN\nUntold JJ\nUntouchables NNPS\nUnum NNP\nUnused JJ\nUnusual JJ\nUnveiled VBN\nUnveiling VBG\nUnwanted JJ\nUnwarranted JJ\nUnwholesome JJ\nUnwilling JJ\nUnwinding VBG\nUp IN\nUpchurch NNP\nUpdate NNP\nUpdike NNP\nUpgrades NNS\nUpham NNP\nUphoff NNP\nUpholds VBZ\nUpjohn NNP\nUplands NNPS\nUpon IN\nUpped VBN\nUpper NNP\nUpping VBG\nUppsala NNP\nUprising NNP\nUps VBZ\nUpsala NNP\nUpset VBN\nUpson NNP\nUpstairs NN\nUptick NN\nUpton NNP\nUr VBP\nUral NNP\nUrals NNPS\nUranium NNP\nUrban NNP\nUrbana NNP\nUrbanization NN\nUrbano NNP\nUrbanski NNP\nUrben NNP\nUrdis NNP\nUrethane NN\nUrge VB\nUrged VBN\nUrging NNP\nUrich NNP\nUrielites NNPS\nUrien NNP\nUrmstom NNP\nUrn NNP\nUrraca NNP\nUrs NNP\nUrsa NNP\nUrstadt NNP\nUrsuline NNP\nUruguay NNP\nUs NNP\nUse VB\nUsed VBN\nUser-friendly JJ\nUsers NNS\nUsery NNP\nUses NNS\nUsha NNP\nUshikubo NNP\nUshuaia NNP\nUsines NNP\nUsing VBG\nUsinor NNP\nUsinor-Sacilor NNP\nUspensky NNP\nUsually RB\nUsurpations NNS\nUtah NNP\nUtahans NNPS\nUtiliCorp NNP\nUtilities NNP\nUtility NNP\nUtilization NN\nUtley NNP\nUto-Aztecan NNP\nUtopia NNP\nUtopian NNP\nUtopians NNPS\nUtrecht NNP\nUtsumi NNP\nUtsunomiya NNP\nUtt NNP\nUtter NNP\nUxbridge NNP\nUyl NNP\nUzbekistan NNP\nUzi NNP\nUzi-model JJ\nV NN\nV-1 NNP\nV-22 NNP\nV-2500 NN\nV-6 NNP\nV-6-equipped JJ\nV-8 JJ\nV-shaped JJ\nV. NNP\nV.E. NNP\nV.H. NNP\nV.O. NNP\nVA NNP\nVA-backed JJ\nVALLEY NNP\nVARIAN NNP\nVAT NNP\nVATICAN NNP\nVAX NNP\nVAX9000 NN\nVAX\\ NNP\nVAXstation NNP\nVCOR NNP\nVCR NNP\nVCRs NNS\nVENTURE NN\nVF NNP\nVGA NNP\nVH-1 NNP\nVI NNP\nVIACOM NNP\nVICTIMS NNS\nVICTOR NNP\nVICTORIES NNS\nVIDEO NN\nVIETNAM NNP\nVII NNP\nVIII NNP\nVIP NNP\nVISA NNP\nVISTA NNP\nVISUALIZING VBG\nVISX NNP\nVISystems NNPS\nVITRO NNP\nVLSI NNP\nVNR NNP\nVO5 NNP\nVOA NNP\nVOLUME NN\nVOLUNTARISM NN\nVOTED VBD\nVS NNP\nVTC NNP\nVTOL NNP\nVTX NNP\nVW NNP\nVWR NNP\nVa NNP\nVa. NNP\nVa.-based JJ\nVacSYN\\ NNP\nVacancies NNS\nVacancy NN\nVacation NN\nVacations NNS\nVacaville NNP\nVachell NNP\nVaclav NNP\nVacuum NNP\nVadar NNP\nVadas NNP\nVadehra NNP\nVader NNP\nVadies NNP\nVadim NNP\nVadstena NNP\nVaezi NNP\nVagabond NNP\nVagabonds NNPS\nVague JJ\nVahid NNP\nVaikule NNP\nVail NNP\nVajna NNP\nVal NNP\nValais NNP\nValdemar NNP\nValdese NNP\nValdez NNP\nValdiserri NNP\nVale NNP\nVale\\ IN\nValedictorian NNP\nValen NNP\nValencia NNP\nValens NNP\nValente NNP\nValenti NNP\nValentin NNP\nValentina NNP\nValentine NNP\nValentino NNP\nValeri NNP\nValerie NNP\nValero NNP\nValery NNP\nValhalla NNP\nValhi NNP\nValiant NNP\nValin NNP\nValium NNP\nValladolid NNP\nValle NNP\nVallecas NNP\nVallee NNP\nValley NNP\nValleyfair NNP\nVallfart NNP\nValmet NN\nValois NNP\nValparaiso NNP\nValrico NNP\nValspar NNP\nValu NNP\nValuable NNP\nValue NNP\nValued VBN\nValues NNPS\nValvoline NNP\nVamp NNP\nVan NNP\nVanSant NNP\nVance NNP\nVancouver NNP\nVancouver-based JJ\nVanden NNP\nVandenBerg NNP\nVandenberg NNP\nVander NNP\nVanderbilt NNP\nVanderbilts NNS\nVandervoort NNP\nVandiver NNP\nVandringsar NNP\nVane NNP\nVanessa NNP\nVanguard NNP\nVanguardia NNP\nVanities NNS\nVanity NNP\nVanourek NNP\nVanous NNP\nVantage NNP\nVanuatu NNP\nVapor NN\nVappenfabrikk NNP\nVaradero NNP\nVaralli NNP\nVarani NNP\nVarese NNP\nVarga NNP\nVargas NNP\nVarian NNP\nVariations NNPS\nVariety NNP\nVarigrad NNP\nVarious JJ\nVaritronic NNP\nVarity NNP\nVarlaam NNP\nVarmus NNP\nVarnell NNP\nVarner NNP\nVarnessa NNP\nVaro NNP\nVarvara NNP\nVarviso NNP\nVary VBP\nVarying JJ\nVasa NNP\nVasady NNP\nVaseretic NNP\nVases NNS\nVasilenko NNP\nVasilievitch NNP\nVaska NNP\nVasotec NNP\nVasquez NNP\nVass NNP\nVassiliades NNP\nVasso NNP\nVast JJ\nVastly RB\nVasvani NNP\nVatican NNP\nVattern NNP\nVaudois NNP\nVaughan NNP\nVaughn NNP\nVault NNP\nVaux NNP\nVauxhall NNP\nVauxhill NNP\nVax NNP\nVaxSyn NNP\nVeatch NNP\nVeba NNP\nVeblen NNP\nVecTrol NNP\nVecchio NNP\nVector NNP\nVectra NNP\nVedder NNP\nVedrine NNP\nVeeck NNP\nVega NNP\nVegans NNPS\nVegas NNP\nVegas-based JJ\nVegetable NN\nVegetables NNS\nVehicle NNP\nVehicles NNPS\nVeil NNP\nVeiling VBG\nVeille NNP\nVeilleux NNP\nVelasco NNP\nVelasquez NNP\nVelazquez NNP\nVelcro NN\nVellante NNP\nVeloBind NNP\nVelon NNP\nVeltri NNP\nVelveeta NNP\nVenable NNP\nVencor NNP\nVending NN\nVendome NNP\nVendors NNS\nVenerable NNP\nVenetian NNP\nVeneto NNP\nVenetoen NNP\nVenezuela NNP\nVenezuelan JJ\nVenezuelans NNPS\nVeniamin NNP\nVenice NNP\nVenit NNP\nVenn NNP\nVenneboerger NNP\nVent NN\nVentes NNP\nVenti NNP\nVentilation NN\nVento NNP\nVentres NNP\nVentspils NNP\nVentura NNP\nVenture NNP\nVentured NNP\nVentures NNP\nVenturesome JJ\nVenturi NNP\nVenus NNP\nVenusians NNPS\nVera NNP\nVeracruz NNP\nVeraguas NNP\nVeraldi NNP\nVerbal JJ\nVerbatim JJ\nVerbindungstechnik NNP\nVerboort NN\nVerbrugge NNP\nVerde NNP\nVerdes NNP\nVerdi NNP\nVere NNP\nVereinsbank NNP\nVerey NNP\nVerfahrenstechnik NNP\nVerges NNP\nVergessen FW\nVerification NN\nVerit NNP\nVeritrac NNP\nVerloop NNP\nVermeersch NNP\nVermejo NNP\nVermes NNP\nVermont NNP\nVermont-Slauson NNP\nVermont-based JJ\nVermonters NNPS\nVermouth NNP\nVern NNP\nVernava NNP\nVerne NNP\nVerner NNP\nVernier NNP\nVernitron NNP\nVernon NNP\nVernor NNP\nVero NNP\nVeronica NN\nVeronique NNP\nVeronis NNP\nVerplanck NNP\nVerreau NNP\nVerret NNP\nVerrone NNP\nVersailles NNP\nVerses NNS\nVersicherung NNP\nVersicherungs NNP\nVersion NNP\nVerstandig NNP\nVerwoerd NNP\nVery RB\nVeryfine NNP\nVesco NNP\nVescos NNPS\nVeselich NNP\nVeslefrikk NNP\nVesoft NNP\nVesole NNP\nVessel NNP\nVestar NNP\nVesuvio NNP\nVeteran JJ\nVeterans NNP\nVetere NNP\nVeteri NNP\nVeterinary NNP\nVevay NNP\nVevey NNP\nVia NNP\nViacom NNP\nViag NNP\nViaje NNP\nViale NNP\nViall NNP\nViande NNP\nViareggio NNP\nViatech NNP\nViator NNP\nVibrometer NN\nVic NNP\nVical NNP\nVicar NNP\nVice NNP\nVice-President NNP\nVice-president NN\nVicenza NNP\nViceroy NNP\nVichy NNP\nVickers NNP\nVickery NNP\nVicki NNP\nVickie NNP\nVicks NNP\nVicksburg NNP\nVickstrom NNP\nVicky NNP\nVicolo NNP\nVicon NNP\nVictim NN\nVictimization NN\nVictims NNS\nVictoire NNP\nVictor NNP\nVictor-Butler NNP\nVictor-brand JJ\nVictoria NNP\nVictorian JJ\nVictorians NNS\nVictory NNP\nVictrola NN\nVida NNP\nVidal NNP\nVideo NNP\nVideos NNPS\nVideotron NNP\nVideoway NNP\nVidunas NNP\nVie NNP\nVieira NNP\nVienna NNP\nVienne NNP\nViennese JJ\nVienot NNP\nVientiane NNP\nViet NNP\nVieth NNP\nVietnam NNP\nVietnam-veteran JJ\nVietnamese JJ\nVietnamese-backed JJ\nVietor NNP\nVieux NNP\nView NNP\nViewed VBN\nViewer NNP\nViewers NNS\nViewing VBG\nViewmaster NNP\nViewmaster-Ideal NNP\nViewpoint NNP\nViews NNS\nVif NNP\nVigdor NNP\nViggo NNP\nVigier NNP\nVignola NNP\nVigorous JJ\nVigreux NNP\nVihon NNP\nVikes NNPS\nViking NNP\nViking\\/Penguin NN\nVikings NNPS\nViktor NNP\nVikulov NNP\nVila NNP\nVilaplana NNP\nVilas NNP\nVilgrain NNP\nVilla NNP\nVillage NNP\nVillagers NNS\nVillages NNS\nVillalobos NNP\nVillamiel NNP\nVillanova NNP\nVillanueva NNP\nVillard NNP\nVille NNP\nVilnius NNP\nVince NNP\nVincent NNP\nVindication NNP\nVinegar NNP\nVineland NNP\nVineyard NNP\nVineyards NNS\nVining NNP\nVinken NNP\nVinnicum NNP\nVinnin NNP\nVinogradoff NNP\nVinson NNP\nVintage NN\nViola NNP\nViolence NNP\nViolent JJ\nViolet NNP\nVioleta NNP\nVioletta NNP\nViolin NNP\nViper NNP\nViphakone NNP\nVirdon NNP\nViren NNP\nVirgil NNP\nVirgilia NNP\nVirgilio NNP\nVirgin NNP\nVirginia NNP\nVirginian NNP\nVirginians NNPS\nVirgins NNPS\nVirnich NNP\nVirology NNP\nViroqua NNP\nVirsaladze NNP\nVirtually RB\nVirtue NNP\nVirus NN\nViruscan NNP\nViruses NNS\nVisa NNP\nViscera NNPS\nViscerally RB\nViscount NNP\nVisher NNP\nVishwanath NNP\nVisibility NN\nVisigoths NNPS\nVision NNP\nVisionQuest NNP\nVisitation NNP\nVisiting VBG\nVisitors NNS\nVisits NNS\nVisker NNP\nViss NNP\nVisscher NNP\nVista NNP\nVistoso NNP\nVisual JJ\nVisualize VB\nVisually RB\nVisx NNP\nVita NNP\nVital JJ\nVitale NNP\nVitalie NNP\nVitaly NNP\nVitamin NN\nVitamins NNS\nVitarine NNP\nVitro NNP\nVitro-Anchor NNP\nVittoria NNP\nVittorio NNP\nVitulli NNP\nVitus NNP\nVitzhum NNP\nViva FW\nVivacious JJ\nVivaldi NNP\nVivaldi-at-brunch JJ\nVive FW\nVivian NNP\nVivien NNP\nVivier NNP\nViyella NNP\nVizas NNP\nVizcaya NNP\nVizeversa NNP\nVladilen NNP\nVladimir NNP\nVladivostok NNP\nVlasi NNP\nVnet NNP\nVocabularianism NNP\nVocabulary NNP\nVocal NN\nVocational NNP\nVoegelin NNP\nVoegtli NNP\nVoell NNP\nVogel NNP\nVogelstein NNP\nVogtle NNP\nVogue NNP\nVoice NNP\nVoices NNS\nVoicetek NNP\nVoid NN\nVoiture NNP\nVol. NNP\nVolare NNP\nVolatile JJ\nVolatility NN\nVolcker NNP\nVolga NNP\nVolgograd NNP\nVolio NNP\nVolk NNP\nVolkenstein NNP\nVolker NNP\nVolksgeist FW\nVolkswagen NNP\nVolkswagens NNPS\nVolland NNP\nVollard NNP\nVollrath NNP\nVolney NNP\nVolokh NNP\nVolokhs NNPS\nVolpe NNP\nVolstead JJ\nVolta NNP\nVoltaire NNP\nVolume NN\nVolumes NNS\nVoluntary NNP\nVolunteer NNP\nVolunteers NNPS\nVolvo NNP\nVolvo-Renault NNP\nVolz NNP\nVolzhsky NNP\nVom NNP\nVon NNP\nVonnegut NNP\nVons NNPS\nVoorhees NNP\nVoorhes NNP\nVoroba NNP\nVoronezh NNP\nVorontsov NNP\nVoroshilov NNP\nVortex NNP\nVos NNP\nVose NNP\nVosges NNPS\nVoss NNP\nVote NN\nVoter NN\nVoters NNS\nVotes NNS\nVoting NNP\nVouillemont NNP\nVous FW\nVoute NNP\nVoutila NNP\nVowel NNP\nVowel-Length NN\nVowels NNS\nVowing VBG\nVoyager NNP\nVoyagers NNPS\nVoyagers. NNPS\nVoyles NNP\nVranian NNP\nVries NNP\nVrilium NNP\nVroman NNP\nVroom NNP\nVs. FW\nVt NNP\nVt. NNP\nVt.-based JJ\nVu NNP\nVue NNP\nVuitton NNP\nVulcan NNP\nVulture NN\nVulturidae NNS\nVyacheslav NNP\nVyas NNP\nVyquest NNP\nW NNP\nW&D NNP\nW-2 NN\nW-2s NNS\nW-region NN\nW. NNP\nW.A. NNP\nW.B. NNP\nW.C. NNP\nW.D. NNP\nW.E. NNP\nW.F. NNP\nW.G. NNP\nW.H. NNP\nW.I. NNP\nW.I.L.D NNP\nW.J. NNP\nW.L. NNP\nW.M. NNP\nW.N. NNP\nW.O. NNP\nW.R. NNP\nW.S. NNP\nW.T. NNP\nW.Va NNP\nW.Va. NNP\nW.W. NNP\nW/NNP.A. NN\nW/NNP.B/NNP.I. NN\nW/NNP.R.G. NNP\nWABC NNP\nWAC NNP\nWACS NNPS\nWAFA NNP\nWAGE NN\nWAIT VB\nWALL NNP\nWANES VBZ\nWANT VBP\nWAO NNP\nWAR NNP\nWARNED VBD\nWARNER-LAMBERT NNP\nWARS NNS\nWAS VBD\nWASHINGTON NNP\nWATCH VB\nWATKINS-JOHNSON NNP\nWAVE NNP\nWAZ NNP\nWB NNP\nWBAI NNP\nWBBM-TV NNP\nWBZ NNP\nWCI NNP\nWCRS NNP\nWCRS-Eurocom NNP\nWCRS\\/Boston NNP\nWCVB NNP\nWD-40 NNP\nWDB NN\nWE PRP\nWEDTECH NNP\nWEEI NNP\nWEEK NN\nWEFA NNP\nWEIRTON NNP\nWELLS NNP\nWENT VBD\nWESLEY NNP\nWEST NNP\nWESTWOOD NNP\nWFAA NNP\nWFAA-TV NNP\nWFC NNP\nWFRR NNP\nWFXT NNP\nWFXT-TV NNP\nWGBH NNP\nWGP NNP\nWHAS NNP\nWHAT WP\nWHEC-TV NNP\nWHEN WRB\nWHICH WDT\nWHIRLPOOL NN\nWHISPER NN\nWHITMAN NNP\nWHO WP\nWHO'S JJ\nWHOOPS NNP\nWHX NNP\nWHY WRB\nWIC NNP\nWILL MD\nWIN NNP\nWINDOW NN\nWINS VBZ\nWINSTON-SALEM NNP\nWIN\\ NNP\nWIT IN\nWITH IN\nWITHHELD VBN\nWITHHOLDING NN\nWKRP NNP\nWLF NNP\nWLIB NNP\nWMB NNP\nWNBC NNP\nWNBC-TV NNP\nWNET NNP\nWNYC NNP\nWNYC-FM NNP\nWNYW NNP\nWNYW-TV NNP\nWOLFSON NNP\nWOMEN NNS\nWON VBP\nWON'T NNP\nWOODSTOCK NNP\nWORD NN\nWORK VBP\nWORKERS NNS\nWORKING VBG\nWORKS NNP\nWORLD NN\nWORLDLY JJ\nWOULDN'T NNP\nWPA NNP\nWPP NNP\nWPPSS NNP\nWPS NNP\nWRC NNP\nWSJ NNP\nWSJ\\ NNP\nWSJ\\/NBC NNP\nWSY NNP\nWTBS NNP\nWTD NNP\nWTI NNP\nWTPI-FM NNP\nWTV NNP\nWTVJ NNP\nWTXF NNP\nWW NNP\nWWL NNP\nWWOR NNP\nWWRL NNP\nWXRK NNP\nWXRK-FM NNP\nWYSE NNP\nW\\/O NNP\nWa NNP\nWaal NNP\nWaban NNP\nWabash NNP\nWachovia NNP\nWachsman NNP\nWachtel NNP\nWachtell NNP\nWachter NNP\nWachtler NNP\nWackenhut NNP\nWacker NNP\nWackers NNPS\nWacklin NNP\nWacky NNP\nWaco NNP\nWacoal NNP\nWada NNP\nWaddell NNP\nWade NNP\nWade-Evans NNP\nWadsworth NNP\nWaertsilae NNP\nWafaa NNP\nWaffen NNP\nWage NN\nWage-price JJ\nWage-settlement JJ\nWagg NNP\nWaggin NNP\nWaggoner NNP\nWagner NNP\nWagner-Peyser NNP\nWagnerian JJ\nWagon NNP\nWagoneer NNP\nWagons NNS\nWah NNP\nWaigel NNP\nWaikiki NNP\nWaikikians NNPS\nWaikoloa NNP\nWailbri NNP\nWain NNP\nWainaina NNP\nWainwright NNP\nWaist-High JJ\nWait VB\nWaite NNP\nWaited VBN\nWaiting VBG\nWakabayashi NNP\nWakako NNP\nWakayama NNP\nWake VB\nWake-Up NNP\nWakefield NNP\nWakeman NNP\nWakes NNP\nWaking VBG\nWako NNP\nWaksman NNP\nWakui NNP\nWal-Mart NNP\nWalbancke NNP\nWalbrecher NNP\nWalbridge NNP\nWalcott NNP\nWald NNP\nWaldbaum NNP\nWalden NNP\nWaldenbooks NNP\nWaldensian JJ\nWaldheim NNP\nWaldholz NNP\nWaldman NNP\nWaldo NNP\nWaldorf NNP\nWaldorf-Astoria NNP\nWaldron NNP\nWales NNP\nWalesa NNP\nWaleson NNP\nWalford NNP\nWalgreen NNP\nWalinsky NNP\nWalinsky-Rubinstein NNP\nWalitzee NNP\nWalk VB\nWalk-in JJ\nWalker NNP\nWalkers NNPS\nWalkin NNP\nWalking VBG\nWalkman NNP\nWalkman-style JJ\nWalkmen NNP\nWall NNP\nWall-Tex NN\nWalla NNP\nWallace NNP\nWallach NNP\nWallachs NNP\nWalle NNP\nWallenberg NNP\nWallenstein NNP\nWallingford NNP\nWalloons NNPS\nWallop NNP\nWalls NNS\nWallstreet NNP\nWally NNP\nWalmart NNP\nWalnut NNP\nWalpole NNP\nWalsh NNP\nWalsifer NNP\nWalt NNP\nWaltana NNP\nWaltch NNP\nWalter NNP\nWaltermire NNP\nWalters NNP\nWalters-Donaldson NNP\nWaltham NNP\nWalther NNP\nWalton NNP\nWalzer NNP\nWambui NNP\nWames NNP\nWamre NNP\nWan NNP\nWanda NNP\nWander VB\nWander-Years NNP\nWanderjahr NN\nWanders NNP\nWang NNP\nWangemans NNPS\nWangenheim NNP\nWanger NNP\nWaning JJ\nWankui NNP\nWanna VB\nWanniski NNP\nWansee NNP\nWansley NNP\nWant VB\nWanted VBN\nWants VBZ\nWappinger NNP\nWar NNP\nWar-era NNP\nWar-related JJ\nWarburg NNP\nWarburgs NNPS\nWard NNP\nWardair NNP\nWarden NNP\nWards NNP\nWardwell NNP\nWare NNP\nWarehouse NNP\nWarfield NNP\nWarhol NNP\nWaring NNP\nWarm JJ\nWarman NNP\nWarming VBG\nWarmly RB\nWarmongering VBG\nWarnaco NNP\nWarned VBD\nWarner NNP\nWarner-Chilcott NNP\nWarner-Lambart NNP\nWarner-Lambert NNP\nWarners NNS\nWarning NNP\nWarnke NNP\nWarnock NNP\nWarranties NNS\nWarrants NNS\nWarren NNP\nWarrens NNS\nWarrenton NNP\nWarrick NNP\nWarring NNP\nWarrior NNP\nWarriors NNP\nWars NNPS\nWarsaw NNP\nWarshaw NNP\nWartburgs NNPS\nWartzman NNP\nWarwick NNP\nWarwickshire NNP\nWary JJ\nWas VBD\nWasatch NNP\nWaseda NNP\nWash NNP\nWash. NNP\nWash.-based JJ\nWashburn NNP\nWashed VBN\nWashing NN\nWashington NNP\nWashington-Alexandria NNP\nWashington-Oregon NNP\nWashington-area JJ\nWashington-based JJ\nWashingtons NNPS\nWashizu NNP\nWashoe NNP\nWaslic NNP\nWasserstein NNP\nWassily NNP\nWasson NNP\nWaste NNP\nWaste-management NN\nWastewater NNP\nWastrel NN\nWatanabe NNP\nWatch NN\nWatchers NNPS\nWatches NNS\nWatching VBG\nWatchmen NNP\nWater NNP\nWater-soluble JJ\nWaterbury NNP\nWatercolor NNP\nWaterford NNP\nWatergate NNP\nWatergate-beleaguered JJ\nWaterhouse NNP\nWaterloo NN\nWaterman NNP\nWaters NNP\nWaterseller NNP\nWaterston NNP\nWatertown NNP\nWaterville NNP\nWatervliet NNP\nWaterways NNS\nWathen NNP\nWatkins NNP\nWatkins-Johnson NNP\nWatling NNP\nWatrous NNP\nWatson NNP\nWatson-Watt NNP\nWatsonville NNP\nWatt NNP\nWattenberg NNP\nWatterson NNP\nWattie NNP\nWattley NNP\nWatts NNP\nWaugh NNP\nWaukegan NNP\nWaukesha NNP\nWave NNP\nWaveland NNP\nWaverly NNP\nWaving VBG\nWavy JJ\nWaxman NNP\nWaxworks NNP\nWay NN\nWayMar NNP\nWaycross NNP\nWayland NNP\nWaymire NNP\nWaymouth NNP\nWayne NNP\nWays NNPS\nWazir NNP\nWe PRP\nWe'll MD\nWe've NN\nWeak JJ\nWeaken VB\nWeakening VBG\nWeakens VBZ\nWeakest JJS\nWeakness NN\nWealth NNP\nWealthy NNP\nWeaning NNP\nWeapon NNP\nWeapons NNP\nWear VB\nWearing VBG\nWeart NNP\nWeary JJ\nWeasel NNP\nWeather NNP\nWeatherford NNP\nWeatherly NNP\nWeathers NNPS\nWeaver NNP\nWeavers NNS\nWeaving VBG\nWeb NNP\nWebb NNP\nWebber NNP\nWeber NNP\nWeber-controlled JJ\nWebern NNP\nWebster NNP\nWebster\\ NNP\nWebster\\/Eagle NNP\nWebsterville NNP\nWechsler NNP\nWeckel NNP\nWedbush NNP\nWedd NNP\nWedding NN\nWedel NNP\nWedged VBN\nWedgeworth NNP\nWedgwood NNP\nWednesday NNP\nWednesdays NNS\nWedtech NNP\nWee NNP\nWeede NNP\nWeedon NNP\nWeeds NNS\nWeek NNP\nWeek-e NN\nWeek-end NN\nWeek-r NN\nWeekend NNP\nWeekes NNP\nWeekly NNP\nWeeks NNP\nWeems NNP\nWeep VB\nWeerasinghe NNP\nWeevil NNP\nWegener NNP\nWei NNP\nWeichern NNP\nWeici NNP\nWeickerian JJ\nWeidenfeld NNP\nWeider NNP\nWeidman NNP\nWeigand NNP\nWeigel NNP\nWeighing VBG\nWeight NN\nWeighted NNP\nWeigle NNP\nWeil NNP\nWeiler NNP\nWeill NNP\nWeill\\/Bertolt NNP\nWeimar NNP\nWein NNP\nWeinbach NNP\nWeinberg NNP\nWeinberger NNP\nWeiner NNP\nWeingarten NNP\nWeingarten-Siegel NNP\nWeinroth NNP\nWeinshienk NNP\nWeinstein NNP\nWeir NNP\nWeird JJ\nWeirton NNP\nWeisberg NNP\nWeisbord NNP\nWeisbrod NNP\nWeisel NNP\nWeisfield NNP\nWeisman NNP\nWeisner NNP\nWeiss NNP\nWeissman NNP\nWeissmuller NNP\nWeithas NNP\nWeitz NNP\nWeitzel NNP\nWeitzen NNP\nWeizsacker NNP\nWeizsaecker NNP\nWeksel NNP\nWelborn NNP\nWelby NNP\nWelch NNP\nWelcome NNP\nWeld NNP\nWeldon NNP\nWeldwood NNP\nWelfare NNP\nWelko NNP\nWell UH\nWell-Seasoned JJ\nWell-Tempered JJ\nWell-educated JJ\nWell-intentioned JJ\nWell-received JJ\nWell-stretched JJ\nWell-to-Do JJ\nWell-trained JJ\nWell-wishers NNS\nWelland NNP\nWellcome NNP\nWeller NNP\nWelles NNP\nWellesley NNP\nWelling NNP\nWellington NNP\nWellman NNP\nWells NNP\nWellsley NNP\nWellsville NNP\nWelmers NNS\nWelsh NNP\nWelt NNP\nWeltanschauung NN\nWelton NNP\nWelty NNP\nWemmick NNP\nWempner NNP\nWenberg NNP\nWenceslas NNP\nWendee NNP\nWendel NNP\nWendell NNP\nWendells NNPS\nWendler NNP\nWendy NNP\nWenger NNP\nWenham NNP\nWent VBD\nWentworth NNP\nWenz NNP\nWerdell NNP\nWere VBD\nWergeland NNP\nWerke NNP\nWerkstell NNP\nWerner NNP\nWert NNP\nWerter NNP\nWertheim NNP\nWertheimer NNP\nWerther NNP\nWes NNP\nWesco NNP\nWesker NNP\nWesley NNP\nWesleyan NNP\nWeslock NNP\nWessel NNP\nWessels NNP\nWesson NNP\nWest NNP\nWest-End NNP\nWest-German JJ\nWest-Point NNP\nWest... :\nWestAir NNP\nWestLB NNP\nWestamerica NNP\nWestboro NNP\nWestborough NNP\nWestbound NNP\nWestbrook NNP\nWestburne NNP\nWestchester NNP\nWestcoast NNP\nWestcom NNP\nWestdeutsche NNP\nWestendorf NNP\nWesterly NNP\nWestern JJ\nWestern-Central JJ\nWestern-Mobile NNP\nWestern-owned JJ\nWestern-style JJ\nWesterner NNP\nWesterners NNPS\nWesterns NNS\nWestfield NNP\nWestford NNP\nWesthampton NNP\nWestheimer NNP\nWestin NNP\nWestinghouse NNP\nWestinghouse-Mitsubishi NNP\nWestlake NNP\nWestland NNP\nWestmin NNP\nWestminister NNP\nWestminster NNP\nWestmore NNP\nWestmoreland NNP\nWeston NNP\nWestpac NNP\nWestphalia NNP\nWestpheldt NNP\nWestport NNP\nWestridge NNP\nWestside NNP\nWestvaco NNP\nWestview NNP\nWestwood NNP\nWet JJ\nWetherell NNP\nWetherill NNP\nWetten FW\nWetter NNP\nWetzel NNP\nWetzler NNP\nWexler NNP\nWeybosset NNP\nWeyerhaeuser NNP\nWeyerhauser NNP\nWeymouth NNP\nWha WP\nWhah WRB\nWhaler NNP\nWhaley NNP\nWham UH\nWhampoa NNP\nWharf NNP\nWharton NNP\nWhat WP\nWhat's VBZ\nWhatever WDT\nWhatman NNP\nWheat NNP\nWheat-germ NN\nWheatena NNP\nWheatfield NNP\nWheaties NNPS\nWheaties-box JJ\nWheatley NNP\nWheaton NNP\nWhee NNP\nWheel NNP\nWheelabrator NNP\nWheelan NNP\nWheeland NNP\nWheeler NNP\nWheeling NNP\nWheeling-Pittsburgh NNP\nWheelock NNP\nWheels NNP\nWhelan NNP\nWhelen NNP\nWhen WRB\nWhence WRB\nWhenever WRB\nWhere WRB\nWhere's VBZ\nWhereas IN\nWherefore NN\nWherever WRB\nWhether IN\nWhich WDT\nWhichever WDT\nWhig NN\nWhigs NNPS\nWhile IN\nWhimsey NNP\nWhinney NNP\nWhip NNP\nWhippet NNP\nWhipple NNP\nWhipsawed JJ\nWhipsnade NNP\nWhirling JJ\nWhirlpool NNP\nWhirlwind NNP\nWhirpool NNP\nWhiskey NNP\nWhisky NN\nWhisper NNP\nWhit NNP\nWhitaker NNP\nWhitbread NNP\nWhitby NNP\nWhitcomb NNP\nWhite NNP\nWhite-collar JJ\nWhite-haired JJ\nWhite-shirted JJ\nWhiteboard NNP\nWhitefish NNP\nWhiteford NNP\nWhitehall NNP\nWhitehead NNP\nWhitehouse NNP\nWhiteleaf NNP\nWhiteley NNP\nWhitelock NNP\nWhiteman NNP\nWhitemarsh NNP\nWhitey NNP\nWhitfield NNP\nWhitford NNP\nWhiting NNP\nWhitley NNP\nWhitlock NNP\nWhitlow NNP\nWhitman NNP\nWhitmore NNP\nWhitney NNP\nWhitrow NNP\nWhittaker NNP\nWhitten NNP\nWhittenburg NNP\nWhittier NNP\nWhittington NNP\nWhittle NNP\nWhittlesey NNP\nWhiz NNP\nWho WP\nWho's VBZ\nWhoa UH\nWhoever WP\nWhole JJ\nWholesale JJ\nWholesaler-Distributors NNP\nWholesalers NNS\nWholesome JJ\nWhom WP\nWhoopee NN\nWhose WP$\nWhosever WP\nWhosoever NN\nWhy WRB\nWhy'n WRB\nWichita NNP\nWichterle NNP\nWick NNP\nWickcliffe NNP\nWicked NNP\nWickersham NNP\nWickes NNP\nWickham NNP\nWickhams NNP\nWickliffe NNP\nWide NNP\nWidely NN\nWiden VB\nWidened VBD\nWidener NNP\nWider JJR\nWidespread JJ\nWidget NNP\nWidmark NNP\nWidow NN\nWidowers NNS\nWidsith NNP\nWiduri NNP\nWiedemann NNP\nWieden NNP\nWiederaufbau NNP\nWiegers NNP\nWieland NNP\nWiener NNP\nWierton NNP\nWiesbaden NNP\nWiesel NNP\nWiesenthal NNP\nWieslawa NNP\nWiess NNP\nWife NN\nWiggins NNP\nWigglesworth NNP\nWight NNP\nWigs NNS\nWilber NNP\nWilberforce NNP\nWilbur NNP\nWilcher NNP\nWilcke NNP\nWilcock NNP\nWilcox NNP\nWild NNP\nWildbad NNP\nWildcat NNP\nWilde NNP\nWildenstein NNP\nWilder NNP\nWilderness NN\nWildhack NNP\nWildlife NNP\nWildly RB\nWildman NNP\nWildwater NNP\nWildwood NNP\nWile NNP\nWiley NNP\nWilfred NNP\nWilfrid NNP\nWilhelm NNP\nWilhelmina NNP\nWilhite NNP\nWiligis NNP\nWilk NNP\nWilke NNP\nWilkes VBZ\nWilkes-Barre NNP\nWilkey NNP\nWilkins NNP\nWilkinson NNP\nWilks NNP\nWill MD\nWilla NNP\nWillam NNP\nWillamette NNP\nWillard NNP\nWillcox NNP\nWillem NNP\nWillens NNP\nWillenson NNP\nWillett NNP\nWilletts NNP\nWilliam NNP\nWilliams NNP\nWilliamsburg NNP\nWilliamsesque JJ\nWilliamson NNP\nWilliamstown NNP\nWillie NNP\nWilling JJ\nWillingness NN\nWillings NNP\nWillis NNP\nWillkie NNP\nWillman NNP\nWillmott NNP\nWilloughby NNP\nWillow NNP\nWillowbridge NNP\nWillows NNS\nWills NNP\nWillson NNP\nWilly NNP\nWilm NNP\nWilma NNP\nWilmer NNP\nWilmette NNP\nWilmington NNP\nWilmot NNP\nWilmouth NNP\nWilms NNP\nWilpers NNP\nWilshire NNP\nWilson NNP\nWilson-to-Jim JJ\nWilsonian JJ\nWilton NNP\nWimbledon NNP\nWimpy NNP\nWimpys NNP\nWimsatt NNP\nWin NNP\nWinawer NNP\nWinch NNP\nWinchell NNP\nWinchester NNP\nWind NNP\nWindahall NNP\nWindels NNP\nWindex NNP\nWindfall NN\nWindflower NNP\nWindham NNP\nWindheim NNP\nWindhoek NNP\nWindle NNP\nWindmere NNP\nWindow NN\nWindows NNP\nWinds NNP\nWindsor NNP\nWindy NNP\nWine NNP\nWinery NNP\nWines NNP\nWinfield NNP\nWinfrey NNP\nWing NNP\nWingback NNP\nWinger NNP\nWingman NN\nWings NNPS\nWiniarski NNP\nWink NNP\nWinking VBG\nWinkler NNP\nWinn NNP\nWinn-Dixie NNP\nWinnebago NNP\nWinner NNP\nWinners NNS\nWinnetka NNP\nWinnick NNP\nWinnie NNP\nWinning VBG\nWinnipeg NNP\nWinnipesaukee NNP\nWinooski NNP\nWinsett NNP\nWinslow NNP\nWinsor NNP\nWinston NNP\nWinston-Salem NNP\nWinter NNP\nWinterhalder NNP\nWinters NNP\nWinterthur-based JJ\nWinthrop NNP\nWinthrop-University NNP\nWinton NNP\nWintour NNP\nWinzer NNP\nWipe VB\nWire NNP\nWireless NNP\nWires NNS\nWirth NNP\nWirthlin NNP\nWirtz NNP\nWiry JJ\nWis NNP\nWis. NNP\nWis.-based JJ\nWisconsin NNP\nWisdom NNP\nWise NNP\nWised NNP\nWiseguy NNP\nWisely RB\nWiseman NNP\nWish VB\nWish-List NN\nWishart NNP\nWishes NNS\nWishing VBG\nWisman NNP\nWisner NNP\nWissahickon NNP\nWister NNP\nWitcher NNP\nWith IN\nWithdrawals NNS\nWitherspoon NNP\nWithhold VB\nWithholding NN\nWithin IN\nWithout IN\nWithrow NNP\nWithuhn NNP\nWitkin NNP\nWitman NNP\nWitness VB\nWitnesses NNS\nWitnessing VBG\nWitold NNP\nWitt NNP\nWitten NNP\nWittenberg NNP\nWitter NNP\nWittgreen NNP\nWives NNPS\nWixom NNP\nWizard NNP\nWizards NNPS\nWm. NNP\nWo MD\nWoburn NNP\nWockenfuss NNP\nWoe NN\nWoessner NNP\nWogan NNP\nWohlstetter NNP\nWolcott NNP\nWolcyrz NNP\nWolder NNP\nWolf NNP\nWolfe NNP\nWolfes NNPS\nWolff NNP\nWolfgang NNP\nWolfsburg NNP\nWolfson NNP\nWolkind NNP\nWollaeger NNP\nWollman NNP\nWollo NNP\nWolohan NNP\nWolpe NNP\nWolstenholme NNP\nWolters-Kluwer NNP\nWolverine NNP\nWolverton NNP\nWolzein NNP\nWomack NNP\nWoman NNP\nWoman\\/McCall NNP\nWomen NNP\nWon NNP\nWonda NNP\nWonder NNP\nWonderful JJ\nWondering VBG\nWonderland NNP\nWong NNP\nWonham NNP\nWonjerika NNP\nWoo NNP\nWood NNP\nWood-products NNS\nWoodMac NNP\nWoodberry NNP\nWoodbridge NNP\nWoodbury NNP\nWoodcliff NNP\nWoodcock NNP\nWooded JJ\nWooden JJ\nWoodhaven NNP\nWoodin NNP\nWoodland NNP\nWoodmac NNP\nWoodman NNP\nWoodrow NNP\nWoodruff NNP\nWoods NNP\nWoodside NNP\nWoodstream NNP\nWoodward NNP\nWoodwards NNP\nWoodwell NNP\nWoodworth NNP\nWoody NNP\nWoodyard NNP\nWoolard NNP\nWoolen NNP\nWoollcott NNP\nWoolsey NNP\nWoolworth NNP\nWoonasquatucket NNP\nWoong NNP\nWoonsocket NNP\nWoos VBZ\nWooten NNP\nWootton NNP\nWorcester NNP\nWorcestershire JJ\nWord NNP\nWordStar NNP\nWords NNS\nWordsworth NNP\nWork NN\nWork-outs NNS\nWorker NNP\nWorkers NNPS\nWorkforce NNP\nWorking NNP\nWorkmen NNS\nWorkplace NN\nWorkplaces NNS\nWorks NNP\nWorksheets NNS\nWorkshop NNP\nWorkshops NNS\nWorkstations NNS\nWorld NNP\nWorld's NNS\nWorld-Journal-Tribune NNP\nWorld-Telegram NNP\nWorld-Wide NNP\nWorld-wide JJ\nWorlders NNPS\nWorldly RB\nWorlds NNPS\nWorldscope NNP\nWorldwatch NNP\nWorldwide NNP\nWorms NNPS\nWorn VBN\nWoronoff NNP\nWorrell NNP\nWorried VBN\nWorriers NNS\nWorries NNS\nWorry NN\nWorse JJR\nWorship NNP\nWorst JJS\nWorth NNP\nWorth-based JJ\nWortham NNP\nWorthington NNP\nWorthless JJ\nWorthy NNP\nWould MD\nWould-be JJ\nWound-tumor NN\nWoven VBN\nWow UH\nWozniak NNP\nWozzek NNP\nWragge NNP\nWrangham NNP\nWrangle VB\nWrangler NNP\nWrangling VBG\nWrap NNP\nWrath NN\nWratten NNP\nWray NNP\nWreckage NN\nWrecking NN\nWrecks VBZ\nWrestlemania NNP\nWright NNP\nWright-style JJ\nWrighting NN\nWrightson NNP\nWrigley NNP\nWrist NN\nWrite VB\nWrite-offs NNS\nWriter NNP\nWriters NNP\nWrites NNP\nWriting VBG\nWritten VBN\nWrong JJ\nWrongdoers NNS\nWrongs NNS\nWrote VBD\nWu NNP\nWuer NNP\nWunderman NNP\nWuon NNP\nWurm NNP\nWurtzel NNP\nWussler NNP\nWustman NNP\nWyatt NNP\nWyche NNP\nWyckoff NNP\nWycliffe NNP\nWycoff NNP\nWycombe NNP\nWyden NNP\nWyeth NNP\nWyeth-Ayerst NNP\nWylie NNP\nWyly NNP\nWyman NNP\nWyn NNP\nWyndham NNP\nWynn NNP\nWynston NNP\nWyo NNP\nWyo. NNP\nWyoming NNP\nWyse NNP\nWyser-Pratte NNP\nWyss NNP\nWyvern NNP\nX NN\nX-MP NNP\nX-Tru-Coat NNP\nX-chromosome NN\nX-gyro NN\nX-linked JJ\nX-marked JJ\nX-rated JJ\nX-ray NN\nX-ray-proof JJ\nX-rayed VBN\nX-rays NNS\nX-region NN\nX-tend NN\nX. NNP\nXA2000 NNP\nXCEL NNP\nXD SYM\nXFI NNP\nXIII NNP\nXJ6 NNP\nXL NNP\nXL\\/Datacomp NNP\nXR-7 NNP\nXR4Ti NNP\nXRAL NNP\nXRELEASE NN\nXRESERVE NN\nXYLOGICS NNP\nXYVISION NNP\nXanadu NNP\nXanax NNP\nXavier NNP\nXenia NNP\nXerox NNP\nXia NNP\nXiang NNP\nXiangyang NNP\nXiao NNP\nXiaobo NNP\nXiaoping NNP\nXiaoqing NNP\nXidex NNP\nXimenez-Vargas NNP\nXinhua NNP\nXoma NNP\nXomen-E5 NNP\nXtra NNP\nXu NNP\nXuanping NNP\nXydis NNP\nXylogics NNP\nXyvision NNP\nY NNP\nY&R NNP\nY'all DT\nY'r PRP|VBP\nY-MP NNP\nY-MP8-232 NNP\nY-MP\\/832 NNP\nY-Teen NNP\nY-cell NN\nY-cells NNS\nY-gyro NN\nY-region NN\nY-regions NNS\nY. NNP\nY.J. NNP\nY.M.C.A. NNP\nY.M.H.A. NNP\nY.S. NNP\nY.W.C.A. NNP\nYALE NNP\nYEARS NNS\nYEEECH UH\nYEEEEEECH UH\nYES NNP\nYMCA NNP\nYO UH\nYOM NNP\nYORK NNP\nYORK'S NNP\nYOU PRP\nYOU'RE PRP\nYOUNG JJ\nYOUR JJ\nYUP UH\nYWCA NNP\nYaaba NNP\nYacht NNP\nYachtel NN\nYachtsman NNP\nYacos NNP\nYaddo NNP\nYaffe NNP\nYahoo NNP\nYahwe NNP\nYair NNP\nYak NNP\nYakima NNP\nYakkety NNP\nYaklin NNP\nYakov NNP\nYakovlevich NNP\nYalagaloo UH\nYale NNP\nYale-Army NNP\nYale-New NNP\nYalies NNS\nYall PRP\nYalobusha NNP\nYalta NNP\nYamabe NNP\nYamada NNP\nYamaguchi NNP\nYamaichi NNP\nYamamoto NNP\nYamane NNP\nYamanouchi NNP\nYamashita NNP\nYamata NNP\nYamatake NNP\nYamatake-Honeywell NNP\nYamatane NNP\nYan NNP\nYancey-6 NN\nYancy-6 NN\nYanes NNP\nYang NNP\nYaniv NNP\nYank NN\nYank-oriented JJ\nYankee NNP\nYankee-come-lately JJ\nYankee-hatred NN\nYankeefication NNP\nYankees NNP\nYankees-Brooklyn NNP\nYankees-Mets JJ\nYankelovich NNP\nYanks NNS\nYankton NNP\nYankus NNP\nYao NNP\nYaobang NNP\nYaohan NNP\nYaqui NNP\nYarchoan NNP\nYard NNP\nYardeni NNP\nYards NNP\nYardumian NNP\nYarnell NNP\nYarrow NNP\nYass NNP\nYasser NNP\nYastrow NNP\nYastrzemski NNP\nYasuda NNP\nYasumichi NNP\nYasuo NNP\nYasushige NNP\nYasutomi NNP\nYates NNP\nYavapai NNP\nYazov NNP\nYe NNP\nYea UH\nYeager NNP\nYeah UH\nYear NN\nYear-End JJ\nYear-ago JJ\nYear-earlier JJ\nYear-round RB\nYear-to-date JJ\nYearbook NNP\nYeargin NNP\nYearly NNP\nYears NNS\nYeast NN\nYeats NNP\nYedisan NNP\nYegor NNP\nYeh NNP\nYehhh UH\nYehuda NNP\nYehudi NNP\nYell NNP\nYellen NNP\nYeller JJ\nYellow NNP\nYellow-pages NN\nYellowknife NNP\nYemelyanenko NNP\nYemen NNP\nYemeni JJ\nYemenis NNPS\nYemens NNPS\nYemma NNP\nYen NNP\nYenakiyevo NNP\nYeni NNP\nYeres NNP\nYerevan NNP\nYes UH\nYesiree UH\nYesterday NN\nYet RB\nYetnikoff NNP\nYeung NNP\nYeutter NNP\nYevgeny NNP\nYew NNP\nYewaisis NNP\nYff IN\nYiddish NNP\nYield NNP\nYields NNS\nYigal NNP\nYilin NNP\nYin NNP\nYin-Yang NNP\nYing-shek NNP\nYinger NNP\nYippies NNPS\nYiren NNP\nYitzhak NNP\nYizi NNP\nYo NNP\nYocam NNP\nYocum NNP\nYoder NNP\nYogi NNP\nYoichi NNP\nYok. NNP\nYokel NNP\nYokich NNP\nYoknapatawpha NNP\nYokogawa NNP\nYokohama NNP\nYokosuka NNP\nYokum NNP\nYokuts NNP\nYom NNP\nYoneda NNP\nYonehara NNP\nYoneyama NNP\nYongjian NNP\nYonkers NNP\nYontz NNP\nYooee UH\nYoon NNP\nYoorick NNP\nYoran NNP\nYorba NNP\nYork NNP\nYork-Moscow NNP\nYork-Pennsylvania NNP\nYork-SF NNP\nYork-area JJ\nYork-based JJ\nYork-born NNP|VBN\nYork-mind NNP|NN\nYorker NNP\nYorkers NNPS\nYorkshire NNP\nYorkshire-based JJ\nYorktown NNP\nYosemite NNP\nYoshi NNP\nYoshiaki NNP\nYoshida NNP\nYoshiharu NNP\nYoshihashi NNP\nYoshihisa NNP\nYoshimoto NNP\nYoshio NNP\nYoshiro NNP\nYoshitoki NNP\nYoshiyuki NNP\nYoshizawa NNP\nYosi NNP\nYost NNP\nYou PRP\nYou're VBP\nYou've NN\nYouTube NNP\nYoung NNP\nYoung-Jin NNP\nYoungberg NNP\nYoungblood NNP\nYounger JJR\nYoungest JJS\nYoungish JJ\nYoungsters NNS\nYoungstown NNP\nYounis NNP\nYounkers NNP\nYour PRP$\nYours PRP\nYouth NNP\nYouths NNP\nYquem NNP\nYr NN\nYu NNP\nYuan NNP\nYuba NNP\nYucaipa NNP\nYucatan NNP\nYuen NNP\nYugolsavia NNP\nYugoslav NNP\nYugoslav-born JJ\nYugoslavia NNP\nYugoslavs NNS\nYujobo NNP\nYuk-sui NNP\nYuki NNP\nYukihiro NNP\nYukio NNP\nYuko NNP\nYukon NNP\nYuli NNP\nYum-Yum NNP\nYumiko NNP\nYun NNP\nYunian NNP\nYup UH\nYuppie NNP\nYuppies NNS\nYuppily RB\nYurek NNP\nYuri NNP\nYurochka NNP\nYusaku NNP\nYusen NNP\nYutaka NNP\nYuzek NNP\nYuzuru NNP\nYves NNP\nYvette NNP\nYvon NNP\nZ NNP\nZ-axis NN\nZ-gyro NN\nZ. NNP\nZBB NNP\nZDF NNP\nZENITH NNP\nZZZZ NNP\nZabel NNP\nZach NNP\nZacharias NNP\nZachau NNP\nZachrisson NNP\nZack NNP\nZacks NNP\nZadel NNP\nZaffarano NNP\nZaffius NNP\nZaffuto NNP\nZafris NNP\nZagaria NNP\nZagros NNP\nZaharah NNP\nZainuddin NNP\nZaire NNP\nZairean JJ\nZaishuo NNP\nZaita NNP\nZajick NNP\nZakes NNP\nZalles NNP\nZalubice NNP\nZama NNP\nZambia NNP\nZambian JJ\nZambon NNP\nZambrano NNP\nZamiatin NNP\nZamislov NNP\nZamora NNP\nZamya NNP\nZane NNP\nZantac NNP\nZanzibar JJ\nZapala NNP\nZapata NNP\nZapfel NNP\nZaporogian NNP\nZapotec JJ\nZappa NNP\nZara NNP\nZarett NNP\nZarnowitz NNP\nZaroubin NNP\nZaves NNP\nZawia NNP\nZayadi NNP\nZayed NNP\nZayre NNP\nZbigniew NNP\nZeal NNP\nZealand NNP\nZealand-based JJ\nZealand-dollar NN\nZealander NNP\nZebek NNP\nZedmark NNP\nZeffirelli NNP\nZehnder NNP\nZeidner NNP\nZeien NNP\nZeiger NNP\nZeising NNP\nZeisler NNP\nZeiss NNP\nZeitgeist NNP\nZeitung NNP\nZeke NNP\nZel NNP\nZela NNP\nZelda NNP\nZelig NNP\nZell NNP\nZeller NNP\nZellerbach NNP\nZellers NNP\nZeme NNP\nZemin NNP\nZemlinsky NNP\nZemlya NNP\nZen NNP\nZen-like JJ\nZenaida NNP\nZend-Avesta NNP\nZendo NNP\nZenith NNP\nZennist NN\nZeon NNP\nZermatt NNP\nZero NN\nZero-Based NNP\nZero-coupon JJ\nZeron NNP\nZeros NNS\nZeta NNP\nZey PRP\nZhang NNP\nZhao NNP\nZhaoxing NNP\nZhejiang NNP\nZhijie NNP\nZhitkov NNP\nZhitzhakli NNP\nZhok NNP\nZhong NNP\nZhongshan NNP\nZhu NNP\nZia NNP\nZiari NNP\nZicklin NNP\nZiebarth NNP\nZiegfeld NNP\nZiegler NNP\nZielinski NNP\nZiff NNP\nZiff-Davis NNP\nZiffren NNP\nZigarlick NNP\nZiggy NNP\nZilligen NNP\nZimbabwe NNP\nZimbabwean NNP\nZimbalist NNP\nZimet NNP\nZiminska-Sygietynska NNP\nZimmer NNP\nZimmerman NNP\nZinc NN\nZing NNP\nZingggg-O UH\nZink NNP\nZinman NNP\nZinser NNP\nZion NNP\nZionism NNP\nZionist JJ\nZionists NNPS\nZipper NNP\nZipperstein NNP\nZipser NNP\nZiraldo NNP\nZirbel NNP\nZita NNP\nZitin NNP\nZivley NNP\nZiyang NNP\nZnaniye NNP\nZodiacal JJ\nZoe NNP\nZoeller NNP\nZoellick NNP\nZoete NNP\nZoghby NNP\nZola NNP\nZoladex NNP\nZollinger-Ellison NNP\nZolo NNP\nZomax NNP\nZombie NNP\nZone NNP\nZones NNS\nZoning NNP\nZoo NNP\nZooey NNP\nZorn NNP\nZorro NNP\nZosen NNP\nZsa NNP\nZubin NNP\nZubkovskaya NNP\nZucker NNP\nZuckerman NNP\nZuercher NNP\nZug NNP\nZukin NNP\nZulu NNP\nZumbrunn NNP\nZuni NNP\nZupan NNP\nZur FW\nZuratas NNP\nZurcher NNP\nZurek NNP\nZurich NNP\nZurich-based JJ\nZurkuhlen NNP\nZurn NNP\nZvi NNP\nZwei NNP\nZweibel NNP\nZweig NNP\nZwelakhe NNP\nZwiren NNP\nZworykin NNP\nZycher NNP\nZygmunt NNP\n[ (\n\\* SYM\n\\*\\* SYM\n\\*\\*\\* SYM\n] )\n]* NN\n]: SYM\n^_^ SYM\n` ``\n`` ``\n``... :\n``` NN\na DT\na'back-to-basics JJ\na'break-up NN\na'junk-junk JJ\na'mea FW\na'muddle VB\na'show VB\na'skip-a-month JJ\na'to-whom-er NN\na-Average JJ\na-Discounted JJ\na-Ex-dividend NN\na-GM NNP\na-Includes VBZ\na-Monthly JJ\na-Totals NNS\na-coming VBG\na-crowing VBG\na-drinking NN\na-gracious JJ\na-la-Aristotle NN\na-raising VBG\na-reflects VBZ\na-stoopin VBG\na-tall JJ\na-wing NN\na. NN\na.k.a JJ\na.k.a. JJ\na.m RB\na.m. NN\na.m.-10 CD\na.m.-1:30 CD\na.m.-6 CD\na.m.-7 CD\na.m.-8 CD\na\\/k\\/a NN\naahs NNS\nab NN\naback RB\nabacuses NNS\nabalone NN\nabandon VB\nabandoned VBN\nabandoning VBG\nabandonment NN\nabandons VBZ\nabaringe NN\nabasement NN\nabashed JJ\nabate VB\nabated VBN\nabatement NN\nabates VBZ\nabating VBG\nabberations NNS\nabbey NN\nabbot NN\nabbreviated JJ\nabbreviation NN\nabbreviations NNS\nabdicate VBP\nabdomen NN\nabdomens NNS\nabdominal JJ\nabdominis NN\nabducted VBN\nabduction NN\nabed RB\naber FW\naberrant JJ\naberrantly RB\naberration NN\naberrations NNS\nabetted VBN\nabetting VBG\nabeyance NN\nabhor VB\nabhorred VBD\nabhorrent JJ\nabhorrently RB\nabide VB\nabides VBZ\nabiding JJ\nabilities NNS\nability NN\nability... :\nabject JJ\nabjection NN\nabjectly RB\nablated VBN\nablation NN\nablaze JJ\nable JJ\nable-bodied JJ\nabler JJR\nably RB\nabnormal JJ\nabnormalities NNS\nabnormality NN\nabnormally RB\naboard IN\nabode NN\nabolish VB\nabolished VBN\nabolishing VBG\nabolition NN\nabolitionist NN\nabolitionists NNS\nabominable JJ\nabomination NN\naboriginal JJ\naborigine NN\naborigines NNS\naborning RB\nabort VB\naborted JJ\nabortifacient NN\naborting VBG\nabortion NN\nabortion-funding JJ\nabortion-related JJ\nabortion-rights NNS\nabortionist NN\nabortions NNS\nabortive JJ\nabound VBP\nabounded VBD\nabounding VBG\nabounds VBZ\nabout IN\nabout-face NN\nabout-faced VBD\nabove IN\nabove-average JJ\nabove-ceiling NN\nabove-ground JJ\nabove-market JJ\nabove-mentioned JJ\nabove-normal JJ\nabove-noted JJ\nabove-target JJ\nabove-water JJ\naboveboard JJ\naboveground JJ\nabrasion-resistant NN\nabrasive JJ\nabrasives NNS\nabreaction NN\nabreast RB\nabridged VBN\nabridges VBZ\nabridging VBG\nabridgment NN\nabroad RB\nabroade RB\nabrogate VB\nabrogated VBN\nabrupt JJ\nabruptly RB\nabruptness NN\nabscess NN\nabscesses NNS\nabscissa NN\nabsence NN\nabsences NNS\nabsense NN\nabsent JJ\nabsent-minded JJ\nabsent-mindedly RB\nabsented VBD\nabsentee JJ\nabsentee-ballot NN\nabsenteeism NN\nabsentees NNS\nabsentia FW\nabsently RB\nabsentmindedly RB\nabsinthe NN\nabsolute JJ\nabsolutely RB\nabsoluteness NN\nabsolutes NNS\nabsolution NN\nabsolutism NN\nabsolve VBP\nabsolved VBD\nabsolving VBG\nabsorb VB\nabsorbed VBN\nabsorbedthe VB\nabsorbency NN\nabsorbent JJ\nabsorber NN\nabsorbers NNS\nabsorbing VBG\nabsorbs VBZ\nabsorption NN\nabsorptions NNS\nabsorptive JJ\nabstain VB\nabstained VBD\nabstaining VBG\nabstention NN\nabstentions NNS\nabstinence NN\nabstract JJ\nabstracted JJ\nabstractedness NN\nabstracting VBG\nabstraction NN\nabstractionism NN\nabstractionists NNS\nabstractions NNS\nabstractive JJ\nabstractly RB\nabstractors NNS\nabstracts NNS\nabstruse JJ\nabstrusenesses NNS\nabsurd JJ\nabsurdist JJ\nabsurdities NNS\nabsurdity NN\nabsurdly RB\nabt IN\nabundance NN\nabundant JJ\nabundantly RB\nabusable JJ\nabuse NN\nabused VBN\nabuser NN\nabusers NNS\nabuses NNS\nabusing VBG\nabusive JJ\nabutments NNS\nabuzz JJ\nabysmal JJ\nabyss NN\nacacia NN\nacademe NN\nacademeh NN\nacademia NN\nacademic JJ\nacademically RB\nacademician NN\nacademics NNS\nacademies NNS\nacademy NN\nacccounting NN\naccede VB\nacceded VBD\naccelerate VB\naccelerated VBN\naccelerates VBZ\naccelerating VBG\nacceleration NN\naccelerations NNS\naccelerator NN\naccelerators NNS\naccelerometer NN\naccelerometers NNS\naccent NN\naccented VBN\naccenting NN\naccents NNS\naccentual JJ\naccentuate VB\naccentuated VBN\naccentuates VBZ\naccept VB\nacceptability NN\nacceptable JJ\nacceptance NN\nacceptances NNS\naccepted VBN\naccepting VBG\naccepts VBZ\naccesory NN\naccess NN\naccessed VBN\naccesses NNS\naccessibility NN\naccessible JJ\naccessions NNS\naccessories NNS\naccessory NN\naccident NN\naccidental JJ\naccidental-war NN\naccidentally RB\naccidently RB\naccidents NNS\nacclaim NN\nacclaimed VBN\nacclaims VBZ\nacclamation NN\nacclimatized VBN\naccolade NN\naccolades NNS\naccommodate VB\naccommodated VBN\naccommodates VBZ\naccommodating VBG\naccommodation NN\naccommodations NNS\naccommodative JJ\naccomodate VB\naccomodations NNS\naccompanied VBN\naccompanies VBZ\naccompaniment NN\naccompaniments NNS\naccompanist NN\naccompanists NNS\naccompany VB\naccompanying VBG\naccompli NN\naccomplice NN\naccomplices NNS\naccomplish VB\naccomplished VBN\naccomplishes VBZ\naccomplishing VBG\naccomplishment NN\naccomplishments NNS\naccompnaying VBG\naccord NN\naccordance NN\naccorded VBN\naccording VBG\naccordingly RB\naccordion NN\naccordion-folding JJ\naccords NNS\naccosted VBN\naccosting VBG\naccount NN\naccount-churning NN\naccountability NN\naccountable JJ\naccountant NN\naccountants NNS\naccountants... :\naccounted VBD\naccounting NN\naccounting-rules JJ\naccounts NNS\naccouterments NNS\naccreditation NN\naccredited VBD\naccrediting NN\naccreted VBN\naccretion NN\naccretions NNS\naccrual NN\naccruals NNS\naccrue VB\naccrued VBN\naccrues VBZ\naccruing VBG\nacculturated VBN\nacculturation NN\naccumulate VB\naccumulated VBN\naccumulates VBZ\naccumulating VBG\naccumulation NN\naccumulator NN\naccuracy NN\naccurate JJ\naccurately RB\naccusation NN\naccusations NNS\naccusatory JJ\naccuse VB\naccused VBN\naccuser NN\naccusers NNS\naccuses VBZ\naccusing VBG\naccusingly RB\naccustomed VBN\naccustoms VBZ\nace NN\nacerbic JJ\naces NNS\nacetate NN\nacetominophen NN\nacetone NN\nacetonemia NN\nacetylene NN\nacetylene-fueled JJ\nache NN\nached VBD\naches NNS\nachievable JJ\nachieve VB\nachieved VBN\nachievement NN\nachievement-test NN\nachievements NNS\nachieves VBZ\nachieving VBG\naching VBG\nacid NN\nacid-fast JJ\nacid-rain NN\nacidified VBN\nacidity NN\nacidly RB\nacids NNS\nacidulous JJ\naciduria NN\nacknowledge VBP\nacknowledged VBD\nacknowledgement NN\nacknowledges VBZ\nacknowledging VBG\nacknowledgment NN\nacknowledgments NNS\nacknowleged VBD\nacne NN\nacolyte NN\naconte NN\nacorns NNS\nacoustic JJ\nacoustical JJ\nacoustically RB\nacoustics NNS\nacquaint VB\nacquaintance NN\nacquainted VBN\nacquiesce VB\nacquiesced VBD\nacquiescence NN\nacquiesence NN\nacquire VB\nacquired VBN\nacquirer NN\nacquirers NNS\nacquires VBZ\nacquiring VBG\nacquisition NN\nacquisition-hungry JJ\nacquisition-minded JJ\nacquisition-proof JJ\nacquisition... :\nacquisitions NNS\nacquisitions.s NNS\nacquisitive JJ\nacquisitiveness NN\nacquisiton NN\nacquistion NN\nacquit VB\nacquittal NN\nacquitted VBN\nacre NN\nacre-feet NN\nacreage NN\nacres NNS\nacrid JJ\nacrimonious JJ\nacrimony NN\nacrobacy NN\nacrobat NN\nacrobatic JJ\nacrobatics NNS\nacrobats NNS\nacronym NN\nacross IN\nacross-the-board JJ\nacross-the-board-cuts NNS\nacrylic NN\nacrylic-fiber JJ\nact NN\nact... :\nacted VBD\nacting VBG\nactinometer NN\naction NN\naction-adventure JJ\naction-oriented JJ\naction-packed JJ\naction-results NNS\naction\\ JJ\nactionable JJ\nactions NNS\nactivate VBP\nactivated VBN\nactivating VBG\nactivation NN\nactive JJ\nactive-matrix JJ\nactive-player NN\nactively RB\nactives NNS\nactivism NN\nactivist NN\nactivists NNS\nactivities NNS\nactivity NN\nactor NN\nactors NNS\nactress NN\nactress\\ JJ\nactresses NNS\nacts NNS\nacts... :\nactual JJ\nactualities NNS\nactuality NN\nactually RB\nactuarial JJ\nactuarially RB\nactuaries NNS\nactuary NN\nactuate VB\nactuated VBN\nactuators NNS\nacumen NN\nacupuncture NN\nacupuncturist NN\nacute JJ\nacute-care NN\nacutely RB\nad NN\nad-agency NN\nad-free JJ\nad-hoc JJ\nad-lib NN\nad-rate NN\nad-supported JJ\nadage NN\nadagio NN\nadagios NNS\nadamant JJ\nadamantly RB\nadapt VB\nadaptability NN\nadaptable JJ\nadaptation NN\nadaptations NNS\nadapted VBN\nadapter NN\nadapters NNS\nadapting VBG\nadaptor NN\nadapts VBZ\nadd VB\nadd-on JJ\nadd-ons NNS\nadded VBD\nadded-value JJ\nadded:`` ``\naddict NN\naddicted VBN\naddiction NN\naddiction-treatment JJ\naddictions NNS\naddictive JJ\naddicts NNS\nadding VBG\naddition NN\nadditional JJ\nadditionally RB\nadditions NNS\nadditive NN\nadditives NNS\naddle-brained JJ\naddled JJ\naddress NN\naddressed VBN\naddressee NN\naddressees NNS\naddresses NNS\naddressing VBG\naddresss NNS\nadds VBZ\nadduce VB\nadenocard NN\nadenomas NN\nadept JJ\nadepts NNS\nadequacy NN\nadequate JJ\nadequately RB\nadhere VB\nadhered VBN\nadherence NN\nadherent JJ\nadherents NNS\nadheres VBZ\nadhering VBG\nadhesion NN\nadhesive JJ\nadhesives NNS\nadieu FW\nadipic JJ\nadjacent JJ\nadjectival JJ\nadjective NN\nadjectives NNS\nadjoined VBD\nadjoining VBG\nadjoins VBZ\nadjourn VB\nadjourned VBD\nadjourning NN\nadjournment NN\nadjourns VBZ\nadjudged VBN\nadjudging VBG\nadjudicate VB\nadjudication NN\nadjudicator NN\nadjudicators NNS\nadjunct NN\nadjuncts NNS\nadjust VB\nadjustable JJ\nadjustable-rate JJ\nadjustablerate NN\nadjustables NNS\nadjusted VBN\nadjuster NN\nadjusters NNS\nadjusting VBG\nadjustment NN\nadjustments NNS\nadjusts VBZ\nadman NN\nadmen NNS\nadminister VB\nadministered VBN\nadministering VBG\nadministers VBZ\nadministrate VB\nadministration NN\nadministration-Fed JJ\nadministration... :\nadministrations NNS\nadministrative JJ\nadministratively RB\nadministrator NN\nadministrator-general NN\nadministrators NNS\nadminstration NN\nadminstrative JJ\nadmirable JJ\nadmirably RB\nadmiral NN\nadmirals NNS\nadmiralty NN\nadmiration NN\nadmire VB\nadmired VBD\nadmirer NN\nadmirers NNS\nadmires VBZ\nadmiring VBG\nadmiringly RB\nadmissible JJ\nadmission NN\nadmissions NNS\nadmit VB\nadmits VBZ\nadmittance NN\nadmittances NNS\nadmitted VBD\nadmittedly RB\nadmittees NNS\nadmitting VBG\nadmixed VBN\nadmonished VBD\nadmonishing VBG\nadmonishments NNS\nadmonition NN\nadmonitions NNS\nado NN\nadobe NN\nadolescence NN\nadolescent NN\nadolescents NNS\nadopt VB\nadoptable JJ\nadopted VBN\nadoptee NN\nadoptees NNS\nadopters NNS\nadopting VBG\nadoption NN\nadoption-assistance JJ\nadoption-business NN\nadoptions NNS\nadoptive JJ\nadopts VBZ\nadorable JJ\nadore VBP\nadored VBD\nadores VBZ\nadoring VBG\nadorn VB\nadorned VBN\nadornments NNS\nadorns VBZ\nadrenal JJ\nadrenaline NN\nadrift RB\nadroit JJ\nadroitly RB\nadroitness NN\nads NNS\nadsorbed VBN\nadsorbs VBZ\nadulation NN\nadult NN\nadult-literacy NN\nadult-training JJ\nadulterate VB\nadulterated VBN\nadulterers NNS\nadulterous JJ\nadultery NN\nadulthood NN\nadults NNS\nadvance NN\nadvance-purchase JJ\nadvanced VBD\nadvanced-ceramics NN\nadvanced-materials JJ\nadvanced-technology JJ\nadvancement NN\nadvancements NNS\nadvancer NN\nadvancers NNS\nadvances NNS\nadvancing VBG\nadvantage NN\nadvantageous JJ\nadvantageously RB\nadvantages NNS\nadvent NN\nadventitious JJ\nadventure NN\nadventure-based JJ\nadventure-loving JJ\nadventurer NN\nadventurers NNS\nadventures NNS\nadventuresome JJ\nadventuring NN\nadventurism NN\nadventurist JJ\nadventurous JJ\nadventurously RB\nadverb NN\nadverbial JJ\nadverbs NNS\nadversarial JJ\nadversaries NNS\nadversary NN\nadverse JJ\nadversely RB\nadversities NNS\nadversity NN\nadvert NN\nadvertise VB\nadvertised VBN\nadvertisement NN\nadvertisements NNS\nadvertiser NN\nadvertiser-bankrolled JJ\nadvertiser-programming NN\nadvertiser-sponsored JJ\nadvertisers NNS\nadvertises VBZ\nadvertising NN\nadvertising-backed JJ\nadvertising-conscious JJ\nadvertorial JJ\nadvice NN\nadvisability NN\nadvisable JJ\nadvise VB\nadvised VBN\nadvisedly RB\nadvisement NN\nadviser NN\nadvisers NNS\nadvises VBZ\nadvising VBG\nadvisor NN\nadvisories NNS\nadvisors NNS\nadvisory JJ\nadvocacy NN\nadvocate NN\nadvocated VBN\nadvocates NNS\nadvocating VBG\naegis NN\naeon NN\naerate VB\naerated VBN\naerates VBZ\naeration NN\naerator NN\naerial JJ\naerialists NNS\naerials NNS\naerobic JJ\naerobics NN\naerodynamic JJ\naerogenes NNS\naeromedical JJ\naeronautical JJ\naerosal NN\naerosol NN\naerosolized VBN\naerosols NNS\naerospace NN\naerospace-industry NN\naesthetes NNS\naesthetic JJ\naesthetically RB\naesthetics NNS\naeterna FW\naeternitatis FW\nafar RB\naffable JJ\naffadavit NN\naffair NN\naffairs NNS\naffect VB\naffectation NN\naffectations NNS\naffected VBN\naffecting VBG\naffectingly RB\naffection NN\naffectionate JJ\naffectionately RB\naffections NNS\naffects VBZ\nafferent JJ\naffianced VBN\naffidavit NN\naffidavits NNS\naffied VBD\naffilates NNS\naffiliate NN\naffiliated VBN\naffiliates NNS\naffiliating VBG\naffiliation NN\naffiliations NNS\naffilliate NN\naffinities NNS\naffinity NN\naffirm VB\naffirmation NN\naffirmations NNS\naffirmative JJ\naffirmative-action NN\naffirmed VBD\naffirming VBG\naffirms VBZ\naffix VB\naffixed VBN\nafflict VB\nafflicted VBN\nafflicting VBG\naffliction NN\nafflictions NNS\nafflicts VBZ\naffluence NN\naffluent JJ\nafford VB\naffordability NN\naffordable JJ\nafforded VBN\naffording VBG\naffords VBZ\naffront NN\naffronted VBN\naffronting VBG\nafghan NN\naficionado NN\nafield RB\nafire RB\naflame JJ\naflatoxin NN\naflatoxin-free JJ\naflatoxin-producing JJ\naflatoxin-related JJ\nafloat RB\nafoot RB\naforementioned JJ\naforesaid JJ\naforethought JJ\nafoul RB\nafraid JJ\nafresh RB\naft JJ\nafter IN\nafter-dinner JJ\nafter-duty JJ\nafter-effects NNS\nafter-hours JJ\nafter-run JJ\nafter-school JJ\nafter-tax JJ\nafterburners NNS\naftereffects NNS\nafterglow NN\naftermarket JJ\naftermath NN\naftermaths NNS\nafternoon NN\nafternoons NNS\naftershave NN\naftershock NN\naftershock-damping JJ\naftershock-resistant JJ\naftershocks NNS\naftertax JJ\nafterthought NN\nafterward RB\nafterwards RB\naftuh RB\nag NN\nagain RB\nagainst IN\nagaint NN\nagates NNS\nagave NN\nagayne RB\nage NN\nage-and-sex JJ\nage-bias JJ\nage-discrimination JJ\nage-old JJ\nage-specific JJ\naged VBN\naged-care NN\nageless JJ\nagencies NNS\nagency NN\nagency-dealing JJ\nagenda NN\nagenda-setter NN\nagendas NNS\nagent NN\nagents NNS\nagents-in-training NNS\nages NNS\nagglomerate NN\nagglomeration NN\nagglutinating VBG\nagglutination NN\nagglutinin NN\nagglutinins NNS\naggrandizing VBG\naggravate VBP\naggravated VBN\naggravates VBZ\naggravating VBG\naggregate JJ\naggregates NNS\naggregation NN\naggregations NNS\naggression NN\naggressions NNS\naggressive JJ\naggressively RB\naggressiveness NN\naggressor NN\naggrieved VBN\naghast JJ\nagile JJ\nagilely RB\nagility NN\nagin IN\naging VBG\nagitate VBP\nagitated VBD\nagitating VBG\nagitation NN\nagitator NN\nagitators NNS\nagleam JJ\naglimmering VBG\nagnomen NN\nagnostics NNS\nago RB\nago,'crack NN\nago. RB\nagonies NNS\nagonize VB\nagonized VBD\nagonizes VBZ\nagonizing JJ\nagony NN\nagranulocytosis NN\nagrarian JJ\nagrarian-reform JJ\nagree VB\nagree. VB\nagreeable JJ\nagreeableness NN\nagreeably RB\nagreed VBD\nagreed-on JJ\nagreed-to JJ\nagreed-upon IN\nagreeement NN\nagreeing VBG\nagreement NN\nagreements NNS\nagrees VBZ\nagressive JJ\nagribusiness NN\nagricolas FW\nagricole FW\nagriculteurs FW\nagricultural JJ\nagricultural-research JJ\nagriculturally RB\nagriculturals NNS\nagriculture NN\nagriculture-based JJ\nagriculture-chemicals NNS\nagriculture-extension NN\nagriculture-related JJ\nagriproducts NNS\nagro-chemicals NNS\nagro-industrial JJ\nagro-industry JJ\nagrochemical NN\nagronomist NN\naground RB\nague NN\nah UH\naha UH\nahdawam UH\nahead RB\nahem UH\nahs UH\nai VBP\naid NN\naid-to-education NN\naide NN\naide-de-camp NN\naided VBN\naides NNS\naiding VBG\naids NNS\naikido FW\nailerons NNS\nailing VBG\nailment NN\nailments NNS\nails NNS\naim NN\naimed VBN\naiming VBG\naimless JJ\naimlessly RB\naims VBZ\nain't VB\nain't-it-great-to-be-a-Texan JJ\naint VBZ\nair NN\nair-cargo NN\nair-cell JJ\nair-charter JJ\nair-conditioned JJ\nair-conditioner NN\nair-conditioners NNS\nair-conditioning NN\nair-defense JJ\nair-express NN\nair-frame NN\nair-freight NN\nair-freight-forwarding JJ\nair-injection NN\nair-interdiction NN\nair-launched JJ\nair-passenger NN\nair-pollution NN\nair-quality NN\nair-separation NN\nair-service NN\nair-tickets NNS\nair-to-air JJ\nair-to-ground JJ\nair-to-surface JJ\nair-traffic NN\nair-traffic-control NN\nair-water JJ\nair-waybill JJ\nairbags NNS\nairborne JJ\nairborne-radar NN\nairconditioner JJR\naircraft NN\naircraft-electronics NN\naircraft-engine JJ\naircraft-engine-maintenance JJ\naircraft-navigation NN\naircraft-test JJ\nairdrops NNS\naired VBN\nairfare NN\nairfield NN\nairfields NNS\nairflow NN\nairframe NN\nairframes NNS\nairheads NNS\nairily RB\nairing VBG\nairings NNS\nairless JJ\nairlift NN\nairlifted VBN\nairlifting VBG\nairline NN\nairline-acquisition JJ\nairline-crash JJ\nairline-deregulation NN\nairline-financed JJ\nairline-hostess NN\nairline-industry NN\nairline-interior JJ\nairline-landing JJ\nairline-related JJ\nairliner NN\nairliners NNS\nairlines NNS\nairlock NN\nairmail NN\nairmailed VBD\nairman NN\nairmen NNS\nairplane NN\nairplanes NNS\nairplay NN\nairport NN\nairports NNS\nairs NNS\nairspeed NN\nairstrip NN\nairstrips NNS\nairtime NN\nairwaves NNS\nairway NN\nairways NNS\nairworthiness NN\nairy JJ\naisle NN\naisles NNS\najar RB\najury NN\nakin JJ\naku FW\nal NNS\nal-Assad NNP\nal-Faisal NNP\nal-Husseini NNP\nal. NNS\nalabaster NN\nalai FW\nalarm NN\nalarmed VBN\nalarming JJ\nalarmingly RB\nalarmism NN\nalarmist JJ\nalarms NNS\nalas UH\nalbatross NN\nalbeit IN\nalbicans NNS\nalbino NN\nalbum NN\nalbumin NN\nalbums NNS\nalchemists NNS\nalchemy NN\nalcohol NN\nalcohol-powered JJ\nalcohol-producing JJ\nalcohol-related JJ\nalcoholic JJ\nalcoholic-beverage NN\nalcoholics NNS\nalcoholism NN\nalcohols NNS\nalcoves NNS\nalderman NN\naldermen NNS\nalders NNS\nale NN\naleck NN\nalert JJ\nalerted VBD\nalerting VBG\nalertly RB\nalertness NN\nalerts VBZ\nalfalfa NN\nalfresco JJ\nalgae NNS\nalgaecide NN\nalgebra NN\nalgebraic JJ\nalgebraically RB\nalginates NNS\nalgorithm NN\nalia FW\nalias NN\nalibi NN\nalibis NNS\nalien JJ\nalienate VB\nalienated VBN\nalienates VBZ\nalienating VBG\nalienation NN\naliens NNS\nalight JJ\nalign VB\naligned VBN\nalignment NN\nalignments NNS\nalike RB\nalimony NN\naliquots NNS\nalive JJ\nalizarin NN\nalkali NNS\nalkaline JJ\nalkalis NNS\nalkaloids NNS\nalky NN\nalkylarysulfonate NN\nalkylbenzenesulfonates NNS\nall DT\nall-America JJ\nall-American JJ\nall-American-boy NN\nall-Copland JJ\nall-Negro JJ\nall-New NNP\nall-Spanish JJ\nall-around JJ\nall-automatic JJ\nall-black JJ\nall-cargo JJ\nall-cash JJ\nall-college NN\nall-consuming JJ\nall-county JJ\nall-day JJ\nall-employee JJ\nall-exclusive JJ\nall-expenses-paid JJ\nall-federal JJ\nall-female JJ\nall-important JJ\nall-in-all RB\nall-inclusive JJ\nall-knowing JJ\nall-lesbian JJ\nall-married JJ\nall-natural JJ\nall-new JJ\nall-news JJ\nall-night JJ\nall-nighters NNS\nall-options JJ\nall-out JJ\nall-over IN\nall-paper JJ\nall-pervading JJ\nall-powerful JJ\nall-purpose JJ\nall-round JJ\nall-something-or-the-other JJ\nall-star JJ\nall-stock JJ\nall-student JJ\nall-terrain JJ\nall-time JJ\nall-too-brief JJ\nall-too-familiar JJ\nall-too-sincere JJ\nall-victorious JJ\nall-weather JJ\nall-white JJ\nall-woman JJ\nallay VB\nallayed VBN\nallaying VBG\nallegation NN\nallegations NNS\nallege VBP\nalleged VBN\nallegedly RB\nalleges VBZ\nallegiance NN\nallegiances NNS\nalleging VBG\nallegoric JJ\nallegorical JJ\nallegory NN\nallegro JJ\nallergic JJ\nallergies NNS\nallergy NN\nalleviate VB\nalleviates VBZ\nalleviating VBG\nalleviation NN\nalley NN\nalleys NNS\nalleyways NNS\nallgedly RB\nalliance NN\nalliances NNS\nallied VBN\nallies NNS\nalligator NN\nalligatored VBN\nalligators NNS\nalliteration NN\nalliterative JJ\nallnight JJ\nallocable JJ\nallocate VB\nallocated VBN\nallocates VBZ\nallocating VBG\nallocation NN\nallocations NNS\nallocator NN\nallot VB\nalloted VBN\nallotment NN\nallotments NNS\nallotted VBN\nallotting VBG\nallout JJ\nallow VB\nallowable JJ\nallowance NN\nallowances NNS\nallowed VBN\nallowing VBG\nallows VBZ\nalloy NN\nalloys NNS\nallrightniks NNS\nalltime NN\nalluded VBD\nalludes VBZ\nalluding VBG\nallure NN\nallurement NN\nalluring JJ\nallusion NN\nallusions NNS\nallusiveness NN\nalluvial JJ\nally NN\nallying VBG\nalma JJ\nalmanac NN\nalmond NN\nalmonds NNS\nalmost RB\nalmost-industry NN\naloes NN\naloft RB\nalone RB\nalone... :\naloneness NN\nalong IN\nalongside IN\naloof JJ\naloofness NN\nalors FW\naloud RB\nalpenglow NN\nalpha JJ\nalpha-beta-gammas NNS\nalphabet NN\nalphabetic JJ\nalphabetical JJ\nalphabetically RB\nalphabetized VBD\nalreadeh RB\nalready RB\nalready-developed JJ\nalready-expensive JJ\nalready-identified JJ\nalready-known JJ\nalready-nervous NN\nalready-reluctant JJ\nalready-shaky JJ\nalready-sizable JJ\nalready-strained JJ\nalready-tense JJ\nalright UH\nalso RB\nalso-ran NN\naltar NN\nalter VB\nalter-ego NN\nalter-parents NNS\nalteration NN\nalterations NNS\naltercation NN\naltered VBN\naltering VBG\nalternate JJ\nalternated VBD\nalternately RB\nalternates VBZ\nalternating VBG\nalternation NN\nalternative NN\nalternative-energy JJ\nalternative-fueled JJ\nalternative-fuels JJ\nalternative-operator NN\nalternative... :\nalternatively RB\nalternatives NNS\nalters VBZ\naltho IN\nalthough IN\naltitude NN\naltitude-azimuth-mounted JJ\naltitudes NNS\nalto NN\naltogether RB\naltruism NN\naltruistic JJ\naltruistically RB\naltruists NNS\nalum NN\nalumina NN\naluminum NN\naluminum-hulled JJ\naluminum-industry NN\naluminum-makers NNS\nalumnae NNS\nalumni NNS\nalumnus NN\nalundum NN\nalveolar NN\nalveoli NNS\nalveolus NN\nalways RB\nalways-present JJ\nam VBP\namahs NNS\namalgam NN\namalgamate VB\namalgamated VBN\namalgamation NN\namalgamations NNS\namanuensis NN\namass VB\namassed VBN\namasses VBZ\namassing NN\namateur NN\namateurish JJ\namateurishness NN\namateurism NN\namateurs NNS\namatory JJ\namaze VB\namazed VBN\namazement NN\namazing JJ\namazingly RB\namazons NNS\nambassador NN\nambassadors NNS\namber JJ\nambiance NN\nambidextrous JJ\nambiguities NNS\nambiguity NN\nambiguous JJ\nambition NN\nambitions NNS\nambitious JJ\nambitiously RB\nambivalence NN\nambivalent JJ\namble VB\nambled VBD\nambling VBG\nambrosial JJ\nambulance NN\nambulatory JJ\nambuscade NN\nambush NN\nambushed VBD\namelioration NN\namen UH\namenable JJ\namend VB\namendatory JJ\namended VBN\namending VBG\namendment NN\namendments NNS\namenities NNS\namethystine JJ\namiable JJ\namicable JJ\namicably RB\namici FW\namicus NN\namid IN\namide NN\namidst IN\namigo FW\namines NNS\namino JJ\namiss JJ\namity NN\nammo NN\nammonia NN\nammoniac JJ\nammonium NN\nammunition NN\namnesty NN\namnesty. NN\namniotic JJ\namok RB\namong IN\namongst IN\namor FW\namoral JJ\namorality NN\namorist NN\namorous JJ\namorphous JJ\namorphously RB\namortization NN\namortize VB\namortized VBN\namortizing JJ\namount NN\namounted VBD\namounting VBG\namounts NNS\namours FW\namp NN\namphetamines NNS\namphibious JJ\namphibology NN\namphitheater NN\namphobiles NNS\nample JJ\namplification NN\namplified VBN\namplifier NN\namplifiers NNS\namplifies VBZ\namplify VB\namplifying VBG\namplitude NN\namply RB\namps NNS\namputated VBN\namputation NN\namputations NNS\namulet NN\namulets NNS\namuse VB\namused VBN\namusedly RB\namusement NN\namusement\\/theme NN\namusements NNS\namusing JJ\namusingly RB\nan DT\nan'advertising DT|NN\nanachronism NN\nanachronisms NNS\nanachronistic JJ\nanachronistically RB\nanaconda NN\nanacondas NNS\nanaerobic JJ\nanaesthesia NN\nanagram NN\nanaleptic JJ\nanalgesic JJ\nanalog NN\nanalogies NNS\nanalogous JJ\nanalogously RB\nanalogue NN\nanalogues NNS\nanalogy NN\nanalysed VBN\nanalyses NNS\nanalysis NN\nanalyst NN\nanalystics NNS\nanalysts NNS\nanalytic JJ\nanalytical JJ\nanalytical-instruments JJ\nanalytically RB\nanalyticity NN\nanalyzable JJ\nanalyze VB\nanalyzed VBN\nanalyzer NN\nanalyzes VBZ\nanalyzing VBG\nanaplasmosis NN\nanaprapath NN\nanarchic JJ\nanarchical JJ\nanarchist NN\nanarchist-adventurers NNS\nanarchy NN\nanastomoses NNS\nanastomosis NN\nanastomotic JJ\nanathema NN\nanatomic JJ\nanatomical JJ\nanatomically RB\nanatomicals NNS\nanatomy NN\nancestor NN\nancestors NNS\nancestral JJ\nancestry NN\nanchor NN\nanchorage NN\nanchorages NNS\nanchored VBN\nanchoring VBG\nanchorite NN\nanchoritism NN\nanchorman NN\nanchormen NNS\nanchors NNS\nanchorwoman NN\nanchovy NN\nancient JJ\nanciently RB\nancients NNS\nancillary JJ\nand CC\nand'boiler NN\nand'divine JJ\nand... :\nand\\ CC\nand\\/or NN\nandrenas NNPS\nanecdotal JJ\nanecdote NN\nanecdotes NNS\nanemated VBN\nanemia NN\nanemias NNS\nanemic JJ\nanemics NNS\nanesthetic NN\nanesthetically RB\nanesthetics NNS\nanesthetized JJ\nanew RB\nangel NN\nangelfish NN\nangelic JJ\nangelica NN\nangels NNS\nanger NN\nangered VBN\nangering VBG\nangers VBZ\nangina NN\nangiotensin NN\nangle NN\nangler NN\nangles NNS\nangling VBG\nangora NN\nangriest JJS\nangrily RB\nangry JJ\nangst NN\nanguish NN\nanguished JJ\nangular JJ\nanhemolyticus NN\nanhydrous JJ\nanhydrously RB\nani JJ\naniline NN\nanimal NN\nanimal-based JJ\nanimal-health NN\nanimal-human NN\nanimal-like JJ\nanimal-protection NN\nanimal-rights NNS\nanimalcare JJ\nanimals NNS\nanimate JJ\nanimated JJ\nanimates VBZ\nanimation NN\nanimism NN\nanimized VBN\nanimosities NNS\nanimosity NN\nanimosity... :\nanion NN\nanionic JJ\nanionics NNS\nanions NNS\nanise NN\naniseikonic JJ\nanisotropy NN\nankle NN\nankle-deep JJ\nankles NNS\nanlayst NN\nannals NNS\nannee FW\nannex NN\nannexation NN\nannexed VBD\nannihilate VB\nannihilation NN\nanniversaries NNS\nanniversary NN\nannnouncement NN\nannointed VBN\nannotated VBN\nannounce VB\nannounced VBD\nannounced. VBN\nannouncement NN\nannouncements NNS\nannouncer NN\nannouncers NNS\nannounces VBZ\nannouncing VBG\nannouncment NN\nannoy VB\nannoyance NN\nannoyances NNS\nannoyed VBN\nannoying JJ\nannoys VBZ\nannual JJ\nannual-income NN\nannualized VBN\nannually RB\nannuities NNS\nannuity NN\nannulled VBD\nannum NN\nannunciated VBN\nanode NN\nanodes NNS\nanoint VB\nanointing VBG\nanomalies NNS\nanomalous JJ\nanomaly NN\nanomic JJ\nanomie FW\nanonymity NN\nanonymous JJ\nanonymously RB\nanorexia NN\nanorthic JJ\nanother DT\nanother... :\nansuh VB\nanswer NN\nanswerable JJ\nanswered VBD\nanswering VBG\nanswers NNS\nant NN\nantacid NN\nantagonised VBN\nantagonism NN\nantagonisms NNS\nantagonist NN\nantagonistic JJ\nantagonists NNS\nantagonize VB\nante NN\nante-bellum FW\nanteater NN\nanteaters NNS\nantebellum JJ\nantecedent NN\nantecedents NNS\nantelope NN\nantenna NN\nantennae NNS\nantennas NNS\nanterior JJ\nanteriors NNS\nanthem NN\nanthems NNS\nanthers NNS\nanthology NN\nanthrax NN\nanthropic JJ\nanthropological JJ\nanthropological-religious JJ\nanthropologist NN\nanthropologists NNS\nanthropology NN\nanthropomorphic JJ\nanti IN\nanti-A NNP\nanti-AIDS JJ\nanti-American JJ\nanti-Americanism NN\nanti-B NNP\nanti-Bork JJ\nanti-Castro JJ\nanti-Catholic JJ\nanti-Catholicism NN\nanti-China JJ\nanti-Christian JJ\nanti-Colmer JJ\nanti-Communism NN\nanti-Communist JJ\nanti-Communists NNPS\nanti-European JJ\nanti-Fascist JJ\nanti-French JJ\nanti-Galileo JJ\nanti-Honecker JJ\nanti-Japanese JJ\nanti-Kabul JJ\nanti-Kennedy JJ\nanti-LDP JJ\nanti-Moscow JJ\nanti-NATO JJ\nanti-Nazi JJ\nanti-Nazis NNPS\nanti-Negro JJ\nanti-Newtonian JJ\nanti-Noriega JJ\nanti-Phnom NNP\nanti-Rh NNP\nanti-Sandinista JJ\nanti-Semites NNS\nanti-Semitic JJ\nanti-Semitism NN\nanti-Somoza JJ\nanti-Sony JJ\nanti-South JJ\nanti-Soviet JJ\nanti-Stalinist JJ\nanti-Turkish JJ\nanti-U.S. JJ\nanti-Western JJ\nanti-Yankee JJ\nanti-abortion JJ\nanti-abortionist NN\nanti-abortionists NNS\nanti-acne NN\nanti-aircraft JJ\nanti-airline NN\nanti-airline-takeover JJ\nanti-alcohol JJ\nanti-androgen JJ\nanti-androgens NNS\nanti-anemia NN\nanti-apartheid JJ\nanti-army JJ\nanti-assignment JJ\nanti-authoritarian JJ\nanti-ballistic-missile JJ\nanti-bike JJ\nanti-business JJ\nanti-cancer JJ\nanti-cartel JJ\nanti-choice JJ\nanti-cholesterol JJ\nanti-cigarette JJ\nanti-clericalism JJ\nanti-clotting JJ\nanti-communist JJ\nanti-competitive JJ\nanti-conservation JJ\nanti-contamination JJ\nanti-convulsive JJ\nanti-crime JJ\nanti-debt JJ\nanti-deer JJ\nanti-defense JJ\nanti-democratic JJ\nanti-depressant JJ\nanti-development JJ\nanti-diabetes JJ\nanti-diarrheal JJ\nanti-dilutive JJ\nanti-discrimination JJ\nanti-discriminatory JJ\nanti-drug JJ\nanti-drug-law NN\nanti-dumping JJ\nanti-epilepsy JJ\nanti-epileptic JJ\nanti-extortion NN\nanti-flag-burning JJ\nanti-foreign JJ\nanti-foreigner NN\nanti-fraud JJ\nanti-freeze JJ\nanti-fungal JJ\nanti-gay JJ\nanti-generic JJ\nanti-government JJ\nanti-growth JJ\nanti-heroes NNS\nanti-homosexual JJ\nanti-hooligan JJ\nanti-human JJ\nanti-hypertensive JJ\nanti-idiotypes NNS\nanti-infective JJ\nanti-infectives NNS\nanti-inflation JJ\nanti-inflationary JJ\nanti-intellectual JJ\nanti-intellectualism JJ\nanti-leak JJ\nanti-liquor JJ\nanti-lobbying JJ\nanti-lobbyist NN\nanti-lock JJ\nanti-management JJ\nanti-market JJ\nanti-men JJ\nanti-militarists NNS\nanti-miscarriage JJ\nanti-missile JJ\nanti-monopoly JJ\nanti-morning-sickness JJ\nanti-nausea JJ\nanti-nuclear JJ\nanti-oil JJ\nanti-opera NN\nanti-organization JJ\nanti-outsider NN\nanti-party JJ\nanti-personality JJ\nanti-pesticide JJ\nanti-plaque JJ\nanti-pocketbook JJ\nanti-polio JJ\nanti-pollution JJ\nanti-price-fixing JJ\nanti-productive JJ\nanti-profiteering JJ\nanti-program JJ\nanti-program-trading JJ\nanti-programmers NNS\nanti-prostitution JJ\nanti-psychotic JJ\nanti-racketeering JJ\nanti-recession JJ\nanti-reformers NNS\nanti-rejection JJ\nanti-rightist JJ\nanti-science JJ\nanti-scientific JJ\nanti-secrecy JJ\nanti-seizure JJ\nanti-semite NN\nanti-shock JJ\nanti-shoplifting JJ\nanti-slavery JJ\nanti-smokers NNS\nanti-smoking JJ\nanti-social JJ\nanti-socialist JJ\nanti-state JJ\nanti-statist NN\nanti-submarine JJ\nanti-switching JJ\nanti-takeover JJ\nanti-tax JJ\nanti-tax-shelter JJ\nanti-terrorism JJ\nanti-toxic JJ\nanti-trust JJ\nanti-ulcer JJ\nanti-union JJ\nanti-viral JJ\nanti-virus JJ\nanti-vivisectionists NNS\nanti-war JJ\nanti-war-related JJ\nanti-white JJ\nanti-wrinkling JJ\nantiCommunist JJ\nantiSony JJ\nantianemia JJ\nantibacterial JJ\nantibiotic NN\nantibiotics NNS\nantibodies NNS\nantibody NN\nantibody-based JJ\nantibody-making JJ\nantibody-producing JJ\nantic JJ\nanticipate VB\nanticipated VBN\nanticipates VBZ\nanticipating VBG\nanticipation NN\nanticipations NNS\nanticipatory JJ\nanticoagulant NN\nanticoagulants NNS\nanticoagulation NN\nanticompetitive JJ\nanticorruption NN\nantics NNS\nanticult NN\nanticus NN\nantidepressant NN\nantidote NN\nantifraud NN\nantifreeze NN\nantifundamentalist JJ\nantigen NN\nantihero NN\nantihistamine NN\nantihistorical JJ\nantilock JJ\nantimaterialism NN\nantimissile JJ\nantimonide NN\nantipathies NNS\nantipathy NN\nantiphonal JJ\nantipodes NNS\nantiquarian JJ\nantiquarians NNS\nantiquated JJ\nantique JJ\nantique-car NN\nantiques NNS\nantiquities NNS\nantiquity NN\nantirealistic JJ\nantiredeposition NN\nantiseptic JJ\nantisera NN\nantiserum NN\nantislavery JJ\nantismoking JJ\nantisocial JJ\nantisubmarine JJ\nantitakeover JJR\nantithesis NN\nantithetical JJ\nantithyroid JJ\nantitrust JJ\nantitrust-law JJ\nantiviral JJ\nantiwar JJ\nants NNS\nantsy JJ\nanvil NN\nanxieties NNS\nanxiety NN\nanxiety-free JJ\nanxiety-released NN\nanxious JJ\nanxiously RB\nany DT\nanybody NN\nanye JJ\nanyhow RB\nanylabel NN\nanymore RB\nanyone NN\nanyplace RB\nanythin NN\nanything NN\nanytime RB\nanyway RB\nanyways UH\nanywhere RB\naorta NN\napace RB\naparently RB\napart RB\napartheid NN\napartment NN\napartment-building NN\napartments NNS\napathetic JJ\napathy NN\nape NN\naperture NN\napex NN\naphorisms NNS\napiece RB\naping VBG\naplenty JJ\naplomb NN\napocalypse NN\napocalyptic JJ\napocalyptics NNS\napocryphal JJ\napogee NN\napologetic JJ\napologetically RB\napologies NNS\napologist NN\napologists NNS\napologize VB\napologized VBD\napologizes VBZ\napologizing VBG\napology NN\napoplectic JJ\napostates NNS\napostle NN\napostles NNS\napostolic JJ\napothecary NN\napotheosis NN\napp NN\nappall VBP\nappalled VBN\nappalling JJ\nappallingly RB\nappalls VBZ\nappanage NN\napparat NN\napparatchiks FW\napparatus NN\napparel NN\napparel-maker NN\nappareled VBN\napparency NN\napparent JJ\napparently RB\napparition NN\napparitions NNS\nappartus NN\nappeal NN\nappealed VBD\nappealing JJ\nappeals NNS\nappeals-court NN\nappeals. NNS\nappear VB\nappearance NN\nappearances NNS\nappeared VBD\nappearin VBG\nappearing VBG\nappears VBZ\nappease VB\nappeased VBN\nappeasement NN\nappeasing NN\nappellant FW\nappellate JJ\nappellate-court NN\nappellate-litigation NN|JJ\nappend VB\nappendages NNS\nappended VBN\nappestat NN\nappetite NN\nappetites NNS\nappetizer NN\nappetizing JJ\napplaud VBP\napplauded VBD\napplauding VBG\napplauds VBZ\napplause NN\napplause-happy JJ\napple NN\napple-flavored JJ\napple-industry NN\napple-pie NN\napple-tree NN\napplejack NN\napplelike JJ\napples NNS\nappliance NN\nappliance-controls NN\nappliances NNS\napplicability NN\napplicable JJ\napplicant NN\napplicants NNS\napplication NN\napplications NNS\napplicator NN\napplicators NNS\napplied VBN\napplies VBZ\nappliques NNS\napply VB\napplying VBG\nappoint VB\nappointed VBN\nappointee NN\nappointees NNS\nappointing VBG\nappointment NN\nappointments NNS\nappoints VBZ\napportion VB\napportioned VBN\napportionment NN\napportionments NNS\nappraisal NN\nappraisals NNS\nappraise VB\nappraised VBN\nappraiser NN\nappraisers NNS\nappraising VBG\nappraisingly RB\nappreciable JJ\nappreciably RB\nappreciate VB\nappreciated VBN\nappreciates VBZ\nappreciating VBG\nappreciation NN\nappreciations NNS\nappreciative JJ\nappreciatively RB\napprehend VB\napprehended VBN\napprehending VBG\napprehension NN\napprehensions NNS\napprehensive JJ\napprehensively RB\napprentice NN\napprenticed VBN\napprentices NNS\napprenticeship NN\napprised VBN\napproach NN\napproachable JJ\napproached VBD\napproaches NNS\napproaching VBG\nappropriate JJ\nappropriated VBN\nappropriately RB\nappropriateness NN\nappropriates VBZ\nappropriating VBG\nappropriation NN\nappropriations NNS\nappropriators NNS\napproval NN\napprovals NNS\napprove VB\napproved VBD\napproves VBZ\napproving VBG\napprovingly RB\napproximate JJ\napproximated VBN\napproximately RB\napproximates VBZ\napproximation NN\napproximations NNS\napricot NN\napril NNP\napron NN\naprons NNS\napses NNS\napt JJ\naptitude NN\naptitudes NNS\naptly RB\naptness NN\naqua-lung NN\naquam FW\naquamarine NN\naquarium NN\naquatic JJ\naqueducts NNS\naqueous JJ\naquifer NN\naquifers NNS\naquisition NN\naquisitions NNS\narabesque NN\narabic JJ\narable JJ\narak FW\naramid NN\narb NN\narbiter NN\narbitrage NN\narbitrage-related JJ\narbitrage`` ``\narbitrager NN\narbitragers NNS\narbitrageur NN\narbitrageurs NNS\narbitraging VBG\narbitrarily RB\narbitrary JJ\narbitrate VB\narbitrated VBN\narbitrates VBZ\narbitrating VBG\narbitration NN\narbitration-eligibility NN\narbitration. NN\narbitrator NN\narbitrators NNS\narboreal JJ\narborists NNS\narbs NNS\narc NN\narcade NN\narcaded JJ\narcades NNS\narcane JJ\narch NN\narch-enemy NN\narch-heretic NN\narch-opponent NN\narch-rival JJ\narchaeological JJ\narchaeologist NN\narchaeologists NNS\narchaeology NN\narchaic JJ\narchaism NN\narchaized VBD\narchangels NNS\narchbishop NN\narchdiocese NN\narched JJ\narchenemy NN\narcheological JJ\narchery NN\narches NNS\narchetype NN\narchetypes NNS\narchetypical JJ\narchfool NN\narching VBG\narchipelago NN\narchitect NN\narchitect-developer NN\narchitectonic JJ\narchitects NNS\narchitectural JJ\narchitecturally RB\narchitecture NN\narchitectures NNS\narchival JJ\narchive NN\narchives NNS\narchivist NN\narchness NN\narchrival JJ\narchtype NN\narclike JJ\narcs NNS\narctic JJ\narcus NN\nardent JJ\nardently RB\nardor NN\narduous JJ\nare VBP\nare... :\narea NN\narea-code JJ\narea-sales JJ\narea-wide JJ\nareas NNS\nareaways NNS\naren't VB\narena NN\narenas NNS\nareosol NN\nargon NN\nargot NN\nargriculture NN\narguably RB\nargue VBP\nargued VBD\nargues VBZ\nargues... :\narguing VBG\nargument NN\nargumentation NN\narguments NNS\naria NN\narias NNS\narid JJ\naridity NN\narise VB\narisen VBN\narises VBZ\narising VBG\naristocracy NN\naristocrat NN\naristocratic JJ\naristocratically RB\naristocrats NNS\narithmetic NN\narithmetical JJ\narithmetized VBN\narkylbenzene NN\narm NN\narm-elevation NN\narm-levitation NN\narm-rise NN\narm-twisting NNP\narmadillo NN\narmadillos NNS\narmament NN\narmaments NNS\narmata NNP\narmchair NN\narmchairs NNS\narmed VBN\narmful NN\narmhole NN\narmies NNS\narming NN\narmistice NN\narmload NN\narmoire NN\narmor NN\narmored JJ\narmored-vehicle JJ\narmory NN\narmpit NN\narmpits NNS\narms NNS\narms-control NN\narms-export JJ\narms-kickback NN\narms-making NN\narms-production NN\narms-reduction NN\narms-sales JJ\narmy NN\narnica NN\naroma NN\naromas NNS\naromatic JJ\naromatick JJ\naromatics NNS\narose VBD\naround IN\naround-the-clock JJ\naround-the-world JJ\naround... :\narousal JJ\narouse VB\naroused VBN\narouses VBZ\narousing VBG\narpeggios NNS\narraigned VBD\narraigning VBG\narrange VB\narranged VBN\narrangement NN\narrangements NNS\narrangers NNS\narranges VBZ\narranging VBG\narray NN\narrayed VBN\narrays NNS\narrearage NN\narrearages NNS\narrears NNS\narrest NN\narrested VBN\narresting VBG\narrests NNS\narrival NN\narrivals NNS\narrive VB\narrived VBD\narrives VBZ\narriving VBG\narrogance NN\narrogant JJ\narrogantly RB\narrogate VB\narrogating VBG\narrow NN\narrowed JJ\narrowheads NNS\narrows NNS\narroyo NN\narsenal NN\narsenals NNS\narsenic NN\narsenide NN\narside NN\narsines NNS\narson NN\narsonist NN\nart NN\nart-acquisition JJ\nart-auction NN\nart-dealing JJ\nart-filled JJ\nart-historian NN\nart-historical JJ\nart-nouveau JJ\nart-shop NN\nart-world NN\nartemisia NN\narterial JJ\narteries NNS\narteriolar JJ\narteriolar-pulmonary JJ\narterioles NNS\narteriolosclerosis NN\narteriosclerosis NN\nartery NN\nartery-clogging NN\nartery-pulmonary NN\nartful JJ\nartfully RB\nartfulness NN\narthritic JJ\narthritis NN\nartichoke NN\narticle NN\narticles NNS\narticulate JJ\narticulated VBN\narticulation NN\narticulations NNS\nartifact NN\nartifacts NNS\nartifical JJ\nartifically RB\nartifice NN\nartificial JJ\nartificial-heart JJ\nartificiality NN\nartificially RB\nartillerist NN\nartillerists NNS\nartillery NN\nartisan NN\nartisans NNS\nartist NN\nartist-author NN\nartist-nature NN\nartistas NNS\nartistic JJ\nartistically RB\nartistry NN\nartists NNS\nartless JJ\narts NNS\nartsy JJ\nartwork NN\nartworks NNS\narty JJ\naryl NN\narylesterase NN\narylesterases NNS\nas IN\nas'housing VBG\nas-Sa'dawi NNP\nas-it-were RB\nas-yet RB\nasbestos NN\nasbestos-abatement JJ\nasbestos-containing JJ\nasbestos-disease NN\nasbestos-related JJ\nasbestos-removal NN\nasbestosis NN\nascend VB\nascendancy NN\nascended VBD\nascendency NN\nascending VBG\nascension NN\nascent NN\nascents NNS\nascertain VB\nascertainable JJ\nascertained VBN\nascetic NN\nasceticism NN\nascetics NNS\nascribe VBP\nascribed VBN\nascribes VBZ\naseptic JJ\naseptically RB\nash NN\nash-blonde JJ\nasham JJ\nashamed JJ\nashare NN\nashen JJ\nashes NNS\nashore RB\nashtrays NNS\naside RB\nasides NNS\nasinine JJ\nask VB\naskance RB\nasked VBD\nasked... :\naskew RB\naskin VBG\nasking VBG\nasks VBZ\nasleep RB\nasocial JJ\nasparagus NN\naspect NN\naspects NNS\naspen NN\naspens NNS\naspersion NN\naspersions NNS\nasphalt NN\nasphalt-hard JJ\nasphyxia NN\naspirant NN\naspirants NNS\naspiration NN\naspirational JJ\naspirations NNS\naspire VB\naspired VBD\naspires VBZ\naspirin NN\naspiring JJ\nass NN\nassai FW\nassail VB\nassailant NN\nassailants NNS\nassailed VBN\nassailing VBG\nassails VBZ\nassassin NN\nassassinate VB\nassassinated VBN\nassassinating VBG\nassassination NN\nassassinations NNS\nassassins NNS\nassault NN\nassault-weapons JJ\nassaulted VBD\nassaulting VBG\nassaults NNS\nassay NN\nassayed VBN\nassaying VBG\nassays NNS\nasseet NN\nassemblage NN\nassemblages NNS\nassemble VB\nassembled VBN\nassembles VBZ\nassemblies NNS\nassembling VBG\nassembly NN\nassembly-line NN\nassent NN\nassented VBD\nassert VB\nasserted VBD\nassertedly RB\nasserting VBG\nassertion NN\nassertions NNS\nassertive JJ\nassertiveness NN\nasserts VBZ\nasses NNS\nassesment NN\nassess VB\nassessed VBN\nassesses VBZ\nassessing VBG\nassessment NN\nassessments NNS\nassessor NN\nassessories NNS\nassessors NNS\nasset NN\nasset-allocation JJ\nasset-backed JJ\nasset-based JJ\nasset-forfeiture NN\nasset-growth NN\nasset-liability JJ\nasset-management NN\nasset-quality JJ\nasset-rich JJ\nasset-sale JJ\nasset-stripping JJ\nasset-trading NN\nasset-valuation NN\nassets NNS\nassets* NNS\nassiduity NN\nassiduously RB\nassign VB\nassigned VBN\nassigned-risk NN\nassignee NN\nassigning VBG\nassignment NN\nassignments NNS\nassigns VBZ\nassimilable JJ\nassimilate VB\nassimilated VBN\nassimilating VBG\nassimilation NN\nassist VB\nassistance NN\nassistant NN\nassistants NNS\nassisted VBN\nassisted-living JJ\nassisting VBG\nassists VBZ\nassociaitons NNS\nassociate JJ\nassociate-label JJ\nassociated VBN\nassociates NNS\nassociating VBG\nassociation NN\nassociation... :\nassociations NNS\nassociatively RB\nassorted JJ\nassortment NN\nassortments NNS\nassuage VB\nassuaged VBN\nassuaging VBG\nassume VB\nassumed VBN\nassumes VBZ\nassuming VBG\nassumption NN\nassumptions NNS\nassurance NN\nassurances NNS\nassure VB\nassured VBN\nassuredly RB\nassures VBZ\nassuring VBG\nast JJ\nasterisks NNS\nasteroid JJ\nasteroids NNS\nasters NNS\nasthma NN\nastigmatism NN\nastir JJ\nastonished VBN\nastonishing JJ\nastonishingly RB\nastonishment NN\nastound VB\nastounded VBN\nastounding JJ\nastoundingly RB\nastounds VBZ\nastral JJ\nastray RB\nastride IN\nastringency NN\nastringent JJ\nastrological JJ\nastrology NN\nastronaut NN\nastronauts NNS\nastronomer NN\nastronomical JJ\nastronomically RB\nastronomy NN\nastrophysicist NN\nastrophysics NNS\nastute JJ\nastuteness NN\nasunder RB\nasw NN\nasylum NN\nasymmetric JJ\nasymmetrically RB\nasymmetry NN\nasymptomatic JJ\nasymptotic JJ\nasymptotically RB\nasynchrony NN\nat IN\nat-bat NN\nat-bats NNS\nat-home JJ\nat-large JJ\nat-market JJ\nat-risk JJ\natCrcial NNP\natavistic JJ\nataxia NN\nate VBD\natelier NN\natheism NN\natheist JJ\natheistic JJ\natheists NNS\natheromatous JJ\nathlete NN\nathlete-payoff JJ\nathlete-s NN\nathlete-student NN\nathletes NNS\nathletic JJ\nathletic-shoe JJ\nathletically RB\nathleticism NN\nathletics NNS\natm NN\natmosphere NN\natmospheres NNS\natmospheric JJ\natolls NNS\natom NN\natom-like JJ\natom-smashing NN\natomic JJ\natomisation NN\natoms NNS\natonal JJ\natonally RB\natone VB\natonement NN\natop IN\natrium NN\natrocious JJ\natrociously RB\natrocities NNS\natrocity NN\natrophic JJ\natrophied VBN\natrophy NN\natrun JJ\natt IN\nattach VB\nattache NN\nattached VBN\nattaches VBZ\nattaching VBG\nattachment NN\nattachments NNS\nattack NN\nattacked VBN\nattacker NN\nattackers NNS\nattacking VBG\nattacks NNS\nattacks. NN\nattactive JJ\nattain VB\nattainable JJ\nattained VBD\nattaining VBG\nattainment NN\nattainments NNS\nattains VBZ\nattarcks NNS\nattempt NN\nattempted VBD\nattempting VBG\nattempts NNS\nattend VB\nattendance NN\nattendant NN\nattendants NNS\nattended VBD\nattendee NN\nattendees NNS\nattendent NN\nattendents NNS\nattending VBG\nattends VBZ\nattention NN\nattention-grabbing JJ\nattention... :\nattentions NNS\nattentive JJ\nattentively RB\nattest VB\nattested VBN\nattesting VBG\nattests VBZ\nattic NN\nattics NNS\nattire NN\nattired JJ\nattis NN\nattitude NN\nattitudes NNS\nattitudinizing NN\nattorney NN\nattorney-client JJ\nattorney-consultant NN\nattorney-disciplinary JJ\nattorneys NNS\nattract VB\nattractant NN\nattracted VBN\nattracting VBG\nattraction NN\nattractions NNS\nattractive JJ\nattractively RB\nattractiveness NN\nattracts VBZ\nattributable JJ\nattribute VBP\nattributed VBD\nattributes NNS\nattributing VBG\nattributions NNS\nattrition NN\nattuned VBN\natune NN\natypical JJ\nau FW\nauburn JJ\nauction NN\nauction-fee JJ\nauction-house NN\nauctioned VBN\nauctioneer NN\nauctioning NN\nauctions NNS\naudacious JJ\naudacity NN\naudible JJ\naudibly RB\naudience NN\naudience-friendly JJ\naudiences NNS\naudio JJ\naudio-specialty NN\naudio-visual JJ\naudio\\/visual JJ\naudiocassettes NNS\naudiophiles NNS\naudiotex NN\naudiovisual JJ\naudit NN\naudited VBN\nauditing NN\naudition NN\nauditioning VBG\nauditions NNS\nauditor NN\nauditor-general NN\nauditorium NN\nauditors NNS\naudits NN\naudivi FW\nauf FW\naugen FW\naugment VB\naugmented VBN\naugmenting VBG\naugur VBP\naugurs VBZ\naugust JJ\naujourd'hui FW\naunt NN\naunts NNS\naura NN\naural JJ\naurally RB\naureus NN\nauspices NNS\nauspicious JJ\nauspiciously RB\naustere JJ\nausterely RB\nausterity NN\nauthentic JJ\nauthentically RB\nauthenticate VBP\nauthentication NN\nauthentications NNS\nauthenticator NN\nauthenticity NN\nauthor NN\nauthored VBN\nauthoring VBG\nauthoritarian JJ\nauthoritarianism NN\nauthoritative JJ\nauthoritatively RB\nauthorities NNS\nauthority NN\nauthorization NN\nauthorizations NNS\nauthorize VB\nauthorized VBN\nauthorizes VBZ\nauthorizing VBG\nauthors NNS\nauthorship NN\nautions NNS\nautism NN\nautistic JJ\nauto NN\nauto-assembly NN\nauto-buying NN\nauto-dealer NN\nauto-emission NN\nauto-emissions NNS\nauto-financing NN\nauto-immune JJ\nauto-industry NN\nauto-insurance NN\nauto-limitation NN\nauto-loaders NNS\nauto-loan JJ\nauto-maker NN\nauto-making NN\nauto-market NN\nauto-obscuria NN\nauto-parts JJ\nauto-repair JJ\nauto-safety JJ\nauto-sales NNS\nauto-strop JJ\nauto\\/homeowners NNS\nautobiographic JJ\nautobiographical JJ\nautobiography NN\nautoclave NN\nautocollimator NN\nautocracies NNS\nautocracy NN\nautocrat NN\nautocratic JJ\nautocrats NNS\nautofluorescence NN\nautograph NN\nautographed VBN\nautographer NN\nautographs NNS\nautoimmune JJ\nautoloader NN\nautomaker NN\nautomakers NNS\nautomate VB\nautomated VBN\nautomated-pit-trading NN\nautomated-quotation NN\nautomated-teller JJ\nautomated-teller-machine JJ\nautomated-trading NN\nautomates VBZ\nautomatic JJ\nautomatically RB\nautomating VBG\nautomation NN\nautomaton NN\nautomobile NN\nautomobile-manufacturing JJ\nautomobile-parts JJ\nautomobile-tire JJ\nautomobiles NNS\nautomotive JJ\nautomotive-emissions-testing JJ\nautomotive-industry NN\nautomotive-lighting JJ\nautomotive-parts JJ\nautomotive-product NN\nautonavigator NN\nautonomic JJ\nautonomic-somatic JJ\nautonomous JJ\nautonomously RB\nautonomy NN\nautopsied VBN\nautopsies NNS\nautopsy NN\nautos NNS\nautumn NN\nautumn-touched JJ\nautumnal JJ\nautumns NNS\naux FW\nauxiliaries NNS\nauxiliary JJ\navail NN\navailabilities NNS\navailability NN\navailable JJ\navailed VBD\navailing VBG\navalanche NN\navaliable JJ\navant FW\navant-garde JJ\navarice NN\navaricious JJ\navatar NN\navec NNP\navenge VB\navenger NN\navenging JJ\navenue NN\navenues NNS\naverage JJ\naveraged VBD\naverages NNS\naveraging VBG\naverred VBD\naverse JJ\naversion NN\navert VB\naverted VBN\naverting VBG\naverts VBZ\navian JJ\naviary NN\naviation NN\naviation-services NNS\naviator NN\naviators NNS\navid JJ\navidity NN\navidly RB\navionics NNS\navions FW\navocado NN\navocados NNS\navocation NN\navoid VB\navoidable JJ\navoidance NN\navoided VBN\navoiding VBG\navoids VBZ\navowed JJ\navowedly RB\navuncular JJ\naw UH\nawait VB\nawaited VBD\nawaiting VBG\nawaits VBZ\nawake JJ\nawaken VB\nawakened VBN\nawakening VBG\nawakens VBZ\naward NN\naward-winning JJ\nawarded VBN\nawarding VBG\nawards NNS\naware JJ\nawareness NN\nawash JJ\naway RB\naway-from-home JJ\nawaye RB\nawe NN\nawe-inspiring JJ\nawed VBN\nawes VBZ\nawesome JJ\nawful JJ\nawfully RB\nawfulness NN\nawhile RB\nawkward JJ\nawkwardly RB\nawkwardness NN\nawnings NNS\nawoke VBD\nawry RB\nax NN\naxe NN\naxes NNS\naxial JJ\naxially RB\naxiological JJ\naxiom NN\naxiomatic JJ\naxioms NNS\naxis NN\naxle NN\naxle-breaking JJ\naxles NNS\naya NN\nayatollah NN\naye RB\nayes NNS\nayni NNS\nazalea NN\nazaleas NNS\nazure JJ\nb NN\nb-5,196,232 CD\nb-As IN\nb-Based VBN\nb-Current JJ\nb-Includes VBZ\nb-Percent NN\nb-Week NN\nb-day NN\nb-plane NN\nb-reflects VBZ\nb/c IN\nba-a-a UH\nbabbino FW\nbabbiting NN\nbabble NN\nbabbled VBD\nbabel NN\nbabes NNS\nbabies NNS\nbaboon NN\nbaboons NNS\nbaby NN\nbaby-boomers NNS\nbaby-faced JJ\nbaby-food JJ\nbaby-products JJ\nbaby-sitter NN\nbabyhood NN\nbaccalaureate NN\nbachelor NN\nbachelor-type JJ\nbachelors NNS\nbaci NNS\nback RB\nback-alley JJ\nback-dating VBG\nback-disability NN\nback-door JJ\nback-end JJ\nback-issue JJ\nback-lighted JJ\nback-of-the-envelope JJ\nback-office NN\nback-offices NNS\nback-on-terra-firma JJ\nback-pain NN\nback-pay NN\nback-room NN\nback-slapping JJ\nback-to-back JJ\nback-to-school JJ\nback-up NN\nback-ups NNS\nback-yard JJ\nback... :\nbackbeat NN\nbackbench JJ\nbackbend NN\nbackbends NNS\nbackbone NN\nbackdated VBD\nbackdoor JJ\nbackdrop NN\nbacked VBN\nbacked-up JJ\nbacker NN\nbackers NNS\nbackfield NN\nbackfire VB\nbackfired VBD\nbackfires VBZ\nbackfiring VBG\nbackflips VBZ\nbackground NN\nbackgrounds NNS\nbackhand NN\nbackhanded JJ\nbackhoe NN\nbackhome NN\nbacking VBG\nbacklash NN\nbacklit JJ\nbacklog NN\nbacklogs NNS\nbacklots NNS\nbackpack NN\nbackpackers NNS\nbackpacks NNS\nbackpedal VB\nbackpedaling VBG\nbackroom NN\nbackrooms NNS\nbacks NNS\nbackside NN\nbacksides NNS\nbackslapping VBG\nbackstage RB\nbackstitch NN\nbackstop NN\nbacktracking NN\nbackup NN\nbackups NNS\nbackward RB\nbackwardness NN\nbackwards RB\nbackwater NN\nbackwoods NNS\nbackwoods-and-sand-hill JJ\nbackyard NN\nbackyards NNS\nbacon NN\nbacteria NNS\nbacteria-based JJ\nbacteria-contaminated JJ\nbacteria-free JJ\nbacterial JJ\nbacterium NN\nbad JJ\nbad-cop JJ\nbad-debt JJ\nbad-expectations JJ\nbad-fitting JJ\nbad-law NN\nbad-neighbor JJ\nbad-news JJ\nbad-risk JJ\nbad-smelling JJ\nbaddebt JJ\nbade VBD\nbadge NN\nbadge-toter NN\nbadgered VBD\nbadgering VBG\nbadges NNS\nbadinage NN\nbadly RB\nbadly-needed JJ\nbadmen NNS\nbadminton NN\nbadness NN\nbads NNS\nbaffle VB\nbaffled VBN\nbaffling JJ\nbag NN\nbag'em NN\nbagel NN\nbagels NNS\nbaggage NN\nbagged VBD\nbaggy JJ\nbagpipe NN\nbags NNS\nbaguette FW\nbail VB\nbail-jumping NN\nbailed VBD\nbailiff NN\nbailing VBG\nbailout NN\nbailouts NNS\nbait NN\nbaited VBN\nbake JJ\nbake-offs NNS\nbake-oven NN\nbaked JJ\nbaker NN\nbakeries NNS\nbakers NNS\nbakery NN\nbakery-mix JJ\nbakes VBZ\nbakeware NN\nbaking NN\nbaklava NN\nbaksheesh NN\nbalance NN\nbalance-of-payments NNS\nbalance-sheet NN\nbalance-wise JJ\nbalanced JJ\nbalanced-budget JJ\nbalances NNS\nbalancing NN\nbalconies NNS\nbalcony NN\nbald JJ\nbald-faced JJ\nbalding JJ\nbaldish JJ\nbaldness NN\nbale NN\nbaleful JJ\nbales NNS\nbalk VB\nbalk. VBP\nbalkanized JJ\nbalked VBD\nbalkiness NN\nbalking VBG\nbalks VBZ\nball NN\nball-bearing NN\nball-carriers NNS\nball-hawking JJ\nballad NN\nballads NNS\nballards NNS\nballast NN\nballed VBN\nballerina NN\nballerinas NNS\nballet NN\nballetic JJ\nballetomane NN\nballets NNS\nballfields NNS\nballgowns NNS\nballing VBG\nballistic JJ\nballistics NNS\nballoon NN\nballooned VBN\nballooning NN\nballoonists NNS\nballoons NNS\nballot NN\nballot-burning JJ\nballoting NN\nballots NNS\nballpark NN\nballparks NNS\nballplayer NN\nballplayers NNS\nballroom NN\nballs NNS\nballyhoo NN\nballyhooed VBN\nballyhooey NN\nbalm NN\nbalm-of-Gilead NN\nbalmy JJ\nbaloney NN\nbalsams NNS\nbalustrade NN\nbam UH\nbambino NN\nbamboo NN\nbamboozled VBN\nban NN\nbanal JJ\nbanalities NNS\nbanalization NN\nbanana NN\nbanana-exporting JJ\nbananas NNS\nband NN\nband-wagon JJ\nbandage NN\nbandaged VBN\nbandages NNS\nbanded VBN\nbandied VBN\nbanding VBG\nbandit NN\nbanditos NNS\nbandits NNS\nbandoleers NNS\nbands NNS\nbandstand NN\nbandwagon NN\nbandwidth NN\nbane NN\nbaneful JJ\nbang NN\nbang-sashes NNS\nbanged VBD\nbanging VBG\nbangish JJ\nbangs NNS\nbanish VB\nbanished VBN\nbanishes VBZ\nbanishing VBG\nbanishment NN\nbanister NN\nbanisters NNS\nbanjo NN\nbank NN\nbank-affiliated JJ\nbank-backed JJ\nbank-baiting JJ\nbank-branch JJ\nbank-credit NN\nbank-debt NN\nbank-director NN\nbank-embezzlement JJ\nbank-fraud NN\nbank-holding JJ\nbank-looting JJ\nbank-owned JJ\nbank-sponsored JJ\nbank-teller NN\nbanked VBD\nbanker NN\nbanker-editor NN\nbankers NNS\nbankholding VBG\nbanking NN\nbanking-related JJ\nbankroll VB\nbankrolled VBD\nbankrolling VBG\nbankrupcy NN\nbankrupt JJ\nbankruptcies NNS\nbankruptcy NN\nbankruptcy-court NN\nbankruptcy-law NN\nbankruptcy-proceedings NNS\nbankruptcy-reorganization NN\nbankruptcylaw NN\nbankrupts VBZ\nbankrupty-law NN\nbanks NNS\nbanned VBN\nbanner NN\nbanners NNS\nbanning VBG\nbannnnnng VB\nbanquet NN\nbanquet-hall NN\nbanquetings NNS\nbanquets NNS\nbans NNS\nbanshee NN\nbanshees NNS\nbanter NN\nbantered VBN\nbantering VBG\nbaptism NN\nbaptismal JJ\nbaptisms NNS\nbaptistery NN\nbaptized VBN\nbar NN\nbar'l NN\nbar-buddy NN\nbar-code JJ\nbar-staged JJ\nbarb NN\nbarbarian NN\nbarbarians NNS\nbarbaric JJ\nbarbarisms NNS\nbarbarous JJ\nbarbecue NN\nbarbecued VBN\nbarbecues NNS\nbarbed JJ\nbarbed-wire JJ\nbarbell NN\nbarbequed JJ\nbarber NN\nbarbers NNS\nbarbital NN\nbarbiturate NN\nbarbs NNS\nbard NN\nbards NNS\nbare JJ\nbare-armed JJ\nbare-bones JJ\nbare-footed JJ\nbared VBD\nbarefoot RB\nbarefooted JJ\nbarely RB\nbarest JJS\nbarflies NNS\nbargain NN\nbargain-basement JJ\nbargain-buying JJ\nbargain-hunt VB\nbargain-hunters NNS\nbargain-hunting NN\nbargain-priced JJ\nbargained VBD\nbargaining NN\nbargaining-chip NN\nbargains NNS\nbarge NN\nbarged VBN\nbargelike JJ\nbargen VBP\nbarges NNS\nbarging VBG\nbaring VBG\nbaritone NN\nbarium NN\nbark NN\nbark-nibbling JJ\nbarked VBD\nbarkeep NN\nbarking VBG\nbarks VBZ\nbarley NN\nbarn NN\nbarn-burner NN\nbarnacles NNS\nbarns NNS\nbarnsful NN\nbarnstormer NN\nbarnyard NN\nbarnyards NNS\nbarometer NN\nbarometers NNS\nbarometric JJ\nbaron NN\nbaroness NN\nbaronial JJ\nbarons NNS\nbarony NN\nbaroque JJ\nbaroreceptor NN\nbarrack NN\nbarracks NN\nbarrage NN\nbarred VBN\nbarrel NN\nbarrel-a-day JJ\nbarrel-chested JJ\nbarrel-per-day JJ\nbarrel-vaulted JJ\nbarrel-wide JJ\nbarreling VBG\nbarrels NNS\nbarrels-a-day JJ\nbarren JJ\nbarricade NN\nbarricades NNS\nbarrier NN\nbarrier-free JJ\nbarrier-island NN\nbarriers NNS\nbarring VBG\nbarrio NN\nbarrister NN\nbarristers NNS\nbarroom NN\nbarrow NN\nbars NNS\nbartender NN\nbartenders NNS\nbarter NN\nbartered VBN\nbartering NN\nbas-relief NN\nbas-reliefs NNS\nbascially RB\nbase NN\nbase-metal NN\nbase-metals NNS\nbase-price NN\nbase-rate JJ\nbase-runner NN\nbase-stealing JJ\nbase-wage JJ\nbaseball NN\nbaseball-card JJ\nbaseball-loving JJ\nbaseball-watching JJ\nbaseballight NN\nbaseballs NNS\nbased VBN\nbased-CAE JJ|NP\nbased. VBN\nbaseless JJ\nbaseline NN\nbaseman NN\nbasement NN\nbasements NNS\nbaser JJR\nbases NNS\nbash NN\nbashed VBD\nbasher NN\nbashes NNS\nbashful JJ\nbashing JJ\nbasic JJ\nbasic-cable JJ\nbasically RB\nbasics NNS\nbasil NN\nbasileis NNS\nbasin NN\nbasing VBG\nbasins NNS\nbasis NN\nbasis-point NN\nbasked VBD\nbasket NN\nbasketball NN\nbasketball-cutback NN\nbasketball-playing NN\nbaskets NNS\nbasking VBG\nbasophilic JJ\nbass NN\nbasses NNS\nbassinet NN\nbassist NN\nbasso NN\nbassoon NN\nbastard NN\nbastards NNS\nbasting NN\nbastion NN\nbastions NNS\nbat NN\nbat-roost JJ\nbatch NN\nbatches NNS\nbateau JJ\nbated JJ\nbath NN\nbath-supplies NNS\nbathe VB\nbathed VBN\nbathers NNS\nbathing NN\nbathos NN\nbathrobe NN\nbathrobes NNS\nbathroom NN\nbathrooms NNS\nbaths NNS\nbathtub NN\nbathtubs NNS\nbathwater NN\nbatmobile NN\nbaton NN\nbats NNS\nbatsman NN\nbattalion NN\nbattalions NNS\nbatted VBD\nbatten NN\nbattens NNS\nbatter NN\nbattered VBN\nbatterie NN\nbatteries NNS\nbattering VBG\nbatters NNS\nbattery NN\nbattery-driven JJ\nbattery-operated JJ\nbattery-powered JJ\nbatting VBG\nbattle NN\nbattle-ax NN\nbattle-cries NN\nbattle-cry NN\nbattle-shattered JJ\nbattled VBD\nbattlefield NN\nbattlefield-electronic JJ\nbattlefields NNS\nbattlefront NN\nbattleground NN\nbattlegrounds NNS\nbattlegroups NNS\nbattlements NNS\nbattles NNS\nbattling VBG\nbatwings NNS\nbauble NN\nbaubles NNS\nbawdy JJ\nbawh NN\nbawhs NNS\nbawled VBD\nbawling VBG\nbay NN\nbayed VBD\nbaying NN\nbayleefe NN\nbayly NN\nbayonet NN\nbayonets NNS\nbays NNS\nbazaar NN\nbazaars NNS\nbc IN\nbd NNS\nbe VB\nbe'greenlined VBN\nbe'somewhat VB\nbe'your NN\nbe-that VB\nbe-thonged JJ\nbe... :\nbe.... :\nbeach NN\nbeach-drift NN\nbeach-head NN\nbeach-house NN\nbeach-party NN\nbeached JJ\nbeaches NNS\nbeachfront NN\nbeachhead NN\nbeaching VBG\nbeacon NN\nbead-like JJ\nbeaded VBN\nbeadle NN\nbeads NNS\nbeadsman NN\nbeadwork NN\nbeady JJ\nbeak NN\nbeaker NN\nbeakers NNS\nbeam NN\nbeamed VBN\nbeaming VBG\nbeams NNS\nbean NN\nbean-counting NN\nbeanballs NNS\nbeans NNS\nbeanstalk NN\nbear VB\nbear-like JJ\nbear-market NN\nbearable JJ\nbeard NN\nbearded JJ\nbeardless JJ\nbeardown JJ\nbeards NNS\nbearer NN\nbearing VBG\nbearings NNS\nbearish JJ\nbearishly RB\nbearishness NN\nbears VBZ\nbeast NN\nbeasties NNS\nbeastly JJ\nbeasts NNS\nbeat VB\nbeat-up JJ\nbeaten VBN\nbeatific JJ\nbeatification NN\nbeating VBG\nbeatings NNS\nbeatnik NN\nbeatniks NNS\nbeats VBZ\nbeau NN\nbeauteous JJ\nbeauticians NNS\nbeauties NNS\nbeautiful JJ\nbeautifully RB\nbeautifully-built JJ\nbeautifully-tapered JJ\nbeautify VBP\nbeautifying VBG\nbeauty NN\nbeauty-care JJ\nbeauty-idiom NN\nbeaver NN\nbeavered VBD\nbeavers NNS\nbeavertail NN\nbebop NN\nbecalmed JJ\nbecame VBD\nbecase IN\nbecause IN\nbeckon VBP\nbeckoned VBD\nbeckoning VBG\nbeckons VBZ\nbecome VB\nbecomed VBN\nbecomes VBZ\nbecometh VBZ\nbecomin VBG\nbecoming VBG\nbed NN\nbed-and-breakfast JJ\nbed-hopped VBD\nbed-liner NN\nbed-time NN\nbed-type JJ\nbedazzled VBN\nbedazzlement NN\nbedded VBN\nbedding NN\nbedevil VB\nbedeviled VBN\nbedfast JJ\nbedfellows NNS\nbedground NN\nbedlam NN\nbedpans NNS\nbedpost NN\nbedraggled JJ\nbedridden JJ\nbedrock NN\nbedroom NN\nbedrooms NNS\nbeds NNS\nbedside NN\nbedspread NN\nbedsprings NNS\nbedstraw NN\nbedtime NN\nbee NN\nbeebread NN\nbeech NN\nbeef NN\nbeef-fat JJ\nbeef-feeding JJ\nbeef-hungry JJ\nbeef-import JJ\nbeef-jerky NN\nbeefed VBN\nbeefed-up JJ\nbeefing VBG\nbeefore IN\nbeefs VBZ\nbeefsteak NN\nbeefy JJ\nbeehive NN\nbeen VBN\nbeep NN\nbeeped VBN\nbeeper NN\nbeepers NNS\nbeeping VBG\nbeeps NNS\nbeer NN\nbeer-bellied JJ\nbeer-belly NN\nbeer-cooling VBG\nbeer-distribution NN\nbeer-drinker NN\nbeer-guzzling JJ\nbeer-industry NN\nbeer-related JJ\nbeer-runner NN\nbeer-runners NNS\nbeer-running NN\nbeer-tax JJ\nbeers NNS\nbees NNS\nbeeswax NN\nbeet NN\nbeetle NN\nbeetle-browed JJ\nbeetles NNS\nbeetling JJ\nbeets NNS\nbefall VB\nbefallen VBN\nbefell VBD\nbefits VBZ\nbefitting VBG\nbefogged JJ\nbefoh RB\nbefore IN\nbefore-and-after JJ\nbefore-school JJ\nbefore-tax JJ\nbeforehand RB\nbefouled VBN\nbefriended VBD\nbefriends VBZ\nbefuddled VBD\nbefuddles VBZ\nbefuddling VBG\nbeg VBP\nbegan VBD\nbegat VBD\nbeget VB\nbegets VBZ\nbeggar NN\nbeggar-thy-neighbor JJ\nbeggars NNS\nbeggary NN\nbegged VBD\nbegging VBG\nbegin VB\nbegining NN\nbeginner NN\nbeginners NNS\nbeginning VBG\nbeginnings NNS\nbegins VBZ\nbegonia NN\nbegot VBD\nbegotten VBN\nbegrudge VB\nbegs VBZ\nbeguile VBP\nbeguiled VBN\nbeguiling JJ\nbegun VBN\nbehahn RB\nbehalf NN\nbehave VB\nbehaved VBD\nbehaves VBZ\nbehaving VBG\nbehavior NN\nbehavior-modification NN\nbehavioral JJ\nbehaviorally RB\nbehaviors NNS\nbehaviour NN\nbeheaded VBD\nbeheading NN\nbeheld VBD\nbehemoth NN\nbehemoths NNS\nbehest NN\nbehind IN\nbehind-schedule JJ\nbehind-the-scenes JJ\nbehold VB\nbeholden JJ\nbeholder NN\nbeholds VBZ\nbehooves VBZ\nbehynde IN\nbeige JJ\nbein VBG\nbeing VBG\nbeing'imprinted VBN\nbeinge VBG\nbeings NNS\nbel FW\nbelaboring VBG\nbelated JJ\nbelatedly RB\nbelch NN\nbelched VBD\nbelching NN\nbeleaguered JJ\nbelfries NNS\nbelfry NN\nbelie VBP\nbelied VBD\nbelief NN\nbeliefs NNS\nbelies VBZ\nbelievability NN\nbelievable JJ\nbelievably RB\nbelieve VBP\nbelieved VBD\nbeliever NN\nbelievers NNS\nbelieves VBZ\nbelieveth VBZ\nbelieving VBG\nbelittle VBP\nbelittled JJ\nbelittling VBG\nbell NN\nbell-ringer NN\nbell-ringers NNS\nbell-ringing JJ\nbellboy NN\nbellboys NNS\nbelle FW\nbelled JJ\nbelles NNS\nbellhops NNS\nbellicosity NN\nbellies NNS\nbelligerence NN\nbelligerent JJ\nbelligerently RB\nbellow NN\nbellowed VBD\nbellowing VBG\nbellows VBZ\nbellringers NNS\nbells NNS\nbellwether NN\nbellwethers NNS\nbelly NN\nbelly-flopped VBD\nbelly-up JJ\nbellyaching NN\nbellyfull NN\nbelong VB\nbelonged VBD\nbelonging VBG\nbelongings NNS\nbelongs VBZ\nbeloved JJ\nbelow IN\nbelow-average JJ\nbelow-investment JJ\nbelow-investment-grade JJ\nbelow-market JJ\nbelowground NN\nbelt NN\nbelt-driven JJ\nbelt-tightening NNS\nbelted VBD\nbelting NN\nbelts NNS\nbeltway NN\nbeluga NN\nbelying VBG\nbemaddening VBG\nbemoan VB\nbemoaned VBD\nbemoaning VBG\nbemoans VBZ\nbemused JJ\nbench NN\nbench... :\nbenches NNS\nbenchmark NN\nbenchmarks NNS\nbend VB\nbending VBG\nbends NNS\nbeneath IN\nbenediction NN\nbenefactor NN\nbenefactors NNS\nbeneficence NN\nbeneficial JJ\nbeneficially RB\nbeneficiaries NNS\nbeneficiary NN\nbeneficient JJ\nbenefit NN\nbenefit-plan JJ\nbenefit-seeking NN\nbenefited VBD\nbenefiting VBG\nbenefits NNS\nbenefits-consulting JJ\nbenefits-for-all JJ\nbenefits-services JJ\nbenevolence NN\nbenevolent JJ\nbenighted JJ\nbenign JJ\nbenignant JJ\nbent VBD\nbenzene NN\nbenzodiazepines NNS\nbequeath VB\nbequeathed VBN\nbequest NN\nbequests NNS\nberated VBN\nbereavement NN\nbereavements NNS\nbereft JJ\nberet NN\nbergs NNS\nberibboned JJ\nberiberi NN\nberms NNS\nberries NNS\nberry NN\nberserk JJ\nberth NN\nberths NNS\nberyllium NN\nbeseech VBP\nbeseiged VBN\nbeset VBN\nbesets VBZ\nbesetting VBG\nbeside IN\nbesides IN\nbesiege VB\nbesieged VBN\nbesiegers NNS\nbesieging VBG\nbesmirch VB\nbesmirched VBD\nbesmirching VBG\nbespeak VBP\nbespeaks VBZ\nbespectacled JJ\nbest JJS\nbest-case JJ\nbest-educated JJ\nbest-financed JJ\nbest-gaited JJ\nbest-hearted JJ\nbest-known JJ\nbest-laid JJ\nbest-looking JJ\nbest-managed JJ\nbest-of-seven JJ\nbest-performing JJ\nbest-pitcher JJ\nbest-preserved JJ\nbest-run JJS\nbest-seller NN\nbest-sellers NNS\nbest-selling JJ\nbest-tempered JJ\nbested VBN\nbestes NNS\nbestial JJ\nbestiary NN\nbesting VBG\nbestioles NNS\nbestirred VBN\nbestow VB\nbestowal NN\nbestowed VBN\nbestows VBZ\nbestseller NN\nbestsellers NNS\nbestselling JJ\nbestubbled JJ\nbesuboru FW\nbet NN\nbeta NN\nbeta-blocker NN\nbeta-thalassemia NN\nbetas NNS\nbete JJ\nbetel-stained JJ\nbethought VB\nbetide VB\nbetray VB\nbetrayal NN\nbetrayed VBN\nbetrayer NN\nbetraying VBG\nbetrays VBZ\nbetrothal JJ\nbetrothed VBD\nbets NNS\nbetter JJR\nbetter-capitalized JJ\nbetter-educated JJ\nbetter-known JJ\nbetter-off JJR\nbetter-paying JJ\nbetter-prepared JJ\nbetter-quality JJ\nbetter-remembered JJ\nbetter-safe-than JJ\nbetter-selling JJ\nbetter-than-average JJ\nbetter-than-expected JJ\nbetter-than-thou JJ\nbettered VBD\nbettering VBG\nbetterment NN\nbetters NNS\nbetties NNS\nbetting VBG\nbetween IN\nbetwen NN\nbevel VB\nbeveled VBN\nbeveling VBG\nbevels NNS\nbeverage NN\nbeverages NNS\nbevor FW\nbevy NN\nbewail VB\nbeware VB\nbeween NN\nbewhiskered JJ\nbewildered VBN\nbewilderedly RB\nbewildering VBG\nbewilderingly RB\nbewilderment NN\nbewilders VBZ\nbewitched VBN\nbewitching VBG\nbewteen IN\nbeyond IN\nbeyond-normal JJ\nbhoy NN\nbi IN\nbi-modal JJ\nbi-monthly JJ\nbi-polar JJ\nbi-regional JJ\nbianco NN\nbiannual JJ\nbias NN\nbiased VBN\nbiases NNS\nbib NN\nbible JJ\nbibles NNS\nbiblical JJ\nbibliographical JJ\nbibliographies NNS\nbibliography NN\nbibliophiles NNS\nbibs NNS\nbibulous JJ\nbicameral JJ\nbicarbonate NN\nbicentennial NN\nbicep NN\nbiceps NNS\nbich NN\nbiches NNS\nbickered VBN\nbickering NN\nbiconcave JJ\nbicycle NN\nbicycle-auto JJ\nbicycles NNS\nbicycling NN\nbicyclist NN\nbid NN\nbid-asked JJ\nbid-rigging NN\nbid-to-cover JJ\nbid-wanted JJ\nbidder NN\nbidders NNS\nbiddies NNS\nbidding NN\nbide VB\nbided VBN\nbids NNS\nbids... :\nbieber NNP\nbien FW\nbiennial JJ\nbiennium NN\nbifocal JJ\nbifocals NNS\nbifurcate VB\nbifurcated JJ\nbig JJ\nbig-boned JJ\nbig-borrowing JJ\nbig-bucks JJ\nbig-budget JJ\nbig-business JJ\nbig-chested JJ\nbig-city JJ\nbig-company JJ\nbig-daddy JJ\nbig-deposit JJ\nbig-fee JJ\nbig-game JJ\nbig-hearted JJ\nbig-large NN\nbig-league JJ\nbig-money JJ\nbig-name JJ\nbig-risk JJ\nbig-selling JJ\nbig-shouldered JJ\nbig-souled JJ\nbig-stage JJ\nbig-stakes JJ\nbig-stock JJ\nbig-ticket JJ\nbig-time JJ\nbig-town JJ\nbig-tube JJ\nbigger JJR\nbigger-than-expected JJ\nbiggest JJS\nbiggest-ever JJ\nbiggest-selling JJ\nbiggie NN\nbigness NN\nbigoted JJ\nbigotry NN\nbigots NNS\nbigticket NN\nbijouterie FW\nbike NN\nbiker NN\nbikers NNS\nbikes NNS\nbiking NN\nbikini NN\nbikinis NNS\nbilateral JJ\nbile NN\nbilevel JJ\nbilge NN\nbilges NNS\nbilharziasis NN\nbilinear JJ\nbilingual JJ\nbilious JJ\nbilk VB\nbilked VBN\nbilking VBG\nbill NN\nbill-introduced NN\nbillable JJ\nbillboard NN\nbillboards NNS\nbilled VBN\nbillet NN\nbillets NNS\nbillfold NN\nbilliard NN\nbilliards NN\nbilling NN\nbillings NNS\nbillion CD\nbillion-a JJ\nbillion-a-year JJ\nbillion-asset JJ\nbillion-dollar JJ\nbillion-franc NN\nbillion-peso JJ\nbillion-plus JJ\nbillion-pound JJ\nbillion-share JJ\nbillion-yen JJ\nbillionaire NN\nbillionaires NNS\nbillionnaire NN\nbillions NNS\nbillon NN\nbillowed VBD\nbillowing VBG\nbillows NNS\nbills NNS\nbills-measures JJ\nbimbos NNS\nbimolecular JJ\nbimonthly JJ\nbin NN\nbinary JJ\nbinational JJ\nbind NN\nbinder NN\nbinders NNS\nbinding NN\nbindle NN\nbinds VBZ\nbinge NN\nbinges NNS\nbingo NN\nbingo-like JJ\nbinoculars NNS\nbinomial NN\nbins NNS\nbinuclear JJ\nbio NN\nbio-analytical JJ\nbio-assay NN\nbio-medical JJ\nbio-medicine NN\nbio-research NN\nbioTechnology NNP\nbiochemical JJ\nbiochemicals NNS\nbiochemist NN\nbiochemistry NN\nbiochemists NNS\nbiodegradable JJ\nbioengineer VB\nbioengineers NNS\nbioequivalence-therapeutic-equivalence JJ\nbioequivalent JJ\nbiofeedback NN\nbiographer NN\nbiographer\\ NN\nbiographers NNS\nbiographical JJ\nbiographies NNS\nbiography NN\nbioherbicide NN\nbioinsecticides NNS\nbiologic JJ\nbiological JJ\nbiologically RB\nbiologist NN\nbiologists NNS\nbiology NN\nbiomedical JJ\nbiomedical-products NNS\nbiopesticide NN\nbiopharmaceutical JJ\nbiophysical JJ\nbiophysicist NN\nbiophysics NNS\nbiopsies NNS\nbiopsy NN\nbioresearch NN\nbiosynthesized VBN\nbiotech JJ\nbiotechnology NN\nbiotechnology-based JJ\nbipartisan JJ\nbipartisanship NN\nbiped NN\nbiplane NN\nbiplanes NNS\nbiracial JJ\nbirch NN\nbirch-paneled JJ\nbirches NNS\nbird NN\nbird's-eye JJ\nbird-brain NN\nbirdbath NN\nbirdcage NN\nbirdie NN\nbirdied VBD\nbirdies NNS\nbirdlike JJ\nbirds NNS\nbirefringence NN\nbirth NN\nbirth-control NN\nbirth-defect NN\nbirth-prevention NN\nbirthcontrol NN\nbirthday NN\nbirthdays NNS\nbirthed VBN\nbirthmark NN\nbirthplace NN\nbirthrate NN\nbirthright NN\nbirths NNS\nbiscotti NNS\nbiscuit NN\nbiscuits NNS\nbisexual JJ\nbishop NN\nbishopry NN\nbishops NNS\nbison NN\nbisque NN\nbistros NNS\nbit NN\nbit-like JJ\nbitch NN\nbitches NNS\nbitchy JJ\nbite VB\nbite-sized JJ\nbitee NN\nbiter NN\nbites NNS\nbiting VBG\nbitingly RB\nbits NNS\nbitten VBN\nbitter JJ\nbitterest JJS\nbitterly RB\nbitterness NN\nbitters NNS\nbittersweet JJ\nbituminous JJ\nbivouac NN\nbiwa FW\nbiweekly JJ\nbiz NN\nbizarre JJ\nbizarrely RB\nblabbed VBD\nblabs VBZ\nblack JJ\nblack-and-orange JJ\nblack-and-white JJ\nblack-and-yellow JJ\nblack-balled VBN\nblack-bearded JJ\nblack-body JJ\nblack-clad JJ\nblack-consumer NN\nblack-crowned JJ\nblack-draped JJ\nblack-eyed JJ\nblack-figured JJ\nblack-haired JJ\nblack-majority JJ\nblack-market JJ\nblack-on-black JJ\nblack-owned JJ\nblack-robed JJ\nblack-tie JJ\nblack-tipped JJ\nblack-white JJ\nblackballed VBN\nblackberry NN\nblackberry-basil NN\nblackbird NN\nblackbirds NNS\nblackboard NN\nblacked VBN\nblacked-in JJ\nblacked-out JJ\nblackened VBN\nblackening NN\nblacker JJR\nblackest JJS\nblacking NN\nblackjack NN\nblacklist VB\nblacklisting NN\nblackmail NN\nblackmailed VBN\nblackmailer NN\nblackmailers NNS\nblackmailing VBG\nblackness NN\nblackout NN\nblackouts NNS\nblacks NNS\nblacksmith NN\nbladder NN\nblade NN\nblades NNS\nblame VB\nblamed VBD\nblames VBZ\nblaming VBG\nblanche JJ\nblanching VBG\nbland JJ\nblander JJR\nblandly RB\nblandness NN\nblank JJ\nblank-faced JJ\nblanket NN\nblanketed VBD\nblankets NNS\nblanks NNS\nblared VBD\nblares VBZ\nblaring VBG\nblarney NN\nblase JJ\nblasphemed VBD\nblasphemers NNS\nblasphemies NNS\nblasphemous JJ\nblasphemy NN\nblast NN\nblastdown NN\nblasted VBD\nblasting VBG\nblasts NNS\nblatancy NN\nblatant JJ\nblatantly RB\nblaze NN\nblazed VBD\nblazer NN\nblazing VBG\nblazon VB\nbleach NN\nbleached JJ\nbleacher NN\nbleacher-type JJ\nbleachers NNS\nbleaching VBG\nbleak JJ\nbleaker JJR\nbleakly RB\nbleary JJ\nbleat NN\nbleating VBG\nbleats NNS\nblebs NNS\nbled VBD\nbleed VB\nbleeders NNS\nbleeding VBG\nbleedings NNS\nbleeps NNS\nblem NN\nblemish NN\nblemishes NNS\nblend NN\nblended JJ\nblender NN\nblenders NNS\nblending VBG\nblends NNS\nbless VB\nblessed VBN\nblessing NN\nblessings NNS\nblest VB\nblew VBD\nblight NN\nblighted VBN\nblind JJ\nblind-folded JJ\nblind-pool JJ\nblind-sided JJ\nblinded VBN\nblindfold NN\nblindfolded VBN\nblinding JJ\nblindly RB\nblindness NN\nblinds NNS\nblindsided VBN\nblini NNS\nblink VB\nblinked VBD\nblinkers NNS\nblinking JJ\nblinks VBZ\nblip NN\nblips NNS\nbliss NN\nblissful JJ\nblissfully RB\nblister NN\nblistered VBN\nblistering VBG\nblisters NNS\nblithe JJ\nblithely RB\nblitz NN\nblitzes NNS\nblitzing VBG\nblitzkrieg NN\nblizzard NN\nblizzards NNS\nbloat NN\nbloated JJ\nbloating NN\nblob NN\nblobby JJ\nbloc NN\nblock NN\nblock-buster NN\nblock-grant JJ\nblock-trading NN\nblockade NN\nblockading VBG\nblockages NNS\nblockbuster NN\nblockbusters NNS\nblocked VBN\nblocker NN\nblockhouse NN\nblocking VBG\nblocks NNS\nblocky JJ\nblocs NNS\nblog NN\nbloke NN\nblokes NNS\nblond JJ\nblonde JJ\nblonde-haired JJ\nblonde-headed JJ\nblondes NNS\nblood NN\nblood-alcohol NN\nblood-and-guts JJ\nblood-bought JJ\nblood-cell NN\nblood-chilling JJ\nblood-clot NN\nblood-clotting JJ\nblood-filled JJ\nblood-flecked JJ\nblood-flow NNS\nblood-forming JJ\nblood-in-the-streets NNS\nblood-kinship NN\nblood-letting NN\nblood-lust NN\nblood-pressure JJ\nblood-red NN\nblood-soaked JJ\nblood-specked JJ\nblood-sport JJ\nblood-stained JJ\nblood-thirsty JJ\nbloodbath NN\nblooded VBN\nbloodhounds NNS\nbloodied JJ\nbloodiest JJS\nbloodless JJ\nbloodletting VBG\nbloodlust NN\nbloodroot NN\nbloods NNS\nbloodshed NN\nbloodshot JJ\nbloodspots NNS\nbloodstained JJ\nbloodstains NNS\nbloodstream NN\nbloodsucking VBG\nbloodthirsty JJ\nbloody JJ\nbloody-minded JJ\nbloom NN\nbloomed VBD\nblooming VBG\nblooms NNS\nblooper NN\nbloops NNS\nblossom VB\nblossomed VBD\nblossoms NNS\nblot NN\nblot-appearance NN\nblot-like JJ\nblotch NN\nblotches NNS\nblots NNS\nblotted VBD\nblotting VBG\nblouse NN\nblouses NNS\nblow NN\nblow-up NN\nblower NN\nblowfish NN\nblowing VBG\nblown VBN\nblown-up VBN\nblowout NN\nblows NNS\nblowtorch NN\nblowup NN\nblubber NN\nbludgeon VB\nbludgeoned VBN\nbludgeoned'em NN\nblue JJ\nblue-black JJ\nblue-blood JJ\nblue-blooded JJ\nblue-carpeted JJ\nblue-chip JJ\nblue-chips NNS\nblue-collar JJ\nblue-collar-mail JJ\nblue-draped JJ\nblue-eyed JJ\nblue-eyes NNS\nblue-glazed JJ\nblue-green JJ\nblue-ribbon JJ\nblue-sky JJ\nblue-uniformed JJ\nblueberries NNS\nblueberry NN\nbluebloods NNS\nbluebonnets NNS\nbluebook NN\nbluebush NN\nbluechip JJ\nbluefish NNS\nblueprint NN\nblueprints NNS\nblues NNS\nbluest JJS\nbluestocking NN\nbluesy JJ\nbluff NN\nbluffing VBG\nbluffs NNS\nbluing NN\nbluish JJ\nblunder NN\nblundered VBD\nblunderings NNS\nblunders NNS\nblunt VB\nblunted VBD\nblunter NN\nbluntest RBS\nbluntly RB\nbluntness NN\nblunts VBZ\nblur NN\nblurred VBN\nblurring VBG\nblurry JJ\nblurt NN\nblurted VBD\nblurting VBG\nblush NN\nblushed VBD\nblushes NNS\nblushing VBG\nbluster NN\nblustered VBD\nblustery JJ\nblutwurst NN\nbo'sun's NN\nboa NN\nboar NNS\nboard NN\nboard-level JJ\nboarded VBD\nboarder NN\nboarding VBG\nboarding-home NN\nboardinghouses NNS\nboardings NNS\nboardroom NN\nboardrooms NNS\nboards NNS\nboast VBP\nboasted VBD\nboastful JJ\nboastfully RB\nboasting VBG\nboastings NNS\nboasts VBZ\nboat NN\nboat-building JJ\nboat-rocker... :\nboat-yard NN\nboatels NNS\nboaters NNS\nboathouses NNS\nboating NN\nboatload NN\nboatloads NNS\nboatman NN\nboats NNS\nboatsmen NNS\nboatswain NN\nboatyards NNS\nbobbed VBD\nbobbin-to-cone JJ\nbobbing VBG\nbobbins NNS\nbobbles NNS\nbobby NN\nbobby-sox NN\nbobby-soxer NN\nbockwurst NN\nbodacious JJ\nbode VB\nboded VBD\nbodegas NNS\nbodes VBZ\nbodice NN\nbodied JJ\nbodies NNS\nbodily JJ\nbods NNS\nbody NN\nbody-and-assembly JJ\nbody-numbing JJ\nbody-tissue NN\nbodybuilder NN\nbodybuilders NNS\nbodybuilding NN\nbodyguard NN\nbodyguards NNS\nbodyweight NN\nbodyworkers NNS\nbog VB\nbogey NN\nbogey-symbol NN\nbogeyed VBD\nbogeymen NNS\nbogeys NNS\nbogged VBD\nbogging VBG\nboggled VBD\nbogies NNS\nbogs VBZ\nbogus JJ\nbogy NN\nbohemian JJ\nboies NNS\nboil VB\nboiled VBN\nboiler NN\nboiler-burner NN\nboiler-room NN\nboilerplate NN\nboilers NNS\nboiling VBG\nboils VBZ\nbois FW\nboisterous JJ\nboite NNP\nboites NNS\nbold JJ\nbolder JJR\nboldest JJS\nboldly RB\nboldness NN\nboll NN\nbolo NN\nbolognaise FW\nbolster VB\nbolstered VBN\nbolstering VBG\nbolsters VBZ\nbolt NN\nbolt-action JJ\nbolted VBN\nbolting VBG\nbolts NNS\nbomb NN\nbomb-detection JJ\nbomb-plant JJ\nbomb-proof JJ\nbombard VB\nbombarded VBD\nbombarding VBG\nbombardment NN\nbombardments NNS\nbombast NN\nbombastic JJ\nbombed VBN\nbomber NN\nbombers NNS\nbombing NN\nbombings NNS\nbomblets NNS\nbombproof NN\nbombs NNS\nbombshell NN\nbon FW\nbona FW\nbonanza NN\nbonanzas NNS\nbond NN\nbond-equivalent JJ\nbond-financed JJ\nbond-fund NN\nbond-futures NNS\nbond-holders NNS\nbond-insurance JJ\nbond-market JJ\nbond-price JJ\nbond-rating JJ\nbond-trading JJ\nbond-underwriting JJ\nbondage NN\nbonded VBN\nbondholder NN\nbondholders NNS\nbondholdings NNS\nbonding VBG\nbondmarket NN\nbonds NNS\nbondsman NN\nbone NN\nbone-deep JJ\nbone-loss NN\nbone-marrow NN\nbone-weary JJ\nboned VBN\nbones NNS\nbonfire NN\nbonfires NNS\nbongo NN\nbonheur NN\nbonkers JJ\nbonnet NN\nbonnets NNS\nbono FW\nbonus NN\nbonuses NNS\nbony JJ\nbonzes NNS\nboo VB\nboobify VB\nbooboo NN\nbooboos NNS\nbooby JJ\nbooby-trap NN\nboodleoo UH\nbooed VBD\nboogie NN\nboogieman NN\nbooing VBG\nbook NN\nbook-breaking JJ\nbook-burning JJ\nbook-buying JJ\nbook-entry JJ\nbook-flogging JJ\nbook-lined JJ\nbook-publishing NN\nbook-review NN\nbook-selection NN\nbook-to-bill JJ\nbookcase NN\nbookcases NNS\nbooked VBN\nbooker NN\nbookers NNS\nbookies NNS\nbooking NN\nbookings NNS\nbookish JJ\nbookkeeper NN\nbookkeeping NN\nbooklet NN\nbooklets NNS\nbooklists NNS\nbooks NNS\nbookseller NN\nbookshelf NN\nbookshelves NNS\nbookstore NN\nbookstores NNS\nboom NN\nboom-and-bust JJ\nboom-boom-boom JJ\nboom-boxes NNS\nboom-or-bust JJ\nboomed VBD\nboomerang NN\nboomerangs NNS\nboomers NNS\nbooming JJ\nbooms NNS\nboomtown NN\nboon NN\nboondoggle NN\nboondoggler NN\nboondoggles NNS\nboorish JJ\nboors NNS\nboos NNS\nboost VB\nboosted VBD\nbooster NN\nboosters NNS\nboosting VBG\nboosts NNS\nboot NN\nboot-stomping JJ\nboot-wearer JJ\nbooted VBN\nbooth NN\nbooths NNS\nbooting VBG\nbootleg JJ\nbootlegged VBN\nbootlegger NN\nbootleggers NNS\nbootlegging NN\nboots NNS\nbooty NN\nbooze NN\nboozed-out JJ\nboozing VBG\nbop NN\nborates NNS\nborax NN\nborder NN\nbordered VBN\nbordering VBG\nborderlands NNS\nborderline JJ\nborders NNS\nbore VBD\nbore\\ VBP\nbored VBN\nboredom NN\nborer NN\nborers NNS\nbores NNS\nboring JJ\nboringly RB\nborn VBN\nborn-again JJ\nborn-to-shop JJ\nborne VBN\nborough NN\nboroughs NNS\nborrow VB\nborrowed VBN\nborrower NN\nborrowers NNS\nborrowing NN\nborrowings NNS\nborrows VBZ\nbosom NN\nbosoms NNS\nbosons NNS\nboss NN\nbossed VBN\nbosses NNS\nbossman NN\nbotanical JJ\nbotanist NN\nbotanists NNS\nbotany NN\nbotched VBN\nboth DT\nbother VB\nbothered VBN\nbothering VBG\nbothers VBZ\nbothersome JJ\nbottle NN\nbottled JJ\nbottled-water JJ\nbottleneck NN\nbottlenecks NNS\nbottler NN\nbottlers NNS\nbottles NNS\nbottling NN\nbottom NN\nbottom-down JJ\nbottom-dwelling JJ\nbottom-fishers NNS\nbottom-fishing NN\nbottom-line JJ\nbottom-living JJ\nbottom-of-the-barrel JJ\nbottomed VBN\nbottoming VBG\nbottomless JJ\nbottoms NNS\nbotulinum NN\nbouanahsha FW\nboucle NN\nbouffant JJ\nbouffe NN\nbough NN\nboughs NNS\nbought VBD\nboulder NN\nboulders NNS\nboulevard NN\nboulevards NNS\nboun NN\nbounce VB\nbounced VBD\nbounces VBZ\nbouncing VBG\nbouncy JJ\nbound VBN\nboundaries NNS\nboundary NN\nbounded VBN\nbounding VBG\nboundless JJ\nbounds NNS\nbounty NN\nbounty-hunting NN\nbountyhunters NNS\nbouquet NN\nbouquets NNS\nbourbon NN\nbourbons NNS\nbourgeois JJ\nbourgeois-bashing JJ\nbourgeoisie NNS\nbourses NNS\nbout NN\nbout-de-souffle FW\nboutique NN\nboutique-lined JJ\nboutique-store NN\nboutiques NNS\nbouts NNS\nbovine JJ\nbovines NNS\nbow NN\nbow-tied JJ\nbowed VBD\nbowel NN\nbowels NNS\nbower NN\nbowing VBG\nbowl NN\nbowl-shaped JJ\nbowled VBN\nbowling NN\nbowling-league NN\nbowling-related JJ\nbowls NNS\nbows NNS\nbowstring NN\nbox NN\nbox-office NN\nbox-sized JJ\nboxcar NN\nboxcars NNS\nboxed VBN\nboxed-in JJ\nboxer NN\nboxes NNS\nboxing NN\nboxy JJ\nboy NN\nboy-furiendo NN\nboy-manager NN\nboy-meets-girl NN\nboy-name NN\nboyars NNS\nboycott NN\nboycotted VBN\nboycotting VBG\nboycotts NNS\nboyfriend NN\nboyfriends NNS\nboyhood NN\nboyish JJ\nboyish-looking JJ\nboys NNS\nbra NN\nbrace NN\nbraced VBN\nbracelet NN\nbraces NNS\nbrachii NNS\nbracing VBG\nbracket NN\nbrackets NNS\nbrackish JJ\nbrad NN\nbradykinin NN\nbrag VB\nbraggadocio NN\nbragged VBD\nbragging VBG\nbrags VBZ\nbrah FW\nbraided JJ\nbraiding VBG\nbraids NNS\nbrain NN\nbrain-damaged JJ\nbrain-wave JJ\nbrain-wracking JJ\nbrainchild NN\nbrainlessly RB\nbrainpower NN\nbrains NNS\nbrainstorm NN\nbrainwashed VBN\nbrainwashing NN\nbrainy JJ\nbraised VBN\nbrake NN\nbrakes NNS\nbraking VBG\nbrambles NNS\nbran NN\nbran-processing JJ\nbranch NN\nbranch-by-branch RB\nbranched VBN\nbranches NNS\nbranching VBG\nbranchline JJ\nbrand NN\nbrand-loyal JJ\nbrand-name JJ\nbrand-new JJ\nbranded VBN\nbrandin NN\nbrandished VBD\nbrandishes VBZ\nbrandishing VBG\nbrands NNS\nbrandy NN\nbrash JJ\nbrashest JJS\nbrashness NN\nbrass NN\nbrass-bound JJ\nbrasses NNS\nbrassiere NN\nbrassieres NNS\nbrassiness NN\nbrassy JJ\nbrat NN\nbrats NNS\nbratwurst NN\nbravado NN\nbrave JJ\nbraved VBD\nbravely RB\nbraver JJR\nbravery NN\nbravest JJS\nbravest-feathered JJ\nbraving VBG\nbravura NN\nbraweling VBG\nbrawl NN\nbrawle NN\nbrawling NN\nbrawny JJ\nbraying JJ\nbrazen JJ\nbrazenly RB\nbrazenness NN\nbrazier NN\nbrazil NN\nbreach NN\nbreach-of-contract JJ\nbreached VBD\nbreaches NNS\nbreaching VBG\nbread NN\nbread-and-butter JJ\nbreadbasket NN\nbreadbox NN\nbreaded VBN\nbreadth NN\nbreak VB\nbreak-away NN\nbreak-down NN\nbreak-even JJ\nbreak-in NN\nbreak-neck JJ\nbreak-the-rules JJ\nbreak-through NN\nbreak-up NN\nbreak. NN\nbreakables NNS\nbreakage NN\nbreakaway NN\nbreakdown NN\nbreakdowns NNS\nbreaker NN\nbreakers NNS\nbreakeven JJ\nbreakfast NN\nbreakfast-table NN\nbreakfasted VBD\nbreakfasts NNS\nbreakin VBG\nbreaking VBG\nbreaking-out NN\nbreakneck JJ\nbreakoff JJ\nbreaks NNS\nbreakthrough NN\nbreakthroughs NNS\nbreakup NN\nbreakups NNS\nbreakwater NN\nbreakwaters NNS\nbreast NN\nbreast-cancer NN\nbreasts NNS\nbreastworks NNS\nbreath NN\nbreath-taking JJ\nbreathalyzer NN\nbreathe VB\nbreathed VBD\nbreather NN\nbreathes VBZ\nbreathing NN\nbreathless JJ\nbreathlessly RB\nbreaths NNS\nbreathtaking JJ\nbreathy JJ\nbred VBN\nbreeches NNS\nbreed NN\nbreeder NN\nbreeders NNS\nbreeding VBG\nbreeds NNS\nbreeze NN\nbreezes NNS\nbreezier JJR\nbreezy JJ\nbrethren NNS\nbrevity NN\nbrew NN\nbrewed VBN\nbrewer NN\nbreweries NNS\nbrewers NNS\nbrewery NN\nbrewery-scion-turned-banker NN\nbrewing NN\nbrewing-assets NNS\nbrews VBZ\nbribe NN\nbribed VBD\nbribers NNS\nbribery NN\nbribery-related JJ\nbribes NNS\nbribing VBG\nbric-a-brac NN\nbrick NN\nbrick-and-mortar JJ\nbricklayers NNS\nbricklaying NN\nbricks NNS\nbridal JJ\nbride NN\nbride-gift NN\nbridegroom NN\nbrides NNS\nbridesmaids NNS\nbridge NN\nbridge-financing JJ\nbridge-lending JJ\nbridge-loan JJ\nbridged-T NNP\nbridgehead NN\nbridgeheads NNS\nbridges NNS\nbridgework NN\nbridging VBG\nbridle NN\nbridled VBN\nbrie NN\nbrief JJ\nbriefcase NN\nbriefcases NNS\nbriefed VBN\nbriefer JJR\nbriefest JJS\nbriefing NN\nbriefings NNS\nbriefly NN\nbriefly-illumed VBN\nbriefs NNS\nbrig NN\nbrigade NN\nbrigades NNS\nbrigadier NN\nbrigands NNS\nbright JJ\nbright-eyed JJ\nbright-green JJ\nbright-looking JJ\nbright-red JJ\nbrighten VB\nbrightened VBD\nbrightener NN\nbrightening VBG\nbrightens VBZ\nbrighter JJR\nbrightest JJS\nbrightly RB\nbrightness NN\nbrilliance NN\nbrilliant JJ\nbrilliantly RB\nbrim NN\nbrimful JJ\nbrimmed VBD\nbrimming VBG\nbrimstone NN\nbrindle NN\nbrine NN\nbring VB\nbringing VBG\nbrings VBZ\nbrink NN\nbrinkmanship NN\nbrinksmanship NN\nbriny JJ\nbriquette NN\nbriquettes NNS\nbrisk JJ\nbrisker JJR\nbriskly RB\nbriskness NN\nbristle VBP\nbristled VBD\nbristles VBZ\nbristling VBG\nbrittle JJ\nbro NN\nbroach VB\nbroached VBN\nbroad JJ\nbroad-appeal JJ\nbroad-based JJ\nbroad-brimmed JJ\nbroad-nibbed JJ\nbroad-scale JJ\nbroad-scaled JJ\nbroadcast NN\nbroadcast-and-cable JJ\nbroadcaster NN\nbroadcasters NNS\nbroadcasting NN\nbroadcastings NNS\nbroadcasts NNS\nbroaden VB\nbroadened VBN\nbroadening VBG\nbroadens VBZ\nbroader JJR\nbroader-based JJ\nbroadest JJS\nbroadly RB\nbroadside JJ\nbrocade NN\nbrocaded JJ\nbroccoli NNS\nbrochure NN\nbrochures NNS\nbrockle NN\nbroil NN\nbroiled VBN\nbroiler NN\nbroiling VBG\nbrok VBD\nbroke VBD\nbroken VBN\nbroken-backed JJ\nbroken-down JJ\nbroken-nosed JJ\nbrokenly RB\nbroker NN\nbroker-dealer NN\nbroker-dealers NNS\nbroker-sold JJ\nbrokerage NN\nbrokerage-by-brokerage JJ\nbrokerage-firm JJ\nbrokerage-house NN\nbrokerage-stock NN\nbrokerages NNS\nbrokered JJ\nbrokering VBG\nbrokers NNS\nbromides NNS\nbromphenol NN\nbronc NN\nbronchi NNS\nbronchial JJ\nbronchiolar JJ\nbronchiole NN\nbronchioles NNS\nbronchiolitis NN\nbronchitis NN\nbronchus NN\nbroncs NNS\nbronze NN\nbronzed JJ\nbronzes NNS\nbronzy-green-gold JJ\nbrooch NN\nbrood NN\nbrooded VBD\nbrooding VBG\nbroods NNS\nbroody JJ\nbrook NN\nbrooked VBD\nbrooken VBN\nbroom NN\nbroth NN\nbrothel NN\nbrothels NNS\nbrother NN\nbrother-in-law NN\nbrotherhood NN\nbrotherism NN\nbrotherly JJ\nbrothers NNS\nbrought VBN\nbrouhaha NN\nbrow NN\nbrow-beating NN\nbrowbeat VB\nbrowbeaten VBN\nbrown JJ\nbrown-black JJ\nbrown-coal NN\nbrown-edged JJ\nbrown-paper JJ\nbrown-tobacco JJ\nbrowned VBN\nbrownies NNS\nbrowning VBG\nbrownish JJ\nbrownouts NNS\nbrowny JJ\nbrowny-haired JJ\nbrows NNS\nbrowse VB\nbrowser NN\nbrowsing VBG\nbrowsing. NN\nbrucellosis NN\nbruddah FW\nbruh NN\nbruinish JJ\nbruise NN\nbruised VBN\nbruises NNS\nbruising JJ\nbruited VBN\nbrunch NN\nbrunches NNS\nbrunette JJ\nbrunettes NNS\nbrunt NN\nbrush NN\nbrushbacks NNS\nbrushcut NN\nbrushed VBD\nbrushes NNS\nbrushfire NN\nbrushing VBG\nbrushlike JJ\nbrushoff NN\nbrushwork NN\nbrushy JJ\nbrusquely RB\nbrutal JJ\nbrutal-and JJ|CC\nbrutalism NN\nbrutalities NNS\nbrutality NN\nbrutalized VBN\nbrutally RB\nbrute NN\nbrutes NNS\nbrutish JJ\nbrynge VBP\nbubble NN\nbubbled VBN\nbubblelike JJ\nbubbles NNS\nbubbling VBG\nbubbly JJ\nbuccaneers NNS\nbuccolic JJ\nbuck NN\nbuckaroos NNS\nbuckboard NN\nbuckboards NNS\nbucked VBD\nbucket NN\nbucket-shop JJ\nbuckets NNS\nbucking VBG\nbucking-up NN\nbuckle VB\nbuckle-on JJ\nbuckled VBD\nbuckles NNS\nbuckling VBG\nbucks NNS\nbuckshot NN\nbuckskin NN\nbuckskins NNS\nbuckwheat NN\nbucolic JJ\nbud NN\nbudded VBD\nbuddies NNS\nbudding VBG\nbuddy NN\nbudge VB\nbudged VBD\nbudget NN\nbudget$ $\nbudget-altering JJ\nbudget-cutting NN\nbudget-hotel NN\nbudget-making JJ\nbudget-priced JJ\nbudget-reconciliation JJ\nbudget-reduction JJ\nbudget-sensitive JJ\nbudget-strapped JJ\nbudget-wise JJ\nbudgetary JJ\nbudgeted VBN\nbudgeteers NNS\nbudgeting NN\nbudgets NNS\nbuds NNS\nbudworm NN\nbuff NN\nbuffalo NN\nbuffaloes NNS\nbuffer NN\nbuffered VBN\nbuffet NN\nbuffeted VBN\nbuffetings NNS\nbuffets NNS\nbuffetted VBN\nbuffetting NN\nbuffing VBG\nbuffoon NN\nbuffoons NNS\nbuffs NNS\nbug NN\nbug-free JJ\nbugaboo NN\nbugaboos NNS\nbugeyed JJ\nbugged VBN\nbuggers NNS\nbuggies NNS\nbugging NN\nbuggy NN\nbugle NN\nbugler NN\nbugless JJ\nbuglike JJ\nbugs NNS\nbuild VB\nbuild'em VBP|PP\nbuild-better-for-less JJ\nbuild-up NN\nbuild-ups NNS\nbuilder NN\nbuilder-dealer JJ\nbuilders NNS\nbuildin VBG\nbuilding NN\nbuilding-control NN\nbuilding-materials NNS\nbuilding-products NNS\nbuilding-related JJ\nbuilding-society JJ\nbuilding-supplies NNS\nbuildings NNS\nbuilds VBZ\nbuildup NN\nbuilt VBN\nbuilt-detergent JJ\nbuilt-from-kit JJ\nbuilt-in JJ\nbuilt-soap NN\nbuiltin JJ\nbulb NN\nbulb-making JJ\nbulbs NNS\nbulge NN\nbulged VBD\nbulging VBG\nbulk NN\nbulk-buying JJ\nbulk-chemical NN|JJ\nbulk-mail NN\nbulked VBD\nbulked-up JJ\nbulkhead NN\nbulkheads NNS\nbulking VBG\nbulks VBZ\nbulky JJ\nbull NN\nbull's-eye NN\nbull's-eyes NNS\nbull-headed JJ\nbull-like JJ\nbull-market NN\nbull-necked JJ\nbull-roaring JJ\nbull-sessions NNS\nbulldog JJ\nbulldoze VB\nbulldozed VBN\nbulldozer NN\nbulldozers NNS\nbullet NN\nbullet-proof JJ\nbullet-riddled JJ\nbulletin NN\nbulletin-board NN\nbulletins NNS\nbulletproof JJ\nbullets NNS\nbullfighter NN\nbullhide NN\nbullhorn NN\nbullhorns NNS\nbullied VBD\nbullies VBZ\nbullion NN\nbullish JJ\nbullishly RB\nbullishness NN\nbullock NN\nbulls NNS\nbullshit NN\nbullwhackers NNS\nbully NN\nbullyboys NNS\nbullying VBG\nbulwark NN\nbum NN\nbumble VB\nbumble-bee NN\nbumblebee NN\nbumblebees NNS\nbumbling JJ\nbummed VBN\nbumming VBG\nbump VB\nbumped VBD\nbumper NN\nbumper-sticker NN\nbumper-to-bumper JJ\nbumpers NNS\nbumpin VBG\nbumping VBG\nbumps NNS\nbumptious JJ\nbumpy JJ\nbums NNS\nbun NN\nbunch NN\nbuncha NN\nbunched VBN\nbunches NNS\nbunching VBG\nbunco NN\nbundle NN\nbundled VBN\nbundles NNS\nbundling VBG\nbungalow NN\nbungled VBD\nbungling VBG\nbunk NN\nbunked VBD\nbunker NN\nbunkered VBN\nbunkmate NN\nbunkmates NNS\nbunko NN\nbunko-forgery NN\nbunks NNS\nbunnies NNS\nbunny NN\nbuns NNS\nbunt NN\nbunter NN\nbunters NNS\nbuoy VB\nbuoyancy NN\nbuoyant JJ\nbuoyed VBN\nbuoying VBG\nbuoys NNS\nburbles VBZ\nburden NN\nburden-sharing NN\nburdened VBN\nburdening VBG\nburdens NNS\nburdensome JJ\nburdock NN\nbureacracy NN\nbureacratic JJ\nbureau NN\nbureau-sponsored JJ\nbureaucracies NNS\nbureaucracy NN\nbureaucrat NN\nbureaucratic JJ\nbureaucraticized JJ\nbureaucratization NN\nbureaucrats NNS\nbureauracy NN\nbureaus NN\nburgeoned VBD\nburgeoning VBG\nburger NN\nburger-heavy JJ\nburgers NNS\nburglar NN\nburglaries NNS\nburglarized VBN\nburglarproof JJ\nburglars NNS\nburglary NN\nburgomaster NN\nburgs NNS\nburgundy NN\nburial NN\nburials NNS\nburied VBN\nburl NN\nburlap NN\nburlesque JJ\nburlesques NNS\nburley NN\nburly JJ\nburn VB\nburne VB\nburned VBN\nburned-out JJ\nburner NN\nburners NNS\nburning VBG\nburnings NNS\nburnished VBN\nburnishing VBG\nburnout NN\nburnouts NNS\nburns NNS\nburnt VBN\nburnt-orange JJ\nburnt-red JJ\nburping VBG\nburr NN\nburr-headed JJ\nburrow NN\nburrowed VBD\nburrowing VBG\nburrows NNS\nburrs NNS\nbursitis NN\nburst NN\nbursting VBG\nbursts NNS\nbury VB\nburying VBG\nbus NN\nbusboy NN\nbused VBN\nbuses NNS\nbush NN\nbushel NN\nbushels NNS\nbushes NNS\nbushwhacked VBD\nbushwhackin JJ\nbushy JJ\nbushy-tailed JJ\nbusied VBD\nbusier JJR\nbusies NNS\nbusiest JJS\nbusily RB\nbusiness NN\nbusiness-as-usual JJ\nbusiness-automation NN\nbusiness-class JJ\nbusiness-communications NNS\nbusiness-credit NN\nbusiness-development NN\nbusiness-interruption JJ\nbusiness-judgment NN\nbusiness-like JJ\nbusiness-machines NNS\nbusiness-migration NN\nbusiness-minded JJ\nbusiness-oriented JJ\nbusiness-partners NNS\nbusiness-promotion NN\nbusiness-related JJ\nbusiness-services JJ\nbusiness-telephone JJ\nbusiness-to-business JJ\nbusiness-venture JJ\nbusiness... :\nbusiness.... :\nbusinesses NNS\nbusinesslike JJ\nbusinessman NN\nbusinessmen NNS\nbusinessmen-authors NN\nbusinesspeople NN\nbusinesswoman NN\nbusing VBG\nbusload NN\nbusloads NNS\nbuss NN\nbusses NNS\nbust NN\nbust-up JJ\nbusted JJ\nbuster NN\nbusters NNS\nbustin VBG\nbusting VBG\nbustle NN\nbustlin NN\nbustling JJ\nbusts NNS\nbusy JJ\nbusy-work NN\nbusybodies NNS\nbusyness NN\nbut CC\nbut-bulls IN\nbut... :\nbutadiene-emulsions NNS\nbutane NN\nbutcher NN\nbutchered VBN\nbutchering NN\nbutchers NNS\nbutchery NN\nbutler NN\nbutlers NNS\nbuts NNS\nbutt NN\nbutted VBN\nbutter NN\nbutterfat NN\nbutterfat-rich JJ\nbutterflies NNS\nbutterfly NN\nbutternut NN\nbuttery JJ\nbutting VBG\nbuttocks NNS\nbutton NN\nbutton-down JJ\nbuttoned VBN\nbuttoned-down JJ\nbuttoned-up JJ\nbuttonholes NNS\nbuttons NNS\nbuttress VB\nbuttressed VBN\nbuttresses NNS\nbutts NNS\nbutyl-lithium NN\nbutyrate NN\nbuxom JJ\nbuy VB\nbuy-and-hold JJ\nbuy-back NN\nbuy-backs NNS\nbuy-now JJ\nbuy-out NN\nbuy-out-related JJ\nbuy-outs NNS\nbuy-sell JJ\nbuy-stop JJ\nbuy\\ JJ\nbuyback JJ\nbuyer NN\nbuyers NNS\nbuyin NN\nbuying VBG\nbuyings NNS\nbuyout NN\nbuyouts NNS\nbuys VBZ\nbuzz NN\nbuzz-buzz-buzz NN\nbuzzed VBD\nbuzzer NN\nbuzzes NNS\nbuzzing VBG\nbuzzsaw NN\nbuzzword NN\nbuzzwords NNS\nby IN\nby-election NN\nby-gone JJ\nby-laws NNS\nby-pass NN\nby-passed VBN\nby-passes VBZ\nby-passing VBG\nby-product NN\nby-products NNS\nby-roads NNS\nby-ways NNS\nby-wheelchair JJ\nbye VB\nbygone JJ\nbyinge VBG\nbylaw NN\nbylaws NNS\nbyline NN\nbylines NNS\nbypass VB\nbypassed VBN\nbypassing VBG\nbyplay NN\nbyproduct NN\nbyproducts NNS\nbystander NN\nbystanders NNS\nbytes NNS\nbyway NN\nbyways NNS\nbyword NN\nbyzantine JJ\nc NN\nc'n VB\nc-Domestic JJ\nc-Excludes VB\nc-Translated VBN\nc-Yields NNS\nc-reflects VBZ\nc.i.f JJ\nca MD\nca. IN\ncab NN\ncabal NN\ncabana NN\ncabanas NNS\ncabaret NN\ncabaret-like JJ\ncabbage NN\ncabdriver NN\ncabin NN\ncabin-crew NNS\ncabinet NN\ncabinet-level JJ\ncabinetmakers NNS\ncabinets NNS\ncabins NNS\ncable NN\ncable-TV NN\ncable-TV-system NN\ncable-programming JJ\ncable-television NN\ncable-television-equipped JJ\ncable-televison NN\ncabled VBD\ncables NNS\ncabs NNS\ncacao NN\ncache NN\ncaches NNS\ncachet NN\ncachexia FW\ncackled VBD\ncackly RB\ncacophony NN\ncactus NN\ncadaver NN\ncadaverous JJ\ncadence NN\ncadenza NN\ncadet NN\ncadets NNS\ncadge VBP\ncadmium NN\ncadre NN\ncadres NNS\ncafe NN\ncafes NNS\ncafeteria NN\ncafeteria-style JJ\ncafeterias NNS\ncaffeine NN\ncaffeine-free JJ\ncage NN\ncaged VBN\ncages NNS\ncagey JJ\ncahoots NNS\ncain MD\ncajole VB\ncajun JJ\ncake NN\ncaked VBN\ncakes NNS\ncalamities NNS\ncalamitous JJ\ncalamity NN\ncalcification NN\ncalcified VBD\ncalcium NN\ncalcium-supplemented JJ\ncalculable JJ\ncalculate VB\ncalculated VBN\ncalculates VBZ\ncalculating VBG\ncalculation NN\ncalculations NNS\ncalculator NN\ncalculator-toting JJ\ncalculators NNS\ncalculi NNS\ncalculus NN\ncalendar NN\ncalendars NNS\ncalf NN\ncalf's-foot NN\ncalfskin NN\ncaliber NN\ncalibers NNS\ncalibrated VBN\ncalibrates VBZ\ncalibrating VBG\ncalibration NN\ncalibrations NNS\ncalibre NN\ncaliche-topped JJ\ncalico JJ\ncalinda NN\ncaliper NN\ncalipers NNS\ncaliphs NNS\ncalisthenics NNS\ncall VB\ncall-backs NNS\ncall-in JJ\ncall-ups NNS\ncallable JJ\ncalled VBN\ncalled'isolationism NN\ncalled'low JJ\ncaller NN\ncallers NNS\ncalligraphers NNS\ncalligraphy NN\ncallin VBG\ncalling VBG\ncallipygous NN\ncallous JJ\ncalloused JJ\ncallously RB\ncallousness NN\ncalls VBZ\ncalluses NNS\ncalm JJ\ncalmed VBD\ncalmer JJR\ncalmest JJS\ncalming VBG\ncalmly RB\ncalmness NN\ncaloric JJ\ncalorie NN\ncalorie-heavy JJ\ncalories NNS\ncalorimeter NN\ncalorimetric JJ\ncalumniated VBN\ncalumny NN\ncalves NNS\ncalving VBG\ncalypso NN\ncamaraderie NN\ncamcorder NN\ncamcorders NNS\ncame VBD\ncamel NN\ncamellias NNS\ncameo NN\ncameo-like JJ\ncameos NNS\ncamera NN\ncameraman NN\ncameramen NNS\ncameras NNS\ncamouflage NN\ncamouflaged VBN\ncamp NN\ncamp-made JJ\ncampagna NN\ncampaign NN\ncampaign-decided NN\ncampaign-finance JJ\ncampaigned VBD\ncampaigners NNS\ncampaigning VBG\ncampaigns NNS\ncamped VBD\ncamper NN\ncampers NNS\ncampfire NN\ncampground NN\ncampgrounds NNS\ncamping NN\ncamping-out JJ\ncampmate NN\ncamps NNS\ncampsites NNS\ncampus NN\ncampuses NNS\ncams NNS\ncan MD\ncan't MD\ncan.. MD\ncanal NN\ncanals NNS\ncanard NN\ncanary-colored JJ\ncancel VB\ncanceled VBN\ncanceling VBG\ncancellation NN\ncancellations NNS\ncancelled VBN\ncancelling VBG\ncancels VBZ\ncancer NN\ncancer-causing JJ\ncancer-gene JJ\ncancer-related JJ\ncancer-ridden JJ\ncancer-suppressing JJ\ncancer-suppressors NNS\ncancer-susceptible JJ\ncancerous JJ\ncancers NNS\ncandid JJ\ncandidacy NN\ncandidate NN\ncandidate-picking JJ\ncandidates NNS\ncandidly RB\ncandies NNS\ncandle NN\ncandle-lit JJ\ncandlelight NN\ncandles NNS\ncandlewick NN\ncandor NN\ncandour NN\ncandy NN\ncandybar NN\ncane NN\ncanine JJ\ncaning NN\ncanister NN\ncanisters NNS\ncanker NN\ncanned JJ\ncanned-food NN\ncanned-foods NNS\ncanned-mushroom JJ\ncanneries NNS\ncanners NNS\ncannery NN\ncannibalism NN\ncannibalistic JJ\ncannibalize VB\ncannibalizing VBG\ncannibals NNS\ncanning NN\ncannister NN\ncannisters NNS\ncannon NN\ncannonball NN\ncannons NNS\ncannot MD\ncanny JJ\ncanoe NN\ncanoes NNS\ncanon NN\ncanonist NN\ncanonized VBN\ncanons NNS\ncanopy NN\ncans NNS\ncant NN\ncantaloupe NN\ncanted JJ\ncanteen NN\ncanter NN\ncanter'neath VBP|IN\ncantered VBD\ncantilevers NNS\ncanting JJ\ncantles NNS\ncanto FW\ncantonal JJ\ncantonment NN\ncantons NNS\ncanvas NN\ncanvases NNS\ncanvass NN\ncanvassed VBN\ncanvassers NNS\ncanvassing VBG\ncanyon NN\ncanyons NNS\ncanyonside NN\ncap NN\ncap'n NN\ncap-and-ball JJ\ncap. NN\ncapabilities NNS\ncapabilities. NN\ncapability NN\ncapability... :\ncapable JJ\ncapably RB\ncapacious JJ\ncapacitance NN\ncapacities NNS\ncapacitor NN\ncapacitors NNS\ncapacity NN\ncapacity-controlled JJ\ncapacity-expansion JJ\ncape NN\ncaper NN\ncapercailzie NN\ncapering VBG\ncapers NNS\ncapes NNS\ncapillary NN\ncapita NNS\ncapital NN\ncapital-appreciation NN\ncapital-assets NNS\ncapital-boosting JJ\ncapital-coverage NN\ncapital-draining VBG\ncapital-equipment NN\ncapital-formation NN\ncapital-gain JJ\ncapital-gains NNS\ncapital-gains-cut JJ\ncapital-gains-tax JJ\ncapital-goods NNS\ncapital-improvement NN\ncapital-intensive JJ\ncapital-market JJ\ncapital-markets JJ\ncapital-punishment NN\ncapital-raising JJ\ncapital-reserve JJ\ncapital-spending JJ\ncapital-to-asset NN\ncapital-to-assets JJ\ncapitalgains NNS\ncapitalism NN\ncapitalist JJ\ncapitalist-democratic JJ\ncapitalist-exploiters-greedy-American-consumers-global JJ\ncapitalistic JJ\ncapitalists NNS\ncapitalization NN\ncapitalizations NNS\ncapitalize VB\ncapitalized VBN\ncapitalizes VBZ\ncapitalizing VBG\ncapitalmarket NN\ncapitals NNS\ncapitol NN\ncapitulated VBD\ncapitulation NN\ncapo NN\ncapos NNS\ncapped VBD\ncapping VBG\ncappuccino NN\ncapricious JJ\ncapriciously RB\ncapriciousness NN\ncaps NNS\ncapsicum NN\ncapstan NN\ncapsule NN\ncapsules NNS\ncaptain NN\ncaptaincy NN\ncaptains NNS\ncaption NN\ncaptioned VBD\ncaptions NNS\ncaptious JJ\ncaptivated VBN\ncaptivating JJ\ncaptive JJ\ncaptives NNS\ncaptivity NN\ncaptors NNS\ncapture VB\ncaptured VBN\ncaptures VBZ\ncapturing VBG\ncar NN\ncar-assembly NN\ncar-buff JJ\ncar-care JJ\ncar-crash JJ\ncar-dealers NNS\ncar-development NN\ncar-happy JJ\ncar-industry NN\ncar-leasing NN\ncar-maker NN\ncar-market JJ\ncar-owners NNS\ncar-parking JJ\ncar-parts JJ\ncar-rental JJ\ncar-safety JJ\ncar-sales NNS\ncarabao NN\ncaramel NN\ncarat NN\ncarats NNS\ncaravan NN\ncaravans NNS\ncaraway JJ\ncarbamazepine NN\ncarbaryl NN\ncarbide NN\ncarbide-products NNS\ncarbine NN\ncarbines NNS\ncarbohydrate NN\ncarbon NN\ncarbon-14 NN\ncarbon-dioxide NN\ncarbon-halogen NN\ncarbon-impregnated JJ\ncarbon-monoxide NN\ncarbonates NNS\ncarbons NNS\ncarbonyl NN\ncarborundum JJ\ncarboxy-labeled JJ\ncarboxymethyl NN\ncarcass NN\ncarcasses NNS\ncarcinogen NN\ncarcinogenic JJ\ncarcinogens NNS\ncarcinoma NN\ncard NN\ncard-activated JJ\ncard-carrying JJ\ncard-holder NN\ncard-member JJ\ncardamom NN\ncardboard NN\ncardholder NN\ncardholders NNS\ncardiac JJ\ncardiac-drug JJ\ncardigan NN\ncardinal JJ\ncardinals NNS\ncardiologist NN\ncardiologists NNS\ncardiomegaly NN\ncardiovascular JJ\ncardmember NN\ncardmembers NNS\ncards NNS\ncare NN\ncare-adviser NN\ncare-free JJ\ncare. NN\ncared VBD\ncareen VB\ncareened VBD\ncareening VBG\ncareer NN\ncareer-bound JJ\ncareer-risking JJ\ncareerism NN\ncareerists NNS\ncareers NNS\ncarefree JJ\ncareful JJ\ncarefully RB\ncarefulness NN\ncaregiver NN\ncaregivers NNS\ncareless JJ\ncarelessly RB\ncarelessness NN\ncares VBZ\ncaress VB\ncaressed VBD\ncaresses NNS\ncaressing VBG\ncaretaker NN\ncareworn JJ\ncargo NN\ncargo-handling NN\ncargoes NNS\ncaribou NN\ncaricature NN\ncaricatured VBN\ncaricatures NNS\ncaricaturist NN\ncarillons NNS\ncaring VBG\ncarinii NN\ncarload NN\ncarloading NN\ncarloads NNS\ncarnage NN\ncarnal JJ\ncarnality NN\ncarne FW\ncarnival NN\ncarnivores NNS\ncarnivorous JJ\ncaro FW\ncarob NN\ncarousel NN\ncarousing NN\ncarp VBP\ncarpal NN\ncarpenter NN\ncarpenters NNS\ncarpentry NN\ncarpet NN\ncarpet-cleaning JJ\ncarpetbaggers NNS\ncarpeted VBN\ncarpeting NN\ncarpets NNS\ncarping VBG\ncarport NN\ncarps VBZ\ncarreer NN\ncarriage NN\ncarriage-step NN\ncarriages NNS\ncarried VBD\ncarrier NN\ncarrier-based JJ\ncarrier-current JJ\ncarriers NNS\ncarries VBZ\ncarrion JJ\ncarrot NN\ncarrots NNS\ncarry VB\ncarry-forward NN\ncarry-forwards NNS\ncarry-in JJ\ncarry-on JJ\ncarryforwards NNS\ncarrying VBG\ncarryover NN\ncarryovers NNS\ncars NNS\ncart NN\ncarte NN\ncarted VBD\ncartel NN\ncartelized VBN\ncartels NNS\ncartilage NN\ncarting VBG\ncarton NN\ncartons NNS\ncartoon NN\ncartoonish JJ\ncartoonist NN\ncartoonists NNS\ncartoonlike JJ\ncartoons NNS\ncartridge NN\ncartridges NNS\ncarts NNS\ncartwheels NNS\ncarve VB\ncarved VBN\ncarved-out-of-solid JJ\ncarven VBN\ncarver NN\ncarvers NNS\ncarves VBZ\ncarving VBG\ncarvings NNS\ncaryatides NNS\ncasbah NN\ncascade NN\ncascaded VBD\ncascades VBZ\ncascading VBG\ncase NN\ncase-by-case JJ\ncase-hardened JJ\ncase-history NN\ncase-law NN\ncase-to-case JJ\ncase... :\ncasebook NN\ncased VBD\ncasein NN\ncaseload NN\ncaseloads NNS\ncases NNS\ncasework NN\ncaseworkers NNS\ncash NN\ncash*/NN-flow JJ\ncash-and-stock JJ\ncash-back JJ\ncash-deferred JJ\ncash-draw JJ\ncash-equivalent JJ\ncash-flow JJ\ncash-flush JJ\ncash-hungry JJ\ncash-interest JJ\ncash-laden JJ\ncash-management JJ\ncash-only JJ\ncash-or-shares JJ\ncash-raising JJ\ncash-rich JJ\ncash-short JJ\ncash-squeeze NN\ncash-squeezed JJ\ncash-starved JJ\ncash-strapped JJ\ncash-up-front NN\ncash-value JJ\ncashed VBD\ncashews NNS\ncashflow NN\ncashier NN\ncashiers NNS\ncashing VBG\ncashmere NN\ncasings NNS\ncasino NN\ncasino-company NN\ncasino-hotel NN\ncasinos NNS\ncask NN\ncasket NN\ncaskets NNS\ncasks NNS\ncassette NN\ncassettes NNS\ncassocked JJ\ncast NN\ncast-iron NN\ncast-proof JJ\ncastanets NNS\ncaste NN\ncaster NN\ncasters NNS\ncastigate VB\ncastigated VBN\ncastigates VBZ\ncastigating VBG\ncastigation NN\ncasting VBG\ncastings NNS\ncastle NN\ncastle-like JJ\ncastle-themed JJ\ncastlelike JJ\ncastles NNS\ncastling VBG\ncastoff JJ\ncastor NN\ncastor-oil NN\ncastorbean NN\ncastorbeans NNS\ncasts VBZ\ncasual JJ\ncasually RB\ncasuals NNS\ncasualties NNS\ncasualty NN\ncasualty-insurance NN\ncasualty-loss JJ\ncasuistry NN\ncat NN\ncat-and-mouse JJ\ncat-like JJ\ncataclysmic JJ\ncataclysms NNS\ncatalog NN\ncatalog-clothing-merchandiser NN\ncataloging VBG\ncatalogs NNS\ncatalogue NN\ncatalogued VBN\ncatalogues NNS\ncatalyst NN\ncatalysts NNS\ncatalytic JJ\ncatalyzed VBN\ncatamaran NN\ncatapult VB\ncatapulted VBD\ncatapulting VBG\ncatapults VBZ\ncataract NN\ncataracts NNS\ncatastrophe NN\ncatastrophes NNS\ncatastrophic JJ\ncatastrophic-care NN\ncatastrophic-health JJ\ncatastrophic-health-care NN\ncatastrophic-healthcare JJ\ncatastrophic-illness NN\ncatastrophically RB\ncatbird JJ\ncatcalls NNS\ncatch VB\ncatch-all JJ\ncatch-up NN\ncatchall NN\ncatchee VB\ncatcher NN\ncatchers NNS\ncatches VBZ\ncatching VBG\ncatchup JJ\ncatchword NN\ncatchwords NNS\ncatchy JJ\ncatechism NN\ncatechize VB\ncatecholamines NNS\ncategorical JJ\ncategorically RB\ncategories NNS\ncategorize VB\ncategorized VBN\ncategorizing VBG\ncategory NN\ncater VBP\ncatered VBD\ncaterer NN\ncatering NN\ncaterpillar NN\ncaterpillars NNS\ncaters VBZ\ncatfish NN\ncatharsis NN\ncathartic JJ\ncathedra FW\ncathedral NN\ncathedrals NNS\ncatheter NN\ncatheters NNS\ncathode NN\ncathode-ray NN\ncathoderay NN\ncathodes NNS\ncathodoluminescent JJ\ncathodophoretic JJ\ncathouse NN\ncatkin NN\ncatkins NNS\ncatlike JJ\ncats NNS\ncatsup NN\ncattaloe NN\ncattle NNS\ncattle-car NN\ncattle-lifter NN\ncattlemen NNS\ncatty JJ\ncaucus NN\ncaucuses NNS\ncaught VBN\ncauliflower NN\ncausal JJ\ncausally RB\ncausative JJ\ncause NN\ncause-and-effect JJ\ncause... :\ncaused VBN\ncauses NNS\ncauseway NN\ncauseways NNS\ncausing VBG\ncaustic JJ\ncauterize VB\ncaution NN\ncautionary JJ\ncautioned VBD\ncautioning VBG\ncautions VBZ\ncautious JJ\ncautiously RB\ncautiousness NN\ncavalcades NNS\ncavalier JJ\ncavalry NN\ncavalrymen NNS\ncave NN\ncave-in NN\ncave-like JJ\ncave-men NNS\ncaveat NN\ncaveats NNS\ncaved VBD\ncavemen NNS\ncavern NN\ncavernous JJ\ncaves NNS\ncaviar NN\ncavin VBG\ncaving NN\ncavities NNS\ncavity NN\ncavity-fighting JJ\ncavort VBP\ncavorted VBD\ncavorting VBG\ncawing VBG\ncayenne NN\ncc NN\ncc. NN\ncease VB\ncease-and-desist JJ\ncease-fire NN\nceased VBD\nceasefire NN\nceaseless JJ\nceaselessly RB\nceases VBZ\nceasing VBG\ncedar NN\ncedar-roofed JJ\ncede VB\nceded VBD\nceding VBG\nceiling NN\nceilings NNS\ncelebrants NNS\ncelebrate VB\ncelebrated VBD\ncelebrates VBZ\ncelebrating VBG\ncelebration NN\ncelebrations NNS\ncelebrators NNS\ncelebrities NNS\ncelebrity NN\ncelebrity-driven JJ\ncelebrity-oriented JJ\ncelerity NN\ncelery NN\ncelestial JJ\nceliac JJ\ncell NN\ncell-free JJ\ncellar NN\ncellars NNS\ncellist NN\ncellists NNS\ncellophane NN\ncells NNS\ncellular JJ\ncellular-phone NN\ncellular-telephone JJ\ncelluloids NNS\ncellulose NN\ncelluloses NNS\nceltics NNPS\ncement NN\ncement-and-glass JJ\ncement-makers NNS\ncement-making JJ\ncement-mixing JJ\ncement-truck JJ\ncemented VBN\ncementing VBG\ncemeteries NNS\ncemetery NN\ncensor VBP\ncensored VBN\ncensorial JJ\ncensors NNS\ncensorship NN\ncensure NN\ncensured VBD\ncensures NNS\ncensus NN\ncensuses NNS\ncent NN\ncent-a-bushel JJ\ncent-per-barrel JJ\ncentaur NN\ncentenarians NNS\ncentenary JJ\ncentennial NN\ncenter NN\ncenter-aisle NN\ncenter-field NN\ncenter-fire JJ\ncenter-punch VB\ncenter-right JJ\ncenter-stage JJ\ncenter-vented JJ\ncentered VBN\ncenterfielder NN\ncenterfold NN\ncentering VBG\ncenterline NN\ncenterpiece NN\ncenters NNS\ncenterstage NN\ncentigrade JJ\ncentimeter NN\ncentimeters NNS\ncentral JJ\ncentral-bank NN\ncentral-city NN\ncentral-district JJ\ncentral-planning JJ\ncentrality NN\ncentralization NN\ncentralize VB\ncentralized JJ\ncentralizing VBG\ncentrally RB\ncentre NN\ncentrex NN\ncentric JJ\ncentrifugal JJ\ncentrifugation NN\ncentrifuge NN\ncentrifuged VBN\ncentrifuging VBG\ncentrist JJ\ncents NNS\ncents-a-share JJ\ncents-a-unit JJ\ncents-off JJ\ncents-per-hour JJ\ncentum NN\ncenturies NNS\ncenturies-old JJ\ncenturions NNS\ncentury NN\ncentury-old JJ\ncentury... :\nceramic JJ\nceramics NNS\ncereal NN\ncereals NNS\ncerebellum NN\ncerebral JJ\ncerebrated VBN\nceremonial JJ\nceremonially RB\nceremonies NNS\nceremoniously RB\nceremony NN\ncertain JJ\ncertainly RB\ncertainty NN\ncertificate NN\ncertificate-of-need NN\ncertificates NNS\ncertification NN\ncertified VBN\ncertifies VBZ\ncertify VB\ncertifying VBG\ncertin NN\ncertiorari NNS\ncertitudes NNS\ncerulean NN\ncervelat NN\ncervical JJ\ncervix NN\ncesium-137 NN\ncessation NN\ncession NN\ncesspools NNS\ncetera NN\nceteras FW\ncf. NN\ncha-chas NNS\nchafe VBP\nchafed VBN\nchafes VBZ\nchaff NN\nchaffing VBG\nchafing VBG\nchaga NN\nchagrin NN\nchain NN\nchain-of-command NN\nchain-reaction NN\nchain-smoking NN\nchain-store JJ\nchain... :\nchained VBD\nchainlike JJ\nchains NNS\nchair NN\nchaired VBN\nchairing NN\nchairman NN\nchairman-designate NNP\nchairman-elect NN\nchairmanship NN\nchairmanships NNS\nchairmen NNS\nchairs NNS\nchairwoman NN\nchaise NN\nchalk NN\nchalk-white JJ\nchalked VBN\nchalking VBG\nchalky JJ\nchallenge NN\nchallengeable JJ\nchallenged VBD\nchallenger NN\nchallengers NNS\nchallenges NNS\nchallenging VBG\nchamber NN\nchamber-music JJ\nchambered VBN\nchambermaid NN\nchambermaids NNS\nchamberpot NN\nchambers NNS\nchambre FW\nchameleon NN\nchameleons NNS\nchamfer NN\nchamois NN\nchamp NN\nchampagne NN\nchampion NN\nchampioned VBN\nchampioning VBG\nchampions NNS\nchampionship NN\nchampionship-team JJ\nchampionships NNS\nchamps NNS\nchance NN\nchanced VBD\nchancel NN\nchancellor NN\nchanceries NNS\nchancery NN\nchances NNS\nchancy JJ\nchandelier NN\nchandeliers NNS\nchandelle VB\nchange NN\nchange-over NN\nchange-ringing NN\nchangeable JJ\nchanged VBN\nchanged... :\nchangeover NN\nchanges NNS\nchanges... :\nchanging VBG\nchannel NN\nchannel-zapping JJ\nchanneled VBN\nchanneling VBG\nchannelled VBN\nchannels NNS\nchansons FW\nchant NN\nchanted VBD\nchanter FW\nchanteuse NN\nchantey NN\nchantier FW\nchanting VBG\nchants NNS\nchaos NN\nchaotic JJ\nchap NN\nchap. NN\nchapel NN\nchapel-like JJ\nchapels NNS\nchaperon NN\nchaperone NN\nchaperoned JJ\nchaplain NN\nchaplains NNS\nchaps NNS\nchapter NN\nchapters NNS\nchar VB\nchar-broiled JJ\nchar-grilled JJ\ncharacter NN\ncharacter-education NN\ncharacter-recognition NN\ncharacteristic JJ\ncharacteristically RB\ncharacteristics NNS\ncharacterization NN\ncharacterizations NNS\ncharacterize VB\ncharacterized VBN\ncharacterizes VBZ\ncharacterizing VBG\ncharacterless JJ\ncharacters NNS\ncharcoal NN\ncharcoal-broiled JJ\ncharcoaled VBN\ncharge NN\ncharge-a-plate NN\ncharge-card JJ\ncharge-excess NN\ncharge-offs NNS\ncharge-offs... :\nchargeable JJ\ncharged VBN\ncharges NNS\nchargin VBG\ncharging VBG\nchariot NN\ncharisma NN\ncharismatic JJ\ncharitable JJ\ncharitably RB\ncharities NNS\ncharity NN\ncharlatan NN\ncharlatanry NN\ncharlatans NNS\ncharlotte NN\ncharm NN\ncharmed VBN\ncharmer NN\ncharmers NNS\ncharming JJ\ncharmingly RB\ncharms NNS\ncharred JJ\nchart NN\nchart-room JJ\nchartaceos NNS\ncharted VBN\ncharter NN\ncharter-boat NN\ncharter-shipping JJ\ncharter-type JJ\nchartered JJ\ncharters NNS\ncharting NN\nchartings NNS\nchartist NN\nchartists NNS\nchartroom NN\ncharts NNS\nchary JJ\nchase NN\nchased VBN\nchasers NNS\nchasing VBG\nchasm NN\nchassis NN\nchaste JJ\nchastened VBD\nchastised VBD\nchastisement NN\nchastises VBZ\nchastity NN\nchat NN\nchateau NN\nchateaux NN\nchatte FW\nchatted VBD\nchattels NNS\nchatter NN\nchattered VBD\nchattering VBG\nchattily RB\nchatting VBG\nchatty JJ\nchauffeur NN\nchauffeur-driven JJ\nchauffeured VBN\nchauffeurs NNS\nchaulmoogra NN\nchauvinism NN\nchauvinistic JJ\nchauvinists NNS\nchaw NN\ncheap JJ\ncheap-money NN\ncheap-shot JJ\ncheap-to-make JJ\ncheap-wine JJ\ncheapening VBG\ncheapens VBZ\ncheaper JJR\ncheapest JJS\ncheaply RB\ncheat VB\ncheated VBN\ncheater NN\ncheaters NNS\ncheating NN\ncheats VBZ\ncheck NN\ncheck-kiting JJ\ncheck-out NN\ncheck-processing JJ\ncheck-ups NNS\ncheckbook NN\ncheckbooks NNS\nchecked VBN\nchecker NN\ncheckers NNS\ncheckin VBG\nchecking VBG\nchecking-account JJ\nchecklist NN\ncheckout NN\ncheckout-stand NN\ncheckpoints NNS\nchecks NNS\ncheckup NN\ncheek NN\ncheek-by-jowl JJ\ncheek-to-cheek JJ\ncheek-to-jowl RB\ncheekbone NN\ncheekbones NNS\ncheeks NNS\ncheeky JJ\ncheer NN\ncheere VBP\ncheered VBD\ncheerful JJ\ncheerfully RB\ncheerfulness NN\ncheering VBG\ncheerleader NN\ncheerleaders NNS\ncheerleading NN\ncheers NNS\ncheery JJ\ncheese NN\ncheeseburgers NNS\ncheesecake NN\ncheesecloth NN\ncheeses NNS\ncheesy JJ\ncheetah NN\ncheetal JJ\nchef NN\nchefs NNS\nchelas NNS\nchelicerates NNS\nchemcial JJ\nchemical NN\nchemical-and-resource JJ\nchemical-arms NNS\nchemical-arms-control JJ\nchemical-bomb NN\nchemical-industry NN\nchemical-weapon NN\nchemical-weapons NNS\nchemically RB\nchemicals NNS\nchemicals-industry NN\nchemise NN\nchemist NN\nchemist-turned-entrepreneur NN\nchemistries NNS\nchemistry NN\nchemists NNS\nchemotherapy NN\nchenille NN\ncherish VB\ncherished VBN\ncherishes VBZ\ncherishing VBG\ncherries NNS\ncherry JJ\ncherry-flavored JJ\ncherubim NN\ncherubs NNS\nchess NN\nchest NN\nchest-back-lat-shoulder JJ\nchest-back-shoulder JJ\nchest-high JJ\nchest-swelling JJ\nchestnut NN\nchestnuts NNS\nchests NNS\nchevaux FW\nchevre NN\nchew VB\nchewed VBD\nchewing VBG\nchews NNS\nchi-chi FW\nchic JJ\nchicago NNP\nchicanery NN\nchick NN\nchicken NN\nchicken-and-egg JJ\nchicken-mutilating JJ\nchicken-wire JJ\nchickens NNS\nchicks NNS\nchicly RB\nchide VB\nchided VBN\nchides VBZ\nchiding VBG\nchief JJ\nchiefdom NN\nchiefdoms NNS\nchiefly RB\nchiefs NNS\nchieftain NN\nchieftains NNS\nchien FW\nchignon NN\nchilblains NNS\nchild NN\nchild-abuse NN\nchild-as-required-yuppie-possession NN\nchild-bearing NN\nchild-care NN\nchild-cloud NN\nchild-development NN\nchild-face NN\nchild-oriented JJ\nchild-parent JJ\nchild-protection NN\nchild-rearing NN\nchild-safety JJ\nchildbearing VBG\nchildbirth NN\nchildcare NN\nchildhood NN\nchildish JJ\nchildishly RB\nchildishness NN\nchildless JJ\nchildlike JJ\nchildren NNS\nchildren's-rights JJ\nchildrens NNS\nchili NN\nchill NN\nchilled VBN\nchillier NN\nchillin VBG\nchilling VBG\nchillingly RB\nchills NNS\nchilly JJ\nchimed VBD\nchimera-chasing JJ\nchimes VBZ\nchimiques FW\nchimney NN\nchimneys NNS\nchimp NN\nchimpanzees NNS\nchimps NNS\nchin NN\nchin-out JJ\nchin-up IN\nchin-ups NNS\nchin-wagging JJ\nchina NN\nchines NNS\nchinked VBN\nchinless JJ\nchinning NN\nchinoiserie NN\nchinos NNS\nchins NNS\nchintz VBP\nchip NN\nchip-design JJ\nchip-making NN\nchip-packaging NN\nchipped VBN\nchipper JJ\nchipping VBG\nchips NNS\nchiropractor NN\nchirped VBD\nchirping VBG\nchirpy JJ\nchisel NN\nchiseled VBN\nchisels NNS\nchit NN\nchitchat NN\nchivalrous JJ\nchivalry NN\nchive NN\nchives NNS\nchivying VBG\nchlorazepate NN\nchloride NN\nchlorides NNS\nchlorine NN\nchlorine-carbon NN\nchlorofluorocarbon NN\nchlorofluorocarbons NNS\nchlorothiazide NN\nchlorpromazine NN\nchock-a-block JJ\nchockfull JJ\nchocks NNS\nchocolate NN\nchocolates NNS\nchoice NN\nchoices NNS\nchoicest JJS\nchoir NN\nchoke VB\nchoked VBD\nchoking VBG\nchole NN\ncholecystokinin NN\ncholelithiasis NN\ncholera NN\ncholesterol NN\ncholesterol-fearing JJ\ncholesterol-free JJ\ncholesterol-lowering JJ\ncholesterol-reduction NN\ncholesterol-rich JJ\ncholinesterase NN\ncholla NN\ncholorfluorocarbons NNS\nchomp NN\nchomped VBN\nchomping VBG\nchoose VB\nchooses VBZ\nchoosier JJR\nchoosing VBG\nchoosy JJ\nchop VB\nchopped JJ\nchopper NN\nchoppiness NN\nchopping VBG\nchoppy JJ\nchops NNS\nchopsticks NNS\nchoral JJ\nchord NN\nchords NNS\nchore NN\nchoreographed VBN\nchoreographer NN\nchoreographers NNS\nchoreographic JJ\nchoreography NN\nchores NNS\nchorines NNS\nchoring NN|VBG\nchortled VBD\nchortles VBZ\nchortling VBG\nchorus NN\nchorused VBD\nchoruses NNS\nchose VBD\nchosen VBN\nchouise NN\nchousin VBG\nchow NN\nchowder NN\nchowders NNS\nchris NNP\nchristen VB\nchristened VBD\nchristening NN\nchristianizing VBG\nchromatic JJ\nchromatics NNS\nchromatogram NN\nchromatographic JJ\nchromatography NN\nchrome NN\nchromed JJ\nchromic JJ\nchromium NN\nchromium-plated JJ\nchromium-substituted JJ\nchromosome NN\nchromosomes NNS\nchronic JJ\nchronically RB\nchronicle NN\nchronicled VBD\nchronicler NN\nchroniclers NNS\nchronicles VBZ\nchronicling VBG\nchronological JJ\nchronologically RB\nchronology NN\nchrysanthemums NNS\nchrysotile NN\nchubby JJ\nchuck NN\nchuck-a-luck NN\nchucked VBD\nchucking VBG\nchuckle NN\nchuckled VBD\nchuckles NNS\nchuckling VBG\nchuffing VBG\nchug VBP\nchugging VBG\nchugs NNS\nchum NN\nchumminess NN\nchump NN\nchums NNS\nchunk NN\nchunks NNS\nchunky JJ\nchurch NN\nchurch-goers NNS\nchurch-going JJ\nchurch-owned JJ\nchurch-state NN\nchurch-supported JJ\nchurches NNS\nchurchgoers NNS\nchurchgoing JJ\nchurchly JJ\nchurchmen NNS\nchurchyard NN\nchurn VB\nchurned VBD\nchurning VBG\nchurns VBZ\nchute NN\nchutney NN\nchutzpah NN\ncials NNS\ncicadas NNS\ncider NN\ncigar NN\ncigar-chomping JJ\ncigar-making JJ\ncigaret NN\ncigarette NN\ncigarette-tax NN\ncigarette-vending JJ\ncigarettes NNS\ncigars NNS\ncilia NNS\nciliated VBN\nciliates NNS\ncinch NN\ncinches NNS\ncinder NN\ncinder-block JJ\ncinderblock NN\ncinders NNS\ncinema NN\ncinematic JJ\ncinematographer NN\ncinematography NN\ncinq FW\ncipher VB\nciphers NNS\ncirca RB\ncircle NN\ncircled VBD\ncircles NNS\ncircling VBG\ncirconscription NN\ncirconscriptions NNS\ncircuit NN\ncircuit-board NN\ncircuit-breaker NN\ncircuitous JJ\ncircuitry NN\ncircuits NNS\ncircular JJ\ncircularity NN\ncirculars NNS\ncirculate VB\ncirculated VBD\ncirculates VBZ\ncirculating VBG\ncirculation NN\ncirculations NNS\ncirculatory JJ\ncircumcision NN\ncircumference NN\ncircumlocution NN\ncircumpolar JJ\ncircumscribed JJ\ncircumscribing VBG\ncircumscriptions NNS\ncircumspect JJ\ncircumspection NN\ncircumspectly RB\ncircumstance NN\ncircumstances NNS\ncircumstantial JJ\ncircumvent VB\ncircumvent... :\ncircumventing VBG\ncircumvention NN\ncircumvents VBZ\ncircus NN\ncircuses NNS\ncirrhosis NN\ncistern NN\ncitadels NNS\ncitation NN\ncitations NNS\ncite VBP\ncited VBD\ncites VBZ\ncities NNS\nciting VBG\ncitizen NN\ncitizen-plaintiffs NNS\ncitizen-sparked JJ\ncitizenry NN\ncitizens NNS\ncitizenship NN\ncito FW\ncitrated VBN\ncitric JJ\ncitron JJ\ncitrus JJ\ncity NN\ncity-bred JJ\ncity-charter NN\ncity-dweller NN\ncity-like JJ\ncity-owned JJ\ncity-states NNS\ncity-trading NN\ncity-wide JJ\ncity\\/regional JJ\ncitya NN\ncitybred JJ\ncityscapes NNS\ncitywide JJ\nciv NN\ncivic JJ\ncivic-lunch JJ\ncivics NNS\ncivil JJ\ncivil-investigative JJ\ncivil-liberties NNS\ncivil-rights NNS\ncivil-service JJ\ncivilian JJ\ncivilian-aircraft NN\ncivilians NNS\ncivilised JJ\ncivility NN\ncivilization NN\ncivilizational JJ\ncivilizations NNS\ncivilize VB\ncivilized JJ\ncivilizing VBG\nclad VBN\ncladding NN\nclaim NN\nclaimant NN\nclaimants NNS\nclaimed VBD\nclaiming VBG\nclaims NNS\nclaims-processing NN\nclairaudiently RB\nclairvoyance NN\nclairvoyant JJ\nclam NN\nclambered VBD\nclambering VBG\nclammy JJ\nclamor VBP\nclamored VBD\nclamoring VBG\nclamorous JJ\nclamors VBZ\nclamp VB\nclampdown NN\nclampdowns NNS\nclamped VBD\nclamping VBG\nclamps NNS\nclams NNS\nclamshell NN\nclamshells NNS\nclan NN\nclandestine JJ\nclang NN\nclanged VBD\nclanging NN\nclanking VBG\nclannish JJ\nclannishness NN\nclap NN\nclapboard NN\nclapped VBD\nclapping VBG\nclaps NNS\nclaptrap NN\nclaret NN\nclarets NNS\nclarification NN\nclarifications NNS\nclarified VBN\nclarifies VBZ\nclarify VB\nclarifying VBG\nclarinet NN\nclarinetist NN\nclarity NN\nclash NN\nclashed VBN\nclashes NNS\nclashing VBG\nclasped VBD\nclasping VBG\nclass NN\nclass-action JJ\nclass-based JJ\nclass-biased JJ\nclass-conscious JJ\nclass-warfare JJ\nclass-warrior NN\nclassed VBN\nclasses NNS\nclassic JJ\nclassical JJ\nclassical-music JJ\nclassically RB\nclassicism NN\nclassics NNS\nclassiest JJS\nclassification NN\nclassification-angle JJ\nclassifications NNS\nclassificatory JJ\nclassified VBN\nclassified-ad NN\nclassifiers NNS\nclassifies VBZ\nclassify VB\nclassifying VBG\nclassless JJ\nclassmate NN\nclassmates NNS\nclassroom NN\nclassrooms NNS\nclassy JJ\nclatter NN\nclattered VBD\nclattering VBG\nclattery JJ\nclaudication NN\nclause NN\nclauses NNS\nclaustrophobia NN\nclaustrophobic JJ\nclaw NN\nclawed VBN\nclawing VBG\nclaws NNS\nclay NN\nclay-like JJ\nclay-mining NN\nclays NNS\nclean JJ\nclean-air JJ\nclean-bank JJ\nclean-burning JJ\nclean-cut JJ\nclean-fuels NNS\nclean-shaven JJ\nclean-top JJ\nclean-up JJ\nclean-water NN\ncleaned VBN\ncleaned-up JJ\ncleaner JJR\ncleaner-burning JJ\ncleaners NNS\ncleanest JJS\ncleaning NN\ncleaning-fluid NN\ncleanliness NN\ncleanly RB\ncleans VBZ\ncleanse VB\ncleansed VBD\ncleanser NN\ncleansers NNS\ncleansing NN\ncleanup NN\ncleanups NNS\nclear JJ\nclear-channel JJ\nclear-cut JJ\nclear-cutting NN\nclear-eyed JJ\nclear-headed JJ\nclear-it-out JJ\nclearance NN\nclearances NNS\ncleared VBN\nclearer JJR\nclearest JJS\nclearheaded JJ\nclearing VBG\nclearing-firm JJ\nclearinghouse NN\nclearly RB\nclearnace NN\nclearness NN\nclears VBZ\ncleat NN\ncleavage NN\ncleave VB\ncleaved VBN\ncleaver NN\ncleft NN\nclefts NNS\nclemency NN\nclench VB\nclenched JJ\nclenches VBZ\nclergy NN\nclergyman NN\nclergymen NNS\ncleric NN\nclerical JJ\nclerical-lay JJ\nclerics NNS\nclerk NN\nclerk-turned JJ\nclerking NN\nclerks NNS\nclever JJ\ncleverly RB\ncleverness NN\ncliche NN\ncliched JJ\ncliches NNS\nclick NN\nclicked VBD\nclicking VBG\nclicks NNS\nclient NN\nclient-service JJ\nclientele NN\nclients NNS\nclientslose JJ\ncliff NN\ncliffhanging VBG\ncliffs NNS\nclimactic JJ\nclimate NN\nclimates NNS\nclimatic JJ\nclimax NN\nclimaxed VBD\nclimaxes NNS\nclimb VB\nclimbable JJ\nclimbed VBD\nclimber NN\nclimbers NNS\nclimbing VBG\nclimbs VBZ\nclime NN\nclimes NNS\nclinch VB\nclinched VBD\nclincher NN\nclinches NNS\nclinching VBG\ncling VBP\nclinging VBG\nclings VBZ\nclingy JJ\nclinic NN\nclinical JJ\nclinical-products NNS\nclinically RB\nclinician NN\nclinics NNS\nclinked VBD\nclinkers NNS\nclip NN\nclipboard NN\nclipboard-size JJ\nclipboard-sized JJ\nclipboards NNS\nclipped VBN\nclipping NN\nclippings NNS\nclips NNS\nclique NN\ncliques NNS\ncloak NN\ncloakrooms NNS\ncloaks NNS\nclobber VB\nclobbered VBN\nclobbers VBZ\nclock NN\nclock-stopped VBN\nclocked VBN\nclocking NN\nclocks NNS\nclockwise RB\nclockwork NN\nclod NN\ncloddishness NN\nclodhoppers NNS\nclods NNS\nclog VB\nclogged VBN\nclogging VBG\nclogs VBZ\ncloistered JJ\ncloisters NNS\nclomped VBD\nclonazepam NN\nclone NN\ncloned VBN\nclones NNS\nclonic JJ\ncloning VBG\nclose VB\nclose-in JJ\nclose-knit JJ\nclose-mouthed JJ\nclose-up NN\nclosed VBD\nclosed-circuit JJ\nclosed-door JJ\nclosed-end JJ\nclosedown NN\nclosedowns NNS\nclosely RB\nclosely-held JJ\nclosely-packed JJ\ncloseness NN\ncloser JJR\ncloses VBZ\nclosest JJS\ncloset NN\ncloset-sized JJ\ncloseted JJ\nclosets NNS\ncloseup JJ\ncloseups NNS\nclosing VBG\nclosings NNS\nclosure NN\nclosures NNS\nclot NN\nclot-reducing JJ\ncloth NN\ncloth-of-gold NN\nclothbound JJ\nclothe VB\nclothed VBN\nclothes NNS\nclothesbrush NN\nclotheshorse NN\nclothesline NN\nclotheslines NNS\nclothier NN\nclothiers NNS\nclothing NN\nclothing-store NN\nclots NNS\nclotted JJ\nclotting VBG\ncloture NN\ncloud NN\ncloud-flecked JJ\ncloudburst NN\nclouded VBN\nclouding NN\ncloudless JJ\nclouds NNS\ncloudy JJ\nclout NN\nclove NN\nclover NN\ncloves NNS\nclown NN\nclowning NN\nclowns NNS\ncloying JJ\nclozapine NN\nclub NN\nclubbed JJ\nclubbers NNS\nclubby JJ\nclubhouse NN\nclubhouses NNS\nclubrooms NNS\nclubs NNS\ncluck NN\nclucked VBD\nclucking VBG\nclucks VBZ\nclue NN\nclues NNS\nclump NN\nclumps NNS\nclumsily RB\nclumsy JJ\nclung VBD\nclunker NN\nclunky JJ\ncluster NN\nclustered VBN\nclustering VBG\nclusters NNS\nclutch NN\nclutched VBD\nclutches NNS\nclutching VBG\nclutter NN\ncluttered VBN\ncm NN\ncm. NN\ncnt VB\nco-anchor NN\nco-anchored VBN\nco-author NN\nco-authored VBN\nco-authors VBZ\nco-chaired VBN\nco-chairman NN\nco-chairmen NNS\nco-chairperson NN\nco-chief JJ\nco-conspirators NNS\nco-defendant NN\nco-defendants NNS\nco-develop VB\nco-developers NNS\nco-director NN\nco-edited JJ\nco-editor NN\nco-edits VBZ\nco-educational JJ\nco-exist VB\nco-existence NN\nco-extinction NN\nco-founded VBD\nco-founder NN\nco-founders NNS\nco-head NN\nco-heads NNS\nco-hero NN\nco-host VBP\nco-insurance JJ\nco-inventors NNS\nco-lead JJ\nco-major NN\nco-managed VBN\nco-manager NN\nco-managers NNS\nco-managing JJ\nco-market VB\nco-marketing JJ\nco-obligation NN\nco-occurring JJ\nco-op NN\nco-operate NN\nco-operated VBD\nco-operates VBZ\nco-operating VBG\nco-operation NN\nco-operative JJ\nco-ops NN\nco-optation NN\nco-opted VBN\nco-opting NN\nco-ordinate VB\nco-ordinated JJ\nco-ordinates VBZ\nco-ordinating VBG\nco-ordination NN\nco-ordinator NN\nco-owner NN\nco-payment JJ\nco-payments NNS\nco-pilot NN\nco-pilots NNS\nco-plaintiff NN\nco-presidents NNS\nco-produce VB\nco-produced VBD\nco-production NN\nco-publisher NN\nco-signed JJ\nco-signers NN\nco-sponsor NN\nco-sponsored VBD\nco-sponsoring JJ\nco-sponsors NNS\nco-star NN\nco-venture NN\nco-worker NN\nco-workers NNS\nco-written VBN\nco-wrote VBD\ncoach NN\ncoached VBN\ncoaches NNS\ncoaching NN\ncoachman NN\ncoachmen NNS\ncoachwork NN\ncoagulating VBG\ncoahse NN\ncoal NN\ncoal-black JJ\ncoal-fire JJ\ncoal-fired JJ\ncoal-like JJ\ncoal-miners NNS\ncoal-mining JJ\ncoal-preparation JJ\ncoal-railroad NN\ncoal-seam-gas JJ\ncoalesce VB\ncoalesced VBN\ncoalescence NN\ncoalesces VBZ\ncoalfields NNS\ncoalition NN\ncoalitions NNS\ncoals NNS\ncoals-to-Newcastle JJ\ncoarse JJ\ncoarsely RB\ncoarsened VBN\ncoarseness NN\ncoast NN\ncoast-to-coast JJ\ncoastal JJ\ncoasted VBD\ncoaster NN\ncoasters NNS\ncoastline NN\ncoasts NNS\ncoat NN\ncoat... :\ncoated VBN\ncoated-magnetic JJ\ncoating NN\ncoatings NNS\ncoats NNS\ncoattails NNS\ncoax VB\ncoaxed VBN\ncoaxes VBZ\ncoaxial JJ\ncoaxing JJ\ncobalt NN\ncobalt-60 NN\ncobbled VBN\ncobbler NN\ncobblestone NN\ncobblestones NNS\ncobra NN\ncobwebs NNS\ncoca NN\ncocaine NN\ncocaine-processing NN\ncocao NN\ncoccidioidomycosis NN\ncoccidiosis NN\ncochannel JJ\ncock NN\ncockatoo NN\ncockatoos NNS\ncocked VBD\ncockeyed JJ\ncockier JJR\ncockiness NN\ncockles NNS\ncockpit NN\ncockpits NNS\ncockroach NN\ncockroaches NNS\ncocktail NN\ncocktails NNS\ncocky JJ\ncoco NN\ncocoa NN\ncocoa-trading JJ\ncoconut NN\ncoconut-containing JJ\ncoconut-lime JJ\ncoconuts NNS\ncocoon NN\ncocopalm NN\ncocotte NN\ncocu NN\ncod NN\ncod-liver NN\ncoddle VBP\ncoddled VBN\ncoddling NN\ncode NN\ncode-named VBN\ncode-related JJ\ncode-sharing NN\ncoded VBN\ncodes NNS\ncodetermines VBZ\ncodewords NNS\ncodfish NN\ncodger NN\ncodification NN\ncodified VBN\ncodifies VBZ\ncodifying VBG\ncoding NN\ncodpiece NN\ncoed NN\ncoeds NNS\ncoefficient NN\ncoefficients NNS\ncoerce VB\ncoerced VBN\ncoerces VBZ\ncoercion NN\ncoercive JJ\ncoexist VB\ncoexistence NN\ncoexistent JJ\ncoextrude VBP\ncofactors NNS\ncoffee NN\ncoffee-house NN\ncoffee-roasting JJ\ncoffeecup NN\ncoffeehouse NN\ncoffeepot NN\ncoffees NNS\ncoffers NNS\ncoffin NN\ncoffin-sized JJ\ncofounder NN\ncog NN\ncogeneration NN\ncogeneration-plant NN\ncogently RB\ncognac NN\ncognate JJ\ncognitive JJ\ncognizance NN\ncognizant JJ\ncognoscenti NNS\ncogs NNS\ncohere VB\ncoherence NN\ncoherent JJ\ncoherently RB\ncohesion NN\ncohesive JJ\ncohesively RB\ncohesiveness NN\ncohnfidunt NN\ncohort NN\ncohorts NNS\ncoiffed JJ\ncoiffure NN\ncoil NN\ncoiled VBD\ncoiling VBG\ncoils NNS\ncoily RB\ncoin NN\ncoin-cleaning JJ\ncoin-operated JJ\ncoincide VB\ncoincided VBD\ncoincidence NN\ncoincidences NNS\ncoincident JJ\ncoincidental JJ\ncoincidentally RB\ncoincides VBZ\ncoinciding VBG\ncoined VBN\ncoins NNS\ncoke NN\ncola NN\ncolander NN\ncolas NNS\ncolchicum NN\ncold JJ\ncold-blooded JJ\ncold-bloodedly RB\ncold-cereal JJ\ncold-cuts NNS\ncold-rolled JJ\ncold-storage JJ\ncold-war JJ\ncold-weather JJ\ncolde MD\ncolder JJR\ncoldest JJS\ncoldhearted JJ\ncoldly RB\ncoldness NN\ncolds NNS\ncole NN\ncoli NNS\ncolicky JJ\ncoliseum NN\ncollaborate VB\ncollaborated VBD\ncollaborates VBZ\ncollaborating VBG\ncollaboration NN\ncollaborations NNS\ncollaborative JJ\ncollaborator NN\ncollaborators NNS\ncollage NN\ncollagen NN\ncollages NNS\ncollapse NN\ncollapsed VBD\ncollapses VBZ\ncollapsible JJ\ncollapsing VBG\ncollar NN\ncollar-to-collar JJ\ncollarbone NN\ncollared VBN\ncollars NNS\ncollated VBN\ncollateral NN\ncollateralized JJ\ncollation NN\ncolleague NN\ncolleagues NNS\ncollect VB\ncollectability NN\ncollected VBN\ncollectible JJ\ncollectibles NNS\ncollecting VBG\ncollection NN\ncollections NNS\ncollective JJ\ncollective-bargaining JJ\ncollectively RB\ncollectives NNS\ncollectivization NN\ncollectivizers NNS\ncollector NN\ncollectors NNS\ncollects VBZ\ncollege NN\ncollege-bound JJ\ncollege-bowl NN\ncollege-completion JJ\ncollege-educated JJ\ncollege-oriented JJ\ncollege-sports NNS\ncolleges NNS\ncollegial JJ\ncollegians NNS\ncollegiate JJ\ncolles FW\ncollided VBD\ncollie NN\ncollimated VBN\ncollision NN\ncollision-damage NN\ncollisions NNS\ncolloidal JJ\ncollonaded VBN\ncolloquial JJ\ncolloquies NNS\ncolloquium NN\ncolloquy NN\ncollosal JJ\ncollude VB\ncolluded VBD\ncollusion NN\ncolo-rectal JJ\ncologne NN\ncolognes NNS\ncolon NN\ncolon-cancer NN\ncolonel NN\ncolonels NNS\ncolonial JJ\ncolonialism NN\ncolonialist NN\ncolonialists NNS\ncolonials NNS\ncolonic JJ\ncolonies NNS\ncolonists NNS\ncolonization NN\ncolonized VBD\ncolonnade NN\ncolonnaded JJ\ncolony NN\ncolor NN\ncolor-TV NN\ncolor-coded VBN\ncolor-coding VBG\ncolor-field JJ\ncolor-glutted JJ\ncolor-printing JJ\ncolor-television NN\ncoloration NN\ncoloratura NN\ncolorblind JJ\ncolorblindness NN\ncolored JJ\ncoloreds NNS\ncolorful JJ\ncolorin NN\ncoloring NN\ncolorization NN\ncolorless JJ\ncolorlessness NN\ncolors NNS\ncolossal JJ\ncolossus NN\ncolour-prints NNS\ncoloured JJ\ncolt NN\ncoltish JJ\ncolts NNS\ncolumbines NNS\ncolumn NN\ncolumn-shaped JJ\ncolumnist NN\ncolumnists NNS\ncolumns NNS\ncom NN\ncoma NN\ncomandancia FW\ncomas NNS\ncomb NN\ncombat NN\ncombat-inflicted JJ\ncombat-ready JJ\ncombat-tested JJ\ncombat-trained JJ\ncombatant JJ\ncombatants NNS\ncombating VBG\ncombative JJ\ncombatted VBN\ncombed VBD\ncombinable JJ\ncombination NN\ncombinations NNS\ncombine VB\ncombined VBN\ncombines VBZ\ncombing VBG\ncombining VBG\ncombo NN\ncombos NNS\ncombustibles NNS\ncombustion NN\ncome VB\ncome-uppance NN\ncomeback NN\ncomedian NN\ncomedians NNS\ncomedic JJ\ncomedie NN\ncomedies NNS\ncomedy NN\ncomedy-oriented JJ\ncomedy\\ JJ\ncomely JJ\ncomer NN\ncomers NNS\ncomes VBZ\ncomest VBP\ncomestibles NNS\ncomet NN\ncomet's-tail NN\ncomet-like JJ\ncometary JJ\ncometh VBZ\ncomets NNS\ncomeuppance NN\ncomfort NN\ncomfortable JJ\ncomfortably RB\ncomforted VBN\ncomforting VBG\ncomforts NNS\ncomfy JJ\ncomic JJ\ncomical JJ\ncomically RB\ncomico-romantico JJ\ncomics NNS\ncomin VBG\ncoming VBG\ncoming-of-age JJ\ncoming-out JJ\ncomings NNS\ncomity NN\ncomma NN\ncommand NN\ncommand-and-control JJ\ncommandant NN\ncommanded VBD\ncommandeered VBN\ncommandeering VBG\ncommander NN\ncommander-in-chief NN\ncommanders NNS\ncommanding VBG\ncommandment NN\ncommandments NNS\ncommando NN\ncommando-trained NN\ncommandos NNS\ncommands NNS\ncommas NNS\ncommawnded VBD\ncommemorate VB\ncommemorated VBN\ncommemorates VBZ\ncommemorating VBG\ncommemorative JJ\ncommence VB\ncommenced VBD\ncommencement NN\ncommencements NNS\ncommences VBZ\ncommencing VBG\ncommend VB\ncommendable JJ\ncommendation NN\ncommendations NNS\ncommended VBN\ncommending VBG\ncommends VBZ\ncommensurate JJ\ncomment VB\ncommentaries NNS\ncommentary NN\ncommentator NN\ncommentators NNS\ncommented VBD\ncommenting VBG\ncomments NNS\ncommerce NN\ncommercial JJ\ncommercial-bank JJ\ncommercial-banking NN\ncommercial-credit NN\ncommercial-free JJ\ncommercial-goods NNS\ncommercial-industrial JJ\ncommercial-jetliner JJ\ncommercial-litigation NN\ncommercial-loan JJ\ncommercial-products JJ\ncommercial-property NN\ncommercial-satellite-launching JJ\ncommercial-switch JJ\ncommercialism NN\ncommercialization NN\ncommercialize VB\ncommercialized VBN\ncommercializing VBG\ncommercially RB\ncommercials NNS\ncommerical JJ\ncommie JJ\ncomminge VBG\ncommingled VBN\ncommiserate VB\ncommiserating VBG\ncommissar NN\ncommissaries NNS\ncommissary NN\ncommission NN\ncommission-driven JJ\ncommission... :\ncommissioned VBN\ncommissioner NN\ncommissioners NNS\ncommissioning NN\ncommissions NNS\ncommit VB\ncommitment NN\ncommitments NNS\ncommits VBZ\ncommitted VBN\ncommittee NN\ncommittee... :\ncommitteemen NNS\ncommittees NNS\ncommitteewoman NN\ncommittes NNS\ncommitting VBG\ncommittment NN\ncommmercial JJ\ncommmon JJ\ncommmuter NN\ncommodities NNS\ncommodities-related JJ\ncommoditize VB\ncommodity NN\ncommodity-chemical JJ\ncommodity-market NN\ncommodity-options NNS\ncommodity-oriented JJ\ncommodity-price JJ\ncommodity-swap NN\ncommodity-trading NN\ncommon JJ\ncommon-carrier NN\ncommon-law JJ\ncommon-law-marriage NN\ncommon-position JJ\ncommon-sense JJ\ncommon-sensical JJ\ncommon-share JJ\ncommon-stock JJ\ncommonality NN\ncommoner JJR\ncommoners NNS\ncommonest JJS\ncommonly RB\ncommonness NN\ncommonplace JJ\ncommonplaces NNS\ncommons NN\ncommonstock NN\ncommonwealth NN\ncommonwealths NNS\ncommotion NN\ncommunal JJ\ncommune NN\ncommunes NNS\ncommunicable JJ\ncommunicate VB\ncommunicated VBN\ncommunicating VBG\ncommunication NN\ncommunication-cluttered JJ\ncommunication-service JJ\ncommunicational JJ\ncommunications NNS\ncommunications-equipment NN\ncommunications-network JJ\ncommunications-technology NN\ncommunicative JJ\ncommunicator NN\ncommunicators NNS\ncommunion NN\ncommunique NN\ncommuniques NNS\ncommunism NN\ncommunist JJ\ncommunist-led JJ\ncommunistic JJ\ncommunists NNS\ncommunitarians NNS\ncommunities NNS\ncommunity NN\ncommunity-based JJ\ncommunity-development NN\ncommunity-oriented JJ\ncommunity-service NN\ncommunize VB\ncommutation NN\ncommutator-like JJ\ncommute VBP\ncommuted VBN\ncommuter NN\ncommuter-airline NN\ncommuters NNS\ncommutes NNS\ncommuting VBG\ncompact JJ\ncompact-car NN\ncompact-disk NN\ncompacted JJ\ncompaction NN\ncompactly RB\ncompacts NNS\ncompanies NNS\ncompanies... :\ncompanion NN\ncompanionable JJ\ncompanions NNS\ncompanionship NN\ncompanionway NN\ncompany NN\ncompany-arranged JJ\ncompany-managed JJ\ncompany-operated JJ\ncompany-owned JJ\ncompany-paid JJ\ncompany-run JJ\ncompany-sponsored JJ\ncompany-wide JJ\ncompanywide JJ\ncomparability NN\ncomparable JJ\ncomparable-store JJ\ncomparably RB\ncomparative JJ\ncomparatively RB\ncompare VB\ncompared VBN\ncompares VBZ\ncomparing VBG\ncomparison NN\ncomparisons NNS\ncompartment NN\ncompartments NNS\ncompass NN\ncompassion NN\ncompassionate JJ\ncompassionately RB\ncompatability NN\ncompatibility NN\ncompatible JJ\ncompatiblizers NNS\ncompatriot NN\ncompatriots NNS\ncompel VB\ncompelled VBN\ncompelling JJ\ncompellingly RB\ncompels VBZ\ncompendium NN\ncompensate VB\ncompensated VBN\ncompensates VBZ\ncompensating VBG\ncompensation NN\ncompensations NNS\ncompensatory JJ\ncompete VB\ncompeted VBD\ncompetence NN\ncompetency NN\ncompetent JJ\ncompetently RB\ncompetes VBZ\ncompeting VBG\ncompetition NN\ncompetition-enhancers NNS\ncompetitions NNS\ncompetitive JJ\ncompetitive-analysis JJ\ncompetitively RB\ncompetitiveness NN\ncompetitor NN\ncompetitors NNS\ncompetitve JJ\ncompetitveness NN\ncompilation NN\ncompilations NNS\ncompile VB\ncompiled VBN\ncompiler NN\ncompiles VBZ\ncompiling VBG\ncomplacency NN\ncomplacent JJ\ncomplacently RB\ncomplain VBP\ncomplainant NN\ncomplained VBD\ncomplaining VBG\ncomplains VBZ\ncomplaint NN\ncomplaint-resolution NN\ncomplaints NNS\ncomplaisance NN\ncomplaisant JJ\ncompleated VBN\ncomplection NN\ncomplement NN\ncomplementary JJ\ncomplemented VBD\ncomplements VBZ\ncomplete JJ\ncompleted VBN\ncompleted-contract JJ\ncompletely RB\ncompletely-restored JJ\ncompleteness NN\ncompletes VBZ\ncompleting VBG\ncompletion NN\ncompletions NNS\ncomplex JJ\ncomplex-valued JJ\ncomplexes NNS\ncomplexion NN\ncomplexities NNS\ncomplexity NN\ncompliance NN\ncompliant JJ\ncomplicate VB\ncomplicated VBN\ncomplicates VBZ\ncomplicating VBG\ncomplication NN\ncomplications NNS\ncomplicity NN\ncomplied VBN\ncomplies VBZ\ncompliment NN\ncomplimentary JJ\ncomplimented VBN\ncomplimenting VBG\ncompliments NNS\ncomply VB\ncomplying VBG\ncomponent NN\ncomponents NNS\ncomport VB\ncomported VBD\ncomportment NN\ncompose VB\ncomposed VBN\ncomposer NN\ncomposer-in-residence NN\ncomposer-pianist-conductor NN\ncomposers NNS\ncomposes VBZ\ncomposing VBG\ncomposite JJ\ncomposites NNS\ncomposition NN\ncompositional JJ\ncompositions NNS\ncompost NN\ncomposting NN\ncomposure NN\ncompote NN\ncompound NN\ncompound-engine JJ\ncompounded VBN\ncompounding VBG\ncompounds NNS\ncomprehend VB\ncomprehended VBD\ncomprehending VBG\ncomprehension NN\ncomprehensive JJ\ncomprehensively RB\ncomprehensiveness NN\ncompress VB\ncompressed VBN\ncompresses NNS\ncompressibility NN\ncompressing VBG\ncompression NN\ncompressive JJ\ncompressor NN\ncompressor-manufacturing JJ\ncompressors NNS\ncomprise VBP\ncomprise. NN\ncomprised VBN\ncomprises VBZ\ncomprising VBG\ncompromise NN\ncompromised VBN\ncompromiser NN\ncompromises NNS\ncompromising VBG\ncomptroller NN\ncompulsion NN\ncompulsions NNS\ncompulsive JJ\ncompulsively RB\ncompulsives NNS\ncompulsivity NN\ncompulsory JJ\ncomputation NN\ncomputational JJ\ncomputations NNS\ncompute VB\ncomputed VBN\ncomputer NN\ncomputer-accessory JJ\ncomputer-activated JJ\ncomputer-age JJ\ncomputer-aided JJ\ncomputer-aided-design JJ\ncomputer-aided-software-engineering NN\ncomputer-and-semiconductor JJ\ncomputer-assembly NN\ncomputer-assisted JJ\ncomputer-based JJ\ncomputer-chip NN\ncomputer-controlled JJ\ncomputer-data-storage JJ\ncomputer-dependent JJ\ncomputer-distributed JJ\ncomputer-driven JJ\ncomputer-edited JJ\ncomputer-game NN\ncomputer-generated JJ\ncomputer-guided JJ\ncomputer-hardware NN\ncomputer-industry NN\ncomputer-integrated JJ\ncomputer-integrated-manufacturing JJ\ncomputer-literate JJ\ncomputer-magazine JJ\ncomputer-maintenance NN\ncomputer-maker NN\ncomputer-making JJ\ncomputer-market JJ\ncomputer-marketing NN\ncomputer-matching JJ\ncomputer-network NN\ncomputer-operated JJ\ncomputer-oriented JJ\ncomputer-power-supply NN\ncomputer-printer NN\ncomputer-products NNS\ncomputer-related JJ\ncomputer-reservation JJ\ncomputer-room JJ\ncomputer-science NN\ncomputer-security JJ\ncomputer-service JJ\ncomputer-services NNS\ncomputer-servicing JJ\ncomputer-software NN\ncomputer-stock NN\ncomputer-store NN\ncomputer-system-design JJ\ncomputer-systems NNS\ncomputer-trading NN\ncomputer-unit JJ\ncomputer\\ JJ\ncomputerize VB\ncomputerized JJ\ncomputerizing VBG\ncomputerrelated JJ\ncomputers NNS\ncomputes VBZ\ncomputing VBG\ncomputing-services JJ\ncomrade NN\ncomrades NNS\ncomradeship NN\ncon JJ\nconcave JJ\nconceal VB\nconcealed VBN\nconcealing VBG\nconcealment NN\nconceals VBZ\nconcede VBP\nconceded VBD\nconcededly RB\nconcedes VBZ\nconceding VBG\nconceit NN\nconceits NN\nconceivable JJ\nconceivably RB\nconceive VB\nconceived VBN\nconceived... :\nconceiver NN\nconceives VBZ\nconceiving VBG\nconcentrate VB\nconcentrated VBN\nconcentrates VBZ\nconcentrating VBG\nconcentration NN\nconcentration-camp NN\nconcentrations NNS\nconcentric JJ\nconcept NN\nconception NN\nconceptions NNS\nconcepts NNS\nconceptual JJ\nconceptuality NN\nconceptualization NN\nconceptualizing VBG\nconceptually RB\nconcern NN\nconcerned VBN\nconcerned`` ``\nconcerning VBG\nconcerns NNS\nconcert NN\nconcerted JJ\nconcerti NNS\nconcertina NN\nconcertmaster NN\nconcerto NN\nconcertos NNS\nconcerts NNS\nconcession NN\nconcessionaire NN\nconcessionaires NNS\nconcessions NNS\nconcierge NN\nconciliate VB\nconciliator NN\nconciliatory JJ\nconcise JJ\nconcisely RB\nconciseness NN\nconcision NN\nconclave NN\nconclaves NNS\nconclude VB\nconcluded VBD\nconcludes VBZ\nconcluding VBG\nconclusion NN\nconclusions NNS\nconclusive JJ\nconclusively RB\nconcoct VB\nconcocted VBN\nconcoction NN\nconcoctions NNS\nconcomitant JJ\nconcomitantly RB\nconcord NN\nconcordant JJ\nconcrete JJ\nconcrete-product-making NN\nconcretely RB\nconcretistic JJ\nconcretistic-seeming JJ\nconcur VBP\nconcurred VBD\nconcurrence NN\nconcurrent JJ\nconcurrently RB\nconcurring VBG\nconcurs VBZ\nconcussion NN\ncondemn VB\ncondemnation NN\ncondemnatory JJ\ncondemned VBN\ncondemning VBG\ncondemns VBZ\ncondensate NN\ncondensation NN\ncondense VB\ncondensed JJ\ncondenser NN\ncondensers NNS\ncondensing VBG\ncondescending JJ\ncondescension NN\ncondicions NNS\ncondiments NNS\ncondition NN\nconditional JJ\nconditionally RB\nconditioned VBN\nconditioner NN\nconditioners NNS\nconditioning NN\nconditioning... :\nconditions NNS\ncondo NN\ncondolences NNS\ncondom NN\ncondominium NN\ncondominiums NNS\ncondoms NNS\ncondone VB\ncondoned VBN\ncondos NNS\nconducive JJ\nconduct NN\nconducted VBN\nconducted... :\nconducting VBG\nconduction NN\nconductivity NN\nconductor NN\nconductors NNS\nconductorship NN\nconducts VBZ\nconduit NN\nconduits NNS\ncone NN\ncone-sphere JJ\nconeheads NNS\ncones NNS\nconfabulated VBN\nconfabulation NN\nconfabulations NNS\nconfectionary JJ\nconfectioner NN\nconfectionery NN\nconfederacy NN\nconfederates NNS\nconfederation NN\nconfederations NNS\nconfer VB\nconferees NNS\nconference NN\nconferences NNS\nconferred VBN\nconferring VBG\nconfers VBZ\nconfess VB\nconfessed VBD\nconfesses VBZ\nconfessing VBG\nconfession NN\nconfessional NN\nconfessionals NNS\nconfessions NNS\nconfessor NN\nconfict NN\nconfidant NN\nconfidante NN\nconfidants NNS\nconfide VB\nconfided VBD\nconfidence NN\nconfidence-crusher NN\nconfidence-shattering JJ\nconfidences NNS\nconfident JJ\nconfidential JJ\nconfidentiality NN\nconfidentially RB\nconfidently RB\nconfides VBZ\nconfiding VBG\nconfiguration NN\nconfiguration-data JJ\nconfigurations NNS\nconfine VB\nconfined VBN\nconfinement NN\nconfinements NNS\nconfines NNS\nconfining VBG\nconfirm VB\nconfirmation NN\nconfirmations NNS\nconfirmed VBD\nconfirming VBG\nconfirms VBZ\nconfiscate VB\nconfiscated VBN\nconfiscating VBG\nconfiscation NN\nconfiscatory JJ\nconflagration NN\nconflation NN\nconflict NN\nconflict-of-interest NN\nconflict-ridden JJ\nconflicted VBD\nconflicting VBG\nconflicts NNS\nconflicts. NN\nconfluence NN\nconfluent JJ\nconform VB\nconformance NN\nconformation NN\nconformational JJ\nconformations NNS\nconformed VBN\nconforming VBG\nconformist JJ\nconformists NNS\nconformitarianism NN\nconformity NN\nconforms VBZ\nconfound VB\nconfounded VBD\nconfounding VBG\nconfreres FW\nconfront VB\nconfrontation NN\nconfrontational JJ\nconfrontations NNS\nconfronted VBN\nconfronting VBG\nconfronts VBZ\nconfuse VB\nconfused VBN\nconfuses VBZ\nconfusin NN\nconfusing JJ\nconfusion NN\nconfusions NNS\ncongeal VB\ncongealed VBD\ncongenial JJ\ncongeniality NN\ncongenital JJ\ncongested JJ\ncongestion NN\ncongestive JJ\nconglomerate NN\nconglomerates NNS\ncongrats NN\ncongratulate VBP\ncongratulated VBN\ncongratulating NN\ncongratulation NN\ncongratulations NNS\ncongratulatory JJ\ncongratz NN\ncongregate VB\ncongregated VBD\ncongregation NN\ncongregational JJ\ncongregations NNS\ncongress NN\ncongressional JJ\ncongressional-item JJ\ncongressionally RB\ncongressman NN\ncongressmen NNS\ncongressonal JJ\ncongresssional JJ\ncongruence NN\ncongruent JJ\nconic JJ\nconing NN\nconjecture NN\nconjectured VBN\nconjectures NNS\nconjoined VBN\nconjugal JJ\nconjugate NN\nconjugated VBN\nconjugates NNS\nconjugating VBG\nconjugation NN\nconjunction NN\nconjunctions NNS\nconjur NN\nconjure VB\nconjured VBN\nconjures VBZ\nconjuring VBG\nconnect VB\nconnected VBN\nconnecting VBG\nconnection NN\nconnections NNS\nconnective JJ\nconnector NN\nconnectors NNS\nconnects VBZ\nconned VBN\nconnexion NN\nconning VBG\nconnivance NN\nconniver NN\nconnoisseur NN\nconnoisseurs NNS\nconnotation NN\nconnotations NNS\nconnote VB\nconnotes VBZ\nconpired VBN\nconquer VB\nconquered VBN\nconquering VBG\nconqueror NN\nconquerors NNS\nconquest NN\nconquests NNS\nconquete FW\ncons NNS\nconsanguineous JJ\nconsanguineously RB\nconsanguinity NN\nconscience NN\nconsciences NNS\nconscientious JJ\nconscionable JJ\nconscious JJ\nconsciously RB\nconsciousness NN\nconsciousness-raising NN\nconscript NN\nconscripted VBN\nconscription NN\nconscripts NNS\nconsderations NNS\nconsecration NN\nconsecutive JJ\nconsensual JJ\nconsensus NN\nconsensus-seeker NN\nconsent NN\nconsent-decree JJ\nconsented VBD\nconsenting VBG\nconsents NNS\nconsentual JJ\nconsequence NN\nconsequences NNS\nconsequent JJ\nconsequential JJ\nconsequently RB\nconservancy NN\nconservation NN\nconservationist NN\nconservationists NNS\nconservatism NN\nconservative JJ\nconservative-communist JJ\nconservative-led JJ\nconservative-liberal JJ\nconservatively RB\nconservatively-cravated JJ\nconservatives NNS\nconservator NN\nconservatories NNS\nconservators NNS\nconservatorship NN\nconservatory NN\nconserve VB\nconserved VBN\nconserves VBZ\nconserving VBG\nconsider VB\nconsiderable JJ\nconsiderably RB\nconsiderate JJ\nconsiderately RB\nconsideration NN\nconsiderations NNS\nconsidered VBN\nconsiderin VBG\nconsidering VBG\nconsiders VBZ\nconsign VB\nconsigned VBD\nconsigns VBZ\nconsisently RB\nconsist VB\nconsisted VBD\nconsistence NN\nconsistency NN\nconsistent JJ\nconsistently RB\nconsisting VBG\nconsists VBZ\nconsolation NN\nconsole VB\nconsoled VBD\nconsoles NNS\nconsolidate VB\nconsolidated JJ\nconsolidated-pretax JJ\nconsolidates VBZ\nconsolidating VBG\nconsolidation NN\nconsolidations NNS\nconsoling VBG\nconsomme NN\nconsonance NN\nconsonant JJ\nconsonantal JJ\nconsonants NNS\nconsorted VBD\nconsortia NNS\nconsorting VBG\nconsortium NN\nconsortium-ownership NN\nconsortiums NNS\nconspicuous JJ\nconspicuously RB\nconspiracies NNS\nconspiracy NN\nconspirator NN\nconspiratorial JJ\nconspirators NNS\nconspire VBP\nconspired VBD\nconspires VBZ\nconspiring VBG\nconstables NNS\nconstancy NN\nconstant JJ\nconstant-temperature NN\nconstantly RB\nconstants NNS\nconstatation NN\nconstellation NN\nconstellations NNS\nconsternation NN\nconstipation NN\nconstituencies NNS\nconstituency NN\nconstituent NN\nconstituents NNS\nconstitute VBP\nconstitute'speech VB\nconstituted VBD\nconstitutes VBZ\nconstituting VBG\nconstitution NN\nconstitutional JJ\nconstitutional-law JJ\nconstitutionality NN\nconstitutionally RB\nconstitutions NNS\nconstrain VB\nconstrained VBN\nconstraining VBG\nconstrains VBZ\nconstraint NN\nconstraints NNS\nconstricted JJ\nconstricting VBG\nconstriction NN\nconstrictions NNS\nconstrictor NN\nconstrictors NNS\nconstruct VB\nconstructed VBN\nconstructing VBG\nconstruction NN\nconstruction-industry NN\nconstruction-management JJ\nconstruction-oriented JJ\nconstruction-related JJ\nconstructional JJ\nconstructions NNS\nconstructive JJ\nconstructively RB\nconstructon NN\nconstructs VBZ\nconstrue VB\nconstrued VBN\nconstruing VBG\nconsul NN\nconsular JJ\nconsulate NN\nconsulates NNS\nconsult VB\nconsultancy NN\nconsultant NN\nconsultants NNS\nconsultation NN\nconsultations NNS\nconsultative JJ\nconsulted VBN\nconsulting NN\nconsulting-firm NN\nconsumables NNS\nconsume VBP\nconsumed VBN\nconsumer NN\nconsumer-advocacy JJ\nconsumer-analgesic JJ\nconsumer-credit JJ\nconsumer-driven JJ\nconsumer-electronics NNS\nconsumer-finance JJ\nconsumer-goods NNS\nconsumer-led JJ\nconsumer-minded JJ\nconsumer-oriented JJ\nconsumer-paint JJ\nconsumer-price JJ\nconsumer-price-index JJ\nconsumer-product JJ\nconsumer-products NNS\nconsumer-protection NN\nconsumer-telephone JJ\nconsumer-warning NN\nconsumerism NN\nconsumers NNS\nconsumes VBZ\nconsuming VBG\nconsummate JJ\nconsummated VBN\nconsummately RB\nconsummation NN\nconsumption NN\nconsumption-tax NN\nconsumptive JJ\ncont VBN\ncontact NN\ncontact-lens NN\ncontacted VBN\ncontacting VBG\ncontacts NNS\ncontadini NNS\ncontagion NN\ncontagious JJ\ncontain VB\ncontainable JJ\ncontained VBD\ncontainer NN\ncontainer-ship NN\ncontainerboard NN\ncontainerized-cargo NN\ncontainers NNS\ncontaining VBG\ncontainment NN\ncontains VBZ\ncontaminants NNS\ncontaminate VB\ncontaminated VBN\ncontaminating VBG\ncontamination NN\ncontemplate VB\ncontemplated VBN\ncontemplates VBZ\ncontemplating VBG\ncontemplation NN\ncontemplative JJ\ncontemporaneous JJ\ncontemporaries NNS\ncontemporary JJ\ncontemporize VB\ncontempt NN\ncontempt-of-court NN\ncontemptible JJ\ncontemptuous JJ\ncontemptuously RB\ncontend VBP\ncontended VBD\ncontender NN\ncontendere FW\ncontenders NNS\ncontending VBG\ncontends VBZ\ncontent NN\ncontented VBN\ncontentedly RB\ncontenting VBG\ncontention NN\ncontentions NNS\ncontentious JJ\ncontentment NN\ncontents NNS\ncontest NN\ncontestant NN\ncontestants NNS\ncontested VBN\ncontesting VBG\ncontests NNS\ncontext NN\ncontexts NNS\ncontiguous JJ\ncontinence NN\ncontinent NN\ncontinental JJ\ncontinentally RB\ncontinents NNS\ncontingencies NNS\ncontingency NN\ncontingency-fee JJ\ncontingent JJ\ncontingent-fee JJ\ncontingents NNS\ncontinously RB\ncontinual JJ\ncontinually RB\ncontinuance NN\ncontinuation NN\ncontinue VB\ncontinued VBD\ncontinues VBZ\ncontinuing VBG\ncontinuing-education JJ\ncontinuingly RB\ncontinuities NNS\ncontinuity NN\ncontinuo NN\ncontinuous JJ\ncontinuously RB\ncontinuum NN\ncontorted JJ\ncontortion NN\ncontortionists NNS\ncontour NN\ncontour-obliterating JJ\ncontouring VBG\ncontours NNS\ncontraband JJ\ncontrabass NN\ncontraception NN\ncontraceptive JJ\ncontraceptives NNS\ncontract NN\ncontract-drilling NN\ncontract-food NN\ncontract-negotiation NN\ncontract-services NNS\ncontract-steering JJ\ncontracted VBD\ncontracted-for JJ\ncontracting NN\ncontraction NN\ncontraction-extension JJ\ncontractions NNS\ncontractor NN\ncontractors NNS\ncontracts NNS\ncontractual JJ\ncontractually RB\ncontradict VB\ncontradicted VBD\ncontradicting VBG\ncontradiction NN\ncontradictions NNS\ncontradictorily RB\ncontradictory JJ\ncontradicts VBZ\ncontradistinction NN\ncontralto NN\ncontraption NN\ncontraptions NNS\ncontrarian JJ\ncontrarians NNS\ncontrarieties NNS\ncontrary JJ\ncontrary-to-reality JJ\ncontrast NN\ncontrasted VBN\ncontrasting VBG\ncontrasts NNS\ncontravened VBD\ncontraventions NNS\ncontretemps NN\ncontribs NNS\ncontribued VBD\ncontribute VB\ncontributed VBD\ncontributes VBZ\ncontributing VBG\ncontribution NN\ncontributions NNS\ncontributor NN\ncontributors NNS\ncontributory JJ\ncontrite JJ\ncontrition NN\ncontrivance NN\ncontrivances NNS\ncontrive VB\ncontrived VBN\ncontriving VBG\ncontrol NN\ncontrol-room NN\ncontrollable JJ\ncontrolled VBN\ncontrolled-circulation JJ\ncontroller NN\ncontrollers NNS\ncontrolling VBG\ncontrols NNS\ncontroversial JJ\ncontroversialists NNS\ncontroversies NNS\ncontroversy NN\ncontroversy-prone JJ\ncontusions NNS\nconundrum NN\nconvalescence NN\nconvalescing VBG\nconvection NN\nconvenants NNS\nconvene VB\nconvened VBD\nconvenes VBZ\nconvenience NN\nconvenience-food NN\nconvenience-store NN\nconveniences NNS\nconvenient JJ\nconvenient-type JJ\nconveniently RB\nconvening VBG\nconvent NN\nconvention NN\nconvention-goers NNS\nconventional JJ\nconventional-arms NNS\nconventional-type JJ\nconventionality NN\nconventionalized VBN\nconventionally RB\nconventioneers NNS\nconventioners NNS\nconventions NNS\nconverage NN\nconverge VB\nconverged VBD\nconverging VBG\nconversant NN\nconversation NN\nconversational JJ\nconversations NNS\nconverse VB\nconversely RB\nconversing VBG\nconversion NN\nconversion-by-renovation JJ\nconversions NNS\nconvert VB\nconverted VBN\nconverter NN\nconverters NNS\nconvertibility NN\nconvertible JJ\nconvertible-bond JJ\nconvertibles NNS\nconverting VBG\nconverts NNS\nconvex JJ\nconvexity NN\nconvey VB\nconveyance NN\nconveyed VBD\nconveying VBG\nconveyor NN\nconveys VBZ\nconvict NN\nconvicted VBN\nconvicting VBG\nconviction NN\nconvictions NNS\nconvicts NNS\nconvince VB\nconvinced VBN\nconvinces VBZ\nconvincing JJ\nconvincingly RB\nconvivial JJ\nconvocation NN\nconvoluted JJ\nconvolutions NNS\nconvoy NN\nconvoys NNS\nconvulsed VBD\nconvulsion NN\nconvulsions NNS\nconvulsive JJ\nconvulsively RB\ncooing VBG\ncook NN\ncookbook NN\ncookbooks NNS\ncooked VBN\ncooked-over JJ\ncooker NN\ncookers NNS\ncookfire NN\ncookie NN\ncookie-and-cracker JJ\ncookie-cutter NN\ncookies NNS\ncooking NN\ncookoo UH\ncooks NNS\ncookware NN\ncool JJ\ncool-headed JJ\ncoolant NN\ncoolants NNS\ncooled VBN\ncooler JJR\ncoolers NNS\ncoolest JJS\ncoolheaded JJ\ncooling NN\ncooling-heating JJ\ncooling-off JJ\ncoolly RB\ncoolness NN\ncoolnesses NNS\ncools VBZ\ncooly RB\ncoop NN\ncooped JJ\ncooperate VB\ncooperated VBN\ncooperates VBZ\ncooperating VBG\ncooperation NN\ncooperative JJ\ncooperative-care JJ\ncooperatively RB\ncooperatives NNS\ncoops NNS\ncoordinate VB\ncoordinated VBN\ncoordinates NNS\ncoordinating VBG\ncoordination NN\ncoordinator NN\ncoordinators NNS\ncoosie NN\ncop NN\ncop-killer JJ\ncop-out NN\ncope VB\ncopes VBZ\ncopied VBN\ncopier NN\ncopiers NNS\ncopies NNS\ncoping VBG\ncopings NNS\ncopious JJ\ncopiously RB\ncopolymers NNS\ncopper NN\ncopper-based JJ\ncopper-producing JJ\ncopper-rich JJ\ncoppery JJ\ncopra NN\ncoproducer NN\ncoproductions NNS\ncops NNS\ncops'n NNS\ncopy NN\ncopy-cat JJ\ncopybooks NNS\ncopycat NN\ncopycats NNS\ncopying NN\ncopyright NN\ncopyright-infringement NN\ncopyrighted VBN\ncopyrights NNS\ncopywriter NN\ncoquette NN\ncoral JJ\ncoral-colored JJ\ncord NN\ncorded VBN\ncordial JJ\ncordless JJ\ncordon FW\ncords NNS\ncorduroy NN\ncorduroys NNS\ncore NN\ncore-jacket JJ\ncores NNS\ncoriander NN\ncorinthian JJ\ncork NN\ncorked JJ\ncorkers NNS\ncorks NNS\ncorkscrew NN\ncorkscrews NNS\ncorn NN\ncorn-based JJ\ncorn-belt NN\ncorn-buying JJ\ncorn-farmers NNS\ncorn-producing JJ\ncorn-seed NN\ncornball NN\ncornbread NN\ncorne NN\ncornea NN\ncorneal JJ\ncorner NN\ncorner-posts NNS\ncornered VBN\ncornering VBG\ncorners NNS\ncornerstone NN\ncornerstones NNS\ncornfield NN\ncornflake-size JJ\ncornices NNS\ncorniest JJS\ncornmeal NN\ncornmeal-price NN\ncorns NNS\ncornstarch NN\ncornucopia NN\ncorny JJ\ncorollaries NNS\ncorollary NN\ncorona NN\ncoronaries NNS\ncoronary JJ\ncoroner NN\ncorpocrat NN\ncorporal NN\ncorporate JJ\ncorporate-bond JJ\ncorporate-coverage JJ\ncorporate-development NN\ncorporate-earnings NNS\ncorporate-entertainment JJ\ncorporate-finance JJ\ncorporate-identity JJ\ncorporate-image JJ\ncorporate-law NN\ncorporate-lending JJ\ncorporate-owned JJ\ncorporate-pension JJ\ncorporate-raider JJ\ncorporate-related JJ\ncorporate-securities JJ\ncorporate-settlement NN\ncorporate-tax JJ\ncorporate-wide JJ\ncorporates NNS\ncorporatewide JJ\ncorporation NN\ncorporation-socialist JJ\ncorporations NNS\ncorporatism NN\ncorporatist NN\ncorporativism NN\ncorporativists NNS\ncorporeal JJ\ncorporeality NN\ncorporis FW\ncorps NN\ncorpse NN\ncorpses NNS\ncorpsman NN\ncorpulence NN\ncorpus NN\ncorpuscular JJ\ncorpuscular-radiation NN\ncorral NN\ncorralled VBN\ncorralling VBG\ncorrals NNS\ncorrect JJ\ncorrected VBN\ncorrecting VBG\ncorrection NN\ncorrectional JJ\ncorrections NNS\ncorrective JJ\ncorrectly RB\ncorrectness NN\ncorrects VBZ\ncorrelate VB\ncorrelated JJ\ncorrelating VBG\ncorrelation NN\ncorrelations NNS\ncorrespond VB\ncorresponded VBD\ncorrespondence NN\ncorrespondent NN\ncorrespondent\\/news NNS\ncorrespondents NNS\ncorresponding JJ\ncorrespondingly RB\ncorresponds VBZ\ncorridor NN\ncorridors NNS\ncorroborate VB\ncorroborated VBD\ncorroborees NNS\ncorrode VBP\ncorroding VBG\ncorrosion NN\ncorrosion-protection JJ\ncorrosion-resistant JJ\ncorrosive JJ\ncorrugated JJ\ncorrugations NNS\ncorrupt JJ\ncorrupted VBN\ncorrupter NN\ncorruptible JJ\ncorrupting VBG\ncorruption NN\ncorruptions NNS\ncorrupts VBZ\ncorsage NN\ncorset NN\ncortege NN\ncorteggiamento FW\ncortex NN\ncortical JJ\ncortically RB\ncortico-fugal JJ\ncortico-hypothalamic JJ\ncorticosteroids NNS\ncorticotropin NN\ncortisone NN\ncorvettes NNS\ncosec NN\ncosily RB\ncosmetic JJ\ncosmetics NNS\ncosmetics-industry NN\ncosmetology NN\ncosmic JJ\ncosmical JJ\ncosmological JJ\ncosmologies NNS\ncosmologists NNS\ncosmology NN\ncosmopolitan JJ\ncosmopolitanism NN\ncosmopolitans NNS\ncosmos NN\ncosponsored VBN\ncosponsors VBZ\ncost NN\ncost-accounting JJ\ncost-benefit JJ\ncost-billing JJ\ncost-conscious JJ\ncost-consciousness NN\ncost-containment NN\ncost-control JJ\ncost-cutters NNS\ncost-cutting JJ\ncost-data JJ\ncost-effective JJ\ncost-effectiveness NN\ncost-efficiency NN\ncost-efficient JJ\ncost-finding JJ\ncost-of-living JJ\ncost-plus JJ\ncost-prohibitive JJ\ncost-push JJ\ncost-raising JJ\ncost-recovery JJ\ncost-reduction JJ\ncost-saving JJ\ncost-savings JJ\ncost-sharing NN\ncost-shifting NN\ncost-to-benefit JJ\ncost-transfer NN\ncostcutting NN\ncoste VB\ncosting VBG\ncostive JJ\ncostlier JJR\ncostliest JJS\ncostly JJ\ncosts NNS\ncostume NN\ncostume-jewelry NN\ncostumed VBN\ncostumes NNS\ncostuming NN\ncosy JJ\ncot NN\ncoterie NN\ncotillion NN\ncots NNS\ncottage NN\ncottages NNS\ncotter NN\ncotton NN\ncotton-ginning JJ\ncotton-growing JJ\ncottonmouth NN\ncottonseed NN\ncouch NN\ncouch-potato NN\ncouched VBN\ncouches NNS\ncouching VBG\ncoudn MD\ncough NN\ncoughed VBD\ncoughing VBG\ncoughs NNS\ncould MD\ncould'nt NN\ncoulda NN\ncouldn't MD\ncouldnt MD\ncouncil NN\ncouncilman NN\ncouncilor NN\ncouncilors NNS\ncouncils NNS\ncouncilwoman NN\ncounsel NN\ncounseled VBN\ncounseling NN\ncounselor NN\ncounselors NNS\ncounsels VBZ\ncount NN\ncountdown NN\ncounted VBN\ncountenance NN\ncountenances NNS\ncounter NN\ncounter-apparatus NN\ncounter-argument NN\ncounter-arguments NNS\ncounter-attack NN\ncounter-attacked VBD\ncounter-balanced JJ\ncounter-claims NNS\ncounter-culture JJ\ncounter-cyclical JJ\ncounter-demand NN\ncounter-drill VB\ncounter-efforts NNS\ncounter-escalation NN\ncounter-intelligence JJ\ncounter-measures NNS\ncounter-moves NNS\ncounter-offensive NN\ncounter-productive JJ\ncounter-revolutionary JJ\ncounter-successes NNS\ncounter-tenor NN\ncounter-trade JJ\ncounter-trend JJ\ncounteract VB\ncounteracted VBN\ncounteracting VBG\ncounterarguments NNS\ncounterattack NN\ncounterattacked VBD\ncounterbalance VB\ncounterbalanced VBN\ncounterbalancing VBG\ncounterbid NN\ncounterbidder NN\ncounterbidders NNS\ncounterbids NNS\ncounterchallenge VB\ncountercharged VBD\ncountercharges NNS\ncounterclaim NN\ncounterclaims NNS\ncountercultural JJ\ncounterculture JJ\ncountered VBD\ncounterespionage NN\ncounterfeit JJ\ncounterflow NN\ncounterforce NN\ncounterguarantee NN\ncountering VBG\ncounterman NN\ncountermeasures NNS\ncountermove NN\ncounteroffensive NN\ncounteroffer NN\ncounterpart NN\ncounterparts NNS\ncounterpoint NN\ncounterpointing VBG\ncounterproductive JJ\ncounterprogram VB\ncounterprogramming NN\ncounterproposal NN\ncounterproposals NNS\ncounterrevolutionaries NNS\ncounterrevolutionary JJ\ncounters NNS\ncountersued VBD\ncountersuing VBG\ncountersuit NN\ncountertenor NN\ncounterterror JJ\ncounterterrorism NN\ncountertop NN\ncountervailing JJ\ncounterweight NN\ncountess NN\ncountian NN\ncounties NNS\ncountin NN\ncounting VBG\ncountless JJ\ncountrey NN\ncountries NNS\ncountriman NN\ncountry NN\ncountry-and-Western JJ\ncountry-club NN\ncountry-development NN\ncountry-life JJ\ncountry-squirehood NN\ncountry... :\ncountryman NN\ncountrymen NNS\ncountryside NN\ncountrywide JJ\ncounts NNS\ncounty NN\ncounty-wide JJ\ncoup NN\ncoup-makers NNS\ncoup-planning NN\ncoup-proof JJ\ncoupe NN\ncoupes NNS\ncouple NN\ncoupled VBN\ncoupler NN\ncouplers NNS\ncouples NNS\ncouplets NNS\ncoupling VBG\ncoupon NN\ncoupon-distribution JJ\ncoupon-equivalent JJ\ncouponing NN\ncoupons NNS\ncoups NNS\ncourage NN\ncourageous JJ\ncourageously RB\ncourant FW\ncoureurs FW\ncourier NN\ncouriers NNS\ncourse NN\ncourse-correction NN\ncoursed VBN\ncourses NNS\ncoursing VBG\ncourt NN\ncourt-appointed JJ\ncourt-approved JJ\ncourt-length JJ\ncourt-ordered JJ\ncourt-reporting JJ\ncourt-supervised JJ\ncourt... :\ncourted VBN\ncourteous JJ\ncourteously RB\ncourtesan NN\ncourtesies NNS\ncourtesy NN\ncourthouse NN\ncourthouses NNS\ncourtier NN\ncourtiers NNS\ncourting VBG\ncourtliness NN\ncourtly JJ\ncourtroom NN\ncourtrooms NNS\ncourts NNS\ncourtship NN\ncourtyard NN\ncourtyards NNS\ncouscous NN\ncousin NN\ncousin-wife NN\ncousins NNS\ncouture FW\ncove NN\ncovenant NN\ncovenants NNS\ncover VB\ncover-up NN\ncoverage NN\ncoverages NNS\ncoverall NN\ncovered VBN\ncovering VBG\ncoverings NNS\ncoverlet NN\ncovers VBZ\ncovert JJ\ncovert-operations NNS\ncovertly RB\ncoverts NNS\ncoverup NN\ncoves NNS\ncovet VB\ncoveted VBN\ncoveting VBG\ncovetous JJ\ncovetousness NN\ncovets VBZ\ncow NN\ncow-blood NN\ncow-man NN\ncow-people NN\ncoward NN\ncowardice NN\ncowardly JJ\ncowards NNS\ncowbirds NNS\ncowboy NN\ncowboys NNS\ncowed VBN\ncower VBP\ncowering VBG\ncowhand NN\ncowhands NNS\ncowhide NN\ncowling NN\ncowman NN\ncoworkers NNS\ncowpony NN\ncowpox NN\ncowpuncher NN\ncows NNS\ncoxcombs NNS\ncoy JJ\ncoyly RB\ncoyness NN\ncoyote NN\ncoyotes NNS\ncozier JJR\ncoziness NN\ncozy JJ\ncps NNS\ncpu NN\ncrab NN\ncrabapple NN\ncrabbed JJ\ncrabby JJ\ncrabmeat NN\ncrabs NNS\ncrack NN\ncrack-addicted JJ\ncrack-cocaine NN\ncrack-induced JJ\ncrack-ridden JJ\ncrack-user NN\ncrack-using JJ\ncrackdown NN\ncrackdowns NNS\ncracked VBD\ncracker NN\ncracker-box JJ\ncrackers NNS\ncracking VBG\ncrackle NN\ncrackled VBD\ncrackles VBZ\ncrackling NN\ncrackpot NN\ncrackpots NNS\ncracks NNS\ncradle NN\ncradle-to-grave JJ\ncradled VBN\ncradles NNS\ncraft NN\ncraft-industrial JJ\ncrafted VBN\ncrafter NN\ncrafting VBG\ncrafts NNS\ncraftsman NN\ncraftsman-in-residence JJ\ncraftsmanship NN\ncraftsmen NNS\ncrafty JJ\ncraggy JJ\ncrags NNS\ncram JJ\ncrammed VBN\ncramming VBG\ncramp NN\ncramped JJ\ncramps NNS\ncrams VBZ\ncranberries NNS\ncranberry-and-gray JJ\ncrane NN\ncrane-safety NN\ncranelike JJ\ncranes NNS\ncraning VBG\ncrank VB\ncrankcase NN\ncranked VBD\ncranking VBG\ncranks NNS\ncrankshaft NN\ncranky JJ\ncrannies NNS\ncranny NN\ncrap NN\ncrapshoot NN\ncrash NN\ncrash-scarred JJ\ncrash-wary JJ\ncrashed VBD\ncrasher NN\ncrashes NNS\ncrashing VBG\ncrashlet NN\ncrass JJ\ncrassest JJS\ncrassness NN\ncrate NN\ncrater NN\ncratered VBN\ncratering VBG\ncraters NNS\ncrates NNS\ncrave VBP\ncraved VBN\ncraven JJ\ncraves VBZ\ncraving NN\ncravings NNS\ncrawl VB\ncrawled VBD\ncrawling VBG\ncrawls NNS\ncrawlspace NN\ncrayons NNS\ncraze NN\ncrazed JJ\ncrazee JJ\ncrazes NNS\ncrazies NNS\ncrazily RB\ncraziness NN\ncrazing VBG\ncrazy JJ\ncrazy-wonderful JJ\ncrckdown. NN\ncreak NN\ncreaked VBD\ncreaking VBG\ncreaks NNS\ncream NN\ncream-of-the-crop NN\ncreamed VBN\ncreamer NN\ncreamier JJR\ncreams NNS\ncreamy JJ\ncrease NN\ncreased VBN\ncreases NNS\ncreasingly RB\ncreate VB\ncreated VBN\ncreates VBZ\ncreating VBG\ncreation NN\ncreationism NN\ncreationist JJ\ncreations NNS\ncreative JJ\ncreatively RB\ncreativeness NN\ncreativity NN\ncreativity-oriented JJ\ncreator NN\ncreators NNS\ncreature NN\ncreatures NNS\ncreche NN\ncredence NN\ncredential NN\ncredentialized JJ\ncredentials NNS\ncredibility NN\ncredible JJ\ncredibly RB\ncredit NN\ncredit-backing NN\ncredit-card NN\ncredit-data NN|NNS\ncredit-discrimination NN\ncredit-easing JJ\ncredit-enhancement NN\ncredit-financed JJ\ncredit-information NN\ncredit-line NN\ncredit-market JJ\ncredit-policy NN\ncredit-quality JJ\ncredit-rating JJ\ncredit-ratings NNS\ncredit-reporting JJ\ncredit-services NNS\ncredit-softening NN\ncredit-tightening NN\ncredit-worthiness NN\ncredit-worthy JJ\ncredit... :\ncreditable JJ\ncreditably RB\ncreditcard NN\ncredited VBN\ncrediting NN\ncreditor NN\ncreditors NNS\ncredits NNS\ncreditworthiness NN\ncreditworthy NN\ncredo NN\ncredulity NN\ncredulous JJ\ncredulousness NN\ncreed NN\ncreedal JJ\ncreeds NNS\ncreek NN\ncreek-filled JJ\ncreeks NNS\ncreep VB\ncreeper NN\ncreepers NNS\ncreepiest JJS\ncreeping VBG\ncreeps VBZ\ncreepy JJ\ncremate VB\ncremated VBN\ncremation NN\ncrematoriums NNS\ncreole NN\ncrepe JJ\ncrept VBD\ncrescendo NN\ncrescent NN\ncrest NN\ncrested JJ\ncrestfallen JJ\ncresting VBG\ncrests NNS\ncrevasse NN\ncrevasses NNS\ncrevice NN\ncrevices NNS\ncrew NN\ncrew-pairing JJ\ncrew-rest NN\ncrewcut NN\ncrewel NN\ncrewmen NNS\ncrews NNS\ncrib NN\ncribbing VBG\ncribs NNS\ncricket NN\ncrickets NNS\ncried VBD\ncries NNS\ncrime NN\ncrime-busting JJ\ncrime-fighting JJ\ncrime-infested JJ\ncrime-ridden JJ\ncrime\\/comedy NN\ncrimes NNS\ncriminal JJ\ncriminal-abortion JJ\ncriminal-defense JJ\ncriminal-justice NN\ncriminal-law NN\ncriminality NN\ncriminalization NN\ncriminalize VB\ncriminalized JJ\ncriminalizing VBG\ncriminally RB\ncriminals NNS\ncriminologist NN\ncriminology NN\ncrimp VB\ncrimped JJ\ncrimping VBG\ncrimps VBZ\ncrimson JJ\ncrimsoning VBG\ncringe VBP\ncringed VBD\ncringing VBG\ncrinkles NNS\ncripple VB\ncripple-maker NN\ncrippled VBN\ncripples NNS\ncrippling JJ\ncrises NNS\ncrisis NN\ncrisis-management JJ\ncrisis-oriented JJ\ncrisis-response JJ\ncrisis-to-crisis JJ\ncrisp JJ\ncrisper NN\ncrisply RB\ncrispness NN\ncrispy JJ\ncriss-cross VBP\ncriss-crossed JJ\ncriss-crossing NN\ncrisscross VBP\ncrisscrossed VBN\ncrisscrossing VBG\ncristata FW\ncritcism NN\ncriteria NNS\ncriterion NN\ncritic NN\ncritical JJ\ncritical-intellectual JJ\ncriticality NN\ncritically RB\ncriticism NN\ncriticisms NNS\ncriticize VB\ncriticized VBN\ncriticizes VBZ\ncriticizing VBG\ncritics NNS\ncritique NN\ncritter NN\ncritters NNS\ncroak NN\ncroaked VBD\ncroaker NN\ncroakin VBG\ncroaking NN\ncroaks NNS\ncrochet VB\ncrocidolite NN\ncrocked JJ\ncrocketed JJ\ncrocodile NN\ncrofters NNS\ncroissants NNS\ncrone NN\ncronies NNS\ncrony NN\ncronyism NN\ncrook NN\ncrooked JJ\ncrookery NN\ncrooks NNS\ncroon VB\ncrooned VBD\ncrooner NN\ncrooning VBG\ncroons VBZ\ncrop NN\ncropped VBD\ncropping VBG\ncrops NNS\ncross VB\ncross-bay JJ\ncross-blending JJ\ncross-border JJ\ncross-buying NN\ncross-connect JJ\ncross-cultural JJ\ncross-currency JJ\ncross-currents NNS\ncross-dressing JJ\ncross-examination NN\ncross-eyed JJ\ncross-fertilization NN\ncross-fertilized VBN\ncross-functional JJ\ncross-investing JJ\ncross-investment JJ\ncross-legged JJ\ncross-licensing NN\ncross-margining JJ\ncross-market JJ\ncross-marketing JJ\ncross-ownership NN\ncross-party JJ\ncross-pollinated VBN\ncross-pollination NN\ncross-promotion NN\ncross-purchase JJ\ncross-purposes NNS\ncross-react VBP\ncross-referencing NN\ncross-section NN\ncross-sectional JJ\ncross-selling NN\ncross-shareholdings NNS\ncross-state JJ\ncross-striations NNS\ncross-subsidies NNS\ncross-top JJ\ncross-trading NN\ncross-writing NN\ncrossbars NNS\ncrossborder JJ\ncrosscurrents NNS\ncrossed VBD\ncrosses VBZ\ncrossfire NN\ncrossing VBG\ncrossings NNS\ncrossover NN\ncrossroading VBG\ncrossroads NNS\ncrosswalk NN\ncrossways RB\ncrosswise RB\ncrotch NN\ncrotchety JJ\ncrouch NN\ncrouched VBD\ncrouches VBZ\ncrouchin JJ\ncrouching VBG\ncroupier NN\ncrow NN\ncrowbait NN\ncrowd NN\ncrowded VBN\ncrowding VBG\ncrowds NNS\ncrowed VBD\ncrowing VBG\ncrown NN\ncrowned VBN\ncrowning JJ\ncrowns NNS\ncrows NNS\ncrucial JJ\ncrucially RB\ncrucible NN\ncrucified VBD\ncrucifix NN\ncrucifixion NN\ncrucifying VBG\ncrude NN\ncrude-oil NN\ncrude-steel NN\ncrudely RB\ncrudes NNS\ncrudest JJS\ncrudities NNS\ncrudity NN\ncruel JJ\ncruelest JJS\ncruelly RB\ncruelty NN\ncruise NN\ncruise-ship NN\ncruiser NN\ncruisers NNS\ncruises NNS\ncruising VBG\ncrumble VB\ncrumbled VBD\ncrumbles VBZ\ncrumbling VBG\ncrumbly JJ\ncrumminess NN\ncrummy JJ\ncrumpled JJ\ncrunch NN\ncrunched VBD\ncrunches NNS\ncrunchier JJR\ncrunching VBG\ncrunchy JJ\ncrupper NN\ncrus NN\ncrusade NN\ncrusaded VBN\ncrusader NN\ncrusaders NNS\ncrusades NNS\ncrusading VBG\ncrush NN\ncrushed VBN\ncrusher NN\ncrushers NNS\ncrushes VBZ\ncrushing VBG\ncrust NN\ncrusts NNS\ncrusty JJ\ncrutch NN\ncrutches NNS\ncrux NN\ncruzado NN\ncruzados NNS\ncry NN\ncrying VBG\ncryostat NN\ncrypt NN\ncryptic JJ\ncryptographers NNS\ncryptographic JJ\ncrysanthemum NN\ncrystal NN\ncrystal-lattice JJ\ncrystalline JJ\ncrystallite NN\ncrystallites NNS\ncrystallization NN\ncrystallize VB\ncrystallized VBD\ncrystallizing VBG\ncrystallographers NNS\ncrystallographic JJ\ncrystallography NN\ncrystals NNS\ncu NN\ncu. NN\ncub NN\ncubbyhole NN\ncubbyholes NNS\ncube NN\ncubed VBN\ncubes NNS\ncubic JJ\ncubism NN\ncubist JJ\ncubists NNS\ncubs NNS\ncuckoo NN\ncuckoo-bumblebee NN\ncuckoos NNS\ncucumber NN\ncud NN\ncuddled VBD\ncuddly JJ\ncudgels NNS\ncue NN\ncue-phrase NN\ncued VBD\ncues NNS\ncuff NN\ncuff-like JJ\ncufflinks NNS\ncuffs NNS\ncuirassiers NNS\ncuisine NN\ncul NN\nculinary JJ\ncull VB\nculled VBN\nculling VBG\nculminate VB\nculminated VBD\nculminates VBZ\nculminating VBG\nculmination NN\nculpa FW\nculpable JJ\nculpas FW\nculprit NN\nculprits NNS\ncult NN\nculte FW\ncultist NN\ncultivate VB\ncultivated VBN\ncultivates VBZ\ncultivating VBG\ncultivation NN\ncults NNS\ncultural JJ\ncultural-reform NN\nculturally RB\nculture NN\nculture-Protestantism NN\ncultured JJ\ncultures NNS\ncumara NN\ncumbersome JJ\ncumin NN\ncumulate VB\ncumulative JJ\ncumulatively RB\ncumulus NN\ncunning JJ\ncunningly RB\ncup NN\ncupboard NN\ncupboards NNS\ncupful JJ\ncupid NN\ncupids NNS\ncupped VBD\ncups NNS\ncur NN\ncurative JJ\ncurator NN\ncurators NNS\ncurb VB\ncurbed VBN\ncurbing VBG\ncurbs NNS\ncurbside NN\ncurd NN\ncurdling VBG\ncurds NNS\ncure NN\ncure-all NN\ncured VBN\ncures NNS\ncurettage NN\ncurfew NN\ncuriae FW\ncuring VBG\ncurio NN\ncuriosities NNS\ncuriosity NN\ncurious JJ\ncuriously RB\ncurl VB\ncurled VBD\ncurling NN\ncurls NNS\ncurly JJ\ncurrant NN\ncurrants NNS\ncurrencies NNS\ncurrencny NN\ncurrency NN\ncurrency-exchange JJ\ncurrency-market JJ\ncurrency-options NNS\ncurrent JJ\ncurrent-account JJ\ncurrent-carrying JJ\ncurrent-coupon JJ\ncurrent-delivery NN\ncurrent-generation JJ\ncurrent-year JJ\ncurrently RB\ncurrents NNS\ncurricula NNS\ncurricular JJ\ncurriculum NN\ncurriculums NNS\ncurry VB\ncurse NN\ncursed VBD\ncurses NNS\ncursing VBG\ncursory JJ\ncurt JJ\ncurtail VB\ncurtailed VBN\ncurtailing VBG\ncurtailment NN\ncurtails VBZ\ncurtain NN\ncurtain-raiser NN\ncurtained JJ\ncurtains NNS\ncurtly RB\ncurtness NN\ncurtseyed VBD\ncurvaceously RB\ncurvature NN\ncurve NN\ncurved JJ\ncurves NNS\ncurving VBG\ncurvy JJ\ncus IN\ncushion NN\ncushioned VBN\ncushioning NN\ncushions NNS\ncusp NN\ncustodial JJ\ncustodian NN\ncustody NN\ncustom NN\ncustom-built VBN\ncustom-chip JJ\ncustom-design JJ\ncustom-designed JJ\ncustom-die NN\ncustom-fit VB\ncustom-made JJ\ncustom-make VB\ncustom-tailored JJ\ncustomarily RB\ncustomary JJ\ncustomer NN\ncustomer-account NN\ncustomer-cost NN\ncustomer-driven JJ\ncustomer-inventory JJ\ncustomer-oriented JJ\ncustomer-service JJ\ncustomers NNS\ncustomization NN\ncustomized VBN\ncustoms NNS\ncustoms-clearance NN\ncustoms-cleared JJ\ncut VB\ncut-and-dried JJ\ncut-and-paste VB\ncut-down JJ\ncut-glass JJ\ncut-off JJ\ncut-price JJ\ncut-rate JJ\ncut-throat JJ\ncut-to-a-familiar-pattern JJ\ncutback NN\ncutbacks NNS\ncute JJ\ncuteness NN\ncuter JJR\ncutest JJS\ncutglass JJ\ncutlass NN\ncutlery NN\ncutlets NNS\ncutoff NN\ncutouts NNS\ncuts NNS\ncutsie JJ\ncutter NN\ncutters NNS\ncutthroat JJ\ncutting VBG\ncutting-and-pasting NN\ncutting-edge JJ\ncutting-tools NNS\ncuttings NNS\ncuvees NNS\ncuz IN\ncya VB\ncyanide NN\ncyanide-laced JJ\ncycads NNS\ncycle NN\ncycled VBN\ncycles NNS\ncyclical JJ\ncyclicality NN\ncyclicals NNS\ncycling NN\ncyclist NN\ncyclists NNS\ncyclohexanol NN\ncyclorama NN\ncyclosporine NN\ncylinder NN\ncylinders NNS\ncylindrical JJ\ncynic NN\ncynical JJ\ncynically RB\ncynicism NN\ncynics NNS\ncypress NN\ncypress-like JJ\ncyst NN\ncystic JJ\ncysts NNS\ncytokine NN|JJ\ncytolysis NN\ncytoplasm NN\nczar NN\nczars NNS\nd FW\nd'Administration NNP\nd'Alene NNP\nd'Allest NNP\nd'Amiante NNP\nd'Avignon NNP\nd'Eiffel NNP\nd'Electricite NNP\nd'Exploitation NNP\nd'Harnoncourt NNP\nd'Industrie NNP\nd'Ulisse FW\nd'Yquem NNP\nd'affaires NN\nd'art FW\nd'entretenir FW\nd'etat FW\nd'etre FW\nd'hotel FW\nd'identite FW\nd'un FW\nd'you VBP\nd-Limited NNP\nd-NAV NNP\nd-Percent LS|NN\nd-Percentage NN\nd-c NN\ndBASE NNP\ndBase NNP\nda NNP\ndabbed VBD\ndabbing VBG\ndabble VB\ndabbled VBD\ndabbler NN\ndabbles VBZ\ndabbling VBG\ndabhumaksanigalu'ahai VB\ndabs VBZ\ndachshounds NNS\ndack-rihs NNS\ndactyls NNS\ndad NN\ndada NN\ndaddy NN\ndaffodils NNS\ndaft JJ\ndagers NNS\ndaggerman NN\ndaguerreotypes NNS\ndailies NNS\ndaily JJ\ndaily-wear JJ\ndaintily RB\ndainty JJ\ndainty-legged JJ\ndairies NNS\ndairy NN\ndairy-oh NN\ndairyland NN\ndairymen NNS\ndais NN\ndaises NNS\ndaisies NNS\ndaisy NN\ndales NNS\ndalliances NNS\ndally VB\ndam NN\ndamage NN\ndamaged VBN\ndamages NNS\ndamaging JJ\ndame NN\ndamed VBD\ndaminozide NN\ndamm UH\ndammed VBD\ndammed-up VBN\ndammit UH\ndamn JJ\ndamn-the-torpedoes JJ\ndamnation NN\ndamned JJ\ndamning VBG\ndamnit UH\ndamp VB\ndamped VBN\ndampen VB\ndampened VBD\ndampening JJ\ndamper NN\ndampers NNS\ndamping VBG\ndampness NN\ndams NNS\ndamsel NN\ndance NN\ndance-committee JJ\ndance-theatre JJ\ndanced VBD\ndancelike JJ\ndancer NN\ndancers NNS\ndances NNS\ndancing NN\ndandelion NN\ndandily RB\ndandy JJ\ndang JJ\ndanged VBN\ndanger NN\ndangerous JJ\ndangerous... :\ndangerously RB\ndangers NNS\ndangle VB\ndangled VBD\ndangles VBZ\ndangling VBG\ndank JJ\ndans FW\ndanseur FW\ndapper JJ\ndappled JJ\ndarbuka NN\ndare VB\ndared VBD\ndares VBZ\ndarin JJ\ndaring JJ\ndark JJ\ndark-blue JJ\ndark-brown JJ\ndark-gray JJ\ndark-green JJ\ndark-haired JJ\ndark-skinned JJ\ndark-squared JJ\ndarken VBP\ndarkened VBD\ndarkening VBG\ndarker JJR\ndarkest JJS\ndarkhaired JJ\ndarkling JJ\ndarkly RB\ndarkness NN\ndarkroom NN\ndarlin NN\ndarling NN\ndarlings NNS\ndarn JJ\ndarned RB\ndart NN\ndart-throwing NN\ndartboard NN\ndarted VBD\ndarting VBG\ndarts NN\ndas NNS\ndash NN\ndashboard NN\ndashboards NNS\ndashed VBN\ndashes NNS\ndashing VBG\ndastardly JJ\ndat DT\ndata NNS\ndata-base JJ\ndata-capture JJ\ndata-collection NN\ndata-communications NNS\ndata-gathering JJ\ndata-handling NN\ndata-processing NN\ndata-recording NN\ndata-service JJ\ndata-storage JJ\ndata-storing JJ\ndata-transmission JJ\ndata\\ JJ\ndatabase NN\ndatabases NNS\ndatadex NN\ndate NN\ndated VBN\ndatelined VBN\ndates NNS\ndating VBG\ndatum NN\ndaubed VBD\ndaughter NN\ndaughter-in-law NN\ndaughters NNS\ndaunt VB\ndaunted VBD\ndaunting JJ\ndauntless JJ\ndauphin NN\ndavenport NN\ndavits NNS\ndawdled VBD\ndawdling VBG\ndawn NN\ndawned VBD\ndawning VBG\ndawns VBZ\nday NN\nday-after-day JJ\nday-by-day JJ\nday-care NN\nday-even NN\nday-long JJ\nday-old JJ\nday-to-day JJ\nday-today JJ\nday-watch NN\ndaybed NN\ndaybreak NN\ndaydream NN\ndaydreamed VBD\ndaydreaming NN\ndaylight NN\ndaylights NNS\ndaylong JJ\ndays NNS\ndays. NNS\ndaytime JJ\ndaze NN\ndazed JJ\ndazzle VB\ndazzled VBN\ndazzler NN\ndazzles VBZ\ndazzling JJ\ndazzlingly RB\ndd VBD\nde FW\nde-Americanization NN\nde-emphasis NN\nde-emphasize VB\nde-emphasized VBN\nde-facto JJ\nde-inking JJ\nde-iodinase NN\nde-iodinate VB\nde-iodinated VBN\nde-iodinating VBG\nde-iodination NN\nde-leverage VB\nde-linkage NN\nde-listed VBN\nde-stocking NN\nde-worse-ification NN\ndeCordova NNP\ndeWindt NNP\ndea NN\ndeacon NN\ndeactivated VBN\ndeactivates VBZ\ndeactivation NN\ndead JJ\ndead-end JJ\ndead-eyed JJ\ndead-weight JJ\ndeadbeats NNS\ndeadened VBN\ndeader JJR\ndeadheads NNS\ndeadliest JJS\ndeadline NN\ndeadlines NNS\ndeadliness NN\ndeadlock NN\ndeadlocked VBN\ndeadly JJ\ndeadness NN\ndeadpan JJ\ndeadweight NN\ndeadwood NN\ndeaf JJ\ndeafened VBN\ndeafening VBG\ndeafness NN\ndeal NN\ndeal-blocker NN\ndeal-making NN\ndealer NN\ndealer-community JJ\ndealer-led JJ\ndealer-manager NN\ndealer-managers NNS\ndealer-related JJ\ndealer-to-dealer JJ\ndealers NNS\ndealership NN\ndealerships NNS\ndealing VBG\ndealings NNS\ndealmaker NN\ndealmakers NNS\ndeals NNS\ndeals... :\ndealt VBN\ndean NN\ndeans NNS\ndear JJ\ndearer JJR\ndearest JJS\ndearly RB\ndearth NN\ndeath NN\ndeath-backed JJ\ndeath-benefit JJ\ndeath-like JJ\ndeath-locked JJ\ndeath-penalty NN\ndeath-row NN\ndeath-sentence NN\ndeath-trap NN\ndeath-wish NN\ndeathbed NN\ndeathless JJ\ndeathly JJ\ndeaths NNS\ndeathward RB\ndeathwatch NN\ndebacle NN\ndebacles NNS\ndebasement NN\ndebasing VBG\ndebatable JJ\ndebate NN\ndebate... :\ndebated VBN\ndebates NNS\ndebating VBG\ndebauchery NN\ndebenture NN\ndebentures NNS\ndebilitated VBN\ndebilitating JJ\ndebility NN\ndebit NN\ndebonair JJ\ndebris NN\ndebs NNS\ndebt NN\ndebt-burdened JJ\ndebt-ceiling JJ\ndebt-coverage JJ\ndebt-equity JJ\ndebt-financed JJ\ndebt-financing JJ\ndebt-for-environment NN\ndebt-free JJ\ndebt-futures NNS\ndebt-happy JJ\ndebt-heavy JJ\ndebt-induced JJ\ndebt-laden JJ\ndebt-limit NN\ndebt-payment JJ\ndebt-portfolio NN\ndebt-rating JJ\ndebt-reduction NN\ndebt-relief NN\ndebt-repayment NN\ndebt-restructuring JJ\ndebt-ridden JJ\ndebt-riddled JJ\ndebt-service JJ\ndebt-servicing NN\ndebt-to-assets JJ\ndebt-to-equity JJ\ndebt... :\ndebt\\/equity NN\ndebtholder NN\ndebtholders NNS\ndebtor NN\ndebtor-in-possession NN\ndebtor-nation NN\ndebtors NNS\ndebts NNS\ndebugged VBN\ndebunk VB\ndebunked VBN\ndebunking NN\ndebut NN\ndebutante NN\ndebuted VBD\ndebuting VBG\ndebuts VBZ\ndecade NN\ndecade-long JJ\ndecade-old JJ\ndecadelong JJ\ndecadence NN\ndecadent JJ\ndecades NNS\ndecades-old JJ\ndecaffeinated VBN\ndecal NN\ndecametrina NN\ndecamped VBD\ndecanted VBN\ndecanting VBG\ndecapitalize VBP\ndecapitalized JJ\ndecay NN\ndecayed JJ\ndecaying VBG\ndecays VBZ\ndecease NN\ndeceased JJ\ndecedent NN\ndeceit NN\ndeceitful JJ\ndeceive VB\ndeceived VBN\ndeceives VBZ\ndeceiving VBG\ndecelerate VB\ndecelerated VBN\ndecelerating VBG\ndeceleration NN\ndecencies NNS\ndecency NN\ndecent JJ\ndecently RB\ndecentralization NN\ndecentralize VB\ndecentralized JJ\ndecentralizing VBG\ndeception NN\ndeceptive JJ\ndeceptively RB\ndecertified VBN\ndecertify VB\ndecide VB\ndecided VBD\ndecidedly RB\ndecidely RB\ndecides VBZ\ndeciding VBG\ndecimal NN\ndecimals NNS\ndecimated VBN\ndecimating VBG\ndecimeter-wave-length NN\ndecions NNS\ndecipher VB\ndeciphered VBD\ndecision NN\ndecision-maker NN\ndecision-makers NNS\ndecision-making NN\ndecisional JJ\ndecisionmaking NN\ndecisions NNS\ndecisis FW\ndecisive JJ\ndecisively RB\ndecisiveness NN\ndeck NN\ndecked VBN\ndeckhands NNS\ndecking NN\ndecks NNS\ndeclaimed VBD\ndeclamatory JJ\ndeclaration NN\ndeclarations NNS\ndeclarative JJ\ndeclaratory JJ\ndeclare VB\ndeclared VBD\ndeclares VBZ\ndeclaring VBG\ndeclasse JJ\ndeclassifying VBG\ndecline NN\ndeclined VBD\ndecliners NNS\ndeclines NNS\ndeclining VBG\ndeclivity NN\ndeco NN\ndecoction NN\ndecode VB\ndecolletage NN\ndecommissioned VBN\ndecommissoned JJ\ndecompose VB\ndecomposed JJ\ndecomposes VBZ\ndecomposing VBG\ndecomposition NN\ndecompression NN\ndecongestant NN\ndeconstructed JJ\ndecontaminated VBN\ndecontamination NN\ndecontrol NN\ndecor NN\ndecorate VBP\ndecorated VBN\ndecorating NN\ndecoration NN\ndecorations NNS\ndecorative JJ\ndecorativeness NN\ndecorator NN\ndecorators NNS\ndecorous JJ\ndecorticated VBN\ndecorum NN\ndecoy NN\ndecoys NNS\ndecrease NN\ndecreased VBD\ndecreases NNS\ndecreasing VBG\ndecree NN\ndecreed VBD\ndecreeing VBG\ndecrees NNS\ndecrement NN\ndecrepit JJ\ndecribed VBD\ndecried VBD\ndecries VBZ\ndecriminalization NN\ndecriminalized VBN\ndecry VB\ndecrying VBG\ndedicate VB\ndedicated VBN\ndedicates VBZ\ndedication NN\ndedifferentiated JJ\ndeduce VB\ndeduced VBN\ndeduces VBZ\ndeducing VBG\ndeduct VB\ndeductable JJ\ndeducted VBN\ndeductibility NN\ndeductible JJ\ndeductibles NNS\ndeducting VBG\ndeduction NN\ndeductions NNS\ndeductive JJ\ndeed NN\ndeeds NNS\ndeem VBP\ndeemed VBN\ndeeming VBG\ndeems VBZ\ndeep JJ\ndeep-discount JJ\ndeep-eyed JJ\ndeep-pocket JJ\ndeep-pocketed JJ\ndeep-rooted JJ\ndeep-sea JJ\ndeep-seated JJ\ndeep-set JJ\ndeep-sounding JJ\ndeep-space JJ\ndeep-tendon NN\ndeepen VB\ndeepened VBD\ndeepening VBG\ndeepens VBZ\ndeeper JJR\ndeepest JJS\ndeeply RB\ndeeps NNS\ndeer NN\ndeer-are-long-legged-rats-with-big-ears JJ\ndeer-handling NN\ndeer-killing NN\ndeerskins NNS\ndef JJ\ndefaces VBZ\ndefacing VBG\ndefamation NN\ndefamatory JJ\ndefamed VBN\ndefault NN\ndefaulted VBD\ndefaulters NNS\ndefaulting VBG\ndefaults NNS\ndefeat NN\ndefeated VBN\ndefeating VBG\ndefeatism NN\ndefeatists NNS\ndefeats NNS\ndefecated VBN\ndefect NN\ndefected VBD\ndefecting VBG\ndefection NN\ndefections NNS\ndefective JJ\ndefector NN\ndefectors NNS\ndefects NNS\ndefects-office NN\ndefend VB\ndefendant NN\ndefendants NNS\ndefended VBD\ndefender NN\ndefenders NNS\ndefending VBG\ndefends VBZ\ndefense NN\ndefense-appropriations JJ\ndefense-authorization NN\ndefense-budget NN\ndefense-contract NN\ndefense-electronics NNS\ndefense-equipment JJ\ndefense-industry JJ\ndefense-oriented JJ\ndefense-procurement NN\ndefense-products NNS\ndefense-related JJ\ndefense-suppression NN\ndefenseless JJ\ndefenses NNS\ndefensible JJ\ndefensive JJ\ndefensively RB\ndefensiveness NN\ndefer VB\ndeference NN\ndeferent NN\ndeferents NNS\ndeferment NN\ndeferments NNS\ndeferred VBN\ndeferred-maintenance JJ\ndeferring VBG\ndefers VBZ\ndefiance NN\ndefiant JJ\ndefiantly RB\ndeficiencies NNS\ndeficiency NN\ndeficient JJ\ndeficit NN\ndeficit-cutting JJ\ndeficit-debt NN\ndeficit-inflation-capital-flight JJ\ndeficit-racked JJ\ndeficit-reduction NN\ndeficit-ridden JJ\ndeficitcutting NN\ndeficits NNS\ndefied VBD\ndefies VBZ\ndefile VB\ndefiles VBZ\ndefiling VBG\ndefinable JJ\ndefine VB\ndefined VBN\ndefined-benefit JJ\ndefined-contribution NN\ndefines VBZ\ndefining VBG\ndefinite JJ\ndefinitely RB\ndefinition NN\ndefinition-specialization JJ\ndefinitional JJ\ndefinitions NNS\ndefinitive JJ\ndefinitively RB\ndeflate VB\ndeflated VBD\ndeflating VBG\ndeflationary JJ\ndeflationist NN\ndeflator NN\ndeflators NNS\ndeflect VB\ndeflected VBD\ndeflecting VBG\ndeflects VBZ\ndefocusing VBG\ndefoliation NN\ndeforestation NN\ndeformation NN\ndeformational JJ\ndeformed JJ\ndeformities NNS\ndeformity NN\ndefraud VB\ndefrauded VBD\ndefrauding VBG\ndefray VB\ndefrayed VBN\ndeft JJ\ndeftly RB\ndeftness NN\ndefunct JJ\ndefunded VBN\ndefuse VB\ndefused VBN\ndefy VB\ndefying VBG\ndegassed VBN\ndegeneracy NN\ndegenerate JJ\ndegenerated VBD\ndegenerates VBZ\ndegeneration NN\ndegenerative JJ\ndeglycerolized VBN\ndegradation NN\ndegrade VB\ndegraded JJ\ndegrading JJ\ndegree NN\ndegree-granting JJ\ndegrees NNS\ndehumanised VBN\ndehumanize VB\ndehumanized VBN\ndehumidified VBN\ndehydrate VB\ndehydrated JJ\ndehydration NN\ndei NNP\ndeification NN\ndeigned VBD\ndeinstitutionalization NN\ndeities NNS\ndeja FW\ndejectedly RB\ndejection NN\ndejeuner FW\ndejeuners FW\ndel NNP\ndelay NN\ndelayed VBN\ndelaying VBG\ndelays NNS\ndelectable JJ\ndelectably RB\ndelectation NN\ndelegate NN\ndelegated VBN\ndelegates NNS\ndelegating VBG\ndelegation NN\ndelegations NNS\ndelenda FW\ndelete VB\ndeleted VBN\ndeleterious JJ\ndeleting VBG\ndeletion NN\ndeletions NNS\ndeli NNS\ndeliberate JJ\ndeliberated VBD\ndeliberately RB\ndeliberating VBG\ndeliberation NN\ndeliberations NNS\ndeliberative JJ\ndelicacies NNS\ndelicacy NN\ndelicate JJ\ndelicate-beyond-description JJ\ndelicately RB\ndelicately-textured JJ\ndelicatessen NN\ndelicious JJ\ndeliciously RB\ndelicti FW\ndelicto FW\ndelight NN\ndelighted VBN\ndelightful JJ\ndelightfully RB\ndelighting VBG\ndelights VBZ\ndelimit VB\ndelimits VBZ\ndelineaments NNS\ndelineate VB\ndelineated VBN\ndelineating VBG\ndelineation NN\ndelinking NN\ndelinquencies NNS\ndelinquency NN\ndelinquent JJ\ndelinquents NNS\ndeliriously RB\ndelirium NN\ndelist VB\ndelisted VBN\ndelisting NN\ndeliver VB\ndeliverable JJ\ndeliverance NN\ndelivered VBN\ndeliverers NNS\ndeliveries NNS\ndelivering VBG\ndelivers VBZ\ndelivery NN\ndelivre VB\ndell NN\ndelle NNP\ndeloused VBN\ndelousing VBG\ndelphic JJ\ndelta NN\ndeltas NNS\ndeltoid NN\ndeltoids NNS\ndelude VB\ndeluded JJ\ndeluding VBG\ndeluge NN\ndeluged VBN\ndelusion NN\ndelusions NNS\ndeluxe JJ\ndeluxer NN\ndelve VB\ndelved VBN\ndelver NN\ndelves VBZ\ndelving VBG\ndemage NN\ndemagnification NN\ndemagogic JJ\ndemagoguery NN\ndemagogues NNS\ndemand NN\ndemand-related JJ\ndemand-supply JJ\ndemand... :\ndemanded VBD\ndemander NN\ndemanding VBG\ndemandingly RB\ndemands NNS\ndemarcated VBN\ndemarcation NN\ndemeaned VBN\ndemeaning JJ\ndemeanor NN\ndemeanors NNS\ndemeans VBZ\ndemented JJ\ndementia NN\ndemi-monde FW\ndemilitarize VB\ndemineralization NN\ndemise NN\ndemo NN\ndemobilize VB\ndemobilized VBN\ndemobilizing VBG\ndemocracies NNS\ndemocracy NN\ndemocracy-free JJ\ndemocrat NN\ndemocratic JJ\ndemocratically RB\ndemocratization NN\ndemocratize VB\ndemocratized VBN\ndemocratizing VBG\ndemocrats NNS\ndemographic JJ\ndemographically RB\ndemographics NNS\ndemographiques FW\ndemography NN\ndemolish VB\ndemolished VBN\ndemolishing VBG\ndemolition NN\ndemon NN\ndemon-ridden NN\ndemonetized VBN\ndemoniac JJ\ndemonic JJ\ndemonize VB\ndemonized VBN\ndemonizing NN\ndemonologist NN\ndemons NNS\ndemonstators NNS\ndemonstrable JJ\ndemonstrably RB\ndemonstrate VB\ndemonstrated VBN\ndemonstrates VBZ\ndemonstrating VBG\ndemonstration NN\ndemonstrations NNS\ndemonstratively RB\ndemonstrativeness NN\ndemonstratives NNS\ndemonstrators NNS\ndemoralization NN\ndemoralize VB\ndemoralized VBN\ndemoralizes VBZ\ndemoralizing VBG\ndemoted VBN\ndemotion NN\ndemur VBP\ndemure JJ\ndemurred VBD\ndemurrer NN\ndemurs VBZ\ndemythologization NN\ndemythologize VB\ndemythologized VBN\ndemythologizing VBG\nden NN\ndenationalization NN\ndenationalizations NNS\ndenationalized VBN\ndenial NN\ndenials NNS\ndenied VBN\ndenies VBZ\ndenigrate VB\ndenigration NN\ndenims NNS\ndenizens NNS\ndenominated VBN\ndenomination NN\ndenominational JJ\ndenominationally RB\ndenominations NNS\ndenominator NN\ndenominators NNS\ndenote VB\ndenoted VBN\ndenotes VBZ\ndenoting VBG\ndenouement NN\ndenounce VBP\ndenounced VBD\ndenounces VBZ\ndenouncing VBG\ndens NNS\ndense JJ\ndensely RB\ndensest JJS\ndensities NNS\ndensitometry NN\ndensity NN\ndent NN\ndental JJ\ndental-products NNS\ndented VBD\ndenting VBG\ndentist NN\ndentistry NN\ndentists NNS\ndents NNS\ndentures NNS\ndenuclearized VBN\ndenude VB\ndenuded VBN\ndenunciation NN\ndenunciations NNS\ndeny VB\ndenyin VBG\ndenying VBG\ndeodorant NN\ndeoxyribonucleic JJ\ndepart VB\ndeparted VBD\ndeparting VBG\ndepartment NN\ndepartment-store NN\ndepartment\\/office NN\ndepartmental JJ\ndepartmentalizing VBG\ndepartments NNS\ndeparts VBZ\ndeparture NN\ndepartures NNS\ndepcreciation NN\ndepend VB\ndependable JJ\ndepended VBD\ndependence NN\ndependency NN\ndependent JJ\ndependent-care JJ\ndependents NNS\ndepending VBG\ndepends VBZ\ndepersonalization NN\ndepersonalized VBN\ndepict VB\ndepicted VBN\ndepicting VBG\ndepiction NN\ndepictions NNS\ndepicts VBZ\ndeplete VB\ndepleted VBN\ndepletes VBZ\ndepletion NN\ndeplorable JJ\ndeplorably RB\ndeplore VB\ndeplored VBD\ndeplores VBZ\ndeploring VBG\ndeploy VB\ndeployable JJ\ndeployed VBN\ndeploying VBG\ndeployment NN\ndeployments NNS\ndeport VB\ndeportation NN\ndeportations NNS\ndeported VBN\ndeportees NNS\ndepose VB\ndeposed VBN\ndeposit NN\ndeposit-transfer NN\ndepositary NN\ndeposited VBN\ndepositing VBG\ndeposition NN\ndepositions NNS\ndepositor NN\ndepositors NNS\ndepository NN\ndeposits NNS\ndepot NN\ndepots NNS\ndepraved JJ\ndepravities NNS\ndepravity NN\ndeprecatory JJ\ndepreciable JJ\ndepreciated VBD\ndepreciating VBG\ndepreciation NN\ndepreciation-induced JJ\ndepredations NNS\ndepress VB\ndepressant NN\ndepressants NNS\ndepressed JJ\ndepresses VBZ\ndepressing JJ\ndepressingly RB\ndepression NN\ndepressions NNS\ndepressors NNS\ndeprivation NN\ndeprivations NNS\ndeprive VB\ndeprived VBN\ndeprives VBZ\ndepriving VBG\ndeprogrammings NNS\ndept. NN\ndepth NN\ndepths NNS\ndeputies NNS\ndeputized VBN\ndeputy NN\nder NNP\nderail VB\nderailed VBD\nderailing VBG\nderailments NNS\nderanged JJ\nderangement NN\nderas FW\nderby NN\ndere NN\nderegulate VB\nderegulated VBN\nderegulating VBG\nderegulation NN\nderegulaton NN\nderelict NN\ndereliction NN\nderelicts NNS\nderide VBP\nderided VBD\nderision NN\nderisively RB\nderivation NN\nderivations NNS\nderivative JJ\nderivatives NNS\nderive VBP\nderived VBN\nderives VBZ\nderiving VBG\ndermal JJ\ndermatological JJ\nderogate NN\nderogation NN\nderogatory JJ\nderrick NN\nderriere NN\nderring NN\nderring-do NN\ndervish NN\ndervish-like JJ\ndervishes NNS\ndes NNP\ndescend VB\ndescendant NN\ndescendants NNS\ndescended VBD\ndescendent NN\ndescendents NNS\ndescending VBG\ndescends VBZ\ndescent NN\ndescents NNS\ndescramblers. NN\ndescribe VB\ndescribed VBN\ndescribes VBZ\ndescribing VBG\ndescription NN\ndescriptions NNS\ndescriptive JJ\ndesecrated VBN\ndesecrates VBZ\ndesecration NN\ndesegregate VB\ndesegregated VBN\ndesegregation NN\ndesegregation-from-court-order NN\ndesensitized VBN\ndesert NN\ndesert-battle JJ\ndesert-bound JJ\ndeserted VBN\ndesertification NN\ndesertion NN\ndeserts NNS\ndeserve VBP\ndeserved VBD\ndeserves VBZ\ndeserving JJ\ndeshabille NN\ndesign NN\ndesign-conscious JJ\ndesign-side JJ\ndesign... :\ndesignate VB\ndesignated VBN\ndesignates VBZ\ndesignating VBG\ndesignation NN\ndesignations NNS\ndesigned VBN\ndesignees NNS\ndesigner NN\ndesigners NNS\ndesigning VBG\ndesigns NNS\ndesirability NN\ndesirable JJ\ndesire NN\ndesired VBN\ndesires NNS\ndesiring VBG\ndesirous JJ\ndesist VB\ndesisted VBD\ndesk NN\ndesk-legs NN\ndesk-top JJ\ndesklegs NNS\ndesks NNS\ndesktop NN\ndesktop-computer NN\ndesktop-presentation JJ\ndesktop-publishing NN\ndesolate JJ\ndesolation NN\ndesolations NNS\ndespair NN\ndespaired VBD\ndespairing JJ\ndespairingly RB\ndespairs VBZ\ndespatch NN\ndespatched VBD\ndesperadoes NNS\ndesperate JJ\ndesperately RB\ndesperation NN\ndespicable JJ\ndespise VBP\ndespised VBD\ndespises VBZ\ndespite IN\ndespoiled VBN\ndespoilers NNS\ndespoiling VBG\ndespondency NN\ndespondent JJ\ndespot NN\ndespotism NN\ndespots NNS\ndespues FW\ndessert NN\ndessert-menu NN\ndesserts NNS\ndessier VB\ndestabilize VB\ndestabilizes VBZ\ndestabilizing VBG\ndestigmatization NN\ndestination NN\ndestinations NNS\ndestined VBN\ndestinies NNS\ndestiny NN\ndestitute JJ\ndestroy VB\ndestroyed VBN\ndestroyer NN\ndestroyers NNS\ndestroyers... :\ndestroying VBG\ndestroys VBZ\ndestruction NN\ndestructive JJ\ndesuetude NN\ndesulfurization NN\ndesultory JJ\ndesynchronizing VBG\ndetach VB\ndetachable JJ\ndetached VBN\ndetachment NN\ndetail NN\ndetailed VBN\ndetailing VBG\ndetails NNS\ndetailsman NN\ndetain VB\ndetained VBN\ndetaining VBG\ndetect VB\ndetectable JJ\ndetected VBN\ndetecting VBG\ndetection NN\ndetective NN\ndetective-story NN\ndetectives NNS\ndetector NN\ndetectors NNS\ndetects VBZ\ndetente NN\ndetention NN\ndeter VB\ndeterence NN\ndetergency NN\ndetergent NN\ndetergents NNS\ndeteriorate VB\ndeteriorated VBN\ndeteriorates VBZ\ndeteriorating VBG\ndeterioration NN\ndeterminability NN\ndeterminable JJ\ndeterminant NN\ndeterminants NNS\ndeterminate JJ\ndetermination NN\ndeterminations NNS\ndeterminative JJ\ndetermine VB\ndetermined VBN\ndeterminedly RB\ndetermines VBZ\ndeterming VBG\ndetermining VBG\ndeterminism NN\ndeterministic JJ\ndeterrant JJ\ndeterred VBN\ndeterrence NN\ndeterrence... :\ndeterrent NN\ndeterrents NNS\ndeterring VBG\ndeters VBZ\ndetest VBP\ndetestable JJ\ndetestation NN\ndetested VBD\ndetests VBZ\ndethroned VBN\ndetonate VB\ndetonated VBN\ndetonating VBG\ndetonation NN\ndetour NN\ndetoured VBD\ndetours NNS\ndetoxification NN\ndetoxify VB\ndetract VB\ndetracted VBN\ndetracting VBG\ndetractor NN\ndetractors NNS\ndetracts VBZ\ndetribalize VB\ndetriment NN\ndetrimental JJ\ndetriments NNS\ndeuterated VBD\ndeuterium NN\ndeutsche NN\ndeux FW\ndevaluation NN\ndevaluations NNS\ndevalue VB\ndevalued VBD\ndevastate VB\ndevastated VBN\ndevastating JJ\ndevastatingly RB\ndevastation NN\ndevelop VB\ndeveloped VBN\ndeveloper NN\ndevelopers NNS\ndeveloping VBG\ndeveloping-country JJ\ndeveloping-nation JJ\ndevelopment NN\ndevelopment-aid NN\ndevelopment... :\ndevelopmental JJ\ndevelopments NNS\ndevelops VBZ\ndeviance NN\ndeviant JJ\ndeviants NNS\ndeviate VB\ndeviated VBD\ndeviates VBZ\ndeviating VBG\ndeviation NN\ndeviations NNS\ndevice NN\ndevice. NN\ndevices NNS\ndevil NN\ndevil's-food JJ\ndevilish JJ\ndevils NNS\ndevious JJ\ndevise VB\ndevised VBN\ndevisee NN\ndevises VBZ\ndevising VBG\ndevlopments NNS\ndevoid JJ\ndevote VB\ndevoted VBN\ndevotedly RB\ndevotee NN\ndevotees NNS\ndevotes VBZ\ndevoting VBG\ndevotion NN\ndevotional JJ\ndevotions NNS\ndevour VB\ndevoured VBN\ndevouring VBG\ndevours VBZ\ndevout JJ\ndevoutly RB\ndew NN\ndew-sodden JJ\ndewars NNS\ndewatering VBG\ndewdrops NNS\ndeworm VB\ndewy-eyed JJ\ndexamethasone NN\ndexterity NN\ndextrous JJ\ndextrous-fingered JJ\ndey PRP\ndhow NN\ndi NNP\ndi-iodotyrosine NN\ndiGenova NNP\ndia. NN\ndiabetes NN\ndiabetic JJ\ndiabetics NNS\ndiabolical JJ\ndiachronic JJ\ndiagnometer NN\ndiagnosable JJ\ndiagnose VB\ndiagnosed VBN\ndiagnoses NNS\ndiagnosing VBG\ndiagnosis NN\ndiagnostic JJ\ndiagnosticians NNS\ndiagnostics NNS\ndiagonal JJ\ndiagonalizable JJ\ndiagonally RB\ndiagonals NNS\ndiagram NN\ndiagrammed VBN\ndiagramming VBG\ndiagrams NNS\ndial NN\ndial-a-banker JJ\ndial-tone NN\ndialect NN\ndialectic NN\ndialectical JJ\ndialectically RB\ndialectics NNS\ndialects NNS\ndialed VBD\ndialing VBG\ndialogue NN\ndialogues NNS\ndials NNS\ndialysis NN\ndialyzed VBN\ndiam NN\ndiameter NN\ndiameters NNS\ndiametrically RB\ndiamond NN\ndiamond-polishing NN\ndiamond-shaped JJ\ndiamond-studded NN\ndiamonds NNS\ndiaper NN\ndiaper-changing JJ\ndiapers NNS\ndiaphanous JJ\ndiaphragm NN\ndiaphragmic JJ\ndiaphragms NNS\ndiapiace FW\ndiaries NNS\ndiarrhea NN\ndiarrhoea NN\ndiary NN\ndiathermy NN\ndiathesis NN\ndiatomic JJ\ndiatoms NNS\ndiatribe NN\ndiazepam NN\ndibenzofurans NNS\ndibs NNS\ndicate VBP\ndice NNS\ndicendi FW\ndichondra NN\ndichotomy NN\ndick NN\ndicker VB\ndickered VBD\ndickering NN\ndicks NNS\ndiclosed VBN\ndictate VB\ndictated VBN\ndictates NNS\ndictating VBG\ndictation NN\ndictator NN\ndictatorial JJ\ndictators NNS\ndictatorship NN\ndictatorships NNS\ndiction NN\ndictionaries NNS\ndictionary NN\ndictum NN\ndid VBD\ndid'nt NN\ndidactic JJ\ndiddle UH\ndiddling VBG\ndideoxyinosine NN\ndidn VBD\ndidn't VBD\ndidnt VBD\ndie VB\ndie-dead NN\ndie-hard JJ\ndie-hards NNS\ndie-up NN\ndied VBD\ndiehard JJ\ndiehards NNS\ndiem FW\ndies VBZ\ndiesel NN\ndiesels NNS\ndiet NN\ndietary JJ\ndieters NNS\ndiethylaminoethyl NN\ndiethylstilbestrol NN\ndieting NN\ndiets NNS\ndiety NN\ndiff NN\ndiffer VBP\ndiffered VBD\ndifference NN\ndifference... :\ndifferences NNS\ndifferent JJ\ndifferent-color JJ\ndifferentiability NN\ndifferentiable JJ\ndifferential JJ\ndifferentials NNS\ndifferentiate VB\ndifferentiated VBN\ndifferentiates VBZ\ndifferentiating VBG\ndifferentiation NN\ndifferently RB\ndiffering VBG\ndiffers VBZ\ndifficile FW\ndifficult JJ\ndifficulties NNS\ndifficulty NN\ndiffidence NN\ndiffraction NN\ndiffrunce NN\ndiffuse JJ\ndiffused VBN\ndiffusely RB\ndiffusers NNS\ndiffuses VBZ\ndiffusing VBG\ndiffusion NN\ndig VB\ndigest VB\ndigest-size JJ\ndigested VBN\ndigestibility NN\ndigestible JJ\ndigesting VBG\ndigestion NN\ndigestive JJ\ndigger NN\ndiggers NNS\ndigging VBG\ndigit NN\ndigital JJ\ndigitalis NN\ndigitalization NN\ndigitalized JJ\ndigitizes VBZ\ndigits NNS\ndignified VBN\ndignifies VBZ\ndignify VB\ndignitaries NNS\ndignity NN\ndigress VB\ndigressions NNS\ndigs VBZ\ndiisocyanate NN\ndike NN\ndiktat JJ\ndilapidated JJ\ndilatation NN\ndilate VB\ndilated VBN\ndilates VBZ\ndilating VBG\ndilation NN\ndilemma NN\ndilemmas NN\ndilettante NN\ndiligence NN\ndiligent JJ\ndiligently RB\ndill NN\ndiluents NNS\ndilute VB\ndiluted VBN\ndilutes VBZ\ndiluting VBG\ndilution NN\ndilutive JJ\ndim JJ\ndim-witted JJ\ndime NN\ndimension NN\ndimensional JJ\ndimensionally RB\ndimensioning JJ\ndimensions NNS\ndimers NNS\ndimes NNS\ndimesize JJ\ndimethylglyoxime NN\ndiming VBG\ndiminish VB\ndiminished VBN\ndiminishes VBZ\ndiminishing VBG\ndiminution NN\ndiminutive JJ\ndimly RB\ndimly-outlined JJ\ndimmed VBN\ndimmer RB\ndimming VBG\ndimwits NNS\ndimwitted JJ\ndin NN\ndine VB\ndined VBD\ndiner NN\ndiners NNS\ndines VBZ\ndinghy NN\ndingo NN\ndingy JJ\ndining NN\ndining-room NN\ndinkiest JJS\ndinner NN\ndinner-hour JJ\ndinners NNS\ndinnertime NN\ndinnerware NN\ndinosaur NN\ndinosaur... :\ndinosaurs NNS\ndiocesan JJ\ndiocese NN\ndioceses NNS\ndiocs NNS\ndiorah NN\ndioramas NN\ndioxalate NN\ndioxide NN\ndioxin NN\ndioxins NNS\ndip NN\ndiphosphopyridine JJ\ndiphtheria NN\ndiploma NN\ndiplomacy NN\ndiplomas NNS\ndiplomat NN\ndiplomatic JJ\ndiplomatically RB\ndiplomats NNS\ndipole JJ\ndipoles NNS\ndipotassium NN\ndipped VBD\ndipper NN\ndipping VBG\ndippy JJ\ndips NNS\ndire JJ\ndirect JJ\ndirect-investment JJ\ndirect-line JJ\ndirect-mail JJ\ndirect-mail-mogul NN\ndirect-marketed JJ\ndirect-marketing NN\ndirect-seller NN\ndirect-selling JJ\ndirect-steelmaking NN\ndirect-sum NN\ndirected VBN\ndirecting VBG\ndirection NN\ndirectional JJ\ndirectionally RB\ndirectionless JJ\ndirectionlessness NN\ndirections NNS\ndirective NN\ndirectives NNS\ndirectivity NN\ndirectly RB\ndirectmail NN\ndirectness NN\ndirector NN\ndirector-general NN\ndirectorate NN\ndirectorial JJ\ndirectories NNS\ndirectors NNS\ndirectorship NN\ndirectory NN\ndirectrices NNS\ndirects VBZ\ndirge NN\ndirhams NNS\ndirt NN\ndirt-catcher NN\ndirtier JJR\ndirtier-running JJ\ndirtiest JJS\ndirty JJ\ndis DT\ndisabilities NNS\ndisability NN\ndisable VB\ndisabled JJ\ndisabled-workers NNS\ndisabling VBG\ndisabuse VB\ndisadvantage NN\ndisadvantaged JJ\ndisadvantageous JJ\ndisadvantages NNS\ndisaffected JJ\ndisaffection NN\ndisaffiliate VBP\ndisaffiliated JJ\ndisaffiliation NN\ndisagree VBP\ndisagreeable JJ\ndisagreed VBD\ndisagreement NN\ndisagreements NNS\ndisagrees VBZ\ndisallow VB\ndisallowance NN\ndisallowed VBD\ndisappear VB\ndisappearance NN\ndisappearances NNS\ndisappeared VBD\ndisappearing VBG\ndisappears VBZ\ndisappoint VB\ndisappointed VBN\ndisappointing JJ\ndisappointingly RB\ndisappointment NN\ndisappointments NNS\ndisappoints VBZ\ndisapprobation NN\ndisapproval NN\ndisapprove VBP\ndisapproved VBD\ndisapproves VBZ\ndisapproving JJ\ndisapprovingly RB\ndisarm VB\ndisarmament NN\ndisarmed JJ\ndisarming VBG\ndisarmingly RB\ndisarranged VBN\ndisarray NN\ndisassemble VB\ndisassembled VBD\ndisassembly NN\ndisassociate VB\ndisassociated VBD\ndisaster NN\ndisaster-assistance JJ\ndisaster-contingency NN\ndisaster-prone JJ\ndisaster-recovery JJ\ndisaster-subsidy JJ\ndisasters NNS\ndisastrous JJ\ndisastrously RB\ndisavowed VBD\ndisband VB\ndisbanded VBN\ndisbanding VBG\ndisbelief NN\ndisbelieve VB\ndisbelieved VBD\ndisbelieves VBZ\ndisbelieving VBG\ndisburden VB\ndisbursed VBN\ndisbursement NN\ndisbursements NNS\ndisburses VBZ\ndisbursesments NNS\ndisc NN\ndiscard VB\ndiscarded VBN\ndiscern VB\ndiscernable JJ\ndiscerned VBN\ndiscernible JJ\ndiscerning JJ\ndiscernment NN\ndiscerns VBZ\ndischarge NN\ndischarged VBN\ndischarges NNS\ndischarging VBG\ndiscimination NN\ndisciple NN\ndisciples NNS\ndiscipleship NN\ndisciplinary JJ\ndiscipline NN\ndisciplined VBN\ndisciplines NNS\ndisciplining VBG\ndisclaimed VBD\ndisclaimer NN\ndisclaimers NNS\ndisclaims VBZ\ndisclose VB\ndisclosed VBN\ndiscloses VBZ\ndisclosing VBG\ndisclosure NN\ndisclosures NNS\ndisco NN\ndiscography NN\ndiscoid JJ\ndiscolored VBN\ndiscolors VBZ\ndiscombobulation NN\ndiscomfit VB\ndiscomfited JJ\ndiscomfort NN\ndisconcert VB\ndisconcerting JJ\ndisconcertingly RB\ndisconnect VB\ndisconnected VBN\ndisconnecting VBG\ndiscontent NN\ndiscontented JJ\ndiscontinuance NN\ndiscontinuation NN\ndiscontinue VB\ndiscontinued VBN\ndiscontinuing VBG\ndiscontinuity NN\ndiscontinuous JJ\ndiscord NN\ndiscordant JJ\ndiscordantly RB\ndiscorporate JJ\ndiscorporated VBN\ndiscos NNS\ndiscotheque NN\ndiscotheques NNS\ndiscount NN\ndiscount-borrowing NN\ndiscount-brokerage NN\ndiscount-coupon NN\ndiscount-movie JJ\ndiscount-rate JJ\ndiscount-retailing NN\ndiscount-store NN\ndiscount-toy JJ\ndiscount... :\ndiscounted VBN\ndiscounter NN\ndiscounters NNS\ndiscounting NN\ndiscounts NNS\ndiscourage VB\ndiscouraged VBN\ndiscouragement NN\ndiscourages VBZ\ndiscouraging VBG\ndiscourse NN\ndiscourses NNS\ndiscourteous JJ\ndiscover VB\ndiscovered VBN\ndiscoverer NN\ndiscoveries NNS\ndiscovering VBG\ndiscovers VBZ\ndiscovery NN\ndiscredit VB\ndiscredited VBN\ndiscrediting NN\ndiscreet JJ\ndiscreetly RB\ndiscrepancies NNS\ndiscrepancy NN\ndiscrepencies NNS\ndiscrepency NN\ndiscrete JJ\ndiscretion NN\ndiscretionary JJ\ndiscriminate VB\ndiscriminated VBD\ndiscriminates NNS\ndiscriminating VBG\ndiscrimination NN\ndiscriminatory JJ\ndiscs NNS\ndiscursive JJ\ndiscursiveness NN\ndiscus NN\ndiscuss VB\ndiscussant NN\ndiscussed VBN\ndiscusses VBZ\ndiscussing VBG\ndiscussion NN\ndiscussions NNS\ndiscussions.. NNS\ndisdain NN\ndisdained VBN\ndisdainful JJ\ndisdainfully RB\ndisdaining VBG\ndisdains VBZ\ndisease NN\ndisease-fighting JJ\ndisease-resistance JJ\ndisease-resistant JJ\ndiseased JJ\ndiseases NNS\ndisembark VBP\ndisembarked VBD\ndisembarking VBG\ndisembodied JJ\ndisenchanted VBN\ndisenfranchised VBN\ndisenfranchisement NN\ndisengage VB\ndisengaged VBN\ndisengagement NN\ndisentangle VB\ndisentangling VBG\ndisfavor NN\ndisfavored JJ\ndisfigured VBD\ndisgorge VB\ndisgorgement NN\ndisgrace NN\ndisgraced VBN\ndisgraceful JJ\ndisgruntled JJ\ndisguise VB\ndisguised VBN\ndisguises VBZ\ndisgust NN\ndisgusted VBN\ndisgusting JJ\ndish NN\ndisharmony NN\ndishearten VB\ndisheartened VBN\ndisheartening JJ\ndished VBD\ndishes NNS\ndisheveled JJ\ndishing VBG\ndishonest JJ\ndishonestly RB\ndishonesty NN\ndishonor NN\ndishonorable JJ\ndishonored VBN\ndishonouring VBG\ndishwasher NN\ndishwashers NNS\ndishwater NN\ndisillusioned VBN\ndisillusioning JJ\ndisillusionment NN\ndisincentive NN\ndisincentives NNS\ndisinclination NN\ndisinclined VBN\ndisinfectant NN\ndisinfectants NNS\ndisinfected VBN\ndisinflation NN\ndisinflationary JJ\ndisingenuous JJ\ndisintegrate VB\ndisintegrated VBD\ndisintegrating VBG\ndisintegration NN\ndisintegrative JJ\ndisinterest NN\ndisinterested JJ\ndisinterred VBN\ndisjointed VBN\ndisk NN\ndisk-drive NN\ndisk-read JJ\ndiskette NN\ndiskettes NNS\ndisking VBG\ndisks NNS\ndislike NN\ndisliked VBD\ndislikes VBZ\ndisliking VBG\ndislocated JJ\ndislocation NN\ndislocations NNS\ndislodge VB\ndislodged VBD\ndisloyal JJ\ndisloyalty NN\ndismal JJ\ndismally RB\ndismantle VB\ndismantled VBN\ndismantles VBZ\ndismantling VBG\ndismay NN\ndismayed VBN\ndismaying JJ\ndismember VB\ndismembered VBD\ndismembering VBG\ndismemberment NN\ndismiss VB\ndismissal NN\ndismissed VBD\ndismisses VBZ\ndismissing VBG\ndismounted VBD\ndismounting VBG\ndismounts VBZ\ndisobedience NN\ndisobedient JJ\ndisobey VB\ndisobeyed VBN\ndisobeying VBG\ndisorder NN\ndisordered JJ\ndisorderliness NN\ndisorderly JJ\ndisorders NNS\ndisorganization NN\ndisorganized JJ\ndisoriented VBN\ndisown VB\ndisowned VBD\ndisparage VB\ndisparaged VBD\ndisparagement NN\ndisparaging VBG\ndisparate JJ\ndisparities NNS\ndisparity NN\ndispassionate JJ\ndispassionately RB\ndispatch NN\ndispatched VBD\ndispatchers NNS\ndispatches NNS\ndispatching VBG\ndispel VB\ndispell VB\ndispelled VBN\ndispensable JJ\ndispensary NN\ndispensation NN\ndispense VB\ndispensed VBN\ndispenser NN\ndispensers NNS\ndispenses VBZ\ndispensing VBG\ndispersal NN\ndispersant NN\ndispersants NNS\ndisperse VB\ndispersed VBN\ndispersement NN\ndispersing VBG\ndispersion NN\ndisplace VB\ndisplaced VBN\ndisplacement NN\ndisplaces VBZ\ndisplacing NN\ndisplay NN\ndisplayed VBN\ndisplaying VBG\ndisplays NNS\ndispleased VBN\ndispleases VBZ\ndispleasure NN\ndisposable JJ\ndisposables NNS\ndisposal NN\ndisposals NNS\ndispose VB\ndisposed VBN\ndisposes VBZ\ndisposing VBG\ndisposition NN\ndispositions NNS\ndispossessed VBN\ndispossession NN\ndisppointed JJ\ndisproportionally RB\ndisproportionate JJ\ndisproportionately RB\ndisprove VB\ndisproving VBG\ndisputable JJ\ndispute NN\ndispute-settlement JJ\ndisputed VBN\ndisputes NNS\ndisqualification NN\ndisqualified VBN\ndisqualify VB\ndisquiet NN\ndisquieting JJ\ndisquietude NN\ndisquisition NN\ndisregard NN\ndisregarded VBD\ndisregarding VBG\ndisrepair NN\ndisreputable JJ\ndisrepute NN\ndisrespect NN\ndisrobe VB\ndisrupt VB\ndisrupted VBN\ndisrupting VBG\ndisruption NN\ndisruptions NNS\ndisruptive JJ\ndisrupts VBZ\ndissatisfaction NN\ndissatisfactions NNS\ndissatisfied JJ\ndissected VBD\ndissecting VBG\ndissection NN\ndissects VBZ\ndissembling VBG\ndisseminate VB\ndisseminated VBN\ndisseminates VBZ\ndisseminating VBG\ndissemination NN\ndissension NN\ndissensions NNS\ndissent NN\ndissented VBD\ndissenter NN\ndissenters NNS\ndissenting JJ\ndissents NNS\ndisseration NN\ndisservice NN\ndissident JJ\ndissident-shareholder NN\ndissidents NNS\ndissidents. NN\ndissimilar JJ\ndissimiliar JJ\ndissimulation NN\ndissipate VB\ndissipated VBN\ndissipates VBZ\ndissipating VBG\ndissociate VB\ndissociated VBN\ndissociates VBZ\ndissociating VBG\ndissociation NN\ndissolution NN\ndissolutions NNS\ndissolve VB\ndissolved VBN\ndissolves VBZ\ndissolving VBG\ndissonance NN\ndissonances NNS\ndissuade VB\ndissuaded VBD\ndistal JJ\ndistance NN\ndistances NNS\ndistancing VBG\ndistant JJ\ndistantly RB\ndistaste NN\ndistasteful JJ\ndistastefully RB\ndistate NN\ndistension NN\ndistil VB\ndistillates NNS\ndistillation NN\ndistilled VBN\ndistiller NN\ndistilleries NNS\ndistillers NNS\ndistillery NN\ndistilling VBG\ndistills VBZ\ndistinct JJ\ndistinction NN\ndistinctions NNS\ndistinctive JJ\ndistinctively RB\ndistinctiveness NN\ndistinctly RB\ndistinguish VB\ndistinguishable JJ\ndistinguished VBN\ndistinguishes VBZ\ndistinguishing VBG\ndistort VB\ndistortable JJ\ndistorted VBN\ndistorting VBG\ndistortion NN\ndistortions NNS\ndistorts VBZ\ndistract VB\ndistracted VBN\ndistractedly RB\ndistracting VBG\ndistraction NN\ndistractions NNS\ndistraught JJ\ndistress NN\ndistressed JJ\ndistresses NNS\ndistressing JJ\ndistressingly RB\ndistributable JJ\ndistribute VB\ndistributed VBN\ndistributer NN\ndistributes VBZ\ndistributing VBG\ndistribution NN\ndistributions NNS\ndistributive JJ\ndistributor NN\ndistributors NNS\ndistributorship NN\ndistrict NN\ndistrict-by-district RB\ndistrict-court NN\ndistrict\\/state NN\ndistricting NN\ndistricts NNS\ndistricts\\/states NNS\ndistrubition NN\ndistrust NN\ndistrusted VBN\ndistrusts VBZ\ndisturb VB\ndisturbance NN\ndisturbances NNS\ndisturbed VBN\ndisturber NN\ndisturbing JJ\ndisturbingly RB\ndisturbs VBZ\ndisulfide NN\ndisunion NN\ndisunited VBN\ndisunity NN\ndisused JJ\nditch NN\nditched VBD\nditcher NN\nditches NNS\ndites FW\ndither NN\ndithering VBG\ndithers VBZ\nditties NNS\nditto NN\nditty NN\ndiuretic NN\ndiuretics NNS\ndiurnal JJ\ndiva NN\ndivan NN\ndivan-like JJ\ndivans NNS\ndive NN\ndived VBD\ndiver NN\ndiverge VB\ndivergence NN\ndivergent JJ\ndiverging VBG\ndivers NNS\ndiverse JJ\ndiversifed VBN\ndiversification NN\ndiversifications NNS\ndiversified JJ\ndiversify VB\ndiversifying VBG\ndiversion NN\ndiversionary JJ\ndiversions NNS\ndiversities NNS\ndiversity NN\ndivert VB\ndiverted VBN\ndiverticulitis NN\ndivertimento JJ\ndiverting VBG\ndives NNS\ndivest VB\ndivested VBN\ndivesting VBG\ndivestiture NN\ndivestiture-related JJ\ndivestitures NNS\ndivestment NN\ndivide VB\ndivided VBN\ndividend NN\ndividend-capture NN\ndividend-related JJ\ndividends NNS\ndivider NN\ndivides VBZ\ndividing VBG\ndivination NN\ndivine JJ\ndivinely RB\ndiving VBG\ndivining VBG\ndivinities NNS\ndivinity NN\ndivisible JJ\ndivision NN\ndivision. NN\ndivisional JJ\ndivisions NNS\ndivisive JJ\ndivisiveness NN\ndivorce NN\ndivorced VBN\ndivorcee NN\ndivorces NNS\ndivulge VB\ndivulging VBG\ndivvied VBN\ndivvying VBG\ndizzily RB\ndizziness NN\ndizzy JJ\ndizzying JJ\ndo VBP\ndo-everything JJ\ndo-good JJ\ndo-gooder JJ\ndo-gooders NNS\ndo-it-yourself JJ\ndo-nothing JJ\ndo-or-die JJ\ndoable JJ\ndoan VBP\ndoble NN\ndoc NN\ndocile JJ\ndocilely RB\ndock NN\ndock-siders NNS\ndocked VBN\ndocket NN\ndocketed VBN\ndockets NNS\ndocks NNS\ndockside NN\ndockworkers NNS\ndockyards NNS\ndocters NNS\ndoctor NN\ndoctor-oriented JJ\ndoctor-originated JJ\ndoctor-patient JJ\ndoctoral JJ\ndoctorate NN\ndoctorates NNS\ndoctored VBN\ndoctoring NN\ndoctors NNS\ndoctrinaire JJ\ndoctrinal JJ\ndoctrinally RB\ndoctrine NN\ndoctrines NNS\ndocudrama NN\ndocudramas NNS\ndocument NN\ndocumentaries NNS\ndocumentary NN\ndocumentary-type JJ\ndocumentation NN\ndocumented VBN\ndocumenting VBG\ndocuments NNS\ndocutainment NN\ndoddering JJ\ndodge VBP\ndodged VBD\ndodging VBG\ndoe NN\ndoer NN\ndoers NNS\ndoes VBZ\ndoesn't VBZ\ndoesnt VBZ\ndoffing VBG\ndog NN\ndog-and-pony NN\ndog-eared JJ\ndog-eat-dog JJ\ndog-meat NN\ndog-pin JJ\ndog-powered JJ\ndog-rose NN\ndogcatcher NN\ndogfight NN\ndogged VBN\ndoggedly RB\ndoggerel NN\ndoggie JJ\ndogging VBG\ndoggone JJ\ndoghouse NN\ndogleg NN\ndogma NN\ndogmas NN\ndogmatic JJ\ndogmatically RB\ndogmatism NN\ndogs NNS\ndogtrot NN\ndogwood NN\ndoi FW\ndoin VBG\ndoing VBG\ndoings NNS\ndolce FW\ndoldrums NNS\ndole VB\ndoled VBD\ndoleful JJ\ndoles VBZ\ndoling VBG\ndoll NN\ndoll-like JJ\ndoll-sized JJ\ndollar NN\ndollar-and-cents JJ\ndollar-convertible JJ\ndollar-cost JJ\ndollar-denominated JJ\ndollar-mark NN\ndollar-priced JJ\ndollar-profits JJ\ndollar-related JJ\ndollar-sellers NNS\ndollar-selling NN\ndollar-sign NN\ndollar-yen JJ\ndollar\\ JJ\ndollarette JJ\ndollars NNS\ndollars-and-cents NNS\ndollars... :\ndolledup JJ\ndollies NNS\ndollop NN\ndollops NNS\ndolls NNS\ndolphin NN\ndolphins NNS\ndolt NN\ndoltish JJ\ndomain NN\ndomains NNS\ndome NN\ndomed JJ\ndomes NNS\ndomestic JJ\ndomestic-airline NN\ndomestic-credit NN\ndomestic-demand JJ\ndomestic-inflation NN\ndomestic-made JJ\ndomestic-policy JJ\ndomestic-production NN\ndomestically RB\ndomesticates VBZ\ndomesticity NN\ndomi FW\ndomicile NN\ndomiciled VBN\ndominance NN\ndominant JJ\ndominantly RB\ndominate VB\ndominated VBN\ndominates VBZ\ndominating VBG\ndomination NN\ndomineering VBG\ndominion NN\ndomino NN\ndominoes NN\ndomponents NNS\ndon VB\ndon't VB\ndon't's NNS\ndon't-con-me JJ\ndon't-know's NNS\ndonate VB\ndonated VBN\ndonates VBZ\ndonating VBG\ndonation NN\ndonations NNS\ndone VBN\ndone-and CC\ndone-unto JJ\ndonkey NN\ndonkeys NNS\ndonna NN\ndonned VBD\ndonning VBG\ndonnybrook NN\ndonor NN\ndonors NNS\ndons VBZ\ndont VB\ndonut NN\ndonut-sales JJ\ndoo NN\ndood NN\ndoodads NNS\ndoom NN\ndoomed VBN\ndooming VBG\ndooms NNS\ndoomsayer NN\ndoomsayers NNS\ndoomsday NN\ndoor NN\ndoor-frame NN\ndoor-fronted VBN\ndoor-to-door JJ\ndoorbell NN\ndoorkeeper NN\ndoorknob NN\ndoorman NN\ndoormen NNS\ndoors NNS\ndoorstep NN\ndoorway NN\ndoorways NNS\ndope NN\ndope-ridden JJ\ndoped JJ\ndoper NN\ndorm NN\ndormant JJ\ndormitories NNS\ndormitory NN\ndosage NN\ndosages NNS\ndose NN\ndosed VBN\ndoses NNS\ndossier NN\ndossiers NNS\ndost VBP\ndot NN\ndot-matrix NN\ndoted VBN\ndoth VBZ\ndoting VBG\ndots NNS\ndotted VBN\ndotting VBG\ndouble JJ\ndouble-A JJ\ndouble-A-1 JJ\ndouble-A-2 NN\ndouble-A-3 JJ\ndouble-A-minus JJ\ndouble-A-plus JJ\ndouble-A-rated JJ\ndouble-A1 NN\ndouble-A\\ NNP\ndouble-A\\/single-A-plus JJ\ndouble-B JJ\ndouble-B-minus NN\ndouble-B-minus\\ NN\ndouble-B-plus JJ\ndouble-C NN\ndouble-billing VBG\ndouble-bladed JJ\ndouble-bogeyed VBD\ndouble-bolt VB\ndouble-breasted JJ\ndouble-checking NN\ndouble-coupon NN\ndouble-crossed VBD\ndouble-crosser JJ\ndouble-crossing NN\ndouble-deck JJ\ndouble-decker JJ\ndouble-decking NN\ndouble-digit JJ\ndouble-edged JJ\ndouble-entendre NN\ndouble-glaze VB\ndouble-glazed JJ\ndouble-hamburger NN\ndouble-header NN\ndouble-helix JJ\ndouble-jeopardy NN\ndouble-married JJ\ndouble-meaning NN\ndouble-stage JJ\ndouble-step JJ\ndouble-talk NN\ndouble-valued JJ\ndouble-wall JJ\ndouble-whammy NN\ndouble-wing JJ\ndoubleA-2 JJ\ndoubled VBD\ndoubled-edged JJ\ndoubleheader NN\ndoubles NNS\ndoubling VBG\ndoubloon NN\ndoubly RB\ndoubt NN\ndoubte NN\ndoubted VBD\ndoubter NN\ndoubters NNS\ndoubtful JJ\ndoubtfully RB\ndoubting VBG\ndoubtingly RB\ndoubtless RB\ndoubtlessly RB\ndoubts NNS\ndough NN\ndoughnut NN\ndoughty JJ\ndour JJ\ndourly RB\ndouse VB\ndoused VBD\ndove NN\ndoves NNS\ndovetail VBP\ndovetails VBZ\ndovish JJ\ndowdy JJ\ndowdy-looking JJ\ndowel NN\ndoweling NN\ndower NN\ndown RB\ndown-and-out JJ\ndown-and-outers NNS\ndown-down JJ\ndown-home JJ\ndown-payment NN\ndown-payments NNS\ndown-the-line JJ\ndown-to-earth JJ\ndown. RP\ndownbeat JJ\ndowncast JJ\ndowndraft NN\ndowned VBD\ndowner NN\ndownfall NN\ndownfall... :\ndowngrade NN\ndowngraded VBD\ndowngrades NNS\ndowngrading NN\ndowngradings NNS\ndownhill RB\ndowning VBG\ndownpayment NN\ndownpayments NNS\ndownplay VB\ndownplayed VBD\ndownplaying VBG\ndownplays VBZ\ndownpour NN\ndownright RB\ndowns NNS\ndownshoot NN\ndownside NN\ndownsize VB\ndownsized VBN\ndownsizing VBG\ndownstairs NN\ndownstream RB\ndowntalking JJ\ndowntime NN\ndowntown NN\ndowntrend NN\ndowntrodden JJ\ndownturn NN\ndownturns NNS\ndownward JJ\ndownwind RB\ndowry NN\ndoxepin NN\ndozed VBD\ndozen NN\ndozens NNS\ndozing VBG\ndrab JJ\ndrab-haired JJ\ndrachma NN\ndrachmas NNS\ndraconian JJ\ndraft NN\ndraft-avoidance NN\ndraft-resistance NN\ndrafted VBN\ndraftee NN\ndraftees NNS\ndrafters NNS\ndrafting VBG\ndrafts NNS\ndraftsmen NNS\ndrafty JJ\ndrag NN\ndrag-down JJ\ndragged VBN\ndragger NN\ndragging VBG\ndragnet NN\ndragon NN\ndragons NNS\ndragoon VBP\ndragooned VBD\ndrags VBZ\ndrahve VB\ndrain NN\ndrainage NN\ndrained VBN\ndraining VBG\ndrains NNS\ndram NN\ndrama NN\ndrama-filled JJ\ndramas NN\ndramatic JJ\ndramatical JJ\ndramatically RB\ndramatics NNS\ndramatist NN\ndramatists NNS\ndramatization NN\ndramatizations NNS\ndramatize VB\ndramatized VBN\ndramatizes VBZ\ndramatizing VBG\ndrank VBD\ndrape NN\ndraped VBD\ndraper NN\ndraperies NNS\ndrapers NNS\ndrapery NN\ndrapes NNS\ndraping VBG\ndrastic JJ\ndrastically RB\ndraught NN\ndraughts NN\ndraughty JJ\ndraw VB\ndraw-down NN\ndrawback NN\ndrawbacks NNS\ndrawbridge NN\ndrawdown NN\ndrawer NN\ndrawers NNS\ndrawin VBG\ndrawing VBG\ndrawing-room NN\ndrawing-rooms NNS\ndrawings NNS\ndrawl NN\ndrawled VBD\ndrawling VBG\ndrawn VBN\ndrawn-back NN\ndrawn-out JJ\ndraws VBZ\ndread NN\ndreaded VBN\ndreadful JJ\ndreadfully RB\ndreading VBG\ndream NN\ndream-ridden JJ\ndreamed VBD\ndreamer NN\ndreamers NNS\ndreamin NN\ndreaming VBG\ndreamless JJ\ndreamlessly RB\ndreamlike JJ\ndreams NNS\ndreamt VBD\ndreamy JJ\ndrearier RBR\ndreariness NN\ndreary JJ\ndredged VBD\ndredges VBZ\ndregs NNS\ndrenching NN\ndress NN\ndressed VBN\ndresser NN\ndressers NNS\ndresses NNS\ndressing NN\ndressings NNS\ndressmaking NN\ndressy JJ\ndrew VBD\ndrewe VBD\ndrib-drool NN\ndribble NN\ndribbled VBD\ndried VBN\ndried-out JJ\ndried-up JJ\ndrier NN\ndriers NNS\ndries NNS\ndrift NN\ndrift-net NN\ndrifted VBD\ndrifter NN\ndriftin VBG\ndrifting VBG\ndriftnet NN\ndrifts VBZ\ndriftwood NN\ndrill NN\ndrill-bit NN\ndrilled VBN\ndrillers NNS\ndrilling NN\ndrills NNS\ndrink NN\ndrinkable JJ\ndrinker NN\ndrinkers NNS\ndrinkin VB\ndrinking NN\ndrinking-water NN\ndrinks NNS\ndrip NN\ndripped VBD\ndripping VBG\ndrips VBZ\ndrive NN\ndrive-in NN\ndrive-through JJ\ndrive-train NN\ndrive-yourself JJ\ndriven VBN\ndriver NN\ndrivers NNS\ndrives NNS\ndriveway NN\ndriveways NNS\ndriving VBG\ndrizzle NN\ndrizzling VBG\ndrizzly JJ\ndromozoa NNS\ndromozootic JJ\ndrone NN\ndrones NNS\ndrooled VBD\ndrooling VBG\ndroop VBP\ndrooped VBD\ndrooping VBG\ndroopy-eyed JJ\ndrop NN\ndrop-block NN\ndrop-in JJ\ndrop-off NN\ndrop-out JJ\ndroped VBD\ndroplets NNS\ndropoff NN\ndropoffs NNS\ndropout NN\ndropouts NNS\ndroppable JJ\ndropped VBD\ndropper NN\ndroppers NNS\ndropping VBG\ndroppings NNS\ndrops VBZ\ndross NN\ndrought NN\ndrought-induced JJ\ndrought-inspired JJ\ndrought-ravaged JJ\ndrought-related JJ\ndrought-seared JJ\ndrought-shriveled JJ\ndrought-stricken JJ\ndrought-stunted JJ\ndroughts NNS\ndrouth NN\ndrove VBD\ndrover NN\ndrovers NNS\ndroves NNS\ndrown VB\ndrowned VBN\ndrowning VBG\ndrownings NNS\ndrowns VBZ\ndrowsed VBN\ndrowsily RB\ndrowsing VBG\ndrowsy JJ\ndrubbed VBN\ndrubbing NN\ndrudgery NN\ndrug NN\ndrug-abuse JJ\ndrug-addled JJ\ndrug-approval JJ\ndrug-bill NN\ndrug-cartel JJ\ndrug-consuming JJ\ndrug-dealing JJ\ndrug-delivery JJ\ndrug-education NN\ndrug-enforcement JJ\ndrug-fighting JJ\ndrug-financed JJ\ndrug-free JJ\ndrug-funding NN\ndrug-industry NN\ndrug-infested JJ\ndrug-interdiction NN\ndrug-laden JJ\ndrug-law NN\ndrug-making JJ\ndrug-policy NN\ndrug-pricing NN\ndrug-pushing JJ\ndrug-related JJ\ndrug-sales NNS\ndrug-seeking JJ\ndrug-sensing JJ\ndrug-smuggling JJ\ndrug-store NN\ndrug-supply JJ\ndrug-testing NN\ndrug-traffickers NNS\ndrug-trafficking JJ\ndrug-treatment NN\ndrug... :\ndrugged VBN\ndruggers NNS\ndruggies NNS\ndrugging VBG\ndruggist NN\ndruggists NNS\ndrugless JJ\ndrugs NNS\ndrugstore NN\ndrugstores NNS\ndrugtrafficking NN\ndrum VB\ndrumbeat NN\ndrumbeating NN\ndrumlin NN\ndrummed VBD\ndrummer NN\ndrummers NNS\ndrumming VBG\ndrumroll NN\ndrums NNS\ndrumsticks NNS\ndruncke VBD\ndrunk JJ\ndrunk-and-disorderlies NNS\ndrunk-driving JJ\ndrunkard NN\ndrunkards NNS\ndrunken JJ\ndrunkenly RB\ndrunkenness NN\ndrunker JJR\ndrunks NNS\ndruther VB\ndry JJ\ndry-dock NN\ndry-eyed JJ\ndry-gulchin NN\ndry-ice JJ\ndryer NN\ndryin VBG\ndrying VBG\ndryly RB\ndryness NN\ndrywall NN\ndthat IN\ndu NNP\ndual JJ\ndual-career JJ\ndual-channel JJ\ndual-ladder JJ\ndual-purpose JJ\ndual-road-up NN\ndual-trading NN\ndualism NN\ndualities NNS\ndubbed VBN\ndubious JJ\ndubiously RB\ndubs VBZ\nduces FW\nduck NN\nducked VBD\nducking VBG\nduckling NN\nducklings NNS\nducks NNS\nduct NN\nducts NNS\nductwork NN\ndud NN\ndude NN\ndudgeon NN\nduds NNS\ndue JJ\ndue-diligence JJ\ndue-process NN\nduel NN\ndueled VBD\ndueling VBG\nduels NNS\ndues NNS\nduet NN\nduets NNS\nduffel NN\nduffer NN\nduffers NNS\ndug VBD\ndugout NN\nduh UH\nduke NN\ndulcet JJ\ndull JJ\ndull-gray JJ\ndulled VBN\nduller JJR\ndullest JJS\ndulling VBG\ndullish JJ\ndullness NN\ndulls VBZ\ndully RB\nduly RB\ndumb JJ\ndumbbell NN\ndumbbells NNS\ndumber JJR\ndumbest JJS\ndumbfounded JJ\ndummies NNS\ndummy JJ\ndump VB\ndumped VBD\ndumping VBG\ndumps VBZ\ndumpster NN\ndumpsters NNS\ndumpy JJ\ndun NN\ndune NN\ndune-grass NN\ndunes NNS\ndung NN\ndungarees NNS\ndungeon NN\ndungeons NNS\ndunk NN\ndunked VBD\ndunks VBZ\ndunno VBP\nduo NN\nduodenal JJ\nduopoly RB\nduped VBN\ndupes VBZ\nduplex NN\nduplicable JJ\nduplicate VB\nduplicated VBN\nduplicates VBZ\nduplicating VBG\nduplication NN\nduplications NNS\nduplicative JJ\nduplicity NN\ndurability NN\ndurable JJ\ndurable-goods NNS\ndurables NNS\nduration NN\ndurations NNS\nduress NN\ndurin NN\nduring IN\ndurn JJ\ndusk NN\ndusky JJ\ndust NN\ndust-settling JJ\ndust-swirling JJ\ndust-thick JJ\ndust-up NN\ndustbin NN\ndustbowl NN\ndusted VBN\ndustin VBG\ndusting VBG\ndustjacket NN\ndusts NNS\ndusty JJ\ndusty-green JJ\ndusty-slippered JJ\nduties NNS\ndutiful JJ\ndutifully RB\nduty NN\nduty-free JJ\ndwarf NN\ndwarfed VBN\ndwarfism NN\ndwarfs VBZ\ndwell VBP\ndwelled VBN\ndweller NN\ndwellers NNS\ndwelling NN\ndwellings NNS\ndwells VBZ\ndwelt VBD\ndwindle VB\ndwindled VBD\ndwindles VBZ\ndwindling VBG\ndwindling-sales JJ\ndye NN\ndyed VBN\ndyed-in-the-wool JJ\ndyeing NN\ndyes NNS\ndying VBG\ndykes NNS\ndynamic JJ\ndynamical JJ\ndynamically RB\ndynamics NNS\ndynamism NN\ndynamite NN\ndynamited VBN\ndynamo NN\ndynamos NNS\ndynastic JJ\ndynasties NNS\ndynasty NN\ndynodes NNS\ndysentery NN\ndysfunction NN\ndysgenic JJ\ndyslexia NN\ndyspeptic JJ\ndysplasia NN\ndystopia NN\ndystopian JJ\ndystopias NNS\ndystrophy NN\ne NN\ne-Ames NNP\ne-Estimated VBN\ne-In IN\ne.g NN\ne.g. FW\neach DT\neager JJ\neagerly RB\neagerness NN\neagle NN\neagle-eyed JJ\neagles NNS\near NN\near-piercing JJ\near-splitting JJ\neardrums NNS\neared JJ\nearful NN\nearl NN\nearlier RBR\nearlier-announced JJ\nearlier-expressed JJ\nearlier-period NN\nearlier-reported JJ\nearlier-than-expected JJ\nearlier-the IN\nearliest JJS\nearly JJ\nearly-childhood NN\nearly-departure NN\nearly-morning JJ\nearly-retirement NN\nearly-season JJ\nearly-warning NN\nearmark VB\nearmarked VBN\nearmarking VBG\nearn VB\nearned VBD\nearned-income NN\nearned-run JJ\nearner NN\nearners NNS\nearnest NN\nearnestly RB\nearnestness NN\nearnigs NNS\nearning VBG\nearnings NNS\nearnings-driven JJ\nearnings-forecast JJ\nearnings-growth NN\nearnings-limit JJ\nearnings-per-share JJ\nearnings-related JJ\nearns VBZ\nearphone NN\nearphones NNS\nearring NN\nearrings NNS\nears NNS\nearsplitting JJ\nearth NN\nearth-bound JJ\nearth-colored JJ\nearth-moving JJ\nearth-orbiting JJ\nearth-shattering JJ\nearth-tone NN\nearth-touching JJ\nearthbound JJ\nearthenware NN\nearthlings NNS\nearthly JJ\nearthmoving JJ\nearthquake NN\nearthquake-proof JJ\nearthquake-ravaged JJ\nearthquake-related JJ\nearthquake-resistant JJ\nearthquake-stricken JJ\nearthquake-trained JJ\nearthquake-triggered JJ\nearthquake... :\nearthquakes NNS\nearthshaking JJ\nearthworm NN\nearthworms NNS\nearthy JJ\nearworm NN\nease VB\neased VBD\neased... :\neasel NN\neasement NN\neasements NNS\neases VBZ\neasier JJR\neasier-to-read JJ\neasiest JJS\neasily RB\neasing VBG\neast JJ\neast-to-west RB\neast-west JJ\neastern JJ\neastward RB\neasy JJ\neasy-going JJ\neasy-to-film JJ\neasy-to-operate JJ\neasy-to-reach JJ\neasy-to-read JJ\neasy-to-spot JJ\neasy-to-turn JJ\neasy-to-use JJ\neasygoing JJ\neat VB\neat'em VB\neatable JJ\neatables NNS\neaten VBN\neateries NNS\neaters NNS\neatery NN\neating VBG\neatings NNS\neats VBZ\neave NN\neavesdrop VB\neavesdropping NN\nebb NN\nebb-and-flow NN\nebbed VBD\nebbing VBG\nebbs VBZ\nebony NN\nebullient JJ\nebulliently RB\neccentric JJ\neccentricities NNS\neccentricity NN\neccentrics NNS\necclesiastical JJ\nechelon NN\nechelons NNS\necho NN\nechoed VBD\nechoes NNS\nechoing VBG\neclairs NNS\neclat NN\neclectic JJ\neclectically RB\neclipse VB\neclipsed VBD\neclipses NNS\neclipsing VBG\necliptic NN\neco-evangelists NNS\necological JJ\necologically RB\necologists NNS\necology NN\neconobox NN\neconometric JJ\neconometrics NN\neconomic JJ\neconomic-cooperation NN\neconomic-crime JJ\neconomic-development NN\neconomic-efficiency NN\neconomic-forecasting JJ\neconomic-policy NN\neconomic-reform JJ\neconomic-restructuring JJ\neconomical JJ\neconomically RB\neconomics NNS\neconomies NNS\neconomist NN\neconomists NNS\neconomize VB\neconomizing VBG\neconomy NN\neconomy-lodging JJ\neconomy... :\necstasy NN\necstatic JJ\necstatically RB\nectoplasmic JJ\necumenical JJ\necumenicists NNS\necumenist NN\necumenists NNS\ned. NN\nedema NN\nedematous JJ\nedentulous JJ\nedge NN\nedged VBD\nedges NNS\nedgewise RB\nedginess NN\nedging VBG\nedgy JJ\nedible JJ\nedict NN\nedifice NN\nedified VBD\nedifying JJ\nedit VB\nedited VBN\nediting NN\nediting\\/electronic JJ\nedition NN\neditions NNS\neditor NN\neditor-in-chief NN\neditorial NN\neditorial-page NN\neditorialist NN\neditorialists NNS\neditorialize VB\neditorially RB\neditorials NNS\neditors NNS\neditorship NN\nedits VBZ\nednedayose NN\neducate VB\neducated VBN\neducating VBG\neducation NN\neducational JJ\neducationalist NN\neducations NNS\neducator NN\neducators NNS\neducrats NNS\neduction NN\nee-faket NN\neel NN\neerie JJ\neerily RB\neeriness NN\neffaces VBZ\neffect NN\neffecte VB\neffected VBN\neffecting VBG\neffectinge VBG\neffective JJ\neffectively RB\neffectiveness NN\neffects NNS\neffectual JJ\neffectuate VB\neffeminate JJ\neffete JJ\nefficacious JJ\nefficaciously RB\nefficacy NN\nefficiencies NNS\nefficiency NN\nefficient JJ\nefficient-in JJ|IN\nefficient-market NN\nefficiently RB\neffigy NN\neffloresce VB\neffluent NN\neffluents NNS\neffluvium NN\neffort NN\neffort... :\neffortful JJ\neffortless JJ\neffortlessly RB\nefforts NNS\neffrontery NN\neffusive JJ\negalitarian JJ\negalitarianism NN\negg NN\negg-breaking NN\negg-hatching JJ\negg-on-the-face JJ\negg-processing JJ\negg-sized JJ\negg-throwing JJ\negged VBN\negghead NN\neggplants NNS\neggs NNS\neggshell JJ\nego NN\nego-adaptive JJ\negocentric JJ\negos NNS\negotism NN\negotist NN\negotist... :\negotistic JJ\negotistical JJ\negregious JJ\negregiously RB\negrets NNS\neh UH\neidetic JJ\neies NNS\neight CD\neight-acre JJ\neight-and-a-half-foot JJ\neight-bar JJ\neight-bit JJ\neight-by-ten JJ\neight-cent JJ\neight-count JJ\neight-foot JJ\neight-foot-high JJ\neight-hour JJ\neight-inch JJ\neight-member JJ\neight-mile JJ\neight-mile-long JJ\neight-month JJ\neight-month-old JJ\neight-page JJ\neight-page-a-minute JJ\neight-partner JJ\neight-person JJ\neight-piece JJ\neight-team JJ\neight-thirty JJ\neight-time JJ\neight-times JJ\neight-week JJ\neight-year JJ\neight-year-old JJ\neightball NN\neighteen CD\neighteen-year-old JJ\neighteenth JJ\neighteenth-century JJ\neighth JJ\neighth-floor JJ\neighties NNS\neighty CD\neighty-fifth JJ\neighty-five CD\neighty-four CD\neighty-nine NN\neighty-one CD\neighty-sixth JJ\neighty-three CD\neighty-year-old JJ\nein FW\neine FW\neither DT\neither-or JJ\nejaculated VBD\neject VB\nejected VBN\nejection NN\neke VB\neked VBD\neking VBG\nel-Fna NNP\nelaborate VB\nelaborated VBN\nelaborately RB\nelaborates VBZ\nelaborating VBG\nelaboration NN\nelan NN\nelapse VB\nelapsed VBN\nelapses VBZ\nelastic JJ\nelasticity NN\nelastomer NN\nelastomers NNS\nelated JJ\nelation NN\nelbow NN\nelbowing VBG\nelbows NNS\nelder JJR\nelderly JJ\nelders NNS\neldest JJS\nelect VB\nelected VBN\nelecting VBG\nelection NN\nelection-law NN\nelections NNS\nelections-an JJ\nelective JJ\nelectives NNS\nelectoral JJ\nelectorate NN\nelectors NNS\nelectric JJ\nelectric-driven JJ\nelectric-generating NN\nelectric-power JJ\nelectric-sewer-water JJ\nelectric-transport NN\nelectric-utility JJ\nelectrical JJ\nelectrical-cable NN\nelectrical-engineering JJ\nelectrical-products NNS\nelectrical-safety JJ\nelectrically RB\nelectricals NNS\nelectrician NN\nelectricians NNS\nelectricity NN\nelectricity-industry NN\nelectrified VBN\nelectrifying JJ\nelectriques FW\nelectro-magnetic JJ\nelectro-optical JJ\nelectro-optics NNS\nelectrocardiogram NN\nelectrocardiograph NN\nelectrochemicals NNS\nelectrode NN\nelectrodes NNS\nelectrodynamics NNS\nelectrogalvanized JJ\nelectrogalvanizing VBG\nelectroluminescence NN\nelectrolysis NN\nelectrolysis-of-water JJ\nelectrolytic JJ\nelectromagnet NN\nelectromagnetic-test NN\nelectromagnetism NN\nelectromagnets NNS\nelectromechanical JJ\nelectron NN\nelectron-device NN\nelectronic JJ\nelectronic-bomb NN\nelectronic-communications NNS\nelectronic-data JJ\nelectronic-defense NN\nelectronic-information NN\nelectronic-measuring JJ\nelectronic-publishing JJ\nelectronic-quote NN\nelectronic-systems NNS\nelectronic-test JJ\nelectronic-trading JJ\nelectronic-transaction JJ\nelectronic-warfare NN\nelectronically RB\nelectronicmedical-equipment JJ\nelectronics NNS\nelectronics-distribution NN\nelectronics-instruments JJ\nelectronics-product NN\nelectronography NN\nelectrons NNS\nelectrophoresis NN\nelectrophorus NN\nelectroplated VBN\nelectroplating NN\nelectroreality NN\nelectroshock NN\nelectroshocks NNS\nelectrostatic JJ\nelectrosurgical JJ\nelectrotherapist NN\nelects VBZ\nelegance NN\nelegances NNS\nelegant JJ\nelegantly RB\nelegiac JJ\nelegy NN\nelement NN\nelemental JJ\nelementary JJ\nelementary-grade JJ\nelementary-school JJ\nelements NNS\nelephant NN\nelephant-like JJ\nelephantine JJ\nelephants NNS\nelevate VB\nelevated VBN\nelevates VBZ\nelevating VBG\nelevation NN\nelevations NNS\nelevator NN\nelevators NNS\neleven CD\neleventh JJ\neleventh-floor JJ\neleventh-hour JJ\nelfin JJ\nelicit VB\nelicited VBN\nelicits VBZ\nelide VBP\neligibility NN\neligible JJ\neliminate VB\neliminated VBN\neliminates VBZ\neliminating VBG\nelimination NN\neliminations NNS\nelite NN\nelites NNS\nelitist JJ\nelitists NNS\nelixir NN\nelk NNS\nell NN\nellipses NNS\nellipsis NN\nellipsoid NN\nellipsoids NNS\nelliptical JJ\nelm NN\nelms NNS\nelongate VB\nelongated VBN\nelongation NN\neloped VBD\neloquence NN\neloquent JJ\neloquently RB\nelse RB\nelsewhere RB\nelswehere NN\neluate NN\neluates NNS\nelucidated VBN\nelucidation NN\nelucidations NNS\nelucidative JJ\neluded VBD\neludes VBZ\neluding VBG\nelusive JJ\nelusiveness NN\neluted VBN\nelution NN\nem PRP\nemaciated VBN\nemail NN\nemanated VBD\nemanating VBG\nemanation NN\nemanations NNS\nemancipate VB\nemancipated VBN\nemancipation NN\nemasculate VB\nemasculated VBD\nemasculation NN\nembalmers NNS\nembalming NN\nembankment NN\nembargo NN\nembargoed JJ\nembargoes NNS\nembargos NNS\nembark VB\nembarked VBD\nembarking VBG\nembarks VBZ\nembarrass VB\nembarrassed VBN\nembarrassing JJ\nembarrassingly RB\nembarrassment NN\nembarrassments NNS\nembassies NNS\nembassy NN\nembattled JJ\nembedded VBN\nembellish VB\nembellished VBN\nembezzle VB\nembezzled VBD\nembezzlement NN\nembezzler NN\nembezzling VBG\nembittered VBN\nemblazoned VBN\nemblem NN\nemblematic JJ\nemblems NNS\nembodied VBN\nembodies VBZ\nembodiment NN\nembodiments NNS\nembody VBP\nembodying VBG\nemboldened VBN\nembolisms NNS\nembossed VBD\nembouchure NN\nembrace VB\nembraced VBN\nembraces VBZ\nembracing VBG\nembroider VBP\nembroidered VBN\nembroideries NNS\nembroidery NN\nembroiled VBN\nembryo NN\nembryonic JJ\nembryos NNS\nemcee NN\nemerald JJ\nemeralds NNS\nemerge VB\nemerged VBD\nemergence NN\nemergencies NNS\nemergency NN\nemergency-cash NN\nemergency-claims NNS\nemergency-medical JJ\nemergency-relief NN\nemergency-room NN\nemergency. NN\nemergent JJ\nemerges VBZ\nemerging VBG\nemerging-growth NN\nemeriti FW\nemeritus NN\nemigrants NNS\nemigrate VB\nemigrated VBD\nemigrating VBG\nemigration NN\nemigration-related JJ\nemigrations NNS\nemigre NN\nemigres NNS\neminence NN\neminences NNS\neminent JJ\neminently RB\nemissaries NNS\nemissary NN\nemission NN\nemission-control JJ\nemissions NNS\nemit VB\nemits VBZ\nemitted VBN\nemitting VBG\nemote VB\nemoted VBD\nemotion NN\nemotional JJ\nemotionalism NN\nemotionality NN\nemotionally RB\nemotions NNS\nempathetic JJ\nempathize VB\nempathy NN\nemperor NN\nemperors NNS\nemphases NNS\nemphasis NN\nemphasize VB\nemphasized VBD\nemphasizes VBZ\nemphasizing VBG\nemphatic JJ\nemphatically RB\nemphaticize VB\nemphysema NN\nemphysematous JJ\nempire NN\nempires NNS\nempirical JJ\nempirically RB\nempiricism NN\nemploy VB\nemploye NN\nemployed VBN\nemployee NN\nemployee-benefit JJ\nemployee-benefits JJ\nemployee-bonus JJ\nemployee-contributed JJ\nemployee-health NN\nemployee-incentive NN\nemployee-management JJ\nemployee-owned JJ\nemployee-ownership JJ\nemployee-stock JJ\nemployees NNS\nemployer NN\nemployer-offered JJ\nemployer-paid JJ\nemployer-provided JJ\nemployer-sponsored JJ\nemployerpaid JJ\nemployers NNS\nemployes NNS\nemploying VBG\nemployment NN\nemployment-services JJ\nemployment-tax JJ\nemployments NNS\nemploys VBZ\nempower VBP\nempowered VBN\nempowering VBG\nempowerment NN\nempowers VBZ\nemptied VBN\nemptier JJR\nempties VBZ\nemptiness NN\nempty JJ\nempty-handed JJ\nempty-shelved JJ\nemptying VBG\nemulate VB\nemulated VBN\nemulating VBG\nemulator NN\nemulsified VBN\nemulsifiers NNS\nemulsion NN\nen IN\nenable VB\nenabled VBD\nenables VBZ\nenabling VBG\nenact VB\nenacted VBN\nenacting VBG\nenactment NN\nenactments NNS\nenacts VBZ\nenamel NN\nenameling NN\nenamelled JJ\nenamels NNS\nenamored JJ\nencamp VB\nencamped VBN\nencampment NN\nencapsulate VB\nencased VBD\nencasing VBG\nencephalitis NN\nencephalographic JJ\nenchained VBN\nenchant VB\nenchanted VBN\nenchanting JJ\nenchantingly RB\nenchantment NN\nenciphered VBN\nencircle VB\nencircled VBD\nencircles VBZ\nencircling VBG\nenclave NN\nenclaves NNS\nenclosed VBN\nencloses VBZ\nenclosing VBG\nenclosure NN\nenclosures NNS\nencoded VBN\nencoder NN\nencomiums NNS\nencompass VB\nencompassed VBN\nencompasses VBZ\nencompassing VBG\nencore NN\nencores NNS\nencounter NN\nencountered VBN\nencountering VBG\nencounters NNS\nencourage VB\nencouraged VBN\nencouragement NN\nencourages VBZ\nencouraging VBG\nencouragingly RB\nencroach VB\nencroached VBD\nencroaching VBG\nencroachment NN\nencrusted VBN\nencrypting VBG\nencumber VB\nencumbered VBN\nencumbrance NN\nencumbrances NNS\nencyclopedia NN\nencyclopedias NNS\nencyclopedic JJ\nencylopedia NN\nend NN\nend-of-model-year JJ\nend-of-school JJ\nend-of-season JJ\nend-of-the-quarter JJ\nend-of-the-season JJ\nend-of-the-year JJ\nend-of-year JJ\nend-product NN\nend-run NN\nend-tailed VBN\nend-to-end JJ\nend-use JJ\nend-user NN\nend-zone NN\nendanger VB\nendangered VBN\nendangered-species NNS\nendangering VBG\nendangerment NN\nendeared VBD\nendearing JJ\nendearment NN\nendearments NNS\nendeavor NN\nendeavored VBD\nendeavoring VBG\nendeavors NNS\nendeavour NN\nendeavours NNS\nended VBD\nended... :\nendemic JJ\nendevor NN\nending VBG\nendings NNS\nendless JJ\nendlessly RB\nendocrine JJ\nendocrinologists NNS\nendogamous JJ\nendogamy NN\nendogenous JJ\nendometriosis NN\nendorse VB\nendorsed VBN\nendorsement NN\nendorsements NNS\nendorsers NNS\nendorses VBZ\nendorsing VBG\nendosperm NN\nendothelial JJ\nendothermic JJ\nendotoxin NN\nendotoxins NNS\nendow VB\nendowed VBN\nendowment NN\nendowments NNS\nendows VBZ\nendpoints NNS\nendrocrine JJ\nends NNS\nendurable JJ\nendurance NN\nendure VB\nendured VBD\nendures VBZ\nenduring VBG\nenduringly RB\nenemies NNS\nenemy NN\nenemy-Jew NN\nenergetic JJ\nenergetically RB\nenergies NNS\nenergize VB\nenergized VBN\nenergizes VBZ\nenergizing VBG\nenergy NN\nenergy-adjusted JJ\nenergy-cogeneration NN\nenergy-efficient JJ\nenergy-hungry JJ\nenergy-industry NN\nenergy-producing JJ\nenergy-services NNS\nenervating VBG\nenervation NN\nenfant FW\nenflamed VBN\nenforce VB\nenforceable JJ\nenforced VBN\nenforcement NN\nenforcer NN\nenforcers NNS\nenforces VBZ\nenforcing VBG\nengage VB\nengaged VBN\nengagement NN\nengagements NNS\nengages NNS\nengaging VBG\nengagingly RB\nengender VB\nengendered VBN\nengenders VBZ\nengine NN\nengine-assembly NN\nengine-casting NN\nengine... :\nengineer NN\nengineered VBN\nengineering NN\nengineering-design JJ\nengineering-management JJ\nengineering-services NNS\nengineers NNS\nengineless JJ\nengines NNS\nenglish NNP\nengorged VBN\nengorgement NN\nengrave VB\nengraved VBN\nengraver NN\nengraves VBZ\nengraving NN\nengravings NNS\nengrossed JJ\nengrossing JJ\nengulf VB\nengulfed VBN\nengulfing VBG\nengulfs VBZ\nenhance VB\nenhanced VBN\nenhancement NN\nenhancements NNS\nenhances VBZ\nenhancing VBG\nenigma NN\nenigmatic JJ\nenjoin VB\nenjoinder NN\nenjoined VBN\nenjoining VBG\nenjoy VB\nenjoyable JJ\nenjoyed VBD\nenjoying VBG\nenjoyment NN\nenjoys VBZ\nenlargd VBN\nenlarge VB\nenlarged VBN\nenlargement NN\nenlargements NNS\nenlargers NNS\nenlarges VBZ\nenlarging VBG\nenlighten VB\nenlightened JJ\nenlightening VBG\nenlightenment NN\nenlist VB\nenlisted VBD\nenlisting VBG\nenlistment NN\nenlists VBZ\nenliven VBP\nenlivened VBN\nenlivening VBG\nenmeshed VBN\nenmities NNS\nenmity NN\nennui NN\nennumerated VBD\nenny JJ\nenormity NN\nenormous JJ\nenormously RB\nenough RB\nenoxacin NN\nenquetes FW\nenquired VBD\nenrage NN\nenraged JJ\nenraptured VBD\nenrich VB\nenriched VBN\nenriches VBZ\nenriching VBG\nenrichment NN\nenroll VB\nenrolled VBN\nenrollees NNS\nenrolling NN\nenrollment NN\nenrollments NNS\nenroute RB\nensconced VBN\nensemble NN\nensembles NNS\nenshrined VBN\nenshrouding VBG\nenshrouds VBZ\nenslave VBP\nenslaved VBN\nenslavement NN\nenslaving NN\nensnare VB\nensnared VBN\nensnarled VBN\nensue VB\nensued VBD\nensues VBZ\nensuing VBG\nensure VB\nensured VBD\nensures VBZ\nensuring VBG\nentail VB\nentailed VBD\nentailing VBG\nentails VBZ\nentangled JJ\nentanglement NN\nentanglements NNS\nenter VB\nentered VBD\nentering VBG\nenterotoxemia NN\nenterprise NN\nenterprises NNS\nenterprising JJ\nenterprisingly RB\nenters VBZ\nentertain VB\nentertained VBN\nentertainer NN\nentertainers NNS\nentertaining VBG\nentertainment NN\nentertainment-industry NN\nentertainment-law NN\nentertainments NNS\nentertains VBZ\nenterteyned VBD\nenthalpy NN\nenthralled JJ\nenthralling JJ\nenthrones VBZ\nenthuses VBZ\nenthusiam NN\nenthusiasm NN\nenthusiasms NNS\nenthusiast NN\nenthusiastic JJ\nenthusiastically RB\nenthusiasts NNS\nentice VB\nenticed VBD\nenticements NNS\nenticing VBG\nenticingly RB\nentire JJ\nentirely RB\nentirety NN\nentities NNS\nentitle VB\nentitled VBN\nentitlement NN\nentitlements NNS\nentitles VBZ\nentitling VBG\nentity NN\nentombed VBN\nentomologist NN\nentourage NN\nentractes NNS\nentrance NN\nentranced VBN\nentrances NNS\nentranceway NN\nentrant NN\nentrants NNS\nentrapment NN\nentre NN\nentreat VB\nentreated VBD\nentreaties NNS\nentree NN\nentrench VB\nentrenched VBN\nentrenchment NN\nentrepreneur NN\nentrepreneurial JJ\nentrepreneurism NN\nentrepreneurs NNS\nentrepreneurship NN\nentries NNS\nentropy NN\nentropy-increasing JJ\nentrust VB\nentrusted VBN\nentrusting VBG\nentry NN\nentry-level JJ\nentry-limit JJ\nentry-limited JJ\nentry-limiting JJ\nentry-price JJ\nentwined VBN\nenumerated VBN\nenumeration NN\nenunciate VB\nenunciated VBD\nenunciating VBG\nenunciation NN\nenvelope NN\nenveloped VBN\nenvelopes NNS\nenveloping VBG\nenvenomed VBN\nenviable JJ\nenviably RB\nenvied VBD\nenvious JJ\nenviously RB\nenviroment NN\nenvironing VBG\nenvironment NN\nenvironmental JJ\nenvironmental-impact JJ\nenvironmental-services NNS\nenvironmentalism NN\nenvironmentalist NN\nenvironmentalist-actor NN\nenvironmentalist-developer JJ\nenvironmentalists NNS\nenvironmentally RB\nenvironments NNS\nenvirons NNS\nenvisage VB\nenvisaged VBD\nenvisages VBZ\nenvision VBP\nenvisioned VBD\nenvisioning VBG\nenvisions VBZ\nenvoy NN\nenvoys NNS\nenvy NN\nenvy-quotient NN\nenzymatic JJ\nenzyme NN\nenzyme-like JJ\nenzymes NNS\neons NNS\neosinophilic JJ\nepaulets NNS\nephemeral JJ\nepic NN\nepicenter NN\nepics NNS\nepicure NN\nepicurean NN\nepicycle NN\nepicycles NNS\nepicyclical JJ\nepicyclically RB\nepidemic NN\nepidemics NNS\nepidemiologic JJ\nepidemiological JJ\nepidemiologist NN\nepidemiologists NNS\nepidermis NN\nepigenetic JJ\nepigrammatic JJ\nepigrams NNS\nepigraph NN\nepilepsy NN\nepileptic JJ\nepileptics NNS\nepilogue NN\nepiphany NN\nepiphyseal-diaphyseal JJ\nepiphysis NN\nepisode NN\nepisodes NNS\nepisodic JJ\nepistemology NN\nepistolatory JJ\nepitaph NN\nepithet NN\nepithets NNS\nepitome NN\nepitomize VB\nepitomized VBN\nepitomizes VBZ\nepoch NN\nepoch-making JJ\nepochal JJ\nepoxy JJ\nepsiode NN\nepsom NN\neqn. NN\neqns. NN\nequal JJ\nequal-opportunity NN\nequaled VBD\nequaling VBG\nequality NN\nequalization NN\nequalize VB\nequalizer NN\nequalizers NNS\nequalizing NN\nequalled VBN\nequally RB\nequals VBZ\nequanimity NN\nequate VB\nequated VBN\nequates VBZ\nequating VBG\nequation NN\nequations NNS\nequator NN\nequatorial JJ\nequestrian JJ\nequestrians NNS\nequidistant JJ\nequidistantly RB\nequilibrated VBN\nequilibrium NN\nequilibriums NNS\nequiment NN\nequine NN\nequines NNS\nequip VB\nequipment NN\nequipment-leasing JJ\nequipment-packed JJ\nequipmwent-leasing NN\nequipotent JJ\nequipped VBN\nequipping VBG\nequips VBZ\nequitable JJ\nequitably RB\nequities NNS\nequity NN\nequity-like JJ\nequity-purchase JJ\nequity-to-asset NN\nequityholders NNS\nequivalence NN\nequivalent NN\nequivalent-choice JJ\nequivalents NNS\nequivocal JJ\nequivocating NN\ner UH\nera NN\neradicate VB\neradicated VBN\neradicating VBG\neradication NN\neras NNS\nerasable JJ\nerase VB\nerased VBN\neraser NN\neraser-fitted JJ\nerasers NNS\nerases VBZ\nerasing VBG\nerasures NNS\nerawhere NN\nere IN\nerect VB\nerected VBN\nerecting VBG\nerection NN\nerects VBZ\nerembal NNP\nergonomics NNS\nergotropic JJ\nerned VBD\nerode VB\neroded VBN\nerodes VBZ\neroding VBG\neromonga FW\nerosion NN\nerotic JJ\nerotica NNS\nerotically RB\nerr VBP\nerrand NN\nerrant JJ\nerrata NNS\nerratic JJ\nerratically RB\nerred VBN\nerroneous JJ\nerroneously RB\nerror NN\nerror-free JJ\nerror-laden JJ\nerror-prone JJ\nerrors NNS\nerrs VBZ\nersatz JJ\nerstwhile JJ\nerudite JJ\nerudition NN\nerupt VB\nerupted VBD\nerupting VBG\neruption NN\nerupts VBZ\nerysipelas NN\nerythroid NN\nerythropoietin NN\nescalate VB\nescalated VBN\nescalating VBG\nescalation NN\nescalators NNS\nescapade NN\nescapades NNS\nescape VB\nescaped VBD\nescapees NNS\nescapes NNS\nescaping VBG\nescapist JJ\nescheat NN\neschew VB\neschewed VBN\neschewing VBG\neschews VBZ\nescort NN\nescorted VBD\nescorting VBG\nescorts VBZ\nescritoire NN\nescrow NN\nescrowed VBN\nescudo NN\nescutcheon NN\nescutcheons NNS\nesophagus NN\nesoteric JJ\nesoterica NNS\nespecially RB\nespionage NN\nesplanade NN\nespousal NN\nespouse VBP\nespoused VBD\nespouses VBZ\nespousing VBG\nespresso NN\nesprit FW\nessay NN\nessayed VBD\nessayish JJ\nessayist NN\nessayists NNS\nessays NNS\nesse FW\nessence NN\nessences NNS\nessential JJ\nessential... :\nessentially RB\nessentials NNS\nest FW\nestablish VB\nestablished VBN\nestablishes VBZ\nestablishing VBG\nestablishment NN\nestablishments NNS\nestablshed VBN\nestancia NN\nestancias NNS\nestanciero NN\nestancieros NNS\nestate NN\nestate-freeze JJ\nestate-tax JJ\nestate... :\nestates NNS\nesteem NN\nesteemed VBD\nesterases NNS\nesters NNS\nesthetic JJ\nesthetics NNS\nestimable JJ\nestimate NN\nestimated VBN\nestimates NNS\nestimating VBG\nestimation NN\nestimators NNS\nestragole NN\nestranged VBN\nestrangement NN\nestranging JJ\nestrogen NN\nestrogen-replacement NN\nestuarian NN\nestuaries NNS\nestuary NN\net FW\netc FW\netc. FW\netcetera NN\netch VB\netched VBD\netching NN\neternal JJ\neternally RB\neternity NN\netes FW\nethane NN\nethanol NN\nethanol-based JJ\nethanol-powered JJ\nether NN\nethereal JJ\nethers NNS\nethic NN\nethical JJ\nethically RB\nethicist NN\nethicists NNS\nethics NNS\nethics-related JJ\nethnic JJ\nethnically RB\nethnicity NN\nethnography NN\nethos NN\nethyl NN\nethylene NN\netiquette NN\netymological JJ\netymology NN\neucalyptus NN\neugenic JJ\neulogize VB\neulogized VBD\neulogizers NNS\neulogy NN\neuphemism NN\neuphemisms NNS\neuphoria NN\neuphoric JJ\neutectic NN\neva NN\nevacuant NN\nevacuate VB\nevacuated VBN\nevacuation NN\nevade VB\nevaded VBN\nevader NN\nevaders NNS\nevades VBZ\nevading VBG\nevaluate VB\nevaluated VBN\nevaluates VBZ\nevaluating VBG\nevaluation NN\nevaluations NNS\nevaluative JJ\nevangelical JJ\nevangelicals NNS\nevangelism NN\nevangelist NN\nevangelist-industrialist NN\nevangelists NNS\nevaporate VB\nevaporated VBD\nevaporates VBZ\nevaporation NN\nevaporative JJ\nevasion NN\nevasions NNS\nevasive JJ\neve NN\neven RB\neven-handed JJ\neven-larger JJ\neven-tempered JJ\nevened VBN\nevenhanded JJ\nevening NN\nevenings NNS\nevenly RB\nevens VBZ\nevensong NN\nevent NN\nevent-driven JJ\nevent-risk JJ\neventful JJ\neventfully RB\nevents NNS\neventshah-leh RB\neventshahleh RB\neventual JJ\neventualities NNS\neventuality NN\neventually RB\neventuate VBP\nevenutally RB\never RB\never'body NN\never-anxious JJ\never-changing JJ\never-dying JJ\never-existent JJ\never-expanding JJ\never-faster JJ\never-greater JJ\never-growing JJ\never-higher JJ\never-increasing JJ\never-lovin JJ\never-more JJ\never-narrowing JJ\never-optimistic JJ\never-present JJ\never-quieter JJ\never-so-Oxonian JJ\never-successful JJ\never-swelling JJ\never-tightening JJ\never-vigilant JJ\never-worsening JJ\nevergreen NN\nevergreens NNS\neverlasting JJ\neverlastingly RB\nevermounting VBG\neversteadier JJ\nevery DT\nevery-day JJ\neverybody NN\neveryday JJ\neveryone NN\neveryone... :\neverything NN\neverywhere RB\nevict VB\nevicted VBN\nevicting VBG\nevidence NN\nevidence... :\nevidenced VBN\nevidences NNS\nevidencing VBG\nevident JJ\nevidential JJ\nevidently RB\nevil JJ\nevil-but-cute JJ\nevil-doers NNS\nevil-doing NN\nevil-looking JJ\nevil-minded JJ\nevildoers NNS\nevils NNS\nevinced VBN\neviscerate VB\neviscerating VBG\nevocation NN\nevocations NNS\nevocative JJ\nevoke VB\nevoked VBN\nevokes VBZ\nevoking VBG\nevolution NN\nevolutionary JJ\nevolutionists NNS\nevolve VB\nevolved VBN\nevolves VBZ\nevolving VBG\newww UH\nex FW\nex-Attorney NNP\nex-Beecham JJ\nex-Communist JJ\nex-Cubs NNS\nex-FDA JJ\nex-Gov NNP\nex-House JJ\nex-Justice NN\nex-Marine NN\nex-Mrs JJ|NP\nex-National JJ\nex-President NNP\nex-Tory NN\nex-Yankee NN\nex-accountant NN\nex-aides NNS\nex-bandits NNS\nex-brother-in-law NN\nex-chairman NN\nex-chief JJ\nex-convict NN\nex-convicts NNS\nex-dividend JJ\nex-employee NN\nex-employees NNS\nex-employer NN\nex-fighter NN\nex-franchise NN\nex-furniture JJ\nex-gambler NN\nex-housing JJ\nex-hurler NN\nex-husband NN\nex-investment JJ\nex-jazz JJ\nex-lawyer NN\nex-liberals NNS\nex-manager NN\nex-marine NN\nex-mayor NN\nex-member NN\nex-musician NN\nex-officers NNS\nex-officio JJ\nex-partners NNS\nex-player NN\nex-president NN\nex-presidents NNS\nex-prison NN\nex-prize JJ\nex-reporters NNS\nex-schoolteacher NN\nex-singer NN\nex-smokers NNS\nex-truck JJ\nex-trucking JJ\nex-wife NN\nex-wives NNS\nexacerbate VB\nexacerbated VBN\nexacerbates VBZ\nexacerbating VBG\nexacerbation NN\nexacerbations NNS\nexachanges NNS\nexact JJ\nexacted VBD\nexacting JJ\nexactly RB\nexacts VBZ\nexaggerate VB\nexaggerated VBN\nexaggerating VBG\nexaggeration NN\nexaggerations NNS\nexalt VBP\nexaltation NN\nexaltations NNS\nexalted JJ\nexalting VBG\nexam NN\nexamiantion NN\nexamination NN\nexaminations NNS\nexamine VB\nexamined VBD\nexaminer NN\nexaminers NNS\nexamines VBZ\nexaminin VBG\nexamining VBG\nexample NN\nexamples NNS\nexams NNS\nexasperate VB\nexasperated JJ\nexasperating VBG\nexasperatingly RB\nexasperation NN\nexcavate VB\nexcavated VBN\nexcavating VBG\nexcavation NN\nexcavations NNS\nexcavator NN\nexcavators NNS\nexceed VB\nexceeded VBD\nexceeding VBG\nexceedingly RB\nexceeds VBZ\nexcel VBP\nexcelled VBD\nexcellence NN\nexcellences NNS\nexcellent JJ\nexcellently RB\nexcelling VBG\nexcels VBZ\nexcelsin NN\nexcelsior NN\nexcept IN\nexcepting VBG\nexception NN\nexceptional JJ\nexceptionally RB\nexceptions NNS\nexcerpt NN\nexcerpts NNS\nexcess JJ\nexcesses NNS\nexcessive JJ\nexcessively RB\nexchange NN\nexchange-listed JJ\nexchange-rate NN\nexchangeable JJ\nexchanged VBN\nexchanger NN\nexchangers NNS\nexchanges NNS\nexchanging VBG\nexchequer NN\nexcise NN\nexcised VBD\nexcision NN\nexcitability NN\nexcitatory JJ\nexcite VB\nexcited VBN\nexcitedly RB\nexcitement NN\nexcitements NNS\nexciter NN\nexcites VBZ\nexciting JJ\nexclaim VB\nexclaimed VBD\nexclaiming VBG\nexclaims VBZ\nexclamation NN\nexclamations NNS\nexclude VB\nexcluded VBN\nexcludes VBZ\nexcluding VBG\nexclusion NN\nexclusionary JJ\nexclusions NNS\nexclusive JJ\nexclusively RB\nexclusiveness NN\nexclusivity NN\nexcommunicated VBN\nexcorciate VB\nexcoriate VB\nexcoriated VBD\nexcoriating VBG\nexcrement NN\nexcrete VB\nexcreted VBN\nexcretion NN\nexcretory JJ\nexcruciating JJ\nexcrutiatingly RB\nexcursion NN\nexcursions NNS\nexcursus NN\nexcusable JJ\nexcuse NN\nexcused VBN\nexcuses NNS\nexcutives NNS\nexec NN\nexecs NNS\nexecuitive NN\nexecute VB\nexecuted VBN\nexecutes VBZ\nexecuting VBG\nexecution NN\nexecutioner NN\nexecutions NNS\nexecutive NN\nexecutive-branch JJ\nexecutive-legislative JJ\nexecutive-level JJ\nexecutive-model JJ\nexecutive-office NN\nexecutive-only JJ\nexecutive-type NN\nexecutives NNS\nexecutor NN\nexecutors NNS\nexegesis NN\nexemplar NN\nexemplary JJ\nexemplified VBN\nexemplifies VBZ\nexemplify VBP\nexempt JJ\nexempted VBN\nexempting VBG\nexemption NN\nexemptions NNS\nexempts VBZ\nexercisable JJ\nexercise NN\nexercised VBN\nexercises NNS\nexercising VBG\nexerpts NNS\nexert VB\nexerted VBN\nexerting VBG\nexertion NN\nexertions NNS\nexerts VBZ\nexeuctive NN\nexhaled VBD\nexhaling VBG\nexhanges NNS\nexhaust NN\nexhausted VBN\nexhaustible JJ\nexhausting VBG\nexhaustingly RB\nexhaustion NN\nexhaustive JJ\nexhaustively RB\nexhausts NNS\nexhibit NN\nexhibited VBN\nexhibiting VBG\nexhibition NN\nexhibitions NNS\nexhibitors NNS\nexhibits NNS\nexhilarated VBN\nexhilarating JJ\nexhilaration NN\nexhort VB\nexhortations NNS\nexhorting VBG\nexhorts VBZ\nexhumations NNS\nexhume VB\nexhusband NN\nexigencies NNS\nexile NN\nexile\\/trade NN\nexiled VBN\nexiles NNS\nexiling VBG\nexist VB\nexistance NN\nexisted VBD\nexistence NN\nexistent JJ\nexistential JJ\nexistentialist NN\nexisting VBG\nexists VBZ\nexit NN\nexit-load JJ\nexit-poll JJ\nexit-visa JJ\nexited VBD\nexiting VBG\nexits NNS\nexluding VBG\nexodus NN\nexogamous JJ\nexogamy NN\nexonerate VB\nexonerated VBN\nexonerating VBG\nexoneration NN\nexorbitant JJ\nexorcise VB\nexorcism NN\nexorcisms NNS\nexorcist NN\nexothermic JJ\nexotic JJ\nexotic-Hawaiian-locale JJ\nexpand VB\nexpandable JJ\nexpanded VBN\nexpanding VBG\nexpanding-profit JJ\nexpands VBZ\nexpanse NN\nexpansion NN\nexpansion-contraction NN\nexpansion-minded JJ\nexpansionary JJ\nexpansionism NN\nexpansionist JJ\nexpansionists NNS\nexpansions NNS\nexpansive JJ\nexpansively RB\nexpansiveness NN\nexpatriate JJ\nexpatriates NNS\nexpecially RB\nexpect VBP\nexpectable JJ\nexpectancies NNS\nexpectancy NN\nexpectant JJ\nexpectantly RB\nexpectation NN\nexpectations NNS\nexpected VBN\nexpectedly RB\nexpecting VBG\nexpects VBZ\nexpediency NN\nexpedient JJ\nexpediently RB\nexpedients NNS\nexpedite VB\nexpedited VBN\nexpediting VBG\nexpedition NN\nexpeditions NNS\nexpeditious JJ\nexpeditiously RB\nexpel VB\nexpelled VBN\nexpelling VBG\nexpend VB\nexpendable JJ\nexpended VBN\nexpenditure NN\nexpenditures NNS\nexpends VBZ\nexpense NN\nexpense-account NN\nexpense-paid JJ\nexpense-reducing JJ\nexpenses NNS\nexpensive JJ\nexpensive-to-produce JJ\nexperience NN\nexperience-oriented JJ\nexperienced VBN\nexperiences NNS\nexperiencing VBG\nexperiential JJ\nexperientially RB\nexperiment NN\nexperimental JJ\nexperimental-theater JJ\nexperimentalism NN\nexperimentally RB\nexperimentation NN\nexperimentations NNS\nexperimented VBD\nexperimenter NN\nexperimenters NNS\nexperimenting VBG\nexperiments NNS\nexpert NN\nexpertise NN\nexpertly RB\nexperts NNS\nexpiating VBG\nexpiation NN\nexpiration NN\nexpiration-related JJ\nexpirations NNS\nexpire VB\nexpired VBD\nexpires VBZ\nexpiring VBG\nexplain VB\nexplained VBD\nexplaining VBG\nexplains VBZ\nexplains. VBZ\nexplanation NN\nexplanations NNS\nexplanatory JJ\nexpletive NN\nexplicable JJ\nexplicit JJ\nexplicit. JJ\nexplicitly RB\nexplicitness NN\nexplicity NN\nexplictly RB\nexplode VB\nexploded VBD\nexplodes VBZ\nexploding VBG\nexploding-wire JJ\nexploit VB\nexploitation NN\nexploitative JJ\nexploited VBN\nexploiter NN\nexploiters NNS\nexploiting VBG\nexploits NNS\nexploration NN\nexplorations NNS\nexploratory JJ\nexplore VB\nexplored VBN\nexplorer NN\nexplorers NNS\nexplores VBZ\nexploring VBG\nexplosion NN\nexplosions NNS\nexplosive JJ\nexplosively RB\nexplosives NNS\nexplusion NN\nexpo NN\nexponential JJ\nexponentially RB\nexponents NNS\nexport NN\nexport-applications NNS\nexport-boosting JJ\nexport-bound JJ\nexport-control JJ\nexport-driven JJ\nexport-license JJ\nexport-oriented JJ\nexport-promotion JJ\nexport-related JJ\nexport-subsidy NN\nexported VBN\nexporter NN\nexporters NNS\nexporting VBG\nexports NNS\nexpose VB\nexposed VBN\nexposes VBZ\nexposing VBG\nexposited VBN\nexposition NN\nexpositions NNS\nexpository JJ\nexposure NN\nexposure-time NN\nexposure... :\nexposures NNS\nexpounded VBD\nexpounding VBG\nexpress VB\nexpress-delivery NN\nexpress... :\nexpressed VBN\nexpresses VBZ\nexpressible JJ\nexpressing VBG\nexpression NN\nexpressionism NN\nexpressionist NN\nexpressionistic JJ\nexpressionists NNS\nexpressionless JJ\nexpressions NNS\nexpressive JJ\nexpressiveness NN\nexpressivness NN\nexpressly RB\nexpressway NN\nexpropriated JJ\nexpulsion NN\nexpunge VB\nexpunged VBN\nexpunging NN\nexpurgation NN\nexquisite JJ\nexquisitely RB\nexquisiteness NN\nextant JJ\nextempore RB\nextemporize VB\nextend VB\nextended VBN\nextended-body JJ\nextended-care JJ\nextended-payment NN\nextended-range JJ\nextended-wear JJ\nextendible JJ\nextendibles NNS\nextending VBG\nextends VBZ\nextension NN\nextensions NNS\nextensive JJ\nextensively RB\nextent NN\nextenuate VB\nextenuating VBG\nexterior JJ\nexteriors NNS\nexterminate VB\nexterminated VBN\nexterminating VBG\nextermination NN\nexterminator NN\nextern NN\nexternal JJ\nexternal-trade JJ\nexternalization NN\nexternally RB\nextinct JJ\nextinction NN\nextinguish VB\nextinguished VBN\nextinguisher NN\nextinguishers NNS\nextinguishment NN\nextirpated VBN\nextirpating VBG\nextolled VBD\nextolling VBG\nextols VBZ\nextort VB\nextorted VBD\nextorting VBG\nextortion NN\nextortionate JJ\nextra JJ\nextra-caffeine JJ\nextra-curricular JJ\nextra-high JJ\nextra-literary JJ\nextra-musical JJ\nextra-nasty JJ\nextra-sensory JJ\nextra-thick JJ\nextract VB\nextracted VBN\nextracting VBG\nextraction NN\nextractor NN\nextractors NNS\nextracts NNS\nextracurricular JJ\nextradite VB\nextradited VBN\nextraditing VBG\nextradition NN\nextraditions NNS\nextralegal JJ\nextramarital JJ\nextramural JJ\nextraneous JJ\nextraneousness NN\nextraordinarily RB\nextraordinary JJ\nextraordinary... :\nextrapolate VB\nextrapolated VBN\nextrapolates VBZ\nextrapolation NN\nextrapolations NNS\nextras NNS\nextraterrestrial JJ\nextraterrestrials NNS\nextraterritorial JJ\nextravagance NN\nextravagant JJ\nextravagantly RB\nextravaganza NN\nextravaganzas NNS\nextrema NNS\nextreme JJ\nextremely RB\nextremes NNS\nextremis FW\nextremist JJ\nextremists NNS\nextremities NNS\nextremity NN\nextricate VB\nextrovert NN\nextruded VBN\nextruder NN\nextruding VBG\nextrusion NN\nextrusions NNS\nexuberance NN\nexuberant JJ\nexuberantly RB\nexude VBP\nexuded VBD\nexultantly RB\nexultation NN\nexulted VBD\nexults VBZ\neyd VBN\neye NN\neye-beamings NNS\neye-blink NN\neye-catching JJ\neye-deceiving NN\neye-filling JJ\neye-gouging NN\neye-machine NN\neye-popping JJ\neye-strain NN\neye-to-eye JJ\neye-undeceiving NN\neyeball NN\neyeballing VBG\neyeballs NNS\neyebrow NN\neyebrows NNS\neyed VBD\neyeful NN\neyeglasses NNS\neyeing VBG\neyelashes NNS\neyelets NNS\neyelid NN\neyelids NNS\neyepiece NN\neyes NNS\neyesight NN\neyesore NN\neyeteeth NNS\neyewear JJ\neyewitness NN\neyewitnesses NNS\neying VBG\nf NN\nf'ovuh VB\nf'r IN\nf-As IN\nf-Includes VBZ\nf-plane NN\nf.o.b JJ\nfAs NNP\nfable NN\nfabled JJ\nfables NNS\nfabric NN\nfabricate VB\nfabricated VBN\nfabricates VBZ\nfabricating VBG\nfabrication NN\nfabrications NNS\nfabricator NN\nfabricators NNS\nfabrics NNS\nfabulations NNS\nfabulous JJ\nfabulously RB\nfacade NN\nfacaded VBN\nfacades NNS\nface NN\nface-amount JJ\nface-lifting NN\nface-off NN\nface-saving JJ\nface-to-face JJ\nface-to-wall RB\nfaced VBN\nfaceless JJ\nfacelift NN\nfacelifts NNS\nfaces VBZ\nfacet NN\nfacet-plane NN\nfacet-planes NNS\nfacetious JJ\nfacetiously RB\nfacets NNS\nfacial JJ\nfacile JJ\nfacilitate VB\nfacilitated VBN\nfacilitates VBZ\nfacilitating VBG\nfacilitators NNS\nfacilites NNS\nfacilities NNS\nfacility NN\nfacing VBG\nfacings NNS\nfaciunt FW\nfacsimile NN\nfacsimiles NNS\nfacsiport NN\nfact NN\nfact-bound JJ\nfact-finder NN\nfact-finding JJ\nfaction NN\nfactions NNS\nfacto FW\nfactor NN\nfactored VBN\nfactories NNS\nfactoring NN\nfactors NNS\nfactory NN\nfactory-automation NN\nfactory-jobs NNS\nfactory-like JJ\nfactory-modernization NN\nfactory-outlet JJ\nfacts NNS\nfactual JJ\nfactually RB\nfaculties NNS\nfaculty NN\nfaculty-hiring JJ\nfad NN\nfaddish JJ\nfade VB\nfade-in JJ\nfaded VBN\nfadeout NN\nfades NNS\nfading VBG\nfads NNS\nfaery NN\nfaier RB\nfail VB\nfail-safe JJ\nfailed VBD\nfailing VBG\nfailings NNS\nfails VBZ\nfailure NN\nfailure-to-supervise JJ\nfailures NNS\nfaim FW\nfaint JJ\nfainted VBD\nfainter JJR\nfaintest JJS\nfainting NN\nfaintly RB\nfair JJ\nfair-looking JJ\nfair-market JJ\nfair-sized JJ\nfair-trade-related JJ\nfair-use JJ\nfair-weather JJ\nfairer JJR\nfaires NNS\nfairest JJS\nfairgoers NNS\nfairies NNS\nfairing NN\nfairly RB\nfairness NN\nfairs NNS\nfairway NN\nfairways NNS\nfairy JJ\nfairy-land NN\nfairy-tale NN\nfait NN\nfaith NN\nfaithful JJ\nfaithfully RB\nfaiths NNS\nfajitas NNS\nfake JJ\nfaked VBN\nfaker NN\nfakes NNS\nfaking VBG\nfalcon NN\nfalconers NNS\nfalconry NN\nfalcons NNS\nfall NN\nfall-off NN\nfall-outs NNS\nfallacious JJ\nfallacy NN\nfallback NN\nfallen VBN\nfallible JJ\nfalling VBG\nfalloff NN\nfallout NN\nfallow JJ\nfalls VBZ\nfalse JJ\nfalse-fronted JJ\nfalsehood NN\nfalsehoods NNS\nfalsely RB\nfalseness NN\nfalsification NN\nfalsified VBN\nfalsify VB\nfalsifying VBG\nfalsity NN\nfalter VB\nfaltered VBD\nfaltering VBG\nfalters VBZ\nfame NN\nfamed JJ\nfames NNS\nfamilar JJ\nfamilarity NN\nfamilial JJ\nfamiliar JJ\nfamiliarity NN\nfamiliarization NN\nfamiliarize VB\nfamiliarly RB\nfamiliarness NN\nfamilies NNS\nfamilistical JJ\nfamille FW\nfamily NN\nfamily-business NN\nfamily-centered JJ\nfamily-community NN\nfamily-entertainment JJ\nfamily-oriented JJ\nfamily-owned JJ\nfamily-planning JJ\nfamily-run JJ\nfamily-welfare NN\nfamine NN\nfamine-relief NN\nfamines NNS\nfamous JJ\nfamously RB\nfan NN\nfanatic NN\nfanatical JJ\nfanatically RB\nfanaticism NN\nfanatics NNS\nfancied VBD\nfancier JJR\nfancies VBZ\nfanciest JJS\nfanciful JJ\nfancifully RB\nfancy JJ\nfancy'shvartzer NN\nfancy-free JJ\nfancying VBG\nfanfare NN\nfangs NNS\nfanned VBD\nfanning VBG\nfanny NN\nfans NNS\nfantasia NN\nfantasies NNS\nfantasist NN\nfantasize VBP\nfantasized VBN\nfantastic JJ\nfantastically RB\nfantasy NN\nfantods NNS\nfar RB\nfar-afield JJ\nfar-away JJ\nfar-famed JJ\nfar-fetched JJ\nfar-flung JJ\nfar-from-conciliatory JJ\nfar-left JJ\nfar-lower JJR\nfar-off JJ\nfar-out JJ\nfar-ranging JJ\nfar-reaching JJ\nfar-right JJ\nfar-sighted JJ\nfaraway JJ\nfarce NN\nfarces NNS\nfare NN\nfared VBD\nfares NNS\nfarewell NN\nfarfetched JJ\nfarflung NN\nfaring VBG\nfarm NN\nfarm-engineering NN\nfarm-equipment NN\nfarm-policy NN\nfarm-product NN\nfarm-state NNP\nfarm-subsidy NN\nfarm-supply JJ\nfarm-trade JJ\nfarmed VBD\nfarmer NN\nfarmer-type JJ\nfarmers NNS\nfarmhands NNS\nfarmhouse NN\nfarmhouses NNS\nfarming NN\nfarmland NN\nfarmlands NNS\nfarms NNS\nfarmsteads NNS\nfarmwives NNS\nfaro NN\nfarrowings NNS\nfarther RB\nfarthest JJS\nfascicles NNS\nfasciculations NNS\nfascimile-machine NN\nfascinate VB\nfascinated VBN\nfascinates VBZ\nfascinating JJ\nfascinatingly RB\nfascination NN\nfascism NN\nfascist JJ\nfascists NNS\nfashion NN\nfashionable JJ\nfashioned VBN\nfashioning VBG\nfashions NNS\nfast RB\nfast-acting JJ\nfast-approaching JJ\nfast-closing JJ\nfast-cut JJ\nfast-developing JJ\nfast-firing JJ\nfast-food NN\nfast-forward JJ\nfast-frozen JJ\nfast-grossing JJ\nfast-growing JJ\nfast-moving JJ\nfast-opening JJ\nfast-paced JJ\nfast-rising JJ\nfast-selling JJ\nfast-shrinking JJ\nfast-spreading JJ\nfast-talking JJ\nfast-track JJ\nfast-vanishing JJ\nfastball NN\nfastballs NNS\nfasten VB\nfastened VBN\nfastener NN\nfasteners NNS\nfastening NN\nfastenings NNS\nfastens VBZ\nfaster RBR\nfaster-growing JJR\nfaster-spending JJ\nfaster-working JJR\nfastest JJS\nfastest-growing JJ\nfastidious JJ\nfastigheter FW\nfastness NN\nfat JJ\nfat-free JJ\nfat-soluble JJ\nfat-substitute JJ\nfat-tired JJ\nfatal JJ\nfatalists NNS\nfatalities NNS\nfatality NN\nfatally RB\nfatboy NN\nfate NN\nfateful JJ\nfates NNS\nfather NN\nfather-and-son JJ\nfather-brother NN\nfather-confessor NN\nfather-in-law NN\nfather-murder NN\nfather-son NN\nfathered VBD\nfatherly JJ\nfathers NNS\nfathom VB\nfathoms NNS\nfathuh NN\nfatiegued JJ\nfatigue NN\nfatigued VBN\nfatigues NNS\nfats NNS\nfatsos NNS\nfatten VB\nfattened VBN\nfattening VBG\nfatter JJR\nfatty JJ\nfatuous JJ\nfaucet NN\nfault NN\nfault-tolerant JJ\nfaulted VBN\nfaulting VBG\nfaultless JJ\nfaultlessly RB\nfaultlines NNS\nfaults NNS\nfaulty JJ\nfauna NNS\nfauteuil FW\nfaux FW\nfav JJ\nfavor NN\nfavorable JJ\nfavorableness NN\nfavorably RB\nfavore FW\nfavored VBN\nfavorer NN\nfavoring VBG\nfavorite JJ\nfavorited VBD\nfavorites NNS\nfavoritism NN\nfavors VBZ\nfavour NN\nfawn NN\nfawn-colored JJ\nfawned VBN\nfawning JJ\nfax NN\nfaxed VBD\nfaxes NNS\nfaxing VBG\nfaze VB\nfazed VBD\nfealty NN\nfear NN\nfear-filled JJ\nfeare NN\nfeared VBD\nfearful JJ\nfearfully RB\nfearing VBG\nfearlast NN\nfearless JJ\nfearlessly RB\nfears NNS\nfearsome JJ\nfeasibility NN\nfeasible JJ\nfeast NN\nfeasted VBN\nfeasting VBG\nfeasts NNS\nfeat NN\nfeather NN\nfeather-bedding NN\nfeather-like JJ\nfeatherbedding NN\nfeathered JJ\nfeatherless JJ\nfeathers NNS\nfeathery JJ\nfeats NNS\nfeature NN\nfeatured VBN\nfeatureless JJ\nfeatures NNS\nfeaturing VBG\nfebrile JJ\nfecal JJ\nfeckless JJ\nfecund JJ\nfecundity NN\nfed VBN\nfederal JJ\nfederal-corporate JJ\nfederal-court JJ\nfederal-formula JJ\nfederal-funds JJ\nfederal-local JJ\nfederal-question JJ\nfederal-right JJ\nfederal-state JJ\nfederal-state-local JJ\nfederal-systems JJ\nfederalism NN\nfederalist NN\nfederalists NNS\nfederalize VB\nfederalized JJ\nfederally RB\nfederation NN\nfedora NN\nfeds NNS\nfee NN\nfee-for-service JJ\nfee-forfeiture NN\nfee-per-case JJ\nfee-per-day NN\nfee-producing JJ\nfee-related JJ\nfee-shifting JJ\nfeeble JJ\nfeeblest JJS\nfeebly RB\nfeed NN\nfeed-grain NN\nfeed-lot JJ\nfeedback NN\nfeeder NN\nfeeders NNS\nfeeding VBG\nfeeding-pain JJ\nfeedings NNS\nfeedlot NN\nfeedlots NNS\nfeeds VBZ\nfeedstock NN\nfeel VB\nfeel-good JJ\nfeelers NNS\nfeeling NN\nfeeling-state NN\nfeelings NNS\nfeels VBZ\nfees NNS\nfeet NNS\nfeigned JJ\nfeigning VBG\nfeint NN\nfeistier JJR\nfeistiness NN\nfeisty JJ\nfeler NN\nfelicities NNS\nfelicitous JJ\nfelicity NN\nfeline JJ\nfell VBD\nfella NN\nfellas NNS\nfelled VBN\nfeller NN\nfellers NNS\nfelling VBG\nfellow NN\nfellow-countryman NN\nfellow-craftsmen NNS\nfellow-creatures NN\nfellow-employees NNS\nfellow-men NNS\nfellowfeeling NN\nfellows NNS\nfellowship NN\nfellowships NNS\nfelon NN\nfelonies NNS\nfelonious JJ\nfelons NNS\nfelony NN\nfelt VBD\nfemale JJ\nfemale-dominated JJ\nfemale-headed JJ\nfemales NNS\nfeminine JJ\nfeminine-care JJ\nfemininity NN\nfeminism NN\nfeminist JJ\nfeminists NNS\nfemme FW\nfence NN\nfence-line JJ\nfence-sit VB\nfenced JJ\nfenced-in JJ\nfences NNS\nfencing NN\nfend VB\nfended VBD\nfender NN\nfender-benders NNS\nfenders NNS\nfending VBG\nfennel NN\nfenoldopam NN\nfens NNS\nfenugreek NN\nfer IN\nferment NN\nfermentation JJ\nfermentations NNS\nfermented VBN\nfermenting VBG\nfermions NNS\nfern NN\nfern-like JJ\nfernery NN\nferns NNS\nferocious JJ\nferociously RB\nferocity NN\nferret VB\nferreted VBD\nferreting VBG\nferrets VBZ\nferried VBD\nferries NNS\nferris JJ\nferroelectric JJ\nferromagnetic JJ\nferry NN\nferrying VBG\nfertile JJ\nfertility NN\nfertility-control JJ\nfertilization NN\nfertilizations NNS\nfertilized VBN\nfertilizer NN\nfertilizers NNS\nfertilizing VBG\nfervent JJ\nfervente NNP\nfervently RB\nfervid NN\nfervor NN\nfervors NNS\nfess NN\nfest NN\nfester VB\nfestering VBG\nfestival NN\nfestival-oriented JJ\nfestivals NNS\nfestive JJ\nfestivities NNS\nfestivity NN\nfestivus FW\nfestooned VBN\nfestooning VBG\nfetal JJ\nfetal-alcohol JJ\nfetal-protection JJ\nfetal-tissue JJ\nfetal-vulnerability JJ\nfetch VB\nfetched VBD\nfetches VBZ\nfetching VBG\nfetchingly RB\nfete VB\nfeted VBD\nfetes NNS\nfetid JJ\nfetish NN\nfetishize VBP\nfettered VBN\nfetus NN\nfetuses NNS\nfeud NN\nfeudal JJ\nfeudalism NN\nfeudalistic JJ\nfeuded VBD\nfeuding VBG\nfeuds NNS\nfever NN\nfevered JJ\nfeverish JJ\nfeverishly RB\nfevers NNS\nfew JJ\nfewer JJR\nfewer-than-expected JJ\nfewest JJS\nfez-wearing JJ\nffreind VB\nfiance NN\nfiancee NN\nfiasco NN\nfiat NN\nfiber NN\nfiber-coupled JJ\nfiber-end JJ\nfiber-optic JJ\nfiber-optics NN\nfiber-photocathode NN\nfiber-producing JJ\nfiber-reinforced JJ\nfiber-related JJ\nfiberglas NNS\nfiberglass NNS\nfiberoptic JJ\nfibers NNS\nfibrillation NN\nfibrin NN\nfibrocalcific JJ\nfibrosis NN\nfibrous JJ\nfiche FW\nficials NNS\nfickle JJ\nfickleness NN\nfiction NN\nfiction-writer NN\nfiction-writing NN\nfictional JJ\nfictionalized VBN\nfictions NNS\nfictitious JJ\nfictive JJ\nficus NN\nfiddle NN\nfiddling NN\nfide FW\nfidelity NN\nfidgeting VBG\nfiduciary JJ\nfiefdom NN\nfiefdoms NNS\nfield NN\nfield'just NN\nfield-based JJ\nfield-crop-seeds JJ\nfield-flattening JJ\nfield-hands NN\nfield-officials NNS\nfield-sequential JJ\nfield-service JJ\nfield-services JJ\nfielded VBD\nfielder NN\nfielders NNS\nfielding NN\nfieldmice NN\nfields NNS\nfieldstone NN\nfieldwork NN\nfiend NN\nfiendish JJ\nfierce JJ\nfiercely RB\nfierceness NN\nfiercer JJR\nfiercest JJS\nfiery JJ\nfiesta NN\nfifteen CD\nfifteen-mile JJ\nfifteen-minute JJ\nfifteen-sixteenths NNS\nfifteenfold RB\nfifteenth JJ\nfifteenth-century JJ\nfifth JJ\nfifth-best JJ\nfifth-biggest JJ\nfifth-century JJ\nfifth-consecutive JJ\nfifth-generation JJ\nfifth-grade NN\nfifth-highest JJ\nfifth-inning NN\nfifth-largest JJ\nfifth-least JJ\nfifth-straight JJ\nfifties NNS\nfiftieth JJ\nfifty CD\nfifty-cent JJ\nfifty-dollar JJ\nfifty-fifty JJ\nfifty-five CD\nfifty-four CD\nfifty-nine CD\nfifty-ninth JJ\nfifty-odd JJ\nfifty-one CD\nfifty-pound JJ\nfifty-third CD\nfifty-three CD\nfifty-two CD\nfifty-year JJ\nfig NN\nfig. NN\nfigger VBP\nfiggered VBD\nfight NN\nfighter NN\nfighter-bombers NNS\nfighter-jet NN\nfighter-plane NN\nfighters NNS\nfightin VBG\nfighting VBG\nfights NNS\nfigment NN\nfigs. NNS\nfigural JJ\nfigurative JJ\nfiguratively RB\nfigure NN\nfigured VBD\nfigurehead NN\nfigures NNS\nfigures-order NNS|NN\nfiguring VBG\nfilagree NN\nfilament NN\nfilaments NNS\nfilbert JJ\nfilberts NNS\nfilched VBD\nfilde VBN\nfile VB\nfile-those NN\nfiled VBN\nfilers NNS\nfiles NNS\nfilet NN\nfilets NNS\nfilial JJ\nfilibuster NN\nfilibusters NNS\nfiligree JJ\nfiling NN\nfilings NNS\nfill VB\nfill-in JJ\nfill-in-your-favorite-epithet JJ\nfill-ins NNS\nfill-or-kill JJ\nfille FW\nfilled VBN\nfiller NN\nfilles FW\nfilleted VBN\nfillies NNS\nfilling VBG\nfillings NNS\nfillip NN\nfills VBZ\nfilly NN\nfilm NN\nfilm-festival NN\nfilm-maker NN\nfilm-makers NNS\nfilm-making JJ\nfilm-processing NN\nfilmed VBN\nfilming VBG\nfilmmakers NNS\nfilmmaking NN\nfilms NNS\nfilmstrips NNS\nfilmy JJ\nfilter NN\nfiltered VBN\nfiltering VBG\nfilters NNS\nfilth NN\nfilthy JJ\nfiltration NN\nfin NN\nfin-syn JJ\nfinagled VBN\nfinagling NN\nfinal JJ\nfinale NN\nfinalist NN\nfinalists NNS\nfinality NN\nfinalized VBN\nfinalizing VBG\nfinally RB\nfinals NNS\nfinance NN\nfinance-director NN\nfinance-minister NN\nfinanced VBN\nfinanceer NN\nfinancer NN\nfinances NNS\nfinancial JJ\nfinancial-aid NN\nfinancial-crimes NNS\nfinancial-data JJ\nfinancial-futures NNS\nfinancial-industrial JJ\nfinancial-market JJ\nfinancial-planning JJ\nfinancial-related JJ\nfinancial-report JJ\nfinancial-service NN\nfinancial-services NNS\nfinancial-support JJ\nfinancially RB\nfinancier NN\nfinanciers NNS\nfinancing NN\nfinancings NNS\nfinanicial JJ\nfind VB\nfinder NN\nfinders NNS\nfinding VBG\nfindings NNS\nfindings. NNS\nfinds VBZ\nfine JJ\nfine-arts NNS\nfine-boned JJ\nfine-chiseled JJ\nfine-drawn JJ\nfine-feathered JJ\nfine-featured JJ\nfine-grained JJ\nfine-looking JJ\nfine-point JJ\nfine-tooth JJ\nfine-tune VB\nfine-tuned JJ\nfine-tuning NN\nfined VBN\nfinely RB\nfinely-spun JJ\nfineness NN\nfiner JJR\nfinery NN\nfines NNS\nfinesse NN\nfinessed VBD\nfinest JJS\nfinetuning VBG\nfinger NN\nfinger-held JJ\nfinger-paint NN\nfinger-pointing NN\nfinger-post NN\nfinger-sucking NN\nfinger-tips NNS\nfingered VBD\nfingering VBG\nfingerings NNS\nfingerlings NNS\nfingernails NNS\nfingerprint NN\nfingerprinting NN\nfingerprints NNS\nfingers NNS\nfingertips NNS\nfinial NN\nfinicky JJ\nfining VBG\nfinish VB\nfinished VBD\nfinisher NN\nfinishes VBZ\nfinishing VBG\nfinishing-school NN\nfinite JJ\nfinite-dimensional JJ\nfinned VBN\nfins NNS\nfir NN\nfire NN\nfire-colored JJ\nfire-control JJ\nfire-crackers NNS\nfire-engine JJ\nfire-fighting JJ\nfire-resistant JJ\nfirearm NN\nfirearms NNS\nfireball NN\nfireballs NNS\nfirebombed VBN\nfirebombing NN\nfirebombs NNS\nfirebrand NN\nfirebreaks NNS\nfirebug NN\nfirecracker NN\nfirecrackers NNS\nfired VBN\nfired... :\nfirefighter NN\nfirefighters NNS\nfirefighting NN\nfirehoops NNS\nfirehouses NNS\nfirelight NN\nfireman NN\nfiremen NNS\nfireplace NN\nfireplaces NNS\nfirepower NN\nfireproofing NN\nfires NNS\nfirestorm NN\nfirewater NN\nfireweed NN\nfirewood NN\nfireworks NNS\nfiring VBG\nfirings NNS\nfirm NN\nfirm. NN\nfirm... :\nfirma FW\nfirmed VBD\nfirmer JJR\nfirming VBG\nfirmly RB\nfirmness NN\nfirms NNS\nfirmwide RB\nfirst JJ\nfirst-aid NN\nfirst-amendment JJ\nfirst-base JJ\nfirst-bracket NN\nfirst-class JJ\nfirst-degree JJ\nfirst-eight JJ\nfirst-ever JJ\nfirst-families NNS\nfirst-floor JJ\nfirst-grader NN\nfirst-half JJ\nfirst-hand JJ\nfirst-home JJ\nfirst-level JJ\nfirst-mortgage JJ\nfirst-nine-month JJ\nfirst-order JJ\nfirst-period JJ\nfirst-person NN\nfirst-phase JJ\nfirst-place JJ\nfirst-preference NN\nfirst-preferred JJ\nfirst-quarter JJ\nfirst-rate JJ\nfirst-refusal JJ\nfirst-run JJ\nfirst-section JJ\nfirst-six JJ\nfirst-strike JJ\nfirst-term JJ\nfirst-three JJ\nfirst-time JJ\nfirst-year JJ\nfirsthand RB\nfirstpreference NN\nfirstround JJ\nfirsts NNS\nfiscal JJ\nfiscal-agent NN\nfiscal-first JJ\nfiscal-first-quarter JJ\nfiscal-fourth JJ\nfiscal-third JJ\nfiscal-year JJ\nfiscally RB\nfish NN\nfish-export JJ\nfish-processing JJ\nfish... :\nfishbowl NN\nfished VBN\nfisheries NNS\nfisherman NN\nfishermen NNS\nfishers NNS\nfishery NN\nfishes NNS\nfishin VBG\nfishing NN\nfishing-boat NN\nfishing\\ JJ\nfishmongers NNS\nfishpond NN\nfishy JJ\nfission NN\nfissionable JJ\nfissured VBN\nfissures NNS\nfist NN\nfist-fighting NN\nfisted VBD\nfists NNS\nfit VB\nfit-looking JJ\nfitful JJ\nfitfully RB\nfitness NN\nfitness-promoting JJ\nfits VBZ\nfitted VBN\nfittest JJS\nfitting JJ\nfittings NNS\nfive CD\nfive-a-week JJ\nfive-and-a-half NN\nfive-and-dime JJ\nfive-and-twenty JJ\nfive-blade JJ\nfive-block JJ\nfive-by-eight-inch JJ\nfive-cent JJ\nfive-column JJ\nfive-consecutive JJ\nfive-coordinate JJ\nfive-count JJ\nfive-course JJ\nfive-cylinder JJ\nfive-day JJ\nfive-days-a-week JJ\nfive-fold JJ\nfive-foot JJ\nfive-foot-wide JJ\nfive-gallon JJ\nfive-game JJ\nfive-home JJ\nfive-home-run JJ\nfive-hour JJ\nfive-hundred CD\nfive-hundred-dollar JJ\nfive-hundred-year-old JJ\nfive-inch JJ\nfive-judge JJ\nfive-member JJ\nfive-mile JJ\nfive-minute JJ\nfive-month JJ\nfive-month-old JJ\nfive-nation JJ\nfive-party JJ\nfive-percentage-point JJ\nfive-person JJ\nfive-pfennig JJ\nfive-ply JJ\nfive-point JJ\nfive-pound JJ\nfive-round JJ\nfive-row JJ\nfive-session JJ\nfive-seventeen JJ\nfive-speed JJ\nfive-star JJ\nfive-story JJ\nfive-volume JJ\nfive-week JJ\nfive-year JJ\nfive-year-old JJ\nfive-years NNS\nfivefold JJ\nfives NNS\nfiveyear JJ\nfix VB\nfixable JJ\nfixated VBN\nfixation NN\nfixations NNS\nfixed VBN\nfixed-dollar JJ\nfixed-income NN\nfixed-price JJ\nfixed-rate JJ\nfixed-repayment JJ\nfixed-term NN\nfixedrate JJ\nfixers NNS\nfixes NNS\nfixing VBG\nfixture NN\nfixtured VBD\nfixtures NNS\nfizzes VBZ\nfizzled VBD\nfizzles VBZ\nfizzy NN\nfjords NNS\nflabbergasted JJ\nflabbiness NN\nflaccid JJ\nflag NN\nflag-burner NN\nflag-burning NN\nflag-stick NN\nflag-wavers NNS\nflagellated VBN\nflagellation NN\nflageolet NN\nflagged VBD\nflagging JJ\nflagpole NN\nflagpoles NNS\nflagrant JJ\nflagrante FW\nflagrantly RB\nflags NNS\nflagship NN\nflagships NNS\nflail NN\nflailed VBD\nflailing VBG\nflair NN\nflak NN\nflakes NNS\nflaky JJ\nflamboyant JJ\nflamboyantly RB\nflame NN\nflame-throwers NNS\nflamed VBD\nflames NNS\nflaming JJ\nflammable JJ\nflange NN\nflanged VBN\nflank NN\nflanked VBD\nflanker NN\nflanking VBG\nflannel NN\nflannels NNS\nflap NN\nflapped VBD\nflapper NN\nflappers NNS\nflapping VBG\nflaps NNS\nflare NN\nflared VBD\nflares NNS\nflaring VBG\nflash NN\nflash-bulbs NNS\nflash-cubes NNS\nflashback NN\nflashbacks NNS\nflashed VBD\nflasher NN\nflashes NNS\nflashier JJR\nflashing VBG\nflashlight NN\nflashlight-type JJ\nflashlights NNS\nflashpoint NN\nflashy JJ\nflask NN\nflat JJ\nflat-bed JJ\nflat-bottomed JJ\nflat-footed JJ\nflat-headed JJ\nflat-out JJ\nflat-panel JJ\nflat-rolled JJ\nflat-to-lower JJ\nflat-topped JJ\nflatcars NNS\nflathead JJ\nflatiron NN\nflatish JJ\nflatland NN\nflatlands NNS\nflatly RB\nflatness NN\nflatnesses NNS\nflatout NN\nflats NNS\nflatten VB\nflattened VBN\nflattening VBG\nflattens VBZ\nflatter VB\nflattered VBN\nflattering JJ\nflatteringly RB\nflatters VBZ\nflattery NN\nflattest JJS\nflattish JJ\nflatulence NN\nflatulent JJ\nflatus NN\nflatware NN\nflaunt VB\nflaunt-your-wealth JJ\nflaunted VBD\nflaunting VBG\nflaunts VBZ\nflautist NN\nflavor NN\nflavored JJ\nflavorful JJ\nflavoring NN\nflavorings NNS\nflavors NNS\nflaw NN\nflawed JJ\nflawless JJ\nflaws NNS\nflax NN\nflaxen JJ\nflaxseed NN\nflay VB\nflea NN\nflea-infested JJ\nfleas NNS\nfleawort NN\nfleck NN\nflecked VBN\nfled VBD\nfledging VBG\nfledgling NN\nfledglings NNS\nflee VB\nfleece NN\nfleeced VBN\nfleeing VBG\nflees VBZ\nfleet NN\nfleetest JJS\nfleeting JJ\nfleets NNS\nflesh NN\nfleshpots NNS\nfleshy JJ\nflew VBD\nflex NN\nflex-time JJ\nflexed VBD\nflexers NNS\nflexibility NN\nflexible JJ\nflexicoker NN\nflexing VBG\nflextime NN\nflexural JJ\nflick NN\nflicked VBD\nflicker NN\nflickered VBD\nflickering VBG\nflicking VBG\nflicks NNS\nflied VBD\nflier NN\nfliers NNS\nflies VBZ\nflight NN\nflight-attendant NN\nflight-attendants NNS\nflight-control NN\nflight-crew NN\nflight-to-quality JJ\nflightiness NN\nflights NNS\nflighty JJ\nflim-flam NN\nflim-flammery NN\nflimflam NN\nflimsies NNS\nflimsy JJ\nflinch VB\nflinched VBD\nflinching VBG\nfling NN\nflinging VBG\nflings NNS\nflint NN\nflintless JJ\nflinty JJ\nflip JJ\nflip-flop NN\nflip-flopped JJ\nflippant JJ\nflippantly RB\nflipped VBD\nflippers NNS\nflipping VBG\nflips VBZ\nflirt VBP\nflirtation NN\nflirtatious JJ\nflirted VBD\nflirting VBG\nflit VBP\nflitting VBG\nflng VB\nfloat VB\nfloated VBD\nfloater NN\nfloating VBG\nfloating-load JJ\nfloating-point JJ\nfloating-rate JJ\nfloats VBZ\nfloc NN\nflocculated VBN\nflocculation NN\nflock NN\nflocked VBD\nflocking VBG\nflocks NNS\nfloe NN\nfloes NNS\nflog VB\nflogged VBD\nflood NN\nflood-control JJ\nflood-insurance NN\nflood-lighted JJ\nflood-prone JJ\nflood-ravaged JJ\nflooded VBN\nfloodheads NNS\nflooding VBG\nfloodlight NN\nfloodlighted VBN\nfloodlit JJ\nfloods NNS\nfloor NN\nfloor-covering NN\nfloor-length JJ\nfloor-level JJ\nfloor-to-ceiling JJ\nfloorboards NNS\nflooring NN\nfloors NNS\nfloorshow NN\nflop NN\nflopped VBD\nfloppies NNS\nfloppy JJ\nfloppy-disk NN\nfloppy-tie JJ\nflops VBZ\nflora NNS\nfloral JJ\nflorid JJ\nflorist NN\nflotation NN\nflotation-type JJ\nflotations NNS\nflotilla NN\nflotillas NNS\nflounce VBP\nflounced VBN\nflounder VB\nfloundered VBN\nfloundering VBG\nflounders VBZ\nflour NN\nflour-milling JJ\nfloured VBN\nflourish VB\nflourished VBD\nflourishes NNS\nflourishing VBG\nflout VB\nflouted VBN\nflouting NN\nfloutingly RB\nflow NN\nflowchart NN\nflowed VBD\nflower NN\nflower-bordered JJ\nflower-inscribed JJ\nflower-scented JJ\nflowered JJ\nflowering NN\nflowerpot NN\nflowers NNS\nflowing VBG\nflown VBN\nflows NNS\nflu NN\nflu-like JJ\nflubbed VBD\nfluctuate VBP\nfluctuated VBD\nfluctuates VBZ\nfluctuating VBG\nfluctuation NN\nfluctuations NNS\nflue NN\nflue-cured JJ\nfluency NN\nfluent JJ\nfluently RB\nfluff NN\nfluffy JJ\nfluid NN\nfluid-filled JJ\nfluidity NN\nfluids NNS\nfluke NN\nflung VBD\nflunk VBP\nflunked VBD\nflunking VBG\nflunky NN\nfluorescein NN\nfluorescein-labeled JJ\nfluorescence NN\nfluorescent JJ\nfluoresces VBZ\nfluoride NN\nfluorinated VBN\nfluorine NN\nfluoropolymer NN\nfluoropolymers NNS\nflurried VBD\nflurries NNS\nflurry NN\nflush JJ\nflushed VBN\nflushes VBZ\nflushing NN\nflustered VBN\nflute NN\nfluted VBN\nflutes NNS\nfluting NN\nflutist NN\nflutter NN\nfluttered VBD\nfluttering VBG\nflux NN\nfluxes NNS\nfly VB\nfly-boy NN\nfly-by-night JJ\nfly-by-nighters NNS\nfly-dotted JJ\nfly-fishing NN\nflyaway JJ\nflyer NN\nflyers NNS\nflying VBG\nflying-mount NN\nflyways NNS\nfml UH\nfo IN\nfoal NN\nfoals NNS\nfoam NN\nfoamed JJ\nfoamed-core JJ\nfoamed-in-place JJ\nfoaming NN\nfoams NNS\nfoamy JJ\nfoamy-necked JJ\nfocal JJ\nfocally RB\nfoci NNS\nfocus NN\nfocus-group JJ\nfocused VBN\nfocused-factory JJ\nfocuses VBZ\nfocusing VBG\nfocussed VBN\nfodder NN\nfoe NN\nfoes NNS\nfog NN\nfog-enshrouded JJ\nfog-free JJ\nfogged JJ\nfoggy JJ\nfogy NN\nfoh IN\nfoibles NNS\nfoil NN\nfoiled VBN\nfoiling VBG\nfoisted VBD\nfold VB\nfoldability NN\nfoldable JJ\nfolded VBN\nfolder NN\nfolders NNS\nfolding VBG\nfolds NNS\nfoliage NN\nfolio NN\nfolk NN\nfolk-dance NN\nfolk-lore NN\nfolk-music NN\nfolk-tale NN\nfolkish JJ\nfolklike JJ\nfolklore NN\nfolks NNS\nfolksongs NNS\nfolksy JJ\nfollicular JJ\nfollies NNS\nfollow VB\nfollow-on JJ\nfollow-through JJ\nfollow-up NN\nfollow-ups NNS\nfollowed VBD\nfollower NN\nfollowers NNS\nfollowership NN\nfolloweth VBZ\nfollowing VBG\nfollowings NNS\nfollows VBZ\nfollowthrough JJ\nfollowup JJ\nfolly NN\nfoment VB\nfomented VBD\nfomenting VBG\nfoments VBZ\nfond JJ\nfonder JJR\nfondest JJS\nfondled VBN\nfondly RB\nfondness NN\nfont NN\nfontanel NN\nfonts NNS\nfoo NN\nfood NN\nfood-aid JJ\nfood-canning NN\nfood-color NN\nfood-fish NNS\nfood-importing JJ\nfood-industry NN\nfood-packaging JJ\nfood-poisoning NN\nfood-preservation NN\nfood-processing NN\nfood-production NN\nfood-products NNS\nfood-safety JJ\nfood-scare NN\nfood-sector JJ\nfood-service NN\nfood-services NNS\nfood-shop JJ\nfoods NNS\nfoodservice NN\nfoodstuff NN\nfoodstuffs NNS\nfool NN\nfooled VBN\nfoolhardy JJ\nfooling VBG\nfoolish JJ\nfoolishly RB\nfoolishness NN\nfoolproof JJ\nfools NNS\nfoot NN\nfoot-dragging NN\nfoot-high JJ\nfoot-loose JJ\nfoot-tall JJ\nfoot-thick JJ\nfootage NN\nfootball NN\nfootballer NN\nfootballs NNS\nfootbridge NN\nfootfall NN\nfootfalls NNS\nfoothill NN\nfoothills NNS\nfoothold NN\nfootholds NNS\nfooting NN\nfootlights NNS\nfootloose JJ\nfootman NN\nfootnote NN\nfootnoted VBN\nfootnotes NNS\nfootpath NN\nfootprint NN\nfootprints NNS\nfootstep NN\nfootsteps NNS\nfootstool NN\nfootsy NN\nfootwear NN\nfootwork NN\nfoppish JJ\nfor IN\nfor'me PRP\nfor'running VBG\nfor-profit JJ\nfor... :\nforage NN\nforages NNS\nforaging NN\nforay NN\nforays NNS\nforbad VBD\nforbade VBD\nforbearance NN\nforbears NNS\nforbid VB\nforbidden VBN\nforbidding VBG\nforbidding-looking JJ\nforbids VBZ\nforbore VBD\nforborne VB\nforce NN\nforce-fear JJ\nforce-feeding NN\nforce-level JJ\nforce-rate NN\nforced VBN\nforceful JJ\nforcefully RB\nforcefulness NN\nforces NNS\nforcibly RB\nforcing VBG\nfords NNS\nfore NN\nfore-play NN\nforearm NN\nforearms NNS\nforebear NN\nforebears NNS\nforeboding NN\nforecast NN\nforecasted VBN\nforecaster NN\nforecasters NNS\nforecasting NN\nforecasts NNS\nforeclose VB\nforeclosed VBN\nforeclosing VBG\nforeclosure NN\nforeclosures NNS\nforefathers NNS\nforefeet NN\nforefinger NN\nforefingers NNS\nforefront NN\nforego VB\nforegoing NN\nforegone JJ\nforeground NN\nforehead NN\nforeheads NNS\nforeign JJ\nforeign-affairs NNS\nforeign-aid NN\nforeign-airline NN\nforeign-assistance NN\nforeign-bank JJ\nforeign-based JJ\nforeign-car NN\nforeign-country JJ\nforeign-currency NN\nforeign-debt NN\nforeign-entry-limit JJ\nforeign-equity NN\nforeign-exchange JJ\nforeign-exchange-rate JJ\nforeign-flag NN\nforeign-investment JJ\nforeign-investor NN\nforeign-led JJ\nforeign-loan JJ\nforeign-made JJ\nforeign-movie NN\nforeign-owned JJ\nforeign-ownership NN\nforeign-policy NN\nforeign-sounding JJ\nforeign-stock JJ\nforeign-trade JJ\nforeign-trading JJ\nforeign-transaction NN\nforeigner NN\nforeigners NNS\nforeknowledge NN\nforeknown VB\nforeleg NN\nforeman NN\nforemost JJ\nforensic JJ\nforensics NNS\nforepart NN\nforepaws NNS\nforerunner NN\nforerunners NNS\nforesaw VBD\nforesee VBP\nforeseeable JJ\nforeseeing VBG\nforeseen VBN\nforesees VBZ\nforeshadow VB\nforeshadowed VBN\nforeshadowing VBG\nforeshortened VBN\nforeshortening VBG\nforesight NN\nforest NN\nforest-product NN\nforest-products NNS\nforestall VB\nforestalled VBN\nforestry NN\nforests NNS\nforetell VB\nforethought NN\nforever RB\nforever-Cathy NN\nforeword NN\nforfeit VB\nforfeitable JJ\nforfeited VBN\nforfeiting VBG\nforfeiture NN\nforfeitures NNS\nforgave VBD\nforge VB\nforged VBN\nforger NN\nforgeries NNS\nforgery NN\nforges VBZ\nforget VB\nforgetful JJ\nforgetfulness NN\nforgets VBZ\nforgettable JJ\nforgetting VBG\nforging VBG\nforgings NNS\nforgit VB\nforgitful JJ\nforgive VB\nforgiven VBN\nforgiveness NN\nforgiving VBG\nforgo VB\nforgoes VBZ\nforgone JJ\nforgot VBD\nforgotten VBN\nforint NN\nforints NNS\nforisque FW\nfork NN\nfork-lift NN\nforked JJ\nforking VBG\nforklift NN\nforklifts NNS\nforks NNS\nforlorn JJ\nforlornly RB\nform NN\nform-creating JJ\nform-dictionary NN\nform-letter JJ\nforma FW\nformability NN\nformal JJ\nformaldehyde NN\nformalism NN\nformalities NNS\nformality NN\nformalize VB\nformalized JJ\nformalizes VBZ\nformally RB\nformat NN\nformation NN\nformations NNS\nformative JJ\nformats NNS\nformed VBN\nformed-tooth JJ\nformer JJ\nformerly RB\nformidable JJ\nformidable-appearing JJ\nformidably RB\nforming VBG\nforms NNS\nforms-processing NN\nformula NN\nformula-based JJ\nformulae NNS\nformulaic JJ\nformulas NNS\nformulate VB\nformulated VBN\nformulates VBZ\nformulating VBG\nformulation NN\nformulations NNS\nforsake VB\nforsaken VBN\nforsakes VBZ\nforseeable JJ\nforswears VBZ\nforswore VBD\nfort NN\nforte NN\nforte-pianos NNS\nforth RB\nforthcoming JJ\nforthright JJ\nforthrightly RB\nforthrightness NN\nforthwith RB\nforties NNS\nfortifications NNS\nfortified VBN\nfortify VB\nfortiori FW\nfortitude NN\nfortnight NN\nfortress NN\nfortress-like JJ\nfortresses NNS\nforts NNS\nfortuitous JJ\nfortuitously RB\nfortunate JJ\nfortunately RB\nfortune NN\nfortune-cookie NN\nfortune-happy JJ\nfortune-tellers NN\nfortunes NNS\nforty CD\nforty-eight CD\nforty-fifth CD\nforty-five CD\nforty-fold JJ\nforty-four CD\nforty-nine CD\nforty-niners NNS\nforty-seven JJ\nforty-three CD\nforty-two CD\nforty-year JJ\nforum NN\nforums NNS\nforward RB\nforward-looking JJ\nforward-moving JJ\nforward-rate JJ\nforwarded VBN\nforwarders NNS\nforwarding NN\nforwards RB\nfossil JJ\nfossilized JJ\nfossils NNS\nfoster VB\nfoster-care JJ\nfostered VBN\nfostering VBG\nfosters VBZ\nfought VBD\nfought-for JJ\nfoul JJ\nfoul-mouthed JJ\nfoul-smelling JJ\nfoul-up NN\nfoul-ups NNS\nfouled VBD\nfoulest JJS\nfouling NN\nfoully RB\nfound VBD\nfoundation NN\nfoundation-stone NN\nfoundations NNS\nfounded VBN\nfounder NN\nfounder-conductor NN\nfounder-originator NN\nfoundered VBD\nfoundering VBG\nfounders NNS\nfounding NN\nfoundling NN\nfoundry NN\nfounds VBZ\nfountain NN\nfountain-falls NNS\nfountain-head NN\nfountainhead NN\nfountains NNS\nfour CD\nfour-bagger NN\nfour-cents-a-share JJ\nfour-color JJ\nfour-count JJ\nfour-crate JJ\nfour-cylinder JJ\nfour-day JJ\nfour-door JJ\nfour-element JJ\nfour-engined JJ\nfour-family JJ\nfour-fold JJ\nfour-foot-high JJ\nfour-for-one RB\nfour-game JJ\nfour-games-to-one JJ\nfour-hour JJ\nfour-in-hand JJ\nfour-inch JJ\nfour-jet JJ\nfour-lane JJ\nfour-letter JJ\nfour-man JJ\nfour-megabit JJ\nfour-member JJ\nfour-mile JJ\nfour-minute JJ\nfour-month JJ\nfour-month-old JJ\nfour-nation JJ\nfour-o'clock RB\nfour-page JJ\nfour-page-a-minute JJ\nfour-part JJ\nfour-person JJ\nfour-point JJ\nfour-quarter JJ\nfour-room JJ\nfour-sided JJ\nfour-speed JJ\nfour-square NN\nfour-square-block JJ\nfour-star JJ\nfour-stock JJ\nfour-story JJ\nfour-stroke JJ\nfour-syllable JJ\nfour-thirty RB\nfour-to-one RB\nfour-week JJ\nfour-wheel JJ\nfour-wheel-drive NN\nfour-wood JJ\nfour-year JJ\nfour-year-old JJ\nfourfold RB\nfours NNS\nfoursome NN\nfourteen CD\nfourteen-nation NN\nfourteen-team JJ\nfourteen-year-old JJ\nfourteenth JJ\nfourth JJ\nfourth-biggest JJ\nfourth-century JJ\nfourth-class JJ\nfourth-consecutive JJ\nfourth-down NN\nfourth-fifths NNS\nfourth-flight JJ\nfourth-generation JJ\nfourth-grade JJ\nfourth-hand JJ\nfourth-largest JJ\nfourth-level JJ\nfourth-period JJ\nfourth-quarter JJ\nfourth-ranked JJ\nfourth-ranking JJ\nfourthquarter NN\nfoward JJ\nfowl NN\nfox NN\nfox-hounds NNS\nfox-terrier NN\nfoxes NNS\nfoxholes NNS\nfoxtail NN\nfoyer NN\nfps NNS\nfracas NN\nfracases NNS\nfraction NN\nfractional JJ\nfractionally RB\nfractionated VBN\nfractionation NN\nfractioning VBG\nfractions NNS\nfractious JJ\nfracture NN\nfractured VBN\nfractures NNS\nfracturing VBG\nfragile JJ\nfragility NN\nfragment NN\nfragmentarily RB\nfragmentary JJ\nfragmentation NN\nfragmentations NNS\nfragmented JJ\nfragments NNS\nfragrance NN\nfragrances NNS\nfragrant JJ\nfrail JJ\nfrailest JJS\nfrailties NNS\nframbesia NN\nframe NN\nframed VBN\nframer NN\nframers NNS\nframes NNS\nframework NN\nframing NN\nfranc NN\nfranc-denominated JJ\nfranca FW\nfranchise NN\nfranchised VBN\nfranchisee NN\nfranchisees NNS\nfranchiser NN\nfranchisers NNS\nfranchises NNS\nfranchising NN\nfranchisor NN\nfrancs NNS\nfrangipani NNS\nfrank JJ\nfranked JJ\nfranker JJR\nfrankest JJS\nfrankfurter NN\nfrankfurters NNS\nfranking NN\nfrankly RB\nfrankness NN\nfranks NNS\nfranks-in-buns NNS\nfrantic JJ\nfrantically RB\nfraternisation NN\nfraternities NNS\nfraternity NN\nfraternize VB\nfraternized VBD\nfrau FW\nfraud NN\nfraud''-based JJ\nfraud-related JJ\nfrauds NNS\nfraudulent JJ\nfraudulently RB\nfraught JJ\nfray NN\nfrayed JJ\nfraying VBG\nfrazzled VBN\nfreak NN\nfreaked VBN\nfreakish JJ\nfreakishly RB\nfreaks NNS\nfreckled JJ\nfreckles NNS\nfree JJ\nfree-agent NN\nfree-blown JJ\nfree-burning JJ\nfree-buying JJ\nfree-choice JJ\nfree-drink JJ\nfree-enterprise NN\nfree-fall JJ\nfree-falling JJ\nfree-floater NN\nfree-for-all NN\nfree-holders NNS\nfree-lance JJ\nfree-mail NN\nfree-market JJ\nfree-market-oriented JJ\nfree-marketer NN\nfree-marketers NNS\nfree-on-board JJ\nfree-speech NN\nfree-spending JJ\nfree-spirited JJ\nfree-spiritedness NN\nfree-standing JJ\nfree-thinkers NNS\nfree-trade JJ\nfree-traders NNS\nfree-travel JJ\nfree-wheeling JJ\nfree-world JJ\nfreebase NN\nfreebies NNS\nfreebooters NNS\nfreed VBN\nfreedmen NNS\nfreedom NN\nfreedom-conscious JJ\nfreedom-loving JJ\nfreedoms NNS\nfreefall NN\nfreehand JJ\nfreeholders NNS\nfreeing VBG\nfreelance JJ\nfreelancers NNS\nfreelancing NN\nfreely RB\nfreemail NN\nfreeman NN\nfreemarket JJ\nfreer JJR\nfreer-spending JJ\nfrees VBZ\nfreescrip NN\nfreespender NN\nfreest JJS\nfreestylers NNS\nfreethinkers NNS\nfreeway NN\nfreeways NNS\nfreewheelers NNS\nfreewheeling JJ\nfreeze NN\nfreeze-drying NN\nfreeze-out JJ\nfreezer NN\nfreezers NNS\nfreezes VBZ\nfreezing VBG\nfreight NN\nfreight-bums NNS\nfreight-car NN\nfreight-cost JJ\nfreight-forwarding JJ\nfreight-hauling JJ\nfreight-jumper NN\nfreight-rate JJ\nfreight-transport JJ\nfreighter NN\nfreighters NNS\nfreights NNS\nfrench JJ\nfrenetic JJ\nfrenzied JJ\nfrenziedly RB\nfrenzy NN\nfrenzy-free JJ\nfrequencies NNS\nfrequency NN\nfrequency,`` ``\nfrequency-control JJ\nfrequency-independent JJ\nfrequency-modulation NN\nfrequent JJ\nfrequent-flier JJ\nfrequent-flyer NN\nfrequented VBD\nfrequently RB\nfrequents VBZ\nfresco NN\nfrescoed JJ\nfrescoes NNS\nfrescoing NN\nfrescos NNS\nfresh JJ\nfresh-faced JJ\nfresh-fruit JJ\nfresh-ground JJ\nfresh-perked JJ\nfreshborn NN\nfreshened VBN\nfresher JJR\nfreshly RB\nfreshly-ground JJ\nfreshman NN\nfreshmen NNS\nfreshness NN\nfreshwater JJR\nfret VBP\nfrets VBZ\nfretted VBD\nfretting VBG\nfriable JJ\nfriar NN\nfriction NN\nfriction-free JJ\nfrictional JJ\nfrictionless JJ\nfrictions NNS\nfridge NN\nfried JJ\nfriend NN\nfriend-of-the-court JJ\nfriendlier JJR\nfriendlily RB\nfriendliness NN\nfriendly JJ\nfriends NNS\nfriendship NN\nfriendships NNS\nfriers NNS\nfries NNS\nfrieze NN\nfriezes NNS\nfrigate NN\nfrigates NNS\nfright NN\nfrighten VB\nfrightened VBN\nfrightening JJ\nfrighteningly RB\nfrightens VBZ\nfrightful JJ\nfrightfully RB\nfrigid JJ\nfrill NN\nfrills NNS\nfrilly JJ\nfringe NN\nfringe-benefit NN\nfringed VBN\nfringed-wrapped JJ\nfringes NNS\nfripperies NNS\nfrise FW\nfrisky JJ\nfrittered VBN\nfrittering VBG\nfritters NNS\nfrivolities NNS\nfrivolity NN\nfrivolous JJ\nfrivolously RB\nfrizzled JJ\nfrizzling VBG\nfro RB\nfrock NN\nfrocks NNS\nfrog NN\nfrog-eating JJ\nfrog-haiku NN\nfrogmen NNS\nfrogs NNS\nfrolic NN\nfrolicked VBN\nfrolicking VBG\nfrolics NNS\nfrom IN\nfronds NNS\nfront NN\nfront-back JJ\nfront-desk NN\nfront-end JJ\nfront-line JJ\nfront-loaded JJ\nfront-loaders NNS\nfront-loads VBZ\nfront-office NN\nfront-page JJ\nfront-runner NN\nfront-runners NNS\nfront-running JJ\nfront-seat NN\nfrontage NN\nfrontal JJ\nfronted VBD\nfrontend NN\nfrontier NN\nfrontiers NNS\nfrontiersmen NNS\nfronting VBG\nfrontrunner NN\nfronts NNS\nfros NNS\nfrost NN\nfrost-bitten JJ\nfrostbite NN\nfrosted VBD\nfrosting NN\nfrosty JJ\nfroth NN\nfrothier RBR\nfrothing VBG\nfrothy JJ\nfrown VBP\nfrowned VBD\nfrowning VBG\nfrowningly RB\nfrowns VBZ\nfrowzy JJ\nfroze VBD\nfrozen VBN\nfrozen-embryo NN\nfrozen-food NN\nfrozen-foods NNS\nfrozen-pizza NN\nfructose NN\nfrugal JJ\nfrugality NN\nfrugally RB\nfruit NN\nfruit-concentrate JJ\nfruit-flavored JJ\nfruit-juice NN\nfruitbowl NN\nfruitful JJ\nfruitfully RB\nfruitfulness NN\nfruition NN\nfruitless JJ\nfruitlessly RB\nfruits NNS\nfruity JJ\nfrumpy JJ\nfrustrate VB\nfrustrated VBN\nfrustrated... :\nfrustrates VBZ\nfrustrating JJ\nfrustratingly RB\nfrustration NN\nfrustrations NNS\nfry NN\nfryers NNS\nfrying VBG\nft NN\nft. NN\nfuchsia NN\nfuck VB\nfucken JJ\nfuckin JJ\nfucking JJ\nfucks NNS\nfuddy-duddy JJ\nfudge VB\nfudged VBD\nfudging NN\nfuel NN\nfuel-cost JJ\nfuel-distribution NN\nfuel-economy NN\nfuel-efficiency JJ\nfuel-efficient JJ\nfuel-guzzling JJ\nfuel-injected JJ\nfuel-neutral JJ\nfuel-services NNS\nfuel-storage NN\nfueled VBN\nfueling VBG\nfueloil NN\nfuels NNS\nfuer NNP\nfugitive JJ\nfugitives NNS\nfugual JJ\nfugures NNS\nfulcrum NN\nfulfill VB\nfulfilled VBN\nfulfilling VBG\nfulfillment NN\nfulfills VBZ\nfulfilment NN\nfulfull VB\nfull JJ\nfull-banded JJ\nfull-blown JJ\nfull-bodied JJ\nfull-body JJ\nfull-clad JJ\nfull-commission JJ\nfull-dress JJ\nfull-fledged JJ\nfull-grown JJ\nfull-length JJ\nfull-of-the-moon NN\nfull-on JJ\nfull-page JJ\nfull-point JJ\nfull-power JJ\nfull-range JJ\nfull-scale JJ\nfull-season JJ\nfull-service JJ\nfull-sisters NNS\nfull-size JJ\nfull-sized JJ\nfull-spectrum NN\nfull-strength JJ\nfull-throated JJ\nfull-time JJ\nfull-year JJ\nfullback NN\nfullbacking VBG\nfuller JJR\nfullest JJS\nfulllength JJ\nfullness NN\nfullscale JJ\nfully RB\nfully-diluted JJ\nfullyear JJ\nfulminate VB\nfulminating VBG\nfulminations NNS\nfumble NN\nfumbled VBD\nfumbling VBG\nfume-filled JJ\nfumed VBD\nfumed-oak JJ\nfumes NNS\nfumigant NN\nfumigants NNS\nfuming VBG\nfumpered VBD\nfun NN\nfun-filled JJ\nfun-in-the-sun JJ\nfun-loving JJ\nfunction NN\nfunctional JJ\nfunctionalism NN\nfunctionally RB\nfunctionaries NNS\nfunctionary NN\nfunctioned VBD\nfunctioning VBG\nfunctions NNS\nfund NN\nfund-objective JJ\nfund-raiser NN\nfund-raisers NNS\nfund-raising NN\nfund-research JJ\nfund-selling JJ\nfundamantal JJ\nfundamantalist NN\nfundamental JJ\nfundamentalism NN\nfundamentalist JJ\nfundamentalists NNS\nfundamentally RB\nfundamentals NNS\nfunded VBN\nfunding NN\nfundraiser NN\nfundraisers NNS\nfundraising VBG\nfunds NNS\nfunds-management NN\nfunds-service JJ\nfuneral NN\nfuneral-accessories NNS\nfunerals NNS\nfungal JJ\nfungi NNS\nfungible JJ\nfungicides NNS\nfungus NN\nfungus-produced JJ\nfunks NNS\nfunky JJ\nfunn-eeee JJ\nfunn-ih JJ\nfunnel VB\nfunneled VBD\nfunneling VBG\nfunnels NNS\nfunnier JJR\nfunniest JJS\nfunny JJ\nfur NN\nfur-and-leather JJ\nfur-lined JJ\nfur-making JJ\nfur-piece NN\nfur-production JJ\nfurbishing NN\nfurious JJ\nfuriouser RBR\nfuriously RB\nfurled VBD\nfurlongs NNS\nfurlough NN\nfurloughed VBN\nfurloughs NNS\nfurnace NN\nfurnaces NNS\nfurnish VB\nfurnished VBN\nfurnishes VBZ\nfurnishing NN\nfurnishings NNS\nfurniture NN\nfuror NN\nfurrier NN\nfurriers NNS\nfurrow NN\nfurrowed JJ\nfurrows NNS\nfurry JJ\nfurs NNS\nfurther JJ\nfurthered VBD\nfurthering VBG\nfurthermore RB\nfurthers VBZ\nfurthest JJS\nfurtive JJ\nfurtively RB\nfury NN\nfuse NN\nfused VBN\nfuselage NN\nfuses NNS\nfusiform JJ\nfusillade NN\nfusillades NNS\nfusing VBG\nfusion NN\nfuss NN\nfusses VBZ\nfussily RB\nfussing VBG\nfussy JJ\nfusty JJ\nfutile JJ\nfutility NN\nfuture NN\nfuture-day JJ\nfuture-time JJ\nfutureeither NN\nfutures NNS\nfutures-exchange NN\nfutures-investment JJ\nfutures-market NN\nfutures-related JJ\nfutures-trading JJ\nfuturist NN\nfuturist\\/director NN\nfuturistic JJ\nfuturists NNS\nfuzz NN\nfuzzed VBD\nfuzzier JJR\nfuzzy JJ\nfy VBP\ng NN\ng-10.06.89 CD\ng-p NN\ngab NN\ngabardine NN\ngabbing VBG\ngabble NN\ngabbling VBG\ngable NN\ngadflies NNS\ngadfly NN\ngadget NN\ngadgetry NN\ngadgets NNS\ngaffes NNS\ngag NN\ngage NN\ngages NNS\ngagged VBN\ngagging VBG\ngaggle NN\ngaging NN\ngagline NN\ngags NNS\ngagwriters NNS\ngai FW\ngaiety NN\ngaily RB\ngain NN\ngain. NN\ngained VBD\ngainer NN\ngainers NNS\ngainful JJ\ngaining VBG\ngains NNS\ngains-tax JJ\ngains-tax-cut JJ\ngait NN\ngaited JJ\ngaiters NNS\ngal NN\ngala JJ\ngalactic JJ\ngalaxies NNS\ngalaxy NN\ngalbula FW\ngale NN\ngall NN\ngall-bladder NN\ngallant JJ\ngallantry NN\ngallants NNS\ngallbladder NN\ngalled VBN\ngalleries NNS\ngallery NN\ngalley NN\ngalleys NNS\ngalling JJ\ngallium NN\ngallivantin NN\ngallon NN\ngallonage NN\ngallons NNS\ngallop NN\ngalloped VBN\ngalloping VBG\ngallows NN\ngalls NNS\ngallstone NN\ngallstones NNS\ngallus-snapping JJ\ngals NNS\ngalvanic JJ\ngalvanism NN\ngalvanize VB\ngalvanized JJ\ngalvanizing VBG\ngambit NN\ngambits NNS\ngamble NN\ngambled VBN\ngambler NN\ngambler-politician NN\ngamblers NNS\ngambles NNS\ngambling NN\ngame NN\ngame-management NN\ngame-show JJ\ngame-shows NNS\ngame-winning JJ\ngamebird NN\ngamekeeper NN\ngames NNS\ngamesmen NNS\ngametes NNS\ngametocide NN\ngaming NN\ngaming-card NN\ngaming-industry NN\ngamma NN\ngamut NN\ngander NN\ngang NN\ngangbusters NNS\nganging VBG\ngangland NN\ngangling JJ\nganglion NN\ngangplank NN\ngangs NNS\ngangster NN\ngangsterish JJ\ngangsters NNS\ngangway NN\ngantlet NN\ngap NN\ngaped VBD\ngaping VBG\ngapped VBD\ngaps NNS\ngapt NN\ngarage NN\ngaraged VBN\ngarages NNS\ngarb NN\ngarbage NN\ngarbage-disposal NN\ngarbage-in JJ\ngarbage-incinerator NN\ngarbage-out JJ\ngarbage-to-energy JJ\ngarbed VBN\ngarbled VBN\ngarde FW\ngarden NN\ngarden-shrub NN\ngarden-variety NN\ngarden... :\ngardened VBD\ngardener NN\ngardeners NNS\ngardenettes NNS\ngardenia NN\ngardenias NNS\ngardening NN\ngardens NNS\ngargantuan JJ\ngargle NN\ngarish JJ\ngarishness NN\ngarland NN\ngarlanded VBD\ngarlic NN\ngarment NN\ngarment-industry NN\ngarments NNS\ngarner VB\ngarnered VBD\ngarnet NN\ngarnish NN\ngaroupa NN\ngarrison NN\ngarrisoned VBN\ngarroting VBG\ngarrulous JJ\ngarter NN\ngas NN\ngas-company NN\ngas-cooled JJ\ngas-derived JJ\ngas-fired JJ\ngas-gathering JJ\ngas-glass NN\ngas-guzzling JJ\ngas-one-tenth NN\ngas-pipeline JJ\ngas-producing JJ\ngas-saving JJ\ngas-station JJ\ngas-tax NN\ngas-tax-increasing JJ\ngas-turbine JJ\ngasconade VB\ngaseous JJ\ngases NNS\ngash NN\ngashes NNS\ngasket NN\ngaskets NNS\ngaslights NNS\ngasoline NN\ngasoline-powered JJ\ngasolines NNS\ngasp NN\ngasped VBD\ngasping VBG\ngaspingly RB\ngasps NNS\ngassed VBN\ngasser NN\ngasses NNS\ngassing NN\ngassings NNS\ngassy JJ\ngastric JJ\ngastro-intestinal JJ\ngastrocnemius NN\ngastrointestinal JJ\ngastronomes NNS\ngastronomy NN\ngate NN\ngate-post NN\ngates NNS\ngateway NN\ngateways NNS\ngather VB\ngathered VBD\ngathering NN\ngathering-in NN\ngatherings NNS\ngathers VBZ\ngauche JJ\ngaucherie NN\ngaucheries NNS\ngaucho NN\ngaudy JJ\ngauge NN\ngauged VBN\ngauges VBZ\ngauging VBG\ngaunt JJ\ngauntlet NN\ngauss NN\ngauze NN\ngave VBD\ngavottes NNS\ngawky JJ\ngay JJ\ngay-bashing JJ\ngay-ess VBP\ngay-rights NNS\ngay-student JJ\ngay\\/bisexual JJ\ngayety NN\ngays NNS\ngaze NN\ngazed VBD\ngazelle NN\ngazer NN\ngazes VBZ\ngazing VBG\ngazpacho NN\ngear NN\ngear-box NN\ngear-sets NNS\ngearboxes NNS\ngeared VBN\ngearing VBG\ngears NNS\ngee UH\ngeeing VBG\ngeeks NNS\ngeered VBN\ngeese NNS\ngegenschein NN\ngel NN\ngelatin NN\ngelatin-like JJ\ngelding NN\ngeldings NNS\ngels VBZ\ngem NN\ngemlike JJ\ngems NNS\ngemsbok NNS\ngemstone NN\ngen NN\ngendarme NN\ngender NN\ngenders NNS\ngene NN\ngene-copying JJ\ngene-replication NN\ngene-splicing NN\ngene-therapy NN\ngenealogies NNS\ngenera NN\ngeneral JJ\ngeneral-appeal JJ\ngeneral-director NN\ngeneral-election NN\ngeneral-insurance NN\ngeneral-interest JJ\ngeneral-management NN\ngeneral-merchandise NN\ngeneral-practice JJ\ngeneral-practitioner NN\ngeneral-purpose JJ\ngeneral-staff JJ\ngeneralist NN\ngeneralists NNS\ngeneralities NNS\ngenerality NN\ngeneralization NN\ngeneralizations NNS\ngeneralize VB\ngeneralized JJ\ngenerally RB\ngeneralpurpose JJ\ngenerals NNS\ngeneralship NN\ngenerate VB\ngenerated VBN\ngenerates VBZ\ngenerating VBG\ngeneration NN\ngeneration-skipping JJ\ngenerational JJ\ngenerations NNS\ngenerator NN\ngenerators NNS\ngeneric JJ\ngeneric-drug NN\ngenerically RB\ngenerics NNS\ngenerics-maker NN\ngenerosity NN\ngenerous JJ\ngenerously RB\ngenes NNS\ngenesis NN\ngenetic JJ\ngenetic-engineering JJ\ngenetically RB\ngeneticist NN\ngeneticists NNS\ngenetics NNS\ngenial JJ\ngenie NN\ngenii NN\ngenital JJ\ngenius NN\ngeniuses NNS\ngenocide NN\ngenome NN\ngenre NN\ngenres NNS\ngenteel JJ\ngentian NN\ngentians NNS\ngentile NN\ngentility NN\ngentle JJ\ngentleladies NNS\ngentlelady NN\ngentleman NN\ngentlemanly JJ\ngentlemen NNS\ngentleness NN\ngentler JJR\ngentler-sloping JJ\ngently RB\ngentrified VBN\ngentry NN\ngenuine JJ\ngenuinely RB\ngenus NN\ngeo-political JJ\ngeocentric JJ\ngeochemistry NN\ngeode NN\ngeographer NN\ngeographers NNS\ngeographic JJ\ngeographical JJ\ngeographically RB\ngeography NN\ngeologic JJ\ngeological JJ\ngeologically RB\ngeologist NN\ngeologists NNS\ngeology NN\ngeometric JJ\ngeometrical JJ\ngeometrically RB\ngeometry NN\ngeopolitical JJ\ngeosciences NNS\ngeothermal JJ\ngeranium NN\ngerbera NN\ngeriatric JJ\ngerm NN\ngermane JJ\ngermaneness NN\ngermanium NN\ngerminal JJ\ngerminate VBP\ngerminated JJ\ngerms NNS\ngerrymandering NN\ngerundial JJ\ngestational JJ\ngesticulated VBD\ngesticulating VBG\ngesture NN\ngestured VBD\ngestures NNS\ngesturing VBG\nget VB\nget-along JJ\nget-out-of-my-way JJ\nget-out-the-vote JJ\nget-rich-quick JJ\nget-together NN\nget-togethers NNS\nget-tough JJ\nget... :\ngetaway NN\ngether VB\ngets VBZ\ngettin VBG\ngetting VBG\ngeyser NN\ngeysering VBG\ngeysers NNS\nghastly JJ\nghazal FW\nghazals FW\ngherkins NNS\nghetto NN\nghettos NNS\nghilianii FW\nghost NN\nghost-busting NN\nghostbusters NNS\nghostbusting NN\nghosted VBD\nghostlike JJ\nghostly JJ\nghosts NNS\nghoul NN\nghoulish JJ\nghouls NNS\ngiant NN\ngiants NNS\ngibberish NN\ngibbet NN\ngibe NN\ngibes NNS\ngiblet NN\ngiddiness NN\ngiddy JJ\ngift NN\ngift-giving NN\ngift-products NNS\ngifted JJ\ngifts NNS\ngig NN\ngigantic JJ\ngiggle NN\ngiggled VBD\ngiggles NNS\ngiggling VBG\ngigolo NN\ngigue-like JJ\ngild VB\ngilded JJ\ngilding NN\ngilt JJ\ngilt-edged JJ\ngilts NNS\ngim VB\ngimbaled JJ\ngimcracks NNS\ngimmick NN\ngimmick-ridden JJ\ngimmickry NN\ngimmicks NNS\ngimmicky JJ\ngin NN\ngin-and-tonics NNS\nginger NN\ngingerly RB\ngingham NN\nginkgo NN\nginmill NN\nginnin VBG\nginning NN\ngins NNS\nginseng NN\ngird VB\ngirded VBD\ngirder NN\ngirders NNS\ngirding VBG\ngirdle NN\ngirds VBZ\ngirl NN\ngirl-friend NN\ngirl-san NN\ngirlfriend NN\ngirlfriends NNS\ngirlie NN\ngirlish JJ\ngirlishly RB\ngirls NNS\ngirth NN\ngist NN\ngit VB\ngive VB\ngive-and-take NN\ngive-away JJ\ngiveaway NN\ngiveaways NNS\ngivebacks NNS\ngiven VBN\ngivenness NN\ngiver NN\ngives VBZ\ngiveth VBZ\ngivin VBG\ngiving VBG\ngizmo NN\ngizmos NNS\nglacial JJ\nglacier NN\nglacier-like JJ\nglaciers NNS\nglad JJ\nglad-handing NN\nglade NN\ngladiator NN\ngladly RB\ngladness NN\nglamor NN\nglamorize VB\nglamorized VBN\nglamorous JJ\nglamour NN\nglance NN\nglanced VBD\nglances NNS\nglancing VBG\ngland NN\nglanders NNS\nglands NNS\nglandular JJ\nglare NN\nglared VBD\nglares VBZ\nglaring JJ\nglaringly RB\nglasnost FW\nglass NN\nglass-bottom JJ\nglass-container NN\nglass-fiber JJ\nglass-like JJ\nglass-making NN\nglass-strewn JJ\nglasses NNS\nglassless JJ\nglassware NN\nglassy JJ\nglaucoma NN\nglaze NN\nglazed VBN\nglazes NNS\nglazing VBG\ngleam NN\ngleamed VBD\ngleaming VBG\nglean VB\ngleaned VBN\ngleans VBZ\nglee NN\nglee-club NN\ngleeful JJ\ngleefully RB\ngleened VBN\nglees NNS\nglen NN\nglib JJ\nglibly RB\nglide VB\nglide-bombed VBD\nglided VBD\nglider NN\ngliders NNS\nglides VBZ\ngliding VBG\nglimmer NN\nglimmering VBG\nglimmers NNS\nglimpse NN\nglimpsed VBN\nglimpses NNS\nglint NN\nglinted VBD\nglinting VBG\nglissade NN\nglisten NN\nglistened VBD\nglistening VBG\nglitch NN\nglitches NNS\nglitter NN\nglitterati NNS\nglittered VBD\nglittering VBG\nglittery NN\nglitz NN\nglitzy JJ\ngloat VB\ngloated VBD\ngloaters NNS\ngloating VBG\ngloats VBZ\nglob-flakes NN\nglobal JJ\nglobal-funds JJ\nglobal-market JJ\nglobal-news NN\nglobal-warming JJ\nglobalism NN\nglobalist NN\nglobalists NNS\nglobalization NN\nglobalized JJ\nglobalizing VBG\nglobally RB\nglobe NN\nglobe-girdling JJ\nglobe-spanning JJ\nglobes NNS\nglobetrotter NN\nglobigii NNS\nglobulin NN\nglobulins NNS\nglomerular JJ\nglommed VBD\ngloom NN\ngloom-and-doom JJ\ngloomier JJR\ngloomily RB\ngloomy JJ\nglop NN\nglories NNS\nglorification NN\nglorified VBN\nglorifies VBZ\nglorify VB\nglorious JJ\ngloriously RB\nglory NN\nglorying VBG\ngloss VB\nglossary NN\nglossed VBD\nglossy JJ\nglottal JJ\nglottochronological JJ\nglottochronology NN\nglove NN\ngloved VBN\nglover NN\ngloves NNS\nglow NN\nglow-in-the-dark JJ\nglowed VBD\nglowered VBD\nglowering VBG\nglowing VBG\nglows NNS\nglucose NN\nglue NN\nglued VBN\nglues NNS\ngluey JJ\nglum JJ\nglumly RB\nglut NN\nglutamate NN\nglutamic JJ\nglutaric JJ\ngluten NN\nglutinous JJ\ngluts NNS\nglutted VBN\nglutting VBG\ngluttons NNS\ngluttony NN\nglycerin NN\nglycerine NN\nglycerol NN\nglycerolized VBN\nglycol NN\nglycols NNS\nglycosides NNS\ngm NN\ngm. NN\ngnarled JJ\ngnash VB\ngnashing VBG\ngnaw VB\ngnawed VBD\ngnawing NN\ngnome NN\ngnomelike JJ\ngnomes NNS\ngnomon NN\ngo VB\ngo-ahead NN\ngo-along JJ\ngo-around NN\ngo-between NN\ngo-betweens NNS\ngo-getters NNS\ngo-go JJ\ngo-go-go NN\ngo-it-alone JJ\ngo-to-war JJ\ngoad NN\ngoaded VBD\ngoal NN\ngoal-line NN\ngoal-oriented JJ\ngoal-values NNS\ngoals NNS\ngoat NN\ngoat-drawn JJ\ngoatee NN\ngoats NNS\ngob NN\ngobble NN\ngobbled VBD\ngobbledygook NN\ngobblers NNS\ngobbles VBZ\ngobbling VBG\ngoblins NNS\ngod NN\ngod-like JJ\ngodamit VB\ngoddam JJ\ngoddamit UH\ngoddammit UH\ngoddamn UH\ngoddamned JJ\ngoddess NN\ngodfather NN\ngodhead NN\ngodless JJ\ngodlike JJ\ngodliness NN\ngodmother NN\ngods NNS\ngodsend NN\ngoes VBZ\ngoggle-eyed JJ\ngoggles NNS\ngoin VBG\ngoing VBG\ngoing-home JJ\ngoing-over NN\ngoing-private JJ\ngoings NNS\ngoings-on NNS\ngoitre NN\ngoitrogen NN\ngoitrogens NNS\ngold NN\ngold-backed JJ\ngold-based JJ\ngold-card-carrying JJ\ngold-convertible JJ\ngold-filled JJ\ngold-leaf JJ\ngold-mining JJ\ngold-mining-company JJ\ngold-oriented JJ\ngold-phone NN\ngold-plated JJ\ngold-share JJ\ngold-wire NN\ngoldbanded VBN\ngolden JJ\ngolden-crusted JJ\ngolden-parachute JJ\ngolden-share NN\ngoldfish NN\ngolds NNS\ngoldsmith NN\ngoldstock NN\ngolf NN\ngolf-ball NN\ngolfed VBN\ngolfer NN\ngolfers NNS\ngolfers... :\ngolfing NN\ngolfs NNS\ngolly UH\ngon VBG\ngone VBN\ngonna VBG\ngonne VBN\ngoo NN\ngood JJ\ngood-by UH\ngood-bye NN\ngood-cop JJ\ngood-driver JJ\ngood-faith NN\ngood-for-you JJ\ngood-hearted JJ\ngood-humored JJ\ngood-humoredly RB\ngood-living JJ\ngood-looking JJ\ngood-natured JJ\ngood-news NN\ngood-night JJ\ngood-quality JJ\ngood-size JJ\ngood-til-canceled JJ\ngood-till-canceled JJ\ngood-will JJ\ngoodbye NN\ngoodies NNS\ngoodness NN\ngoodnight NN\ngoods NNS\ngoods-producing JJ\ngoodwill NN\ngoody UH\ngooey JJ\ngoof-offs NNS\ngoofed VBD\ngoofiness NN\ngoofing VBG\ngoofy JJ\ngoogled VBD\ngoons NNS\ngoooolick NN\ngoose NN\ngoose-stepping VBG\ngooseberry NN\ngoosey JJ\ngooshey JJ\ngore VB\ngored VBN\ngorge NN\ngorged VBD\ngorgeous JJ\ngorgeously RB\ngorges NNS\ngorging VBG\ngorilla NN\ngorillas NNS\ngorup NN\ngory JJ\ngosaimasu FW\ngosh UH\ngospel NN\ngossamer NN\ngossip NN\ngossiped VBN\ngossiping VBG\ngossips NNS\ngossipy JJ\ngot VBD\ngotcha VBP\ngothic JJ\ngotta VB\ngotten VBN\ngouge VB\ngouged VBD\ngouging VBG\ngourd NN\ngourmet NN\ngourmet-food NN\ngourmets NNS\ngout NN\ngoutte FW\ngouty JJ\ngouverne FW\ngoverment NN\ngoverment. NN\ngovern VB\ngovernance NN\ngoverned VBN\ngoverness NN\ngoverning VBG\ngovernmemt NN\ngovernment NN\ngovernment-agency JJ\ngovernment-appointed JJ\ngovernment-approved JJ\ngovernment-assisted JJ\ngovernment-backed JJ\ngovernment-bond NN\ngovernment-business NN\ngovernment-certified JJ\ngovernment-controlled JJ\ngovernment-dominated JJ\ngovernment-encouraged JJ\ngovernment-funded JJ\ngovernment-guaranteed JJ\ngovernment-held JJ\ngovernment-imposed JJ\ngovernment-insured JJ\ngovernment-leaked JJ\ngovernment-managed JJ\ngovernment-mandated JJ\ngovernment-operated JJ\ngovernment-orchestrated JJ\ngovernment-ordered JJ\ngovernment-owned JJ\ngovernment-plus JJ\ngovernment-provided JJ\ngovernment-relations NNS\ngovernment-run JJ\ngovernment-sanctioned JJ\ngovernment-securities NNS\ngovernment-set VBN\ngovernment-sponsored JJ\ngovernment-subsidized JJ\ngovernment-supported JJ\ngovernment-to-government JJ\ngovernment... :\ngovernmental JJ\ngovernmental-affairs NNS\ngovernmentally RB\ngovernments NNS\ngovernmentset VBN\ngovernor NN\ngovernor-elect NN\ngovernors NNS\ngovernors-association NN\ngovernorship NN\ngoverns VBZ\ngown NN\ngowned JJ\ngowns NNS\ngpd NN\ngrab VB\ngrab-bag NN\ngrabbag NN\ngrabbed VBD\ngrabbin VBG\ngrabbing VBG\ngrabs NNS\ngrace NN\ngraced VBD\ngraceful JJ\ngracefully RB\ngracefulness NN\ngraces NNS\ngracious JJ\ngraciously RB\ngrad NN\ngradations NNS\ngrade NN\ngrade-A JJ\ngrade-constructed JJ\ngrade-equivalent NN\ngrade-equivalents NNS\ngrade-school JJ\ngraded VBN\ngrader NN\ngraders NNS\ngrades NNS\ngradient NN\ngradients NNS\ngrading VBG\ngrads NNS\ngradual JJ\ngradualism NN\ngradualist NN\ngradually RB\ngraduate NN\ngraduate-student NN\ngraduated VBN\ngraduates NNS\ngraduating VBG\ngraduation NN\ngraffiti NN\ngraft NN\ngraft-riddled JJ\ngrafted JJ\ngrafting VBG\ngraham NN\ngraham-flour-based JJ\ngrain NN\ngrain-exporting NN\ngrain-storage NN\ngrain-trading JJ\ngrained JJ\ngraining NN\ngrains NNS\ngrainy JJ\ngram NN\ngrammar NN\ngrammar-school NN\ngrammarians NNS\ngrammatical JJ\ngrammatically RB\ngrams NNS\ngran'dad NN\ngranary NN\ngrand JJ\ngrand-daughter NN\ngrand-jury NN\ngrand-looking JJ\ngrand-prize NN\ngrand-slam JJ\ngrandchild NN\ngrandchildren NNS\ngranddad NN\ngranddaddies NNS\ngranddaughter NN\ngrandees NNS\ngrander JJR\ngrandest JJS\ngrandeur NN\ngrandfather NN\ngrandfather-father-to-son JJ\ngrandfathers NNS\ngrandiloquent JJ\ngrandiose JJ\ngrandkids NNS\ngrandly RB\ngrandma NN\ngrandmas NNS\ngrandmasters NNS\ngrandmother NN\ngrandmotherly JJ\ngrandmothers NNS\ngrandparents NNS\ngrandson NN\ngrandsons NNS\ngrandstand NN\ngrandstander NN\ngrandstanding VBG\ngranite NN\ngrant NN\ngrant-in-aid NN\ngranted VBN\ngrantee NN\ngranting VBG\ngrantors NNS\ngrants NNS\ngrants-in-aid NN\ngranular JJ\ngranular-type JJ\ngranules NNS\ngranulocyte-macrophage NN\ngranulocytic JJ\ngrape NN\ngrape-arbor NN\ngrapefruit NN\ngrapes NNS\ngrapeshot NN\ngrapevine NN\ngrapevines NNS\ngraph NN\ngraphed VBN\ngraphic JJ\ngraphic-arts NNS\ngraphical JJ\ngraphically RB\ngraphics NNS\ngraphite NN\ngraphite-plastic JJ\ngraphs NNS\ngrapple VB\ngrappled VBD\ngrapples VBZ\ngrappling VBG\ngrasp VB\ngrasped VBN\ngrasping VBG\ngrass NN\ngrass-covered JJ\ngrass-fed JJ\ngrass-green JJ\ngrass-roots JJ\ngrassed VBN\ngrassers NNS\ngrasses NNS\ngrassfire NN\ngrasshoppers NNS\ngrassland NN\ngrassroots NNS\ngrassroots-fueled JJ\ngrassy JJ\ngrata FW\ngrate NN\ngrated VBD\ngrateful JJ\ngratefully RB\ngrates NNS\ngratification NN\ngratified VBN\ngratify VB\ngratifying JJ\ngratifyingly RB\ngrating NN\ngratingly RB\ngratings NNS\ngratis JJ\ngratitude NN\ngratuities NNS\ngratuitous JJ\ngratuitously RB\ngratuity NN\ngraunt VB\ngrave JJ\ngravel NN\ngravel-chewing JJ\ngravel-voiced JJ\ngravely RB\ngraven JJ\ngraver JJR\ngraves NNS\ngravest JJS\ngravestone NN\ngraveyard NN\ngraveyards NNS\ngravid JJ\ngravitas NNS\ngravitates VBZ\ngravitating VBG\ngravitation NN\ngravitational JJ\ngravity NN\ngravy NN\ngray JJ\ngray-backs NNS\ngray-beard JJ\ngray-bearded JJ\ngray-black JJ\ngray-blue JJ\ngray-flannel JJ\ngray-haired JJ\ngray-looking JJ\ngray-market JJ\ngray-thatched JJ\ngraybeard NN\ngraybeards NNS\ngrayed JJ\ngrayer JJR\ngraying VBG\ngrays NNS\ngraze VBP\ngrazed VBD\ngrazer NN\ngrazers NNS\ngrazin VBG\ngrazing VBG\ngrease NN\ngrease-removal JJ\ngreased VBD\ngreases NNS\ngreasies NNS\ngreasy JJ\ngreat JJ\ngreat-grandchildren NNS\ngreat-grandfather NN\ngreat-grandmother NN\ngreat-grandson NN\ngreat-great-grandfather NN\ngreat-nieces NNS\ngreat-quality NN\ngreat-uncles NNS\ngreatcoat NN\ngreatcoated JJ\ngreate NN\ngreater JJR\ngreater-fool JJ\ngreatest JJS\ngreatly RB\ngreatness NN\ngreats NNS\ngreed NN\ngreedier JJR\ngreedily RB\ngreedy JJ\ngreen JJ\ngreen-brown JJ\ngreen-bugs NN\ngreen-lipped JJ\ngreen-scaled JJ\ngreen-tinted JJ\ngreenback NN\ngreenbacks NNS\ngreener JJR\ngreenest JJS\ngreenfield NN\ngreenhouse NN\ngreenhouse-effect JJ\ngreenhouse-gas JJ\ngreenhouse-produced JJ\ngreenhouses NNS\ngreening JJ\ngreenish JJ\ngreenly RB\ngreenmail NN\ngreenmailer NN\ngreenness NN\ngreens NNS\ngreensward NN\ngreenware NN\ngreet VB\ngreeted VBD\ngreeter NN\ngreeters NNS\ngreeting NN\ngreetings NNS\ngreets VBZ\ngreetz NNS\ngregarious JJ\ngrenade NN\ngrenades NNS\ngret JJ\ngrevouselye RB\ngrew VBD\ngrey JJ\ngrey-haired JJ\ngrey-skied JJ\ngreying VBG\ngrid NN\ngridded JJ\ngridiron NN\ngridlock NN\ngridlocked VBN\ngrief NN\ngrief-stricken JJ\ngrievance NN\ngrievances NNS\ngrieved VBN\ngrieving VBG\ngrievous JJ\ngrill NN\ngrille NN\ngrille-route NN\ngrilled JJ\ngrilled-chicken JJ\ngrillework NN\ngrillwork NN\ngrim JJ\ngrimace NN\ngrimaced VBD\ngrimaces NNS\ngrime NN\ngrimed VBN\ngrimly RB\ngrimmer RBR\ngrimmest JJS\ngrimness NN\ngrimy JJ\ngrin NN\ngrind VBP\ngrinder NN\ngrinders NNS\ngrinding VBG\ngrindings NNS\ngrinds VBZ\ngrindstone NN\ngringos NNS\ngrinned VBD\ngrinning VBG\ngrins NNS\ngrip NN\ngripe VBP\ngriped VBD\ngripes NNS\ngriping NN\ngripped VBD\ngripping VBG\ngrips NNS\ngrisly JJ\ngrist NN\ngristmill NN\ngrit NN\ngrit-impregnated JJ\ngrits NNS\ngritty JJ\ngritty-eyed JJ\ngrizzled JJ\ngrizzlies NNS\ngrizzly NN\ngroan NN\ngroaned VBD\ngroaning VBG\ngroans VBZ\ngrocer NN\ngroceries NNS\ngrocers NNS\ngrocery NN\ngrocery-products NNS\ngrocery-store JJ\ngrogginess NN\ngroggy JJ\ngroin NN\ngrok VB\ngrokked VBD\ngrokking VBG\ngroom NN\ngroomed VBN\ngrooming NN\ngrooms NNS\ngroomsmen NNS\ngroove NN\ngrooved VBN\ngrooves NNS\ngrope VB\ngroped VBD\ngroping VBG\ngross JJ\ngross-income NN\ngross-profit NN\ngrossed VBD\ngrosses VBZ\ngrossing VBG\ngrossly RB\ngrotesque JJ\ngrotesquely RB\ngrotesques NNS\ngrottoes NNS\nground NN\nground-based JJ\nground-cargo NN\nground-floor JJ\nground-glass JJ\nground-handling NNS\nground-launched JJ\nground-level NN\nground-support JJ\nground-swell NN\nground-truck NN\nground-water NN\ngroundball NN\ngroundbreakers NNS\ngrounded VBN\ngrounder NN\ngrounding VBG\ngroundless JJ\ngrounds NNS\ngrounds-care JJ\ngroundup JJ\ngroundwater NN\ngroundwave NN\ngroundwork NN\ngroup NN\ngroup-health NN\ngroup-identities NNS\ngroup-identity NN\ngrouped VBN\ngrouper NN\ngrouping NN\ngroupings NNS\ngroups NNS\ngrouse VBP\ngroused VBD\ngrouses VBZ\ngrousing VBG\ngrove NN\ngrovel VB\ngrovelike JJ\ngroveling VBG\ngrovels VBZ\ngroves NNS\ngrow VB\ngrow-or-die JJ\ngrower NN\ngrowers NNS\ngrowing VBG\ngrowing-waiting NN\ngrowl NN\ngrowled VBD\ngrowling VBG\ngrowls VBZ\ngrown VBN\ngrown-up JJ\ngrown-ups NNS\ngrownups NNS\ngrows VBZ\ngrowth NN\ngrowth-and-income JJ\ngrowth-controlling JJ\ngrowth-fund NN\ngrowth-minded JJ\ngrowth-oriented JJ\ngrowth-stock JJ\ngrowth-stunting JJ\ngrowth-suppressing JJ\ngrowth... :\ngrowths NNS\ngrowthy JJ\ngrtz NNS\ngrub NN\ngrubby JJ\ngrubs NNS\ngrudge NN\ngrudges NNS\ngrudging JJ\ngrudgingly RB\ngrueling JJ\ngruesome JJ\ngruesomeness NN\ngruff JJ\ngrumble VBP\ngrumbled VBD\ngrumbles VBZ\ngrumbling VBG\ngrunt VB\ngrunted VBD\ngrunting VBG\ngruonded VBD\nguanidine NN\nguar JJ\nguarantee NN\nguaranteed VBN\nguaranteed-neutral JJ\nguaranteeing VBG\nguarantees NNS\nguarantor NN\nguaranty NN\nguard NN\nguard-room NN\nguarded VBN\nguardedly RB\nguardedness NN\nguardhouse NN\nguardian NN\nguardians NNS\nguardianship NN\nguarding VBG\nguards NNS\ngubernatorial JJ\nguerilla NN\nguerrilla NN\nguerrilla-held JJ\nguerrilla-th'-wisp JJ\nguerrillas NNS\nguess VBP\nguessed VBD\nguesses NNS\nguessing VBG\nguesstimates NNS\nguesswork NN\nguest NN\nguests NNS\nguffawing VBG\nguffaws NNS\nguidance NN\nguide NN\nguidebook NN\nguided VBN\nguided-missile JJ\nguideline NN\nguidelines NNS\nguidepost NN\nguideposts NNS\nguides NNS\nguidewheels NNS\nguiding VBG\nguild NN\nguilder NN\nguilders NNS\nguile NN\nguileless JJ\nguillotine NN\nguilt NN\nguiltiness NN\nguiltless JJ\nguilty JJ\nguinea NN\nguise NN\nguises NNS\nguitar NN\nguitar-strumming VBG\nguitar-twanging JJ\nguitarist NN\nguitars NNS\ngulag NN\ngulf NN\ngull NN\ngulled VBN\ngullet NN\ngulley NN\ngullibility NN\ngullible JJ\ngullies NNS\ngulling VBG\ngully NN\ngulp NN\ngulped VBD\ngulping VBG\ngulps NNS\ngum NN\ngum-chewing JJ\ngummed VBN\ngumming VBG\ngummy JJ\ngumption NN\ngums NNS\ngun NN\ngun-carrying JJ\ngun-running JJ\ngun-shot NN\ngun-shy JJ\ngun-slinger NN\ngun-slinging JJ\ngunbarrel NN\ngunboats NNS\ngunfighter NN\ngunfights NNS\ngunfire NN\ngunflint NN\ngung-ho JJ\ngungho JJ\ngunk NN\ngunloading NN\ngunman NN\ngunmen NNS\ngunmetal-gray JJ\ngunned VBN\ngunner NN\ngunners NNS\ngunning VBG\ngunny NN\ngunplay NN\ngunpoint NN\ngunpowder NN\nguns NNS\ngunship NN\ngunshot NN\ngunslinger NN\ngunslingers NNS\ngunslinging VBG\nguppies NNS\ngurgle NN\ngurgling VBG\nguru NN\ngurus NNS\ngush VBP\ngushed VBD\ngusher NN\ngushes VBZ\ngushing VBG\ngushy JJ\ngussets NNS\ngussied VBN\ngust NN\ngusto NN\ngusts NNS\ngusty JJ\ngut NN\ngut'em VB\ngut-Democratic JJ\ngut-flattening JJ\ngut-wrenching JJ\nguts NNS\ngutsy JJ\ngutted VBN\ngutter NN\nguttered VBD\ngutters NNS\nguttural JJ\nguy NN\nguys NNS\nguzzle VB\nguzzled VBD\nguzzler NN\nguzzlers NNS\nguzzles VBZ\nguzzling NN\ngweilo FW\ngweilos FW\ngym NN\ngymnasium-sized JJ\ngymnast NN\ngymnastic JJ\ngymnastics NNS\ngymnasts NNS\ngyms NNS\ngynecologic JJ\ngynecological JJ\ngynecologist NN\ngynecologists NNS\ngynecology NN\ngypsies NNS\ngypsum NN\ngypsy NN\ngyrate VB\ngyrated VBD\ngyrating VBG\ngyration NN\ngyrations NNS\ngyro NN\ngyro-platform-servo JJ\ngyro-stabilized JJ\ngyros NNS\ngyroscopes NNS\nh NN\nh8 VB\nha UH\nhabe FW\nhabeas NNS\nhabeas-corpus JJ\nhaberdasheries NNS\nhaberdashery NN\nhabit NN\nhabit-forming JJ\nhabitable JJ\nhabitants NNS\nhabitat NN\nhabitats NNS\nhabits NNS\nhabitual JJ\nhabitually RB\nhabitues NNS\nhable JJ\nhack NN\nhacked VBD\nhacker NN\nhackers NNS\nhacking JJ\nhackles NNS\nhackneyed JJ\nhacks NNS\nhacksaw NN\nhackwork NN\nhad VBD\nhadd VBN\nhaddock NN\nhaec FW\nhaflis NNS\nhafta VB\nhaggard JJ\nhaggardly RB\nhaggle VB\nhaggling VBG\nhagglings NNS\nhaha UH\nhahah UH\nhahaha UH\nhail NN\nhailed VBD\nhailing VBG\nhails VBZ\nhailstorm NN\nhaint VBZ\nhair NN\nhair-care NN\nhair-growing JJ\nhair-raising JJ\nhair-relaxer NN\nhair-trigger JJ\nhaircut NN\nhaircuts NNS\nhairdos NNS\nhairdresser NN\nhairdressers NNS\nhairier JJR\nhairless JJ\nhairline NN\nhairpiece NN\nhairpieces NNS\nhairpin NN\nhairs NNS\nhairshirt NN\nhairsplitting JJ\nhairspray NN\nhairtonic NN\nhairy JJ\nhairyknuckled JJ\nhalcyon JJ\nhalf NN\nhalf-a-dozen NN\nhalf-a-million JJ\nhalf-acceptance NN\nhalf-acre JJ\nhalf-aloud RB\nhalf-an-hour NN\nhalf-baked JJ\nhalf-billion JJ\nhalf-block NN\nhalf-blood JJ\nhalf-bottles NNS\nhalf-breed NN\nhalf-brother NN\nhalf-brothers NNS\nhalf-century NN\nhalf-chapter NN\nhalf-city NN\nhalf-clad JJ\nhalf-closed JJ\nhalf-cocked JJ\nhalf-completed JJ\nhalf-conscious JJ\nhalf-crazy JJ\nhalf-crocked JJ\nhalf-cup JJ\nhalf-darkness NN\nhalf-digested JJ\nhalf-dozen NN\nhalf-dressed JJ\nhalf-drunk JJ\nhalf-educated JJ\nhalf-empty JJ\nhalf-expressed JJ\nhalf-faced JJ\nhalf-filled JJ\nhalf-forgotten JJ\nhalf-full JJ\nhalf-gainer NN\nhalf-gourd NN\nhalf-grown JJ\nhalf-hearted JJ\nhalf-heartedly JJ\nhalf-horse JJ\nhalf-hour NN\nhalf-implemented JJ\nhalf-inch JJ\nhalf-industrial JJ\nhalf-intensity JJ\nhalf-interest NN\nhalf-jokingly RB\nhalf-life NN\nhalf-light NN\nhalf-man NN\nhalf-measure NN\nhalf-melted JJ\nhalf-mile JJ\nhalf-million JJ\nhalf-mincing JJ\nhalf-moons NNS\nhalf-murmured JJ\nhalf-off JJ\nhalf-owned JJ\nhalf-past JJ\nhalf-percent JJ\nhalf-point JJ\nhalf-price NN\nhalf-reached VBD\nhalf-reformed JJ\nhalf-reluctant JJ\nhalf-seriously RB\nhalf-share NN\nhalf-sister NN\nhalf-smile NN\nhalf-speed JJ\nhalf-staff JJ\nhalf-standard JJ\nhalf-starved JJ\nhalf-states NNS\nhalf-straightened VBD\nhalf-swamped JJ\nhalf-swimming JJ\nhalf-time NN\nhalf-transparent JJ\nhalf-turned JJ\nhalf-understood JJ\nhalf-way JJ\nhalf-well JJ\nhalf-witted JJ\nhalf-year JJ\nhalfback NN\nhalfbacks NNS\nhalfhearted JJ\nhalfheartedly RB\nhalfmile NN\nhalftime NN\nhalfway RB\nhalfways RB\nhalides NNS\nhall NN\nhall-mark NN\nhallelujahs NNS\nhallmark NN\nhallmarks NNS\nhallowed JJ\nhalloween NNP\nhalls NNS\nhallucinating VBG\nhallucinations NNS\nhallucinatory JJ\nhallway NN\nhallways NNS\nhalo NN\nhalogen NN\nhalogenated VBD\nhalogens NNS\nhalos NNS\nhalt NN\nhalted VBN\nhalter NN\nhalting VBG\nhaltingly RB\nhalts NNS\nhalvah NN\nhalve VB\nhalved VBN\nhalves NNS\nhalving VBG\nham NN\nham-handed JJ\nham-like JJ\nham-radio NN\nhamburger NN\nhamburgers NNS\nhamlet NN\nhammer NN\nhammered VBN\nhammering VBG\nhammerless JJ\nhammerlock NN\nhamming VBG\nhammock NN\nhamper VB\nhampered VBN\nhampering VBG\nhampers VBZ\nhams NNS\nhamstring VB\nhamstringing VBG\nhamstrung JJ\nhan NN\nhand NN\nhand-blower NN\nhand-carried VBN\nhand-carved JJ\nhand-covered JJ\nhand-crafted JJ\nhand-delivered JJ\nhand-filed JJ\nhand-held JJ\nhand-hewn JJ\nhand-holding NN\nhand-in-glove JJ\nhand-knit JJ\nhand-level JJ\nhand-lotion NN\nhand-made JJ\nhand-me-down JJ\nhand-operated JJ\nhand-painted NN\nhand-picked JJ\nhand-screened VBN\nhand-sized JJ\nhand-squeeze JJ\nhand-to-hand JJ\nhand-tool NN\nhand-tooled JJ\nhand-woven VBN\nhand-wringer NN\nhand-wringing NN\nhand-written JJ\nhandbag NN\nhandbills NNS\nhandbook NN\nhandbooks NNS\nhandclasp NN\nhandcrafted VBN\nhandcuff VBP\nhandcuffed VBN\nhandcuffs NNS\nhande NN\nhanded VBD\nhander NN\nhandful NN\nhandfuls NNS\nhandgun NN\nhandguns NNS\nhandheld JJ\nhandhold NN\nhandicap NN\nhandicapped JJ\nhandicaps NNS\nhandicrafts NNS\nhandicraftsman NN\nhandier JJR\nhandiest JJS\nhandily RB\nhanding VBG\nhandiwork NN\nhandkerchief NN\nhandkerchiefs NNS\nhandle VB\nhandlebars NNS\nhandled VBN\nhandlers NNS\nhandles VBZ\nhandless JJ\nhandling NN\nhandmade JJ\nhandmaiden NN\nhandout NN\nhandouts NNS\nhandpicked VBN\nhands NNS\nhands-down JJ\nhands-off JJ\nhands-off-all-sweets NNS\nhands-on JJ\nhandscrolls NNS\nhandset NN\nhandsets NNS\nhandshake NN\nhandshaker NN\nhandsome JJ\nhandsomely RB\nhandsomer JJR\nhandspikes NNS\nhandstand NN\nhandstands NNS\nhandwriting NN\nhandwritten JJ\nhandy JJ\nhandyman NN\nhandyman-carpenter NN\nhandymen NNS\nhang VB\nhang-tough JJ\nhang-ups NNS\nhangar NN\nhangars NNS\nhanged VBN\nhangers NNS\nhangers-on NNS\nhangin VBG\nhanging VBG\nhangman NN\nhangout NN\nhangouts NNS\nhangover NN\nhangovers NNS\nhangs VBZ\nhangups NNS\nhank NN\nhankered VBN\nhankerin VBG\nhanky NN\nhanky-panky NN\nhansom JJ\nhaole FW\nhaphazard JJ\nhaphazardly RB\nhapless JJ\nhappen VB\nhappened VBD\nhappening VBG\nhappenings NNS\nhappens VBZ\nhappenstance NN\nhappier JJR\nhappiest JJS\nhappily RB\nhappiness NN\nhappy JJ\nhara-kiri FW\nharangued VBD\nharangues NNS\nharanguing VBG\nharass VB\nharassed VBD\nharassing VBG\nharassment NN\nharbinger NN\nharbor NN\nharbored VBN\nharboring VBG\nharbors NNS\nharborside NN\nhard JJ\nhard-bitten JJ\nhard-boiled JJ\nhard-charging JJ\nhard-come-by JJ\nhard-core JJ\nhard-cover NN\nhard-currency NN\nhard-disk NN\nhard-drinking JJ\nhard-earned JJ\nhard-edged JJ\nhard-fought JJ\nhard-hit JJ\nhard-hitting JJ\nhard-line JJ\nhard-liner NN\nhard-liners NNS\nhard-liquor JJ\nhard-nosed JJ\nhard-pressed JJ\nhard-riding JJ\nhard-sell JJ\nhard-surface NN\nhard-to-fault JJ\nhard-to-fill JJ\nhard-to-fit JJ\nhard-to-get JJ\nhard-to-please JJ\nhard-to-spot JJ\nhard-wire JJ\nhard-won JJ\nhard-working JJ\nhardbake NN\nhardball NN\nhardboard NN\nhardboiled JJ\nhardbound JJ\nhardcore JJ\nhardcover NN\nharddisk NN\nharden VB\nhardened VBN\nhardener NN\nhardening VBG\nharder JJR\nharder-line JJ\nhardest JJS\nhardest-hit JJ\nhardier JJR\nhardline JJ\nhardliner NN\nhardliners NNS\nhardly RB\nhardness NN\nhardscrabble JJ\nhardship NN\nhardships NNS\nhardtack NN\nhardtack-box NN\nhardware NN\nhardware-maintenance NN\nhardware-store NN\nhardwood NN\nhardwoods NNS\nhardworking JJ\nhardy JJ\nhare NN\nhare-brained JJ\nharelips NNS\nharem NN\nhares NNS\nhark VBP\nharking VBG\nharm NN\nharmed VBN\nharmful JJ\nharming VBG\nharmless JJ\nharmlessly RB\nharmlessness NN\nharmonic JJ\nharmonies NNS\nharmonious JJ\nharmoniously RB\nharmonization NN\nharmonize VB\nharmony NN\nharms VBZ\nharness NN\nharness-emotions JJ\nharnessed VBN\nharnessing VBG\nharp NN\nharped VBD\nharping VBG\nharpsichord NN\nharpsichordist NN\nharpy JJ\nharrassment NN\nharried VBN\nharrowed VBN\nharrowing JJ\nharrumphing NN\nharry VB\nharsh JJ\nharshened VBD\nharsher JJR\nharshest JJS\nharshly RB\nharshness NN\nhartes NNS\nharvest NN\nharvested VBN\nharvesting NN\nharvests NNS\nhas VBZ\nhash NN\nhasher NN\nhashers NNS\nhashes NNS\nhashing NN\nhashish NN\nhasps NNS\nhassle NN\nhassled VBN\nhassles NNS\nhassling VBG\nhast VBP\nhaste NN\nhasten VB\nhastened VBD\nhastening VBG\nhastens VBZ\nhastily RB\nhastily-summoned JJ\nhasty JJ\nhat NN\nhatbox NN\nhatch NN\nhatchback NN\nhatched VBN\nhatcheries NNS\nhatchery NN\nhatchet NN\nhatchet-faced JJ\nhatching NN\nhatchings NNS\nhatchway NN\nhate VBP\nhate-mongering NN\nhated VBD\nhateful JJ\nhaters NNS\nhates VBZ\nhath VBZ\nhating VBG\nhatred NN\nhats NNS\nhatted VBN\nhattes NNS\nhaughtily RB\nhaughtiness NN\nhaughty JJ\nhaul NN\nhaulage JJ\nhauled VBD\nhaulers NNS\nhauling VBG\nhauls NNS\nhaunches NNS\nhaunt VB\nhaunted VBN\nhaunting JJ\nhauntingly RB\nhaunts NNS\nhaute FW\nhauteur NN\nhave VBP\nhave'the VB\nhave-not JJ\nhave-nots NNS\nhave... :\nhaven NN\nhaven't VB\nhavens NNS\nhavent VB\nhaves NNS\nhavin VBG\nhaving VBG\nhavoc NN\nhawing VBG\nhawk NN\nhawk-faced JJ\nhawk-hatching JJ\nhawk-hunting JJ\nhawked VBD\nhawker NN\nhawkers NNS\nhawking VBG\nhawkish JJ\nhawks NNS\nhay NN\nhay-fever NN\nhay-shakers NNS\nhay-wagon NN\nhayfields NNS\nhaystack NN\nhaystacks NNS\nhazard NN\nhazardous JJ\nhazardous-waste NN\nhazardous-waste-site NN\nhazards NNS\nhaze NN\nhazel JJ\nhazelnut NN\nhazelnuts NNS\nhazes NNS\nhazy JJ\nhe PRP\nhe's VBZ\nhe-goes-or-I-go JJ\nhe-man NN\nhead NN\nhead-and-shoulders NN\nhead-butting JJ\nhead-cold NN\nhead-hunting NN\nhead-in-the-clouds JJ\nhead-injury NN\nhead-on RB\nhead-to-head JJ\nhead-topper NN\nhead-tossing NN\nheadache NN\nheadaches NNS\nheadboard NN\nheadcount NN\nheadcount-control NN\nheaddress NN\nheade NN\nheaded VBN\nheader NN\nheadhunters NNS\nheading VBG\nheadings NNS\nheadland NN\nheadlands NNS\nheadless JJ\nheadlights NNS\nheadline NN\nheadline-grabbing JJ\nheadlined VBN\nheadlines NNS\nheadlinese NN\nheadlining VBG\nheadlong RB\nheadmaster NN\nheadphones NNS\nheadquarter JJ\nheadquartered VBN\nheadquarters NN\nheadrest NN\nheadrests NNS\nheadroom NN\nheads NNS\nheadsets NNS\nheadship NN\nheadsman NN\nheadstand NN\nheadstands NNS\nheadstones NNS\nheadstrong JJ\nheadwall NN\nheadwalls NNS\nheadwaters NNS\nheadway NN\nheady JJ\nheal VB\nhealed VBN\nhealer NN\nhealers NNS\nhealing NN\nhealth NN\nhealth-and-benefits JJ\nhealth-benefits JJ\nhealth-care NN\nhealth-care-product NN\nhealth-care-services JJ\nhealth-club JJ\nhealth-conscious JJ\nhealth-coverage NN\nhealth-expenditure JJ\nhealth-food NN\nhealth-insurance NN\nhealth-maintenance NN\nhealth-oriented JJ\nhealth-products NNS\nhealth-related JJ\nhealth-services JJ\nhealthcare NN\nhealthful JJ\nhealthier JJR\nhealthiest JJS\nhealthily RB\nhealthy JJ\nhealthy-looking JJ\nheap NN\nheaped VBN\nheaping VBG\nheaps NNS\nhear VB\nheard VBN\nheare VBP\nhearer NN\nhearers NNS\nhearest VBP\nhearing NN\nhearing-aid NN\nhearing-impaired VBN\nhearings NNS\nhears VBZ\nhearsay NN\nhearse NN\nheart NN\nheart-disease NN\nheart-pounding JJ\nheart-rending JJ\nheart-stopping JJ\nheart-to-heart JJ\nheart-warming JJ\nheart-wrenching JJ\nheartbeat NN\nheartbreak NN\nheartbreaking JJ\nheartburn NN\nheartened VBN\nheartening JJ\nheartfelt JJ\nhearth NN\nhearths NNS\nheartiest JJS\nheartily RB\nheartland NN\nheartless JJ\nhearts NNS\nheartstopping JJ\nheartstring-plucking JJ\nheartthrob NN\nheartwarmingly RB\nhearty JJ\nheat NN\nheat-absorbing JJ\nheat-and-eat JJ\nheat-denatured JJ\nheat-processing JJ\nheat-resistant JJ\nheat-treatment NN\nheat-using JJ\nheated VBN\nheatedly RB\nheater NN\nheaters NNS\nheath NN\nheathen JJ\nheathenish JJ\nheather NN\nheating NN\nheats VBZ\nheatshield NN\nheave NN\nheaved VBD\nheaven NN\nheavenly JJ\nheavens NNS\nheavenward JJ\nheavers NNS\nheaves NN\nheavier JJR\nheavier-than-normal JJ\nheavier-than-usual JJ\nheavies NNS\nheaviest JJS\nheavily RB\nheavily-upholstered JJ\nheaviness NN\nheaving VBG\nheavy JJ\nheavy-armed JJ\nheavy-construction NN\nheavy-crude NN\nheavy-duty JJ\nheavy-electrical-goods JJ\nheavy-faced JJ\nheavy-framed JJ\nheavy-handed JJ\nheavy-handedness NN\nheavy-hitter NN\nheavy-industry NN\nheavy-machine JJ\nheavy-tracked JJ\nheavy-truck NN\nheavy-water NN\nheavy-weight JJ\nheavyweight NN\nheavyweights NNS\nhebephrenic JJ\nhecatomb NN\nheck NN\nheckled VBN\nhectares NNS\nhectic JJ\nhedge VB\nhedged VBN\nhedgehogs NNS\nhedgers NNS\nhedges NNS\nhedging VBG\nhedonism NN\nhedonistic JJ\nheebie-jeebies NNS\nheed VB\nheeded VBD\nheedless JJ\nheeds VBZ\nheel NN\nheelers NNS\nheels NNS\nheelsthe DT\nheft NN\nhefted VBD\nheftier JJR\nheftiest JJS\nhefty JJ\nhegemonic JJ\nhegemony NN\nhehe UH\nheifers NNS\nheighborhoods NNS\nheight NN\nheight-to-diameter NN\nheighten VB\nheightened VBN\nheightening VBG\nheightens VBZ\nheights NNS\nheinous JJ\nheir NN\nheir-apparent JJ\nheir-designate NN\nheiress NN\nheirs NNS\nheist NN\nheisted VBD\nhel NN\nheld VBN\nhelicopter NN\nhelicopter-borne JJ\nhelicopters NNS\nhelio-copter NN\nhelio-copters NNS\nheliocentric JJ\nhelion NN\nheliotrope NN\nheliports NNS\nhelium NN\nhelium-4 CD\nhelix NN\nhell NN\nhell-bent JJ\nhell-bound JJ\nhell-fire NN\nhell-for-leather RB\nhell-kitten NN\nhell-raising NN\nhellfire NN\nhello UH\nhells NNS\nhelluva JJ\nhelm NN\nhelmet NN\nhelmeted JJ\nhelmets NNS\nhelmsman NN\nhelp VB\nhelp-me-make-it-through-the-fiscal-nigh JJ\nhelp-wanted JJ\nhelped VBD\nhelper NN\nhelpers NNS\nhelpful JJ\nhelpfully RB\nhelpfulness NN\nhelping VBG\nhelpings NNS\nhelpless JJ\nhelplessly RB\nhelplessness NN\nhelpmate NN\nhelps VBZ\nhelsq'iyokom FW\nhelter-skelter JJ\nhem NN\nhematologist NN\nhemetin NN\nhemisphere NN\nhemispheric JJ\nhemispherical JJ\nhemlines NNS\nhemlocks NNS\nhemmed VBN\nhemming VBG\nhemoglobin NN\nhemolytic JJ\nhemophilia NN\nhemophiliacs NNS\nhemorrhage NN\nhemorrhaged VBN\nhemorrhages NNS\nhemorrhaging VBG\nhemorrhoids NNS\nhemosiderin NN\nhems NNS\nhen NN\nhence RB\nhenceforth RB\nhenchman NN\nhenchmen NNS\nhenpecked JJ\nhens NNS\nhepatitis NN\nheptachlor NN\nher PRP$\nherald VB\nheralded VBN\nheraldic JJ\nheralding VBG\nherb NN\nherbaceous JJ\nherbal JJ\nherbicide NN\nherbicides NNS\nherbs NNS\nherculean JJ\nherd NN\nherd-owner NN\nherded VBN\nherdin NN\nherding VBG\nherds NNS\nherdsmen NNS\nhere RB\nhere-for JJ\nhere... :\nhereabout JJ\nhereabouts RB\nhereafter RB\nhereby RB\nhereditary JJ\nheredity NN\nherein RB\nhereinafter RB\nheresy NN\nheretical JJ\nheretics NNS\nheretofore RB\nheretofore-accepted JJ\nhereunto RB\nherewith RB\nheritage NN\nheritages NNS\nhermeneutics NN\nhermetic JJ\nhermetically RB\nherniated VBN\nhero NN\nhero-worship NN\nhero-worshippers NNS\nheroes NNS\nheroic JJ\nheroically RB\nheroics NNS\nheroin NN\nheroin-user NN\nheroine NN\nheroism NN\nherons NNS\nherpetological JJ\nherpetologist NN\nherpetologists NNS\nherpetology NN\nherring NN\nherringbone NN\nhers PRP\nherself PRP\nhesitance NN\nhesitancy NN\nhesitant JJ\nhesitantly RB\nhesitate VB\nhesitated VBD\nhesitates VBZ\nhesitating VBG\nhesitatingly RB\nhesitation NN\nheterogamous JJ\nheterogeneity NN\nheterogeneous JJ\nheterozygous JJ\nheute FW\nhev VB\nhevin VBG\nhewed VBD\nhewn VBN\nhews VBZ\nhex NN\nhexagon NN\nhexagonal JJ\nhexametaphosphate NN\nhexameter NN\nhey UH\nheyday NN\nhi UH\nhi-fi NN\nhi-graders NNS\nhi-tech JJ\nhiatus NN\nhibachi NN\nhibernate VBP\nhiccup NN\nhiccups NNS\nhick NN\nhick-self NN\nhickory NN\nhid VBD\nhidden VBN\nhide VB\nhide-out JJ\nhideaway NN\nhidebound JJ\nhideous JJ\nhideously RB\nhideout NN\nhideouts NNS\nhiders NNS\nhides NNS\nhiding VBG\nhierarchical JJ\nhierarchies NNS\nhierarchy NN\nhifalutin JJ\nhigh JJ\nhigh-VAT JJ\nhigh-altitude JJ\nhigh-art JJ\nhigh-backed JJ\nhigh-balance JJ\nhigh-beta JJ\nhigh-blood-pressure JJ\nhigh-button JJ\nhigh-capacity JJ\nhigh-ceilinged JJ\nhigh-class JJ\nhigh-cost JJ\nhigh-coupon JJ\nhigh-crime JJ\nhigh-current JJ\nhigh-definition JJ\nhigh-density JJ\nhigh-echelon JJ\nhigh-efficiency NN\nhigh-end JJ\nhigh-energy JJ\nhigh-fiber JJ\nhigh-fidelity NN\nhigh-flying JJ\nhigh-frequency JJ\nhigh-gain JJ\nhigh-gloss JJ\nhigh-grade JJ\nhigh-growth JJ\nhigh-handed JJ\nhigh-heeled JJ\nhigh-horsepower JJ\nhigh-income JJ\nhigh-inflation JJ\nhigh-intensity JJ\nhigh-interest JJ\nhigh-interest-rate JJ\nhigh-interestrate JJ\nhigh-legged JJ\nhigh-level JJ\nhigh-leverage JJ\nhigh-living JJ\nhigh-loss JJ\nhigh-mileage JJ\nhigh-minded JJ\nhigh-mindedness NN\nhigh-mounted JJ\nhigh-net NN\nhigh-net-worth JJ\nhigh-octane JJ\nhigh-paid JJ\nhigh-paying JJ\nhigh-performance JJ\nhigh-performing JJ\nhigh-pitched JJ\nhigh-polluting JJ\nhigh-positive JJ\nhigh-power JJ\nhigh-powered JJ\nhigh-pressure JJ\nhigh-price JJ\nhigh-priced JJ\nhigh-priority JJ\nhigh-production JJ\nhigh-profile JJ\nhigh-profit JJ\nhigh-profit-margin JJ\nhigh-profitability NN\nhigh-protein JJ\nhigh-purity JJ\nhigh-quality JJ\nhigh-ranking JJ\nhigh-rate JJ\nhigh-rated JJ\nhigh-rep JJ\nhigh-resolution JJ\nhigh-rise JJ\nhigh-rise-project JJ\nhigh-rises NNS\nhigh-risk JJ\nhigh-rolling JJ\nhigh-salaried JJ\nhigh-school NN\nhigh-security JJ\nhigh-set JJ\nhigh-society NN\nhigh-sounding JJ\nhigh-speed JJ\nhigh-spirited JJ\nhigh-stakes JJ\nhigh-standard JJ\nhigh-stepped JJ\nhigh-strung JJ\nhigh-sudsing JJ\nhigh-sulfur JJ\nhigh-tailed VBD\nhigh-tax JJ\nhigh-tech JJ\nhigh-tech-sounding JJ\nhigh-technological JJ\nhigh-technology NN\nhigh-temperature JJ\nhigh-ticket JJ\nhigh-toned JJ\nhigh-topped JJ\nhigh-up JJ\nhigh-value JJ\nhigh-velocity JJ\nhigh-visibility JJ\nhigh-vitamin JJ\nhigh-voltage JJ\nhigh-volume JJ\nhigh-wage JJ\nhigh-water JJ\nhigh-wire JJ\nhigh-yield JJ\nhigh-yielding JJ\nhigh-yields NNS\nhighball NN\nhighboard NN\nhighboy NN\nhighbrow JJ\nhighbrow-furrowing NN\nhighbrows NNS\nhigher JJR\nhigher-caffeine JJ\nhigher-caliber JJR\nhigher-capacity JJ\nhigher-cost JJ\nhigher-density JJ\nhigher-education JJ\nhigher-fat JJR\nhigher-grade JJ\nhigher-income JJ\nhigher-level JJ\nhigher-margin JJR\nhigher-multiple JJ\nhigher-octane JJ\nhigher-paid JJ\nhigher-paying JJ\nhigher-priced JJ\nhigher-profit JJR\nhigher-quality JJ\nhigher-ranking JJ\nhigher-rate JJ\nhigher-salaried JJR\nhigher-technology JJR\nhigher-than-anticipated JJ\nhigher-than-expected JJ\nhigher-than-normal JJ\nhigher-than-retail JJ\nhigher-toned JJ\nhigher-yielding JJ\nhighest JJS\nhighest-grossing JJS\nhighest-paid JJ\nhighest-pitched JJ\nhighest-priced JJS\nhighest-quality JJ\nhighest-ranking JJ\nhighest-rated JJ\nhighest-volume JJ\nhighest-yielding JJ\nhighfalutin JJ\nhighflying JJ\nhighland NN\nhighlands NNS\nhighlight VB\nhighlighted VBN\nhighlighting VBG\nhighlights VBZ\nhighly RB\nhighly-confident JJ\nhighly-leveraged JJ\nhighly-regarded JJ\nhighly-touted JJ\nhighness NN\nhighpoint NN\nhighpriced JJ\nhighrises NNS\nhighrisk NN\nhighroad NN\nhighs NNS\nhighschool NN\nhightailing VBG\nhightechnologies NNS\nhightops NNS\nhighway NN\nhighway-construction JJ\nhighway-relief JJ\nhighway-safety NN\nhighwayman NN\nhighways NNS\nhighyield JJ\nhijacked VBN\nhijacker NN\nhijackers NNS\nhijacking NN\nhike NN\nhiked VBD\nhiker NN\nhikers NNS\nhikes NNS\nhiking VBG\nhilar JJ\nhilarious JJ\nhilariously RB\nhilarity NN\nhill NN\nhillbilly NN\nhills NNS\nhillside NN\nhillsides NNS\nhilltop NN\nhilltops NNS\nhilly JJ\nhilt NN\nhilum NN\nhim PRP\nhim. NN\nhimself PRP\nhimselfe NN\nhind JJ\nhinder VB\nhindered VBN\nhindering VBG\nhinders VBZ\nhindmost JJ\nhindquarters NNS\nhindrance NN\nhindrances NNS\nhindsight NN\nhinge VB\nhinged VBN\nhinges NNS\nhint NN\nhinted VBD\nhinterlands NNS\nhinting VBG\nhints NNS\nhip NN\nhipline NN\nhipper JJR\nhippie NN\nhips NNS\nhipster NN\nhir PRP$\nhire VB\nhired VBN\nhirelings NNS\nhires VBZ\nhiring VBG\nhis PRP$\nhis\\/her JJR\nhiss NNS\nhissed VBD\nhisself PRP\nhissing NN\nhistochemical JJ\nhistology NN\nhistorian NN\nhistorians NNS\nhistoric JJ\nhistorical JJ\nhistorical-claims NNS\nhistorically RB\nhistorichomes NNS\nhistoricism NN\nhistoricity NN\nhistoricized VBN\nhistories NNS\nhistoriography NN\nhistory NN\nhistory-making JJ\nhistory-reenactment NN\nhistrionics NNS\nhit VBD\nhit-and-miss JJ\nhit-and-run JJ\nhit-making JJ\nhit-man NN\nhit-run NN\nhitch NN\nhitched VBN\nhitches NNS\nhitching NN\nhither RB\nhitherto RB\nhitless JJ\nhitmakers NNS\nhitman NN\nhits NNS\nhitter NN\nhitters NNS\nhitting VBG\nhitting-pitching JJ\nhitwoman NN\nhive NN\nhmmm UH\nho UH\nho-hum JJ\nhoard NN\nhoarder NN\nhoarding NN\nhoards NNS\nhoarse JJ\nhoarsely RB\nhoarseness NN\nhoaxes NNS\nhob NN\nhobbies NNS\nhobbing VBG\nhobble VB\nhobbled VBN\nhobbles VBZ\nhobbling VBG\nhobby NN\nhobbyist NN\nhobbyists NNS\nhobnob VB\nhobo NN\nhobos NNS\nhoc FW\nhock NN\nhockey NN\nhocking VBG\nhodge-podge NN\nhodgepodge NN\nhoe NN\nhoes NNS\nhog NN\nhogging VBG\nhogs NNS\nhoi-polloi FW\nhoist VB\nhoisted VBN\nhoisting NN\nhokey JJ\nhold VB\nhold-back NN\nholder NN\nholders NNS\nholdin VBG\nholding VBG\nholdings NNS\nholdouts NNS\nholdovers NNS\nholds VBZ\nholdup NN\nholdups NNS\nhole NN\nholed VBN\nholes NNS\nholiday NN\nholiday-season JJ\nholidays NNS\nholier-than-thou JJ\nholies NNS\nholiest JJS\nholistic JJ\nholler VB\nhollered VBD\nhollering VBG\nhollers VBZ\nhollow JJ\nhollowness NN\nhollows NNS\nhollowware NN\nhollyhock NN\nhollyhocks NNS\nholocaust NN\nholored VBN\nholster NN\nholstered VBD\nholy JJ\nholystones NNS\nhomage NN\nhome NN\nhome-acquisition JJ\nhome-and-home JJ\nhome-audience NN\nhome-blend NN\nhome-bound JJ\nhome-bred JJ\nhome-builder NN\nhome-building JJ\nhome-buying JJ\nhome-care JJ\nhome-center NN\nhome-city NN\nhome-comings NNS\nhome-computer NN\nhome-delivered JJ\nhome-delivery NN\nhome-entertainment JJ\nhome-equity JJ\nhome-fashion NN\nhome-for-the-night NN\nhome-furnishing NN\nhome-furnishings NNS\nhome-grown JJ\nhome-health-care JJ\nhome-improvement NN\nhome-market JJ\nhome-mortgage JJ\nhome-nursing JJ\nhome-office JJ\nhome-owners NNS\nhome-ownership NN\nhome-plate NN\nhome-produced JJ\nhome-run JJ\nhome-service JJ\nhome-sharing NN\nhome-shopping NN\nhome-state JJ\nhome-team JJ\nhome-trading NN\nhome-video JJ\nhome. NN\nhomebound JJ\nhomebuilder NN\nhomebuilders NNS\nhomebuilding NN\nhomecoming NN\nhomecomings NNS\nhomeequity NN\nhomefolk NN\nhomeland NN\nhomelands NNS\nhomeless JJ\nhomelessness NN\nhomely JJ\nhomemade JJ\nhomemaker NN\nhomemakers NNS\nhomeowner NN\nhomeowners NNS\nhomeownership NN\nhomer NN\nhomered VBD\nhomers NNS\nhomerun NN\nhomes NNS\nhomeshopping NN\nhomesick JJ\nhomesickness NN\nhomespun JJ\nhomestead NN\nhomesteaders NNS\nhomesteads NNS\nhometown NN\nhomeward RB\nhomewards RB\nhomework NN\nhomey JJ\nhomicidal JJ\nhomicide NN\nhomicides NNS\nhomie NN\nhomier JJR\nhomies NNS\nhomilies NNS\nhoming JJ\nhomo-hatred NN\nhomoerotic JJ\nhomoeroticism NN\nhomogenate NN\nhomogeneity NN\nhomogeneous JJ\nhomogeneously RB\nhomogenization NN\nhomogenize VB\nhomogenized VBN\nhomogenous JJ\nhomologous RB\nhomophobia NN\nhomophobic JJ\nhomopolymers NNS\nhomosexual JJ\nhomosexuality NN\nhomosexuals NNS\nhomozygous JJ\nhon NN\nhone VB\nhoned VBN\nhonest JJ\nhonest-to-Betsy RB\nhonestly RB\nhonesty NN\nhoney NN\nhoney-in-the-sun JJ\nhoneybee NN\nhoneybees NNS\nhoneycombed JJ\nhoneymoon NN\nhoneymooned VBD\nhoneymooners NNS\nhoneymooning NN\nhoneysuckle NN\nhonk VBP\nhonky-tonk NN\nhonkytonks NNS\nhonor NN\nhonorable JJ\nhonorably RB\nhonorarium NN\nhonorariums NNS\nhonorary JJ\nhonored VBN\nhonoree NN\nhonorific NN\nhonoring VBG\nhonors NNS\nhonour NN\nhonoured VBN\nhoo-pig UH\nhooch NN\nhood NN\nhoodle UH\nhoodlum NN\nhoodlums NNS\nhoods NNS\nhoodwinked VBN\nhoof NN\nhoof-and-mouth JJ\nhoofmarks NNS\nhoofs NNS\nhook NN\nhook-up NN\nhooked VBN\nhooker NN\nhookers NNS\nhooking VBG\nhooks NNS\nhookup NN\nhookups NNS\nhookworm NN\nhooliganism NN\nhoop NN\nhoopla NN\nhoops NNS\nhoosegow NN\nhoosegows NNS\nhoot NN\nhooted VBD\nhooting JJ\nhoots NNS\nhooves NNS\nhop NN\nhop-skipped VBN\nhope NN\nhope... :\nhoped VBD\nhoped-for JJ\nhopeful JJ\nhopefully RB\nhopefuls NNS\nhopeless JJ\nhopelessly RB\nhopelessness NN\nhopes VBZ\nhoping VBG\nhopped VBD\nhopper NN\nhopping VBG\nhoppled VBN\nhopples NNS\nhops VBZ\nhopscotch NN\nhopscotched VBD\nhorde NN\nhordes NNS\nhorizon NN\nhorizons NNS\nhorizontal JJ\nhorizontal-restraints NNS\nhorizontally RB\nhormonal JJ\nhormone NN\nhormone-treated JJ\nhormones NNS\nhorn NN\nhorn-rim JJ\nhorn-rimmed JJ\nhorned JJ\nhornet NN\nhorns NNS\nhoroscope NN\nhoroscopes NNS\nhorrendous JJ\nhorrible JJ\nhorribles NNS\nhorribly RB\nhorrid JJ\nhorrific JJ\nhorrified VBN\nhorrifying JJ\nhorrifyingly RB\nhorror NN\nhorrors NNS\nhors FW\nhorse NN\nhorse-blanket RB\nhorse-breeding NN\nhorse-chestnut NN\nhorse-drawn JJ\nhorse-meat NN\nhorse-packing JJ\nhorse-player NN\nhorse-playing JJ\nhorse-radish NN\nhorse-steak NN\nhorse-trading NN\nhorse-trail NN\nhorseback NN\nhorsedom NN\nhorseflesh NN\nhorsehair NN\nhorselike JJ\nhorseman NN\nhorsemanship NN\nhorsemeat NN\nhorsemen NNS\nhorseplay NN\nhorsepower NN\nhorseradish NN\nhorses NNS\nhorseshoers NNS\nhorsewoman NN\nhorticultural JJ\nhorticultural-products NNS\nhorticulturally RB\nhorticulture NN\nhorticulturist NN\nhosannas NNS\nhose NN\nhoses NNS\nhospice NN\nhospices NNS\nhospitable JJ\nhospital NN\nhospital-care NN\nhospitality NN\nhospitalization NN\nhospitalizations NNS\nhospitalized VBN\nhospitals NNS\nhoss NN\nhosses NNS\nhost NN\nhost-specific JJ\nhostage NN\nhostages NNS\nhoste NN\nhosted VBN\nhostelries NNS\nhostess NN\nhostesses NNS\nhostile JJ\nhostile-bid JJ\nhostilities NNS\nhostility NN\nhosting VBG\nhostler NN\nhosts NNS\nhot JJ\nhot-air JJ\nhot-blooded JJ\nhot-buttons NNS\nhot-cereals NNS\nhot-cold JJ\nhot-colored JJ\nhot-dipped JJ\nhot-dog JJ\nhot-formed JJ\nhot-honey JJ\nhot-line NN\nhot-pink JJ\nhot-rolled JJ\nhot-selling JJ\nhot-shot JJ\nhot-slough JJ\nhot-tempered JJ\nhot-ticket JJ\nhot-water NN\nhotbed NN\nhotdog NN\nhotdogs NNS\nhotel NN\nhotel-casino NN\nhotel-casinos NNS\nhotel-management NN\nhotel-motel NN\nhotel-restaurant NN\nhotel\\/casino NN\nhotel\\/entertainment NN\nhotelier NN\nhoteliers NNS\nhotelman NN\nhotels NNS\nhothouse JJ\nhothouses NNS\nhotline NN\nhotlines NNS\nhotly RB\nhotrod NN\nhotter JJR\nhottest JJS\nhottest-selling JJS\nhound NN\nhounded VBD\nhounding VBG\nhounds NNS\nhour NN\nhour-and-a-half NN\nhour-long JJ\nhourlong JJ\nhourly JJ\nhours NNS\nhouse NN\nhouse-building NN\nhouse-cleaning NN\nhouse-painting JJ\nhouseboat NN\nhouseboats NNS\nhousebound JJ\nhousebreakers NNS\nhousebreaking NN\nhousebroken JJ\nhousecleaning NN\nhoused VBN\nhouseful NN\nhousehld JJ\nhousehold NN\nhousehold-products NNS\nhousehold-type JJ\nhouseholder NN\nhouseholders NNS\nhouseholds NNS\nhousekeeper NN\nhousekeeping NN\nhouseman NN\nhousemate NN\nhousepaint NN\nhouses NNS\nhousewares NNS\nhousewarming JJ\nhousewife NN\nhousewives NNS\nhousework NN\nhousing NN\nhousing-assistance JJ\nhousing-construction NN\nhousing-discrimination NN\nhousing-loan NN\nhousing-policy NN\nhousing-related JJ\nhousings NNS\nhove VBD\nhovel NN\nhovels NNS\nhover VB\nhovered VBD\nhoverin VBG\nhovering VBG\nhovers VBZ\nhow WRB\nhow-to JJ\nhowdy UH\nhowe WRB\nhowever RB\nhowitzer NN\nhowl NN\nhowled VBD\nhowlers NNS\nhowling VBG\nhowls NNS\nhowse NN\nhowsomever RB\nhoydenish JJ\nhp NN\nhp. NN\nhr NN\nhr. NN\nhttp://bit.ly/ NNP\nhub NN\nhub-and-spoke JJ\nhubba UH\nhubbub NN\nhubby NN\nhubris NN\nhubs NNS\nhuckster NN\nhuckstering VBG\nhuddle NN\nhuddled VBD\nhuddles NNS\nhuddling VBG\nhue NN\nhues NNS\nhuffed VBD\nhug NN\nhuge JJ\nhugely RB\nhugged VBD\nhugging VBG\nhuggings NNS\nhugh JJ\nhugs NNS\nhuh UH\nhuh-uh JJ\nhula NN\nhulk NN\nhulking JJ\nhulks NNS\nhull NN\nhull-first RB\nhullabaloo NN\nhum NN\nhumaine NN\nhuman JJ\nhuman-based JJ\nhuman-generated JJ\nhuman-leukocyte-derived JJ\nhuman-resource JJ\nhuman-resources NNS\nhuman-rights JJ\nhuman-robot NN\nhuman-sounding JJ\nhumane JJ\nhumanely RB\nhumaneness NN\nhumanism NN\nhumanist JJ\nhumanistic JJ\nhumanists NNS\nhumanitarian JJ\nhumanities NNS\nhumanity NN\nhumanize VB\nhumanizing VBG\nhumankind NN\nhumanly RB\nhumanness NN\nhumans NNS\nhumble JJ\nhumbled VBN\nhumblest JJS\nhumbling JJ\nhumbly RB\nhumid JJ\nhumidity NN\nhumilation NN\nhumiliated VBN\nhumiliates VBZ\nhumiliating JJ\nhumiliatingly RB\nhumiliation NN\nhumility NN\nhumly RB\nhummable JJ\nhummed VBD\nhumming NN\nhummocks NNS\nhumongous JJ\nhumor NN\nhumorist NN\nhumorists NNS\nhumorless JJ\nhumorous JJ\nhumors NNS\nhumour NN\nhump NN\nhump-backed JJ\nhumped NN\nhums VBZ\nhunch NN\nhunched VBN\nhunched-up JJ\nhunches NNS\nhunching VBG\nhundred CD\nhundred-and-eighty-degree JJ\nhundred-and-fifty JJ\nhundred-leaf JJ\nhundred-odd JJ\nhundred-thousand-share JJ\nhundred-yen JJ\nhundreds NNS\nhundreds-of-billions-of-yen JJ\nhundredth JJ\nhundredweight NN\nhung VBD\nhunger NN\nhungrier JJR\nhungrily RB\nhungry JJ\nhunk NN\nhunker VB\nhunkered VBN\nhunky-dory JJ\nhunt NN\nhunted VBN\nhunter NN\nhunter-gatherers NNS\nhunter-killer NN\nhunters NNS\nhunting NN\nhunting-gear JJ\nhunts VBZ\nhurdle NN\nhurdled VBD\nhurdles NNS\nhurl VB\nhurled VBD\nhurler NN\nhurlers NNS\nhurley NN\nhurling VBG\nhurls VBZ\nhurrah NN\nhurricane NN\nhurricane-hit JJ\nhurricane-prone JJ\nhurricane-ravaged JJ\nhurricane-related JJ\nhurricane-stricken JJ\nhurricane-wracked JJ\nhurricanes NNS\nhurried VBD\nhurriedly RB\nhurries VBZ\nhurry NN\nhurrying VBG\nhurt VBN\nhurting VBG\nhurtled VBD\nhurtling VBG\nhurts VBZ\nhusband NN\nhusband-and-wife JJ\nhusband-stealer NN\nhusband-wife JJ\nhusbandry NN\nhusbands NNS\nhusbun NN\nhush JJ\nhush-hush JJ\nhushed JJ\nhusk NN\nhuskily RB\nhuskiness NN\nhusks NNS\nhusky JJ\nhusky-voiced JJ\nhustings NN\nhustle VB\nhustled VBD\nhustler NN\nhustlers NNS\nhustles VBZ\nhustling VBG\nhut NN\nhutch NN\nhutment NN\nhutments NNS\nhuts NNS\nhuzzahs NNS\nhyacinths NNS\nhyaline JJ\nhyalinization NN\nhyaluronic JJ\nhybrid JJ\nhybrids NNS\nhydra-headed JJ\nhydrated JJ\nhydration NN\nhydraulic JJ\nhydraulically RB\nhydraulics NNS\nhydride NN\nhydrides NNS\nhydrido NN\nhydrocarbon NN\nhydrocarbon-storage NN\nhydrocarbons NNS\nhydrochemistry NN\nhydrochloride NN\nhydrochlorothiazide NN\nhydroelectric JJ\nhydrogen NN\nhydrogens NNS\nhydrolysis NN\nhydrolyzed VBN\nhydrophilic JJ\nhydrophobia NN\nhydrophobic JJ\nhydrostatic JJ\nhydrotherapy NN\nhydrous JJ\nhydroxyl-rich JJ\nhydroxylation NN\nhydroxymethyl NN\nhyenas NNS\nhygiene NN\nhygienic JJ\nhym PRP\nhymen NN\nhymens NNS\nhymn NN\nhymns NNS\nhymselfe NN\nhype NN\nhyped VBD\nhyped-up JJ\nhyper JJ\nhyper-competitive JJ\nhyper-inflation NN\nhyper-trader NN\nhyperactive JJ\nhyperbole NN\nhyperbolic JJ\nhyperbolically RB\nhypercellularity NN\nhyperemia NN\nhyperemic JJ\nhyperfine JJ\nhyperinflation NN\nhypermarket NN\nhypermarkets NNS\nhyperplasia NN\nhypersonic JJ\nhypertension NN\nhypertrophied VBN\nhypertrophy NN\nhypervelocity NN\nhyperventilating NN\nhyperzeal NN\nhyphenated JJ\nhyphens NNS\nhyping VBG\nhypnosis NN\nhypnotic JJ\nhypnotically RB\nhypnotized VBN\nhypo JJ\nhypoactive JJ\nhypoadrenocorticism NN\nhypocellularity NN\nhypocracy NN\nhypocrisies NNS\nhypocrisy NN\nhypocrite NN\nhypocrites NNS\nhypocritical JJ\nhypodermic JJ\nhypoglycemia NN\nhypoglycemic JJ\nhypophyseal JJ\nhypophysectomised VBN\nhypostatization NN\nhypothalamic JJ\nhypothalamic-cortical JJ\nhypothalamically RB\nhypothalamus NN\nhypotheses NNS\nhypothesis NN\nhypothesize VB\nhypothesized VBN\nhypothetical JJ\nhypothetically RB\nhypothyroidism NN\nhys PRP$\nhysterectomy NN\nhysteria NN\nhysterical JJ\nhysterically RB\nhysteron-proteron NN\nhytt PRP\ni PRP\ni'm VBP\ni've VBP\ni-th NN\ni.d NN\ni.d. NN\ni.e. FW\ni860 NN\niMac NNP\niPad NNP\niPhone NNP\niPod NNP\niambic JJ\nibuprofen NN\nice NN\nice-baggers NNS\nice-breaker JJ\nice-chest NN\nice-cold NN\nice-core NN\nice-cream NN\nice-cubes NNS\nice-feeling NN\nice-filled JJ\nice-free JJ\niceberg NN\nicebergs NNS\nicebound JJ\nicebox NN\nicecap NN\niced JJ\niced-tea NN\nicicle NN\nicing NN\nicon NN\niconoclasm NN\niconoclast NN\niconoclastic JJ\nicons NNS\nicy JJ\nidea NN\nidea-exchange NN\nideal JJ\nidealism NN\nidealisms NNS\nidealist NN\nidealistic JJ\nidealization NN\nidealized VBN\nideally RB\nideals NNS\nideas NNS\nideational JJ\nidentical JJ\nidentically RB\nidentifiable JJ\nidentification NN\nidentifications NNS\nidentified VBN\nidentifier NN\nidentifiers NNS\nidentifies VBZ\nidentify VB\nidentifying VBG\nidentities NNS\nidentity NN\nidentity-management NN\nideological JJ\nideologically RB\nideologies NNS\nideologist NN\nideologists NNS\nideologues NNS\nideology NN\nides NNS\nidiocies NNS\nidiocy NN\nidiom NN\nidiomatic JJ\nidioms NNS\nidiosyncrasies NNS\nidiosyncratic JJ\nidiot JJ\nidiot-grin NN\nidiotic JJ\nidiotically RB\nidiots NNS\nidiotypes NNS\nidk VBP\nidle JJ\nidled VBN\nidleness NN\nidler NN\nidlers NNS\nidling VBG\nidlings NNS\nidly RB\nidol NN\nidol-worship NN\nidolatry NN\nidolize VBP\nidolized JJ\nidols NNS\nidosyncratic JJ\nidyll NN\nidyllic JJ\nif IN\niffy JJ\nifs NNS\nigloo NN\nigneous JJ\nignite VB\nignited VBD\nignition NN\nignoble JJ\nignominious JJ\nignominiously RB\nignoramus NN\nignorance NN\nignorant JJ\nignore VB\nignored VBN\nignores VBZ\nignoring VBG\niguana JJ\niguanas NNS\niight UH\niit PRP\nij NN\nikey-kikey JJ\nileum NN\niliac JJ\nilk NN\nill JJ\nill-advised JJ\nill-conceived JJ\nill-defined JJ\nill-disposed JJ\nill-equipped JJ\nill-fated JJ\nill-fitting JJ\nill-founded JJ\nill-gotten JJ\nill-mannered JJ\nill-prepared JJ\nill-starred JJ\nill-suited JJ\nill-timed JJ\nill-trained JJ\nill-understood JJ\nillegal JJ\nillegalities NNS\nillegality NN\nillegally RB\nillegitimacy NN\nillegitimate JJ\nillicit JJ\nillicitly RB\nilliquid JJ\nilliquidity NN\nilliteracy NN\nilliterate JJ\nillness NN\nillnesses NNS\nillogic NN\nillogical JJ\nills NNS\nilluminate VB\nilluminated VBN\nilluminates VBZ\nilluminating JJ\nillumination NN\nilluminations NNS\nillumine VB\nillumined VBD\nillumines VBZ\nillusion NN\nillusionary JJ\nillusionist NN\nillusions NNS\nillusive JJ\nillusiveness NN\nillusory JJ\nillustrate VB\nillustrated VBN\nillustrates VBZ\nillustrating VBG\nillustration NN\nillustrations NNS\nillustrative JJ\nillustrator NN\nillustrators NNS\nillustrious JJ\nim VBP\nima VBP\nimage NN\nimage-building JJ\nimage-making NN\nimage-processing NN\nimage-provoking JJ\nimaged VBN\nimagery NN\nimages NNS\nimaginable JJ\nimaginary JJ\nimagination NN\nimaginations NNS\nimaginative JJ\nimaginatively RB\nimagine VB\nimagined VBN\nimagines VBZ\nimaging NN\nimagining VBG\nimaginings NNS\nimagnation NN\nimbalance NN\nimbalances NNS\nimbecile NN\nimbecility NN\nimbedded VBN\nimbibe VB\nimbibed VBN\nimbroglio NN\nimbruing VBG\nimbued VBN\nimcomparable JJ\nimcomplete JJ\nimitate VB\nimitated VBN\nimitates VBZ\nimitating VBG\nimitation NN\nimitation-caning JJ\nimitation-woodgrain NN\nimitations NNS\nimitative JJ\nimitators NNS\nimma VBP\nimmaculate JJ\nimmanent JJ\nimmaterial JJ\nimmature JJ\nimmaturity NN\nimmeasurable JJ\nimmeasurably RB\nimmediacies NNS\nimmediacy NN\nimmediate JJ\nimmediate-response JJ\nimmediately RB\nimmemorial JJ\nimmense JJ\nimmensely RB\nimmensities NNS\nimmensity NN\nimmersed VBN\nimmersion NN\nimmigrant NN\nimmigrants NNS\nimmigrated VBD\nimmigration NN\nimminence NN\nimminent JJ\nimminently RB\nimmiserated JJ\nimmobility NN\nimmobilized VBN\nimmoderate JJ\nimmodest JJ\nimmodesty NN\nimmoral JJ\nimmoralities NNS\nimmorality NN\nimmortal JJ\nimmortality NN\nimmortalized VBN\nimmovable JJ\nimmune JJ\nimmune-system NN\nimmunities NNS\nimmunity NN\nimmunization NN\nimmunized VBN\nimmunodeficiency NN\nimmunoelectrophoresis NN\nimmunoglobulin NN\nimmunological JJ\nimmunologist NN\nimmunology NN\nimmunosuppressive JJ\nimmutable JJ\nimpact NN\nimpacted VBN\nimpaction NN\nimpacts NNS\nimpair VB\nimpaired VBN\nimpairment NN\nimpaled VBN\nimpaling VBG\nimpart VB\nimpartation NN\nimparted VBN\nimpartial JJ\nimpartiality NN\nimparting VBG\nimparts VBZ\nimpassable JJ\nimpasse NN\nimpassible JJ\nimpassioned JJ\nimpassive JJ\nimpassively RB\nimpassiveness NN\nimpatience NN\nimpatiens NNS\nimpatient JJ\nimpatiently RB\nimpeached VBN\nimpeachment NN\nimpeccable JJ\nimpeccably RB\nimpede VB\nimpeded VBN\nimpedes VBZ\nimpediment NN\nimpediments NNS\nimpeding VBG\nimpelled VBN\nimpelling JJ\nimpels VBZ\nimpending JJ\nimpenetrable JJ\nimperative JJ\nimperatives NNS\nimperceptible JJ\nimperceptibly RB\nimperfect JJ\nimperfectability NN\nimperfection NN\nimperfections NNS\nimperfectly RB\nimperial JJ\nimperialism NN\nimperialist NN\nimperialists NNS\nimperil VB\nimperiled VBN\nimperiling VBG\nimperilled VBN\nimperious JJ\nimperiously RB\nimperishable JJ\nimpermissible JJ\nimpersonal JJ\nimpersonalized JJ\nimpersonally RB\nimpersonated VBN\nimpersonates VBZ\nimpersonation NN\nimpersonations NNS\nimpersonator NN\nimpertinent JJ\nimperturbable JJ\nimpervious JJ\nimpetigo NN\nimpetuous JJ\nimpetuousness NN\nimpetus NN\nimpiety NN\nimpinge VB\nimpinging VBG\nimpious JJ\nimplacable JJ\nimplant NN\nimplantable JJ\nimplantation NN\nimplanted VBN\nimplanting VBG\nimplausible JJ\nimplausibly RB\nimplement VB\nimplementation NN\nimplemented VBN\nimplementer NN\nimplementing VBG\nimplements NNS\nimplicate VB\nimplicated VBN\nimplication NN\nimplications NNS\nimplicit JJ\nimplicitly RB\nimplied VBN\nimplies VBZ\nimplore VB\nimplored VBN\nimplores VBZ\nimploring VBG\nimply VB\nimplying VBG\nimpolite JJ\nimpolitic JJ\nimponderable JJ\nimponderables NNS\nimport NN\nimport-export JJ\nimport-incentive JJ\nimport-restricting JJ\nimport-screening NN\nimportance NN\nimportant JJ\nimportant-looking JJ\nimportantly RB\nimportation NN\nimported VBN\nimported-food NN\nimporter NN\nimporters NNS\nimporting VBG\nimports NNS\nimportunately RB\nimportunities NNS\nimpose VB\nimposed VBN\nimposes VBZ\nimposing VBG\nimposition NN\nimpossibility NN\nimpossible JJ\nimpossibly RB\nimpostor NN\nimpotence NN\nimpotency NN\nimpotent JJ\nimpound VB\nimpounded VBN\nimpoundment NN\nimpoundments NNS\nimpoverished JJ\nimpoverishment NN\nimpracticable JJ\nimpractical JJ\nimpracticality NN\nimprecates VBZ\nimprecations NNS\nimprecise JJ\nimprecisely RB\nimpregnable JJ\nimpresario NN\nimpress VB\nimpressed VBN\nimpresser NN\nimpresses VBZ\nimpressing VBG\nimpression NN\nimpressionism NN\nimpressionist NN\nimpressionistic JJ\nimpressionistically RB\nimpressionists NNS\nimpressions NNS\nimpressive JJ\nimpressively RB\nimprimatur NN\nimprint VB\nimprinted VBN\nimprints NNS\nimprison VB\nimprisoned VBN\nimprisoning VBG\nimprisonment NN\nimprisons VBZ\nimprobability NN\nimprobable JJ\nimprobably RB\nimpromptu JJ\nimproper JJ\nimproperly RB\nimproprieties NNS\nimpropriety NN\nimprove VB\nimproved VBN\nimprovement NN\nimprovements NNS\nimproves VBZ\nimprovident JJ\nimprovidently RB\nimproving VBG\nimprovisation NN\nimprovisational JJ\nimprovisations NNS\nimprovisatory JJ\nimprovise VB\nimprovised VBD\nimproviser NN\nimprovisers NNS\nimprovises VBZ\nimprovising NN\nimprudence NN\nimprudent JJ\nimprudently RB\nimpudence NN\nimpudent JJ\nimpudently RB\nimpugn VB\nimpugned VBN\nimpugning VBG\nimpulse NN\nimpulse-related JJ\nimpulses NNS\nimpulsive JJ\nimpulsively RB\nimpunity NN\nimpure JJ\nimpurities NNS\nimpurity NN\nimpurity-doped JJ\nimput NN\nimputation NN\nimpute VBP\nimputed VBN\nin IN\nin-accord-with-nature JJ\nin-and-outer NN\nin-crowd NN\nin-depth JJ\nin-fighting NN\nin-group JJ\nin-groups NN\nin-grown JJ\nin-home JJ\nin-house JJ\nin-jokes NNS\nin-kind JJ\nin-law NN\nin-laws NNS\nin-migrants NNS\nin-migration NN\nin-office JJ\nin-patient JJ\nin-person JJ\nin-plant JJ\nin-room JJ\nin-state JJ\nin-store JJ\nin. NN\nin... :\nin\\ JJ\ninability NN\ninaccessible JJ\ninaccuracies NNS\ninaccuracy NN\ninaccurate JJ\ninaccurately RB\ninaction NN\ninactivate VB\ninactivated VBD\ninactivation NN\ninactive JJ\ninactivity NN\ninadequacies NNS\ninadequacy NN\ninadequate JJ\ninadequately RB\ninadvertence NN\ninadvertent JJ\ninadvertently RB\ninadvisable JJ\ninalienable JJ\ninane JJ\ninanimate JJ\ninapplicable JJ\ninappropriate JJ\ninappropriately RB\ninappropriateness NN\ninapt JJ\ninarticulate JJ\ninasmuch RB\ninattention NN\ninattentive JJ\ninaudible JJ\ninaugural JJ\ninaugurated VBN\ninaugurating VBG\ninauguration NN\ninauspicious JJ\ninboard JJ\ninboards NNS\ninborn JJ\ninbound JJ\ninbreeding VBG\ninc. NNP\nincalculable JJ\nincandescent JJ\nincantation NN\nincanted VBD\nincapable JJ\nincapacitated VBN\nincapacitating JJ\nincapacity NN\nincarcerate VB\nincarcerated VBN\nincarceration NN\nincarnate JJ\nincarnation NN\nincarnations NNS\nincautious JJ\nincautiously RB\nincendiaries NNS\nincendiary JJ\nincense NN\nincensed VBN\nincentive NN\nincentive-backed JJ\nincentive-bonus NN\nincentive-buoyed JJ\nincentive-maximizing JJ\nincentive-pay JJ\nincentive-reduced JJ\nincentive-spurred JJ\nincentives NNS\nincepted VBD\nincepting VBG\ninception NN\ninceptor NN\nincertain JJ\nincessant JJ\nincessantly RB\nincest NN\nincestuous JJ\ninch NN\ninched VBD\ninches NNS\ninching VBG\ninchworm NN\nincidence NN\nincident NN\nincidental JJ\nincidentally RB\nincidentals NNS\nincidents NNS\nincineration NN\nincinerator NN\nincinerators NNS\nincipience NN\nincipiency NN\nincipient JJ\nincise VB\nincisions NNS\nincisive JJ\nincisiveness NN\nincite VB\nincited VBN\nincitement NN\nincitements NNS\ninciting VBG\ninclement JJ\ninclination NN\ninclinations NNS\nincline NN\ninclined VBN\ninclosed VBN\ninclude VBP\nincluded VBD\nincludee VBP\nincludes VBZ\nincluding VBG\ninclusion NN\ninclusions NNS\ninclusive JJ\ninclusiveness NN\nincoherence NN\nincoherent JJ\nincoherently RB\nincome NN\nincome-earner NN\nincome-oriented JJ\nincome-paying JJ\nincome-producing JJ\nincome-support NN\nincome-tax NN\nincomes NNS\nincoming JJ\nincomparable JJ\nincomparably RB\nincompatibility NN\nincompatible JJ\nincompatibles NNS\nincompetence NN\nincompetency NN\nincompetent JJ\nincompetently RB\nincompetents NNS\nincomplete JJ\nincompletely RB\nincompleteness NN\nincomprehensible JJ\nincomprehension NN\ninconceivable JJ\ninconclusive JJ\ninconclusively RB\nincongruities NNS\nincongruity NN\nincongruous JJ\ninconsequential JJ\ninconsiderable JJ\ninconsistencies NNS\ninconsistency NN\ninconsistent JJ\ninconsistently RB\ninconspicuous JJ\ninconspicuously RB\nincontestable JJ\nincontrovertible JJ\ninconvenience NN\ninconveniences NNS\ninconvenient JJ\ninconveniently RB\nincorporate VB\nincorporated VBN\nincorporates VBZ\nincorporating JJ\nincorporation NN\nincorrect JJ\nincorrectly RB\nincorrigible JJ\nincorruptibility NN\nincorruptible JJ\nincrease NN\nincrease-results NNS\nincreased VBN\nincreases NNS\nincreasing VBG\nincreasing-rate JJ\nincreasingly RB\nincredible JJ\nincredibly RB\nincredulity NN\nincredulously RB\nincrement NN\nincremental JJ\nincrements NNS\nincriminating VBG\nincubate VB\nincubated VBN\nincubating VBG\nincubation NN\nincubi NNS\nincubus NN\ninculcated VBD\ninculcation NN\nincumbencies NNS\nincumbency NN\nincumbent JJ\nincumbent-protection JJ\nincumbents NNS\nincur VB\nincurable JJ\nincurably RB\nincurred VBN\nincurring VBG\nincurs VBZ\nincursion NN\nindebted JJ\nindebtedness NN\nindecency NN\nindecent JJ\nindecipherable JJ\nindecision NN\nindecisive JJ\nindecisively RB\nindecisiveness NN\nindeed RB\nindefatigable JJ\nindefensible JJ\nindefinable JJ\nindefinite JJ\nindefinitely RB\nindefiniteness NN\nindefinity NN\nindelible JJ\nindelibly RB\nindelicate JJ\nindemnification NN\nindemnify VB\nindemnifying VBG\nindemnity NN\nindentations NNS\nindenture NN\nindentured VBN\nindependant JJ\nindependence NN\nindependent JJ\nindependent-contractor JJ\nindependent-minded JJ\nindependently RB\nindependents NNS\nindescribable JJ\nindestructibility NN\nindestructible JJ\nindeterminable JJ\nindeterminate JJ\nindex NN\nindex-arbitrage NN\nindex-arbitrage-related JJ\nindex-fund JJ\nindex-futures JJ\nindex-linked JJ\nindex-options NNS\nindex-related JJ\nindex-trading NN\nindexation NN\nindexed VBN\nindexer NN\nindexers NNS\nindexes NNS\nindexing NN\nindicate VB\nindicated VBD\nindicates VBZ\nindicating VBG\nindication NN\nindications NNS\nindicative JJ\nindicator NN\nindicators NNS\nindices NNS\nindict VB\nindicted VBN\nindictment NN\nindictments NNS\nindifference NN\nindifferent JJ\nindigation NN\nindigenous JJ\nindigent JJ\nindigents NNS\nindigestible JJ\nindigestion NN\nindignant JJ\nindignantly RB\nindignation NN\nindignities NNS\nindignity NN\nindirect JJ\nindirection NN\nindirectly RB\nindirectness NN\nindiscreet JJ\nindiscretions NNS\nindiscriminantly RB\nindiscriminate JJ\nindiscriminating JJ\nindispensability NN\nindispensable JJ\nindispensable... :\nindispensible JJ\nindisposed JJ\nindisposition NN\nindisputable JJ\nindisputably RB\nindistinct JJ\nindistinguishable JJ\nindium NN\nindividual JJ\nindividual-contributor NN\nindividual-investor NN\nindividual-retirement-account NN\nindividual-type JJ\nindividualism NN\nindividualist NN\nindividualistic JJ\nindividualists NNS\nindividuality NN\nindividualized JJ\nindividualizing VBG\nindividually RB\nindividuals NNS\nindividuate VB\nindividuation NN\nindivisibility NN\nindivisible JJ\nindoctrinated VBN\nindoctrinating NN\nindoctrination NN\nindolence NN\nindolent JJ\nindolently RB\nindomitable JJ\nindoor JJ\nindoors NN\nindorsed VBD\nindpendent JJ\nindubitable JJ\ninduce VB\ninduced VBN\ninducement NN\ninducements NNS\ninduces VBZ\ninducing VBG\ninducted VBN\ninductees NNS\ninduction NN\ninductions NNS\nindulge VB\nindulged VBD\nindulgence NN\nindulgences NNS\nindulgent JJ\nindulges VBZ\nindulging VBG\nindustralization NN\nindustrial JJ\nindustrial-automation NN\nindustrial-equipment NN\nindustrial-gas JJ\nindustrial-gases JJ\nindustrial-product NN\nindustrial-production JJ\nindustrial-property NN\nindustrial-services JJ\nindustrial-vehicle NN\nindustrialism NN\nindustrialist NN\nindustrialists NNS\nindustrialization NN\nindustrialize VB\nindustrialized VBN\nindustrialized'em NN\nindustrially RB\nindustrials NNS\nindustries NNS\nindustrious JJ\nindustriously RB\nindustry NN\nindustry-financed JJ\nindustry-funded JJ\nindustry-government JJ\nindustry-specific JJ\nindustry-standard JJ\nindustry-supported JJ\nindustry-wide JJ\nindustryas NNS\nindustrywide JJ\nindusty NN\nindwelling VBG\ninedible JJ\nineffable JJ\nineffably RB\nineffective JJ\nineffectively RB\nineffectiveness NN\nineffectual JJ\ninefficiencies NNS\ninefficiency NN\ninefficient JJ\nineligible JJ\nineluctable JJ\ninept JJ\nineptitude NN\nineptly RB\nineptness NN\ninequalities NNS\ninequality NN\ninequitable JJ\ninequitably RB\ninequities NNS\ninequity NN\ninert JJ\ninertia NN\ninertial JJ\ninescapable JJ\ninescapably RB\ninevitabilities NNS\ninevitability NN\ninevitable JJ\ninevitably RB\ninexact JJ\ninexcusable JJ\ninexhaustible JJ\ninexorable JJ\ninexorably RB\ninexpensive JJ\ninexperience NN\ninexperienced JJ\ninexpert JJ\ninexplicable JJ\ninexplicably RB\ninexplicit JJ\ninexpressible JJ\ninexpressibly RB\ninextricable JJ\ninextricably RB\ninfallibility NN\ninfallible JJ\ninfamous JJ\ninfamy NN\ninfancy NN\ninfant NN\ninfant-formula NN\ninfant-mortality JJ\ninfantile JJ\ninfantry NN\ninfantryman NN\ninfantrymen NNS\ninfants NNS\ninfarct NN\ninfarction NN\ninfatuation NN\ninfect VB\ninfected VBN\ninfecting VBG\ninfection NN\ninfection-fighting JJ\ninfection-screening JJ\ninfections NNS\ninfectious JJ\ninfelicitous JJ\ninfer VB\ninfer... :\ninferable JJ\ninference NN\ninferences NNS\ninferential JJ\ninferior JJ\ninferiority NN\ninfernal JJ\ninfernally RB\ninferno NN\ninferred VBD\ninfertile JJ\ninfertility NN\ninfest VB\ninfestation NN\ninfestations NNS\ninfested VBN\ninfesting VBG\ninfests VBZ\ninfidel JJ\ninfidelity NN\ninfidels NNS\ninfield NN\ninfielder NN\ninfielders NNS\ninfighting NN\ninfiltrate VB\ninfiltrated VBN\ninfiltrating VBG\ninfiltration NN\ninfinite JJ\ninfinitely RB\ninfinitesimal JJ\ninfinitesimally RB\ninfinitive NN\ninfinitum FW\ninfinity NN\ninfirm JJ\ninfirmary NN\ninfirmity NN\ninflame VB\ninflamed JJ\ninflammation NN\ninflammations NNS\ninflammatory JJ\ninflate VB\ninflated JJ\ninflates VBZ\ninflating VBG\ninflation NN\ninflation-adjusted JJ\ninflation-created JJ\ninflation-fighting JJ\ninflation-free JJ\ninflation-fuels-growth JJ\ninflation-growth NN\ninflation-hedge JJ\ninflation-induced JJ\ninflation-offsetting JJ\ninflation-wary JJ\ninflation\\/deflation NN\ninflationary JJ\ninflations NNS\ninflected VBN\ninflecting VBG\ninflection NN\ninflections NNS\ninflexible JJ\ninflict VB\ninflicted VBD\ninflicting VBG\ninfliction NN\ninflight JJ\ninflow NN\ninflows NNS\ninfluence NN\ninfluence-peddling NN\ninfluenced VBN\ninfluences NNS\ninfluencing VBG\ninfluent JJ\ninfluential JJ\ninfluenza NN\ninfluenza-pneumonia JJ\ninflux NN\ninform VB\ninformal JJ\ninformality NN\ninformally RB\ninformant NN\ninformants NNS\ninformatics NNS\ninformation NN\ninformation-cell NN\ninformation-delivery NN\ninformation-display JJ\ninformation-gathering JJ\ninformation-processing NN\ninformation-products NNS\ninformation-seeking NN\ninformation-service NN\ninformation-services JJ\ninformation-system JJ\ninformation-systems NNS\ninformation-technology JJ\ninformational JJ\ninformative JJ\ninformed VBN\ninformer JJ\ninforming VBG\ninforms VBZ\ninfra FW\ninfraction NN\ninfractions NNS\ninfrared JJ\ninfrastructural JJ\ninfrastructure NN\ninfrastructures NNS\ninfrequent JJ\ninfrequently RB\ninfringe VB\ninfringed VBD\ninfringement NN\ninfringements NNS\ninfringes VBZ\ninfringing VBG\ninfuriate VB\ninfuriated VBD\ninfuriating JJ\ninfuriation NN\ninfuse VB\ninfused VBN\ninfusion NN\ninfusion-therapy JJ\ninfusions NNS\ningenious JJ\ningeniously RB\ningenuity NN\ningest VBP\ningested VBD\ningestion NN\ninglorious JJ\ningloriously RB\ningot NN\ningots NNS\ningrained JJ\ningrates NNS\ningratiate VB\ningratiating JJ\ningratitoode NN\ningratitude NN\ningredient NN\ningredients NNS\ninhabit VBP\ninhabitants NNS\ninhabitation NN\ninhabited VBN\ninhabiting VBG\ninhabits VBZ\ninhalation NN\ninhaling VBG\ninharmonious JJ\ninherent JJ\ninherently RB\ninheres VBZ\ninherit VB\ninheritable JJ\ninheritance NN\ninherited VBN\ninheriting VBG\ninheritor NN\ninheritors NNS\ninherits VBZ\ninhibit VB\ninhibited VBD\ninhibiting VBG\ninhibition NN\ninhibitions NNS\ninhibitor NN\ninhibitors NNS\ninhibitory JJ\ninhibits VBZ\ninholdings NNS\ninhomogeneous JJ\ninhospitable JJ\ninhuman JJ\ninhumane JJ\ninhumanities NNS\ninimical JJ\ninimitable JJ\niniquities NNS\niniquitous JJ\ninitial JJ\ninitial'well NN\ninitialed VBD\ninitialing VBG\ninitially RB\ninitials NNS\ninitiate VB\ninitiated VBN\ninitiates VBZ\ninitiating VBG\ninitiation NN\ninitiatiors NNS\ninitiative NN\ninitiatives NNS\ninitiator NN\ninitiatve NN\ninject VB\ninjected VBN\ninjecting VBG\ninjection NN\ninjection-molded JJ\ninjections NNS\ninjects VBZ\ninjunction NN\ninjunctions NNS\ninjunctive JJ\ninjure VB\ninjured VBN\ninjures VBZ\ninjuries NNS\ninjuring VBG\ninjurious JJ\ninjury NN\ninjury-prone JJ\ninjustice NN\ninjustices NNS\nink NN\nink-jet JJ\nink-jetting JJ\ninkblots NNS\ninking NN\ninkling NN\ninks NNS\ninkstand NN\ninky-brown JJ\ninlaid VBN\ninland RB\ninlay NN\ninlet NN\ninlets NNS\ninmate NN\ninmates NNS\ninn NN\ninnards NNS\ninnate JJ\ninnately RB\ninner JJ\ninner-city JJ\ninner-ear JJ\ninnermost JJ\ninning NN\ninnings NN\ninnocence NN\ninnocent JJ\ninnocently RB\ninnocents NNS\ninnoculated VBN\ninnoculating VBG\ninnoculation NN\ninnocuous JJ\ninnovate VB\ninnovated VBD\ninnovation NN\ninnovations NNS\ninnovative JJ\ninnovativeness NN\ninnovator NN\ninnovators NNS\ninnovators... :\ninns NNS\ninnuendo NN\ninnuendoes NNS\ninnumerable JJ\ninoculate VB\ninoculation NN\ninoculations NNS\ninoperable JJ\ninoperative JJ\ninopportune JJ\ninordinate JJ\ninordinately RB\ninorganic JJ\ninpatient NN\ninpatients NNS\ninpenetrable JJ\ninplace NN\ninpost NN\ninput NN\ninputs NNS\ninquest NN\ninquire VB\ninquired VBD\ninquiries NNS\ninquiring JJ\ninquiry NN\ninquisitive JJ\ninquisitiveness NN\ninquisitor NN\ninroad NN\ninroads NNS\ninsane JJ\ninsanely RB\ninsanity NN\ninsatiable JJ\ninscribed VBN\ninscription NN\ninscriptions NNS\ninscrutability NN\ninscrutable JJ\ninsect NN\ninsecticide NN\ninsecticides NNS\ninsects NNS\ninsecure JJ\ninsecurities NNS\ninsecurity NN\ninsemination NN\ninsensitive JJ\ninsensitivity NN\ninseparable JJ\ninsert VB\ninserted VBN\ninserting VBG\ninsertion NN\ninsertions NNS\ninserts NNS\ninset NN\ninsets NNS\ninshore JJ\ninside IN\ninside-the-Beltway NN\ninside-the-beltway NN\ninsider NN\ninsider-selling NN\ninsider-trading NN\ninsiders NNS\ninsides NNS\ninsidious JJ\ninsidiously RB\ninsight NN\ninsightful JJ\ninsights NNS\ninsignificance NN\ninsignificances NNS\ninsignificant JJ\ninsincere JJ\ninsinuate VB\ninsinuated VBD\ninsinuates VBZ\ninsinuating VBG\ninsinuation NN\ninsinuations NNS\ninsinuendo NN\ninsipid JJ\ninsist VBP\ninsisted VBD\ninsistence NN\ninsistent JJ\ninsistently RB\ninsisting VBG\ninsists VBZ\ninsofar RB\ninsolence NN\ninsolent JJ\ninsolently RB\ninsoluble JJ\ninsolvencies NNS\ninsolvency NN\ninsolvent JJ\ninsomma FW\ninsomnia NN\ninsomniacs NNS\ninsouciance NN\ninspect VB\ninspected VBN\ninspecting VBG\ninspection NN\ninspections NNS\ninspector NN\ninspector-general JJ\ninspectors NNS\ninspiration NN\ninspirational JJ\ninspirationally RB\ninspirations NNS\ninspire VB\ninspired VBN\ninspires VBZ\ninspiring JJ\ninsta-book NN\ninstability NN\ninstall VB\ninstallation NN\ninstallations NNS\ninstalled VBN\ninstaller NN\ninstalling VBG\ninstallment NN\ninstallment-loan JJ\ninstallments NNS\ninstalments NNS\ninstance NN\ninstances NNS\ninstancy NN\ninstant NN\ninstant-camera NN\ninstant-credit NN\ninstant-replay NN\ninstantaneous JJ\ninstantaneously RB\ninstantly RB\ninstead RB\ninstigate VB\ninstigated VBD\ninstigating VBG\ninstigation NN\ninstigator NN\ninstigators NNS\ninstill VB\ninstillation NN\ninstills VBZ\ninstinct NN\ninstinctive JJ\ninstinctively RB\ninstincts NNS\ninstinctual JJ\ninstitute NN\ninstitute-sponsored JJ\ninstituted VBN\ninstitutes NN\ninstituting VBG\ninstitution NN\ninstitution-wide JJ\ninstitutional JJ\ninstitutional-type JJ\ninstitutionalized VBN\ninstitutionally RB\ninstitutions NNS\ninstruct VB\ninstructed VBN\ninstructing VBG\ninstruction NN\ninstruction-set JJ\ninstructional JJ\ninstructions NNS\ninstructive JJ\ninstructor NN\ninstructors NNS\ninstructs VBZ\ninstrument NN\ninstrument-jammed JJ\ninstrumental JJ\ninstrumental-reward JJ\ninstrumentalists NNS\ninstrumentalities NNS\ninstrumentally RB\ninstrumentals NNS\ninstrumentation NN\ninstrumented JJ\ninstruments NNS\ninsubordinate JJ\ninsubordination NN\ninsubstantial JJ\ninsufferable JJ\ninsufferably RB\ninsufficient JJ\ninsufficiently RB\ninsularity NN\ninsulate VB\ninsulated VBN\ninsulating VBG\ninsulation NN\ninsulator NN\ninsulators NNS\ninsulin NN\ninsulin-dependent JJ\ninsulins NNS\ninsult NN\ninsulted VBN\ninsulting JJ\ninsults NNS\ninsuperable JJ\ninsuperably RB\ninsupportable JJ\ninsurability NN\ninsurance NN\ninsurance-claims NNS\ninsurance-company NN\ninsurance-cost JJ\ninsurance-holding JJ\ninsurance-industry NN\ninsurance-policy NN\ninsurance-premium-finance JJ\ninsurance-rate JJ\ninsurance-reform JJ\ninsure VB\ninsure... :\ninsured VBN\ninsurer NN\ninsurers NNS\ninsures VBZ\ninsurgence NN\ninsurgency NN\ninsurgent JJ\ninsurgents NNS\ninsurgents. NNS\ninsuring VBG\ninsurmountable JJ\ninsurrection NN\ninsurrections NNS\nintact JJ\nintactible JJ\nintake NN\nintangible JJ\nintangibles NNS\ninteger NN\nintegers NNS\nintegral NN\nintegrals NNS\nintegrate VB\nintegrated VBN\nintegrated-circuit JJ\nintegrated-steel NN\nintegrated-technologies NNS\nintegrates VBZ\nintegrating VBG\nintegration NN\nintegrative JJ\nintegrator NN\nintegrators NNS\nintegrity NN\nintellect NN\nintellectual JJ\nintellectual-literary JJ\nintellectual-property JJ\nintellectuality NN\nintellectually RB\nintellectuals NNS\nintellectus FW\nintelligence NN\nintelligence-briefing NN\nintelligence-sharing NN\nintelligent JJ\nintelligently RB\nintelligentsia NN\nintelligible JJ\nintemperance NN\nintend VBP\nintendant NN\nintendants NNS\nintended VBN\nintending VBG\nintends VBZ\nintense JJ\nintensely RB\nintensification NN\nintensified VBN\nintensifier NN\nintensifiers NNS\nintensify VB\nintensifying VBG\nintensities NNS\nintensity NN\nintensive JJ\nintensive-care JJ\nintensively RB\nintent NN\nintention NN\nintentional JJ\nintentionally RB\nintentioned JJ\nintentions NNS\nintently RB\nintents NNS\ninter FW\ninter-American JJ\ninter-Arab JJ\ninter-German JJ\ninter-agency JJ\ninter-bank JJ\ninter-city JJ\ninter-company JJ\ninter-exchange JJ\ninter-governmental JJ\ninter-industry JJ\ninter-office JJ\ninter-plant JJ\ninter-relation NN\ninter-relationships NNS\ninter-species JJ\ninter-town JJ\ninter-tribal JJ\ninteract VBP\ninteracting VBG\ninteraction NN\ninteractions NNS\ninteractive JJ\ninteracts VBZ\ninteragency NN\ninteraxial JJ\ninterbank NN\ninterbreeding VBG\nintercede VB\ninterceded VBD\nintercept NN\nintercepted VBD\ninterception NN\ninterceptor NN\ninterceptors NNS\nintercepts NNS\ninterchangable JJ\ninterchange NN\ninterchangeable JJ\ninterchanges NNS\nintercity JJ\ninterclass JJ\nintercollegiate JJ\nintercom NN\nintercompany NN\ninterconnect NN\ninterconnected VBN\ninterconnectedness NN\ninterconnections NNS\nintercontinental JJ\nintercorporate JJ\nintercourse NN\nintercrisis NN\ninterdenominational JJ\ninterdepartmental JJ\ninterdependence NN\ninterdependent JJ\ninterdicting VBG\ninterdiction NN\nintereference NN\ninteressant FW\ninterest NN\ninterest-bearing JJ\ninterest-deferred JJ\ninterest-free JJ\ninterest-only JJ\ninterest-rate NN\ninterest-rate-sensitive JJ\ninterest-rate-type JJ\ninterest-sensitive JJ\ninterest-subsidy NN\ninterested JJ\ninteresting JJ\ninterestingly RB\ninterestrate NN\ninterests NNS\ninterface NN\ninterfaces NNS\ninterfacial JJ\ninterfaith JJ\ninterfere VB\ninterfered VBD\ninterference NN\ninterference-like JJ\ninterferes VBZ\ninterfering VBG\ninterferometer NN\ninterferometers NNS\ninterferon NN\nintergenerational JJ\ninterglacial JJ\nintergovernmental JJ\nintergrated-steel NN\nintergroup JJ\ninterim JJ\ninterim-dividend NN\ninterior JJ\ninterior-construction NN\ninterior-decorating JJ\ninterior-furnishings NNS\ninteriors NNS\ninterject VBP\ninterjected VBD\ninterjects VBZ\ninterlaced VBN\ninterlacing VBG\ninterlayer NN\ninterleukin-1 NN\ninterleukin-2 NN\ninterleukin-3 NN\ninterleukin-4 NN\ninterlibrary JJ\ninterlining NN\ninterlinked VBN\ninterlobular JJ\ninterlocking VBG\ninterlocutor NN\ninterloper NN\ninterlopers NNS\ninterloping VBG\ninterlude NN\ninterludes NNS\nintermarket JJ\nintermediaries NNS\nintermediary NN\nintermediate JJ\nintermediate-range JJ\nintermediate-term JJ\nintermediates NNS\ninterment NN\nintermeshed VBN\ninterminable JJ\nintermingle VBP\ninterministerial JJ\nintermission NN\nintermissions NNS\nintermittent JJ\nintermittently RB\nintermixed VBD\nintermodal JJ\nintermolecular JJ\nintern NN\ninternal JJ\ninternal-external JJ\ninternal-security NN\ninternalized VBN\ninternally RB\ninternational JJ\ninternational-capital JJ\ninternational-defense NN\ninternational-leasing JJ\ninternational-money-markets NN\ninternational-operations NNS\ninternational-payments NNS\ninternational-share JJ\ninternational\\ JJ\ninternationalism NN\ninternationalist JJ\ninternationalists NNS\ninternationalization NN\ninternationalize VB\ninternationalized VBN\ninternationalizing VBG\ninternationally RB\ninternationals NNS\ninterne FW\ninterned VBN\ninternet NN\ninterning VBG\ninternist NN\ninternists NNS\ninternment NN\ninterns NNS\ninteroffice JJ\ninterparty NN\ninterpenetrate VBP\ninterpenetrates VBZ\ninterpenetration NN\ninterpeople JJ\ninterpersonal JJ\ninterplanetary JJ\ninterplay NN\ninterpolated VBD\ninterpolation NN\ninterpolations NNS\ninterposed VBN\ninterposing VBG\ninterposition NN\ninterpret VB\ninterpretable JJ\ninterpretation NN\ninterpretations NNS\ninterpretative JJ\ninterpreted VBN\ninterpreter NN\ninterpreters NNS\ninterpreting VBG\ninterpretive JJ\ninterpretor NN\ninterprets VBZ\ninterprovincial JJ\ninterred VBD\ninterregnum NN\ninterrelated VBN\ninterrelation NN\ninterrelations NNS\ninterrelationship NN\ninterrelationships NNS\ninterrogate VB\ninterrogated VBN\ninterrogation NN\ninterrogatives NNS\ninterrogator NN\ninterrogators NNS\ninterrupt VB\ninterrupted VBN\ninterrupting VBG\ninterruption NN\ninterruptions NNS\ninterrupts VBZ\nintersect VB\nintersecting VBG\nintersection NN\nintersections NNS\ninterspecies NNS\ninterspersed VBN\nintersperses VBZ\ninterst NN\ninterstage NN\ninterstate JJ\ninterstates NNS\ninterstellar JJ\ninterstices NNS\ninterstitial JJ\nintertitles NNS\nintertwined VBN\nintertwining VBG\ninterval NN\nintervals NNS\nintervene VB\nintervened VBD\nintervenes VBZ\nintervening VBG\nintervenors NNS\nintervention NN\nintervention-speeded JJ\nintervention... :\ninterventionist JJ\ninterventionists NNS\ninterventions NNS\ninterview NN\ninterviewed VBN\ninterviewee NN\ninterviewees NNS\ninterviewer NN\ninterviewers NNS\ninterviewing VBG\ninterviews NNS\ninterwar JJ\ninterweaving VBG\ninterwoven VBN\nintestinal JJ\nintestine NN\nintestines NNS\ninti NN\nintial JJ\nintifada NN\nintifadah NN\nintima NN\nintimacy NN\nintimal JJ\nintimate JJ\nintimated VBD\nintimately RB\nintimating VBG\nintimation NN\nintimations NNS\nintimidate VB\nintimidated VBN\nintimidates VBZ\nintimidating VBG\nintimidation NN\nintimidations NNS\nintitiative NN\ninto IN\nintolerable JJ\nintolerably RB\nintolerance NN\nintolerant JJ\nintonaco NN\nintonation NN\nintonations NNS\nintoned VBD\nintones VBZ\nintoxicated JJ\nintoxicating JJ\nintoxication NN\nintra-Community JJ\nintra-EC JJ\nintra-administration JJ\nintra-city NN\nintra-company JJ\nintra-governmental JJ\nintra-mural JJ\nintra-party JJ\nintra-state JJ\nintra-stellar NN\nintra-uterine JJ\nintracompany JJ\nintractable JJ\nintraday JJ\nintradepartmental JJ\nintraepithelial JJ\nintragovernment JJ\nintramural JJ\nintramuscularly RB\nintranasal JJ\nintransigence NN\nintransigent JJ\nintransigents NNS\nintraocular JJ\nintraparty JJ\nintrapreneurship NN\nintrapulmonary JJ\nintrastate JJ\nintratissue NN\nintrauterine JJ\nintravenous JJ\nintravenously RB\nintrepid JJ\nintricacies NNS\nintricate JJ\nintricately RB\nintrigue NN\nintrigued VBN\nintrigues NNS\nintriguing JJ\nintriguingly RB\nintrinsic JJ\nintrinsically RB\nintroduce VB\nintroduced VBN\nintroduces VBZ\nintroducing VBG\nintroduction NN\nintroductions NNS\nintroductory JJ\nintroject NN\nintrojected VBN\nintrojects NNS\nintrospection NN\nintrospective JJ\nintroverted VBN\nintrude VB\nintruded VBN\nintruder NN\nintruders NNS\nintrudes VBZ\nintruding VBG\nintrusion NN\nintrusions NNS\nintrusive JJ\nintuition NN\nintuitions NNS\nintuitive JJ\nintuitively RB\ninundated VBN\ninundating VBG\ninundations NNS\ninure VB\ninured VBN\ninvade VB\ninvaded VBD\ninvader NN\ninvaders NNS\ninvades VBZ\ninvading VBG\ninvalid JJ\ninvalidate VB\ninvalidated VBN\ninvalidism NN\ninvalids NNS\ninvaluable JJ\ninvariable JJ\ninvariably RB\ninvariant JJ\ninvasion NN\ninvasion-theory NN\ninvasions NNS\ninvasive JJ\ninvective NN\ninveigh VBP\ninveigle VB\ninvent VB\ninvented VBN\ninventing VBG\ninvention NN\ninventions NNS\ninventive JJ\ninventively RB\ninventiveness NN\ninventor NN\ninventories NNS\ninventors NNS\ninventory NN\ninvents VBZ\ninverse JJ\ninversely RB\ninversion NN\ninversions NNS\ninvert VB\ninvertebrates NNS\ninverted JJ\ninvest VB\ninvestable JJ\ninvested VBN\ninvestigate VB\ninvestigated VBN\ninvestigates VBZ\ninvestigating VBG\ninvestigation NN\ninvestigational JJ\ninvestigations NNS\ninvestigative JJ\ninvestigative-reporting NN\ninvestigator NN\ninvestigators NNS\ninvesting VBG\ninvestment NN\ninvestment-advisory NN\ninvestment-area JJ\ninvestment-bank JJ\ninvestment-banking NN\ninvestment-counseling JJ\ninvestment-grade JJ\ninvestment-holding JJ\ninvestment-house NN\ninvestment-insurance NN\ninvestment-linked JJ\ninvestment-management NN\ninvestment-newsletter NN\ninvestment-oriented JJ\ninvestment-promotion NN\ninvestment-recovery NN\ninvestment-tax JJ\ninvestments NNS\ninvestor NN\ninvestor-owned JJ\ninvestor-relations NNS\ninvestors NNS\ninvests VBZ\ninveterate JJ\ninvidious JJ\ninvigorate VB\ninvigorated VBN\ninvigorating VBG\ninvigoration NN\ninvincible JJ\ninviolability NN\ninviolable JJ\ninviolate JJ\ninvisible JJ\ninvisibles NNS\ninvisibly RB\ninvitation NN\ninvitational JJ\ninvitations NNS\ninvite VB\ninvited VBN\ninvitees NNS\ninvites VBZ\ninviting VBG\ninvocation NN\ninvoices NNS\ninvoicing NN\ninvoke VB\ninvoked VBD\ninvokes VBZ\ninvoking VBG\ninvoluntarily RB\ninvoluntary JJ\ninvoluntary-control JJ\ninvolution NN\ninvolutions NNS\ninvolutorial JJ\ninvolve VB\ninvolved VBN\ninvolvement NN\ninvolvements NNS\ninvolves VBZ\ninvolving VBG\ninvulnerability NN\ninvulnerable JJ\ninward RB\ninward-looking JJ\ninwardly RB\ninwardness NN\niodide NN\niodide-concentrating JJ\niodinate VB\niodinated VBN\niodinating VBG\niodination NN\niodine NN\niodoamino NN\niodocompounds NNS\niodoprotein NN\niodothyronines NNS\niodotyrosines NNS\nion NN\nionic JJ\nionized VBN\nionizing VBG\nionosphere NN\nions NNS\niota NN\nip NN\nipso FW\nirate JJ\nire NN\niridescent JJ\niridium NN\nirised VBN\nirk VB\nirked VBN\nirks VBZ\nirksome JJ\niron NN\niron-casting JJ\niron-clad JJ\niron-handed JJ\niron-ore NN\niron-poor JJ\niron-rod JJ\niron-shod JJ\niron-willed JJ\nironclad JJ\nironed VBN\nironfist NN\nironic JJ\nironic... :\nironical JJ\nironically RB\nironies NNS\nironing VBG\nirons NNS\nironworks NN\nirony NN\nirradiated VBN\nirradiation NN\nirrational JJ\nirrationality NN\nirrationally RB\nirreconcilable JJ\nirredeemable JJ\nirredeemably RB\nirredentism NN\nirreducible JJ\nirrefutable JJ\nirregular JJ\nirregularities NNS\nirregularity NN\nirregularly RB\nirregulars NNS\nirrelevant JJ\nirremediable JJ\nirreparable JJ\nirreparably RB\nirreplaceable JJ\nirrepressible JJ\nirreproducibility NN\nirresistable JJ\nirresistible JJ\nirresistibly RB\nirresolute JJ\nirresolution NN\nirresolvable JJ\nirrespective RB\nirresponsibility NN\nirresponsible JJ\nirresponsibly RB\nirretrievably RB\nirreverence NN\nirreverent JJ\nirreversibility NN\nirreversible JJ\nirreversibly RB\nirrevocable JJ\nirrevocably RB\nirrigate VB\nirrigating VBG\nirrigation NN\nirritability NN\nirritable JJ\nirritably RB\nirritant NN\nirritants NNS\nirritate VB\nirritated VBN\nirritates VBZ\nirritating JJ\nirritation NN\nirritations NNS\nirruptions NNS\nis VBZ\nis,'hey NN\nis... :\niself NN\nisland NN\nisland-fantasy JJ\nisland-hopping JJ\nislander NN\nislanders NNS\nislands NNS\nisle NN\nisms NNS\nisn't VBZ\nisnt VBZ\nisocyanate NN\nisocyanate-labeled NN\nisolate VB\nisolated VBN\nisolates VBZ\nisolating VBG\nisolation NN\nisolation... :\nisolationism NN\nisolationistic JJ\nisomers NNS\nisopleths NNS\nisothermal JJ\nisothermally RB\nisotonic JJ\nisotopic JJ\nisotropic JJ\nissuable JJ\nissuance NN\nissuances NNS\nissue NN\nissued VBN\nissuer NN\nissuers NNS\nissues NNS\nissues-such JJ\nissues... :\nissuing VBG\nist FW\nisthmus NN\nit PRP\nit'controlled PRP|JJ\nit'd MD\nit'll MD\nit's VBZ\nit'so UH\nit-wit NN\nit... :\nitalicized VBN\nitalics NNS\nitch VB\nitches VBZ\nitching VBG\nitchy JJ\nitem NN\nitem-processing JJ\nitem-veto JJ\nitemization NN\nitemize VB\nitemized VBN\nitemizing VBG\nitems NNS\niteration NN\nitinerant JJ\nitinerary NN\nits PRP$\nitself PRP\nitty-bitty JJ\nity NN\nit’s VBZ\niuvabit FW\nive VBP\nivory NN\nivory-inlay NN\nivory-tower JJ\nivy NN\nivy-covered JJ\nj NN\njab NN\njabbed VBD\njabberings NNS\njabbing VBG\njabs NNS\njack VB\njackass NN\njackbooted JJ\njackboots NNS\njackdaws NNS\njacked VBD\njacket NN\njacketed JJ\njackets NNS\njackhammers NNS\njacking VBG\njackpot NN\njade NN\njade-handled JJ\njaded JJ\njag NN\njagged JJ\njaggedly RB\njai FW\njail NN\njailed VBN\njailhouse NN\njailing VBG\njails NNS\njakes NN\njalapeno JJ\njalopy NN\njam NN\njamboree NN\njammed VBN\njammed-together JJ\njammies NNS\njamming NN\njams NNS\njanglers NNS\njangling VBG\njanitor NN\njanitors NNS\njar NN\njargon NN\njarred VBD\njarring VBG\njarringly RB\njars NNS\njasmine NN\njauntily RB\njaunts NNS\njaunty JJ\njava NN\njaw NN\njawbone NN\njawboning NN\njaws NNS\njay NN\njays NNS\njaywalkers NNS\njazz NN\njazzmen NNS\njazzy JJ\nje FW\njealous JJ\njealousies NNS\njealously RB\njealousy NN\njeans NNS\njeep NN\njeers NNS\njejune JJ\njejunum NN\njell VB\njelled VBD\njellies NNS\njelly NN\njellyfish NN\njeopardize VB\njeopardized VBN\njeopardizes VBZ\njeopardizing VBG\njeopardy NN\njerk NN\njerked VBD\njerking VBG\njerkings NNS\njerks NNS\njerky JJ\njersey NN\njest NN\njester NN\njesting VBG\njet NN\njet-black NN\njet-engine NN\njet-setters NNS\njetliner NN\njetliners NNS\njetplane NN\njets NNS\njetting VBG\njettison VB\njettisoned VBN\njettisoning VBG\njetty NN\njeunes FW\njewel NN\njewel-bright RB\njeweled JJ\njeweler NN\njewelers NNS\njewelery NN\njewelery-related JJ\njewelled JJ\njewelry NN\njewels NNS\njibes NNS\njiffy NN\njig NN\njigger NN\njiggling VBG\njigsaw NN\njihad NN\njillions NNS\njilted VBN\njimmied VBD\njingle NN\njingled VBD\njingles NNS\njingling VBG\njinks NNS\njinx NN\njinxed VBN\njist RB\njitterbug NN\njitters NNS\njittery JJ\njiu-jitsu FW\njiving VBG\njk UH\njkaay UH\njob NN\njob-boosters NNS\njob-classification NN\njob-destroying JJ\njob-hunters NNS\njob-hunting JJ\njob-rating JJ\njob-seekers NNS\njob-training NN\njobless JJ\njoblessness NN\njoblot NN\njobs NNS\njobs-tears NNS\njock NN\njockey NN\njockeying VBG\njockeys NNS\njocks NNS\njocose JJ\njocular JJ\njocularly RB\njocund JJ\njog VB\njogger NN\njoggers NNS\njogging NN\njogs VBZ\njohn NN\njoie FW\njoin VB\njoined VBD\njoiner NN\njoiners NNS\njoining VBG\njoins VBZ\njoint JJ\njoint-implants NNS\njoint-production JJ\njoint-research JJ\njoint-return JJ\njoint-venture JJ\njoint-venturing NN\njointly RB\njoints NNS\njoke NN\njoked VBD\njokers NNS\njokes NNS\njoking VBG\njokingly RB\njolly JJ\njollying VBG\njolt NN\njolted VBD\njolting VBG\njolts NNS\njonquils NNS\njonron FW\njoss NN\njostle VBP\njostled VBD\njostling VBG\njot NN\njots VBZ\njotted JJ\njotting VBG\njounce NN\njour FW\njournal NN\njournalese NN\njournalism NN\njournalist NN\njournalistic JJ\njournalistically RB\njournalists NNS\njournals NNS\njourney NN\njourneyed VBD\njourneying VBG\njourneys NNS\njoust NN\njousting VBG\njovial JJ\njowl NN\njowls NNS\njowly JJ\njoy NN\njoyful JJ\njoyfully RB\njoyless JJ\njoyous JJ\njoyously RB\njoyride NN\njoys NNS\njua FW\njubilant JJ\njubilantly RB\njubilation NN\njudge NN\njudge-made JJ\njudged VBN\njudgement NN\njudgements NNS\njudges NNS\njudgeship NN\njudgeships NNS\njudging VBG\njudgment NN\njudgment-proof JJ\njudgmental JJ\njudgments NNS\njudicial JJ\njudicial-bypass JJ\njudicial-conduct NN\njudicially RB\njudiciaries NNS\njudiciary NN\njudicious JJ\njudiciously RB\njug NN\njuggernaut NN\njuggle VB\njugglers NNS\njuggling VBG\njugs NNS\njuice NN\njuice-storage JJ\njuices NNS\njuiciest JJS\njuicy JJ\njuju NN\njuke NN\njulep NN\njuleps NNS\njumble NN\njumbled VBN\njumbo JJ\njumbos NNS\njump NN\njump-start VB\njumped VBD\njumped-up JJ\njumper NN\njumpiness NN\njumping VBG\njumping-off JJ\njumps NNS\njumpsuits NN\njumpy JJ\njunction NN\njuncture NN\njunctures NNS\njungle NN\njungles NNS\njunior JJ\njunior-grade JJ\njunior-high JJ\njunior-philosophical JJ\njunior-senior JJ\njunior-year-abroad JJ\njuniors NNS\njunk NN\njunk-LBO JJ\njunk-bond NN\njunk-bond-financed JJ\njunk-bonds NNS\njunk-financed JJ\njunk-fund NN\njunk-holders NNS\njunk-mail NN\njunk-market JJ\njunk-yard NN\njunkbond NN\njunkbond-financed JJ\njunked VBN\njunket NN\njunketeering NN\njunkets NNS\njunkholders NNS\njunkie NN\njunkies NNS\njunkification NN\njunkless JJ\njunkloads NNS\njunks VBZ\njunkyard NN\njunta NN\njure FW\njuridical JJ\njuries NNS\njurisconsults NNS\njurisdiction NN\njurisdictional JJ\njurisdictions NNS\njurisprudence NN\njurisprudentially RB\njurist NN\njurists NNS\njuror NN\njurors NNS\njury NN\njury-duty NN\njury-rigged VBD\njury-tampering JJ\njus RB\njust RB\njust-announced JJ\njust-completed JJ\njust-concluded JJ\njust-departed JJ\njust-ended JJ\njust-in-time JJ\njust-picked JJ\njust-rejuvenated JJ\njust-revised JJ\njust-say-no JJ\njuste FW\njustice NN\njustices NNS\njusticiable JJ\njustifiable JJ\njustifiably RB\njustification NN\njustifications NNS\njustified VBN\njustifies VBZ\njustify VB\njustifying VBG\njustin NNP\njustitia NN\njustly RB\njustness NN\njute NN\njutting VBG\njuvenile JJ\njuxtapose VBP\njuxtaposed VBN\njuxtaposes VBZ\njuxtaposition NN\njuxtapositions NNS\nk NN\nkaffeeklatsch FW\nkale NN\nkalega NN\nkaleidescope NN\nkaleidoscope NN\nkali FW\nkamikaze NN\nkangaroo NN\nkangaroo-committee NN\nkanji FW\nkapok-filled JJ\nkaraoke FW\nkava FW\nkayo VB\nkayoed VBN\nkazoo NN\nkc. NN\nkebabs NNS\nkebob NN\nkeddah FW\nkedgeree NN\nkeel NN\nkeeled VBD\nkeelson NN\nkeen JJ\nkeener JJR\nkeenest JJS\nkeening NN\nkeenly RB\nkeep VB\nkeeper NN\nkeeping VBG\nkeeps VBZ\nkeepsakes NNS\nkeg NN\nkegful JJ\nkegs NNS\nkeine FW\nkelly\\ NNP\nkelp NN\nken NN\nkennel NN\nkenning NN\nkennings NNS\nkeno JJ\nkept VBD\nkeratitis NN\nkerchief NN\nkerchiefed JJ\nkerchiefs NNS\nkernel NN\nkernels NNS\nkerosene NN\nkerygma FW\nketches NNS\nketchup NN\nketorolac NNP\nketosis NN\nkettle NN\nkey JJ\nkey-financial JJ\nkey-punched JJ\nkey-someone NN\nkeyboard NN\nkeyboarding VBG\nkeyboards NNS\nkeychain NN\nkeyed VBN\nkeyhole NN\nkeying VBG\nkeyless JJ\nkeynote VBP\nkeynotes NNS\nkeypads NNS\nkeys NNS\nkeystone NN\nkeystroke NN\nkhaki JJ\nkhaki-bound JJ\nkhan FW\nkhaneh FW\nki-yi-ing VBG\nkibbutz NN\nkibbutz-made JJ\nkibbutzim NNS\nkibbutzniks NNS\nkick NN\nkick-off NN\nkick-offs NNS\nkick-starting VBG\nkick-up NN\nkickback NN\nkickbacks NNS\nkicked VBD\nkicker NN\nkickers NNS\nkicking VBG\nkickoff NN\nkicks VBZ\nkid NN\nkiddie NN\nkiddies NNS\nkidding VBG\nkidnap VB\nkidnaped VBN\nkidnapped VBN\nkidnapper NN\nkidnappers NNS\nkidnapping NN\nkidney NN\nkidney-shaped JJ\nkidney-stone NN\nkidneys NNS\nkids NNS\nkif NN\nkill VB\nkillable JJ\nkilled VBN\nkiller NN\nkillers NNS\nkillin VBG\nkilling VBG\nkillings NNS\nkills VBZ\nkiln NN\nkilns NNS\nkilobytes NNS\nkilogram NN\nkilograms NNS\nkilometer NN\nkilometers NNS\nkiloton NN\nkilowatt NN\nkilowatt-hour NN\nkilowatt-hours NNS\nkilowatts NNS\nkilter NN\nkilts NNS\nkimchi FW\nkimono FW\nkimpap FW\nkin NN\nkind NN\nkinda RB\nkinder JJR\nkindergarten NN\nkindest JJS\nkindle VB\nkindled VBN\nkindliness NN\nkindly RB\nkindness NN\nkindnesses NNS\nkindred JJ\nkinds NNS\nkinesics NNS\nkinesthetic JJ\nkinesthetically RB\nkinetic JJ\nkinfolk NNS\nking NN\nking-sized JJ\nkingdom NN\nkingdom-wide JJ\nkingdoms NNS\nkingmaker NN\nkingpin NN\nkingpins NNS\nkings NNS\nkingside NN\nkinked JJ\nkinship NN\nkiosk NN\nkisha FW\nkisha-club JJ\nkiss NN\nkissed VBD\nkisses NNS\nkissing VBG\nkissings NNS\nkit NN\nkitchen NN\nkitchen-sink JJ\nkitchen-table JJ\nkitchenette NN\nkitchens NNS\nkitchenware NN\nkite NN\nkits NNS\nkitschy JJ\nkitten NN\nkittenish JJ\nkittens NNS\nkitty NN\nkitty-cornered JJ\nkiwi NN\nklaxon NN\nklieg NN\nknack NN\nknackwurst NN\nkneaded VBN\nkneading VBG\nknee NN\nknee-deep JJ\nknee-jerk JJ\nknee-length JJ\nknee-socked JJ\nknee-type JJ\nkneebreeches NNS\nkneecap NN\nkneel VB\nkneeled VBD\nkneeling VBG\nkneels VBZ\nknees NNS\nknell NN\nknelt VBD\nknew VBD\nknick-knacks NNS\nknife NN\nknife-edge NN\nknife-men NNS\nknifelike JJ\nknight NN\nknight-errant NN\nknight-errantry NN\nknighted VBN\nknightly JJ\nknights NNS\nknit VBN\nknite NN\nknitted VBN\nknitting VBG\nknitwear NN\nknives NNS\nkno VB\nknob NN\nknobby-knuckled JJ\nknobs NNS\nknock VB\nknock-down JJ\nknock-off NN\nknock-offs NNS\nknock-out JJ\nknockdown NN\nknocked VBD\nknockers NNS\nknocking VBG\nknockoff NN\nknockoffs NNS\nknockout NN\nknocks VBZ\nknoe VB\nknoll NN\nknot NN\nknot-tying JJ\nknots NNS\nknott NN\nknotted JJ\nknotty JJ\nknow VB\nknow'til VB\nknow-how NN\nknow... :\nknow\\/no NN\nknowed VBN\nknoweth VBP\nknowhow NN\nknowing VBG\nknowingly RB\nknowledge NN\nknowledgeable JJ\nknown VBN\nknowns NNS\nknows VBZ\nknuckle NN\nknuckle-duster NN\nknuckleball NN\nknuckled VBD\nknuckles NNS\nkoan FW\nkob NN\nkoinonia NN\nkola NN\nkolkhoz NN\nkolkhozes NNS\nkonga NN\nkooks NNS\nkooky JJ\nkosher JJ\nkotowaza FW\nkowtow VB\nkraft NN\nkraft-pulp JJ\nkrater NN\nkraut NN\nkrautheads NNS\nkrona NN\nkroner NN\nkronor NNS\nkryptonite NN\nksu'u'peli'afo VB\nkudos NNS\nkung-fu NN\nkwashiorkor NN\nkwh NNS\nkwhr NN\nkwon FW\nkyat NN\nkylix NN\nl NN\nl'Ange NNP\nl'Assistance NNP\nl'Independance NNP\nl'Osservatore NNP\nl'Ouest NNP\nl'Universite NNP\nl'activite FW\nl'identite FW\nl'oeil FW\nl. DT\nl987 CD\nl988 CD\nla FW\nla-la JJ\nlab NN\nlabel NN\nlabeled VBN\nlabeling VBG\nlabelled VBN\nlabels NNS\nlabels. NNS\nlabile JJ\nlabor NN\nlabor-backed JJ\nlabor-based JJ\nlabor-force NN\nlabor-funded JJ\nlabor-intensive JJ\nlabor-management JJ\nlabor-saving JJ\nlabor-shortage NN\nlaboratories NNS\nlaboratory NN\nlaboratory-services JJ\nlaboratory-supply JJ\nlabored VBD\nlaborer NN\nlaborers NNS\nlaboring VBG\nlaborious JJ\nlaboriously RB\nlabors NNS\nlabour NN\nlabs NNS\nlabyrinth NN\nlace NN\nlace-drawn JJ\nlaced VBN\nlacerate VB\nlacerated VBN\nlacerations NNS\nlaces NNS\nlacey JJ\nlacheln FW\nlaches NN\nlack NN\nlackadaisical JJ\nlacked VBD\nlackeys NNS\nlacking VBG\nlackluster JJ\nlacks VBZ\nlacquer NN\nlacquered VBN\nlactate NN\nlactating VBG\nlacy JJ\nlad NN\nladder NN\nladdered JJ\nladen JJ\nladies NNS\nladle NN\nladling VBG\nlads NNS\nlady NN\nlady-bugs NNS\nladylike JJ\nlaendler JJ\nlag VB\nlagers NNS\nlaggard JJ\nlaggardness NN\nlaggards NNS\nlagged VBN\nlagging VBG\nlagoon NN\nlagoons NNS\nlags VBZ\nlahk IN\nlaid VBN\nlaid-back JJ\nlaid-off JJ\nlain VBN\nlairs NNS\nlaissez-faire FW\nlaity NN\nlak IN\nlake NN\nlakers NNPS\nlakes NNS\nlamb NN\nlambaste VB\nlambasted VBD\nlambastes VBZ\nlambasting VBG\nlambs NNS\nlambskin NN\nlame JJ\nlamechian JJ\nlamechians NNS\nlament NN\nlamentations NNS\nlamented VBD\nlaments VBZ\nlaminate NN\nlaminated VBN\nlaminating VBG\nlammed VBD\nlamming VBG\nlamp NN\nlamplight NN\nlampoon VB\nlampposts NNS\nlamps NNS\nlana FW\nlance NN\nlanced VBN\nlances NNS\nland NN\nland-based JJ\nland-disposal NN\nland-idling JJ\nland-locked JJ\nland-ownership NN\nland-owning JJ\nland-rich JJ\nland-use NN\nlandau NN\nlanded VBD\nlandes NNS\nlandfall NN\nlandfill NN\nlandfilling VBG\nlandfills NNS\nlandholdings NNS\nlanding NN\nlandings NNS\nlandlocked JJ\nlandlord NN\nlandlord-tenant JJ\nlandlords NNS\nlandlubber NN\nlandmark NN\nlandmarks NNS\nlandowner NN\nlandowners NNS\nlandro NN\nlands NNS\nlandscape NN\nlandscaped VBN\nlandscapers NNS\nlandscapes NNS\nlandscaping NN\nlandslide NN\nlandslides NNS\nlane NN\nlanes NNS\nlange FW\nlanguage NN\nlanguage-housekeeper JJ\nlanguages NNS\nlanguid JJ\nlanguish VB\nlanguished VBN\nlanguishes VBZ\nlanguishing VBG\nlanguorous JJ\nlankmark NN\nlanky JJ\nlantana NN\nlantern NN\nlanterns NNS\nlanthanum NN\nlanzador FW\nlap NN\nlap-shoulder JJ\nlap-top JJ\nlapel NN\nlapels NNS\nlapidary JJ\nlapped VBD\nlappets NNS\nlapping VBG\nlaps NNS\nlapse NN\nlapsed JJ\nlapses NNS\nlapsing VBG\nlaptop NN\nlaptops NNS\nlarceny NN\nlard NN\nlarder NN\nlarge JJ\nlarge-area JJ\nlarge-business JJ\nlarge-capital CD\nlarge-capitalization JJ\nlarge-city JJ\nlarge-computer NN\nlarge-denomination NN\nlarge-deposit JJ\nlarge-diameter JJ\nlarge-enough JJ\nlarge-firm JJ\nlarge-package JJ\nlarge-scale JJ\nlarge-screen JJ\nlarge-size JJ\nlarge-ticket JJ\nlarge-typeface NN\nlarge-volume JJ\nlargely RB\nlargely-silent JJ\nlarger JJR\nlarger-capitalization JJ\nlarger-than-anticipated JJ\nlarger-than-expected JJ\nlarger-than-normal JJ\nlargess NN\nlargesse NN\nlargest JJS\nlargest-ever JJ\nlargest-selling JJ\nlargish JJ\nlark NN\nlarks NNS\nlarkspur NN\nlarvae NNS\nlarval JJ\nlarynx NN\nlasciviously RB\nlaser NN\nlaser-beam-printer NN\nlaser-read JJ\nlaser-resistant JJ\nlaser-surgery NN\nlaser-treatment NN\nlaser-type JJ\nlasers NNS\nlash VB\nlash-up JJ\nlashed VBD\nlashes NNS\nlashing VBG\nlashings NNS\nlass NN\nlasses NNS\nlassitude NN\nlasso NN\nlast JJ\nlast-ditch JJ\nlast-gasp JJ\nlast-mentioned JJ\nlast-minute JJ\nlast-named JJ\nlast-place JJ\nlast-resort JJ\nlast-round JJ\nlast-season JJ\nlast-second JJ\nlasted VBD\nlastest JJS\nlasting VBG\nlastly RB\nlasts VBZ\nlatch NN\nlatched VBN\nlatches VBZ\nlatching VBG\nlate JJ\nlate-1988 JJ\nlate-afternoon JJ\nlate-comers NNS\nlate-day JJ\nlate-in-the-day JJ\nlate-night JJ\nlate-payment NN\nlate-summer JJ\nlate-summer\\ JJ\nlatecomer NN\nlatecomers NNS\nlately RB\nlatent JJ\nlater RB\nlateral JJ\nlatermaturing JJ\nlatest JJS\nlatest-quarter JJ\nlatex NN\nlath NN\nlathe NN\nlather NN\nlathered VBN\nlathes NNS\nlatitude NN\nlatitudes NNS\nlats NNS\nlatter NN\nlatter-day JJ\nlattice NN\nlaudable JJ\nlaudably RB\nlaudanum NN\nlaudatory JJ\nlauded VBD\nlaugh NN\nlaughed VBD\nlaugher NN\nlaughing VBG\nlaughingly RB\nlaughingstock NN\nlaughs VBZ\nlaughter NN\nlaunch VB\nlaunch-control NN\nlaunch-pad JJ\nlaunch-vehicle NN\nlaunched VBN\nlauncher NN\nlaunchers NNS\nlaunches VBZ\nlaunching VBG\nlaunchings NNS\nlaunder VB\nlaundered VBN\nlaunderer NN\nlaunderers NNS\nlaundering NN\nlaunderings NNS\nlaundries NNS\nlaundromat NN\nlaundry NN\nlaundry-type JJ\nlaureate NN\nlaureates NNS\nlaurel NN\nlaurels NNS\nlava NN\nlava-rocks NNS\nlavatory NN\nlavender JJ\nlavish JJ\nlavished VBD\nlavishing VBG\nlavishly RB\nlaw NN\nlaw-abiding JJ\nlaw-and-order NN\nlaw-based JJ\nlaw-breaking JJ\nlaw-enforcement NN\nlaw-governed JJ\nlaw-making NNS\nlaw-school NN\nlaw-unto-itself JJ\nlaw. NN\nlawbreakers NNS\nlawful JJ\nlawfully RB\nlawless JJ\nlawlessness NN\nlawmaker NN\nlawmakers NNS\nlawmaking JJ\nlawman NN\nlawmen NNS\nlawmkers NNS\nlawn NN\nlawn-feeding JJ\nlawn-mower NN\nlawnmower NN\nlawns NNS\nlaws NNS\nlawsuit NN\nlawsuits NNS\nlawyer NN\nlawyering NN\nlawyers NNS\nlax JJ\nlaxative NN\nlaxatives NNS\nlaxity NN\nlaxness NN\nlay VBD\nlay-offs NNS\nlay-sisters NNS\nlay-up JJ\nlayer NN\nlayered VBN\nlayering VBG\nlayers NNS\nlayette NN\nlaying VBG\nlayman NN\nlaymen NNS\nlayoff NN\nlayoffs NNS\nlayout NN\nlayouts NNS\nlaypersons NNS\nlays VBZ\nlaze VB\nlazily RB\nlazy JJ\nlb NN\nlb-plus JJ\nlb. NN\nlbs NNS\nlbs. NNS\nle FW\nleach VB\nleaches NNS\nleaching NN\nlead VB\nlead-exposure JJ\nlead-zinc JJ\nlead\\/sulfur NN\nleaded JJ\nleaded-glass JJ\nleaden JJ\nleader NN\nleaderless JJ\nleaders NNS\nleadership NN\nleadership-sanctioned JJ\nleadership... :\nleading VBG\nleading-edge JJ\nleadings NNS\nleadoff NN\nleads VBZ\nleadsman NN\nleaf NN\nleafed VBD\nleafhopper JJR\nleafiest JJS\nleafing VBG\nleaflet NN\nleaflets NNS\nleafmold NN\nleafy JJ\nleague NN\nleagued VBN\nleaguer NN\nleaguers NNS\nleagues NNS\nleak NN\nleakage NN\nleaked VBN\nleaker NN\nleakers NNS\nleaking VBG\nleaks NNS\nleaky JJ\nlean JJ\nlean-to JJ\nleaned VBD\nleaner JJR\nleaning VBG\nleans VBZ\nleap NN\nleaped VBD\nleapfrog VB\nleaping VBG\nleaps NNS\nleapt VBD\nlearn VB\nlearned VBD\nlearners NNS\nlearning VBG\nlearning-curve JJ\nlearns VBZ\nleasable JJ\nlease NN\nlease-back NN\nlease-funded JJ\nlease-rental JJ\nleaseback NN\nleased VBN\nleases NNS\nleash NN\nleashes NNS\nleasing NN\nleast JJS\nleast-cost JJ\nleast-developed-nation JJ\nleather NN\nleather-bound JJ\nleather-hard JJ\nleather-men NNS\nleatherbound JJ\nleathered JJ\nleathers NNS\nleathery JJ\nleave VB\nleave-taking NN\nleavened VBD\nleavening VBG\nleaves VBZ\nleavin VBG\nleaving VBG\nleaving... :\nleavings NNS\nlebensraum NN\nlebron NNP\nlecher NN\nlecherous JJ\nlectern NN\nlecture NN\nlectured VBD\nlecturer NN\nlecturers NNS\nlectures NNS\nlecturing VBG\nled VBN\nledge NN\nledger NN\nledgers NNS\nledges NNS\nleech NN\nleeches NNS\nleered VBD\nleering VBG\nleery JJ\nleet JJ\nleeway NN\nleft VBN\nleft-centerfield JJ\nleft-field JJ\nleft-front JJ\nleft-hand JJ\nleft-handed JJ\nleft-justified JJ\nleft-leaning JJ\nleft-of-center JJ\nleft-right JJ\nleft-wing JJ\nleftfield NN\nlefthander NN\nlefthanders NNS\nleftist JJ\nleftists NNS\nleftover JJ\nleftovers NNS\nleftward JJ\nleg NN\nleg-split JJ\nlegacies NNS\nlegacy NN\nlegal JJ\nlegal-ethics NNS\nlegal-lending JJ\nlegal-services NNS\nlegalistic JJ\nlegality NN\nlegalization NN\nlegalize VB\nlegalized VBN\nlegalizing VBG\nlegally RB\nlegatee NN\nlegation NN\nlegations NNS\nlegato JJ\nlegend NN\nlegendary JJ\nlegends NNS\nlegerdemain NN\nlegged JJ\nleggings NNS\nleggy JJ\nlegibility NN\nlegible JJ\nlegion JJ\nlegions NNS\nlegislate VB\nlegislated VBN\nlegislates VBZ\nlegislating VBG\nlegislation NN\nlegislation-delaying JJ\nlegislative JJ\nlegislatively RB\nlegislator NN\nlegislators NNS\nlegislature NN\nlegislatures NNS\nlegitimacy NN\nlegitimate JJ\nlegitimately RB\nlegitimating VBG\nlegitimize VB\nlegitimized VBN\nlegitimizes VBZ\nlegs NNS\nlegume NN\nleguminous JJ\nleisure NN\nleisure-oriented JJ\nleisure-related JJ\nleisure-services JJ\nleisurely JJ\nleitmotif NN\nleitmotiv FW\nlemmas NNS\nlemme VBP\nlemmings NNS\nlemon NN\nlemon-lime JJ\nlemon-meringue NN\nlemonade NN\nlemons NNS\nlen NN\nlend VB\nlend-lease JJ\nlendable JJ\nlender NN\nlenders NNS\nlending NN\nlends VBZ\nlength NN\nlengthen VB\nlengthened VBN\nlengthening VBG\nlengthens VBZ\nlengthier RBR\nlengthiest JJS\nlengthily RB\nlengths NNS\nlengthwise RB\nlengthy JJ\nleniency NN\nlenient JJ\nlens NN\nlenses NNS\nlent VBD\nlentils NNS\nleopard-trimmed JJ\nleopards NNS\nleotards NNS\nlepidoptery NN\nleprae NNS\nleprosy NN\nles FW\nlesbianism NN\nlesbians NNS\nlesion NN\nlesions NNS\nless JJR\nless-advanced JJ|JJR\nless-aggressive JJ\nless-ambitious JJR\nless-binding JJ\nless-complicated JJ\nless-conservative JJ\nless-creditworthy JJ\nless-cyclical JJ\nless-developed JJ\nless-developed-country JJ\nless-dramatic JJ\nless-educated JJ\nless-effective JJ\nless-established JJ\nless-expensive JJ\nless-experienced JJ\nless-hurried JJ\nless-indomitable JJ\nless-influential JJ\nless-intrusive JJ\nless-junky JJR\nless-liquid JJR\nless-obvious JJ\nless-perfectly RBR\nless-polluting JJ\nless-popular JJ\nless-profitable JJ\nless-restrictive JJ\nless-rigorous JJR\nless-risky JJ\nless-self-confident JJ\nless-serious JJ\nless-sweeping JJ\nless-than-alarming JJ\nless-than-altruistic JJ\nless-than-amicable JJ\nless-than-brilliant JJ\nless-than-carload JJ\nless-than-dazzling JJ\nless-than-diffident JJ\nless-than-exacting JJ\nless-than-expected JJ\nless-than-half-time JJ\nless-than-perfect JJ\nless-than-robust JJ\nless-than-successful JJ\nless-than-truckload JJ\nless-toxic JJ\nless-traveled JJ\nless-visible JJ\nless. NN\nlessen VB\nlessened VBN\nlessening NN\nlessens VBZ\nlesser JJR\nlesser-developed JJ\nlesser-developed-country JJ\nlesser-known JJ\nlesser-rank JJR\nlessers NNS\nlesson NN\nlesson-learning NN\nlesson... :\nlessons NNS\nlessor NN\nlest IN\nlet VB\nlet's VB\nlet's-give-it-a-year JJ\nlet's-make-your-house-our-club JJ\nlet-down NNS\nlet-the-locals-decide JJ\nletdown NN\nlethal JJ\nlethality NN\nlethargic JJ\nlethargies NNS\nlethargy NN\nlets VBZ\nletter NN\nletter-writing JJ\nlettered VBD\nletterhead NN\nlettering NN\nletterman NN\nlettermen NNS\nletters NNS\nlettin VBG\nletting VBG\nlettuce NN\nletup NN\nleukemia NN\nlevamisole NN\nlevee NN\nlevel NN\nlevel-headed JJ\nleveled VBD\nlevelheadedness NN\nleveling NN\nlevelled VBN\nlevels NNS\nlever NN\nlever-action JJ\nleverage NN\nleveraged JJ\nleveraged-buy-out JJ\nleveraged-takeover NN\nleveraging VBG\nlevers NNS\nlevi-clad JJ\nleviathan JJ\nlevied VBN\nlevies NNS\nlevis NNS\nlevitation NN\nlevity NN\nlevy NN\nlevying VBG\nlewd JJ\nlewdly RB\nlewdness NN\nlex FW\nlexical JJ\nlexicon NN\nlexicostatistic JJ\nlexicostatistics NNS\nliabilities NNS\nliability NN\nliabilty NN\nliable JJ\nliaison NN\nliaisons NNS\nliar NN\nliars NNS\nlibel NN\nlibeled VBN\nlibellos NNS\nlibelous JJ\nliberal JJ\nliberal-arts NNS\nliberal-conservative JJ\nliberal-democratic JJ\nliberal-led JJ\nliberalism NN\nliberality NN\nliberalization NN\nliberalizations NNS\nliberalize VB\nliberalized VBN\nliberalizing VBG\nliberally RB\nliberals NNS\nliberate VB\nliberated VBN\nliberating VBG\nliberation NN\nlibertarian JJ\nlibertarians NNS\nlibertie NN\nliberties NNS\nlibertine NN\nlibertines NNS\nliberty NN\nlibido NN\nlibrarian NN\nlibrarian-board NN\nlibrarians NNS\nlibraries NNS\nlibrary NN\nlibrettists NNS\nlibretto NN\nlice NNS\nlicense NN\nlicensed VBN\nlicensee NN\nlicensees NNS\nlicenses NNS\nlicensing NN\nlicentiousness NN\nlichen NN\nlicit JJ\nlick VB\nlicked VBD\nlicking VBG\nlicks VBZ\nlid NN\nlidless JJ\nlids NNS\nlie VB\nlied VBD\nlieder JJ\nlien NN\nliens NNS\nlies VBZ\nlieu NN\nlieutenant NN\nlieutenant-governor NN\nlieutenants NNS\nlife NN\nlife-and-death JJ\nlife-bettering JJ\nlife-changing JJ\nlife-contracts JJ\nlife-cycle JJ\nlife-death JJ\nlife-enhancement NN\nlife-health NN\nlife-insurance NN\nlife-like JJ\nlife-long JJ\nlife-of-contract JJ\nlife-or-death NN\nlife-saving JJ\nlife-size JJ\nlife-style NN\nlife-supporting JJ\nlife-threatening JJ\nlife-time JJ\nlife... :\nlifeblood NN\nlifeboat NN\nlifeboats NNS\nlifeguard NN\nlifeguards NNS\nlifeless JJ\nlifelike JJ\nlifeline NN\nlifelong JJ\nlifer NN\nlifes NNS\nlifesaving VBG\nlifesize JJ\nlifestyle NN\nlifestyles NNS\nlifetime NN\nlift VB\nlift-ticket JJ\nlifted VBD\nlifters NNS\nlifting VBG\nliftoff NN\nliftoffs NNS\nlifts VBZ\nligament NN\nligand NN\nligands NNS\nlight NN\nlight-activated JJ\nlight-blue JJ\nlight-bulb NN\nlight-colored JJ\nlight-crude NN\nlight-duty JJ\nlight-flared JJ\nlight-headed JJ\nlight-headedness JJ\nlight-hearted JJ\nlight-industrial JJ\nlight-mindedness JJ\nlight-rail JJ\nlight-reflecting JJ\nlight-transmitting JJ\nlight-truck JJ\nlight-water JJ\nlight-wave JJ\nlight-weight JJ\nlight-year NN\nlighted VBN\nlighten VB\nlightened VBD\nlightening VBG\nlightens VBZ\nlighter JJR\nlighter'n JJR|IN\nlighter-than-air JJ\nlighter-than-normal JJ\nlighters NNS\nlightest JJS\nlightheaded JJ\nlighthearted JJ\nlightheartedly RB\nlighthouses NNS\nlighting NN\nlightly RB\nlightness NN\nlightning NN\nlightning-fast JJ\nlightning-like JJ\nlightning-occurrence JJ\nlightning-quick JJ\nlights NNS\nlightweight JJ\nlightyears NNS\nlignite JJ\nlikable JJ\nlike IN\nlike-minded JJ\nliked VBD\nlikee VB\nlikelier JJR\nlikeliest JJS\nlikelihood NN\nlikely JJ\nliken VBP\nlikened VBD\nlikeness NN\nlikening VBG\nlikens VBZ\nlikes VBZ\nlikewise RB\nliking NN\nlil JJ\nlilac JJ\nlilacs NNS\nlilies NNS\nlilt NN\nlilting JJ\nlily NN\nlima NN\nlimb NN\nlimber JJ\nlimbic JJ\nlimbo NN\nlimbs NNS\nlime NN\nlimelight NN\nlimestone NN\nlimit NN\nlimitation NN\nlimitations NNS\nlimited JJ\nlimited-edition JJ\nlimited-growth NN\nlimited-partner JJ\nlimited-partnership NN\nlimited-production JJ\nlimited-scale JJ\nlimited-substitution JJ\nlimited-time JJ\nlimiting VBG\nlimitless JJ\nlimits NNS\nlimo NN\nlimos NNS\nlimousine NN\nlimousines NNS\nlimp JJ\nlimp-looking JJ\nlimped VBD\nlimpid JJ\nlimping VBG\nlimply RB\nlimps VBZ\nlinage NN\nlinchpin NN\nlinden NN\nline NN\nline-centered NN\nline-density NN\nline-drawing JJ\nline-driven NN\nline-drying JJ\nline-fragments NN\nline-hand-wired JJ\nline-item JJ\nline-item-veto JJ\nline-pairs NN\nline-up NN\nlineage NN\nlineages NNS\nlineal JJ\nlinear JJ\nlinearly RB\nlineback NN\nlinebacker NN\nlinebackers NNS\nlined VBN\nlineman NN\nlinen NN\nlinen-covered JJ\nlinens NNS\nliner NN\nliners NNS\nlines NNS\nlineup NN\nlineups NNS\nlinger VB\nlingered VBD\nlingerie NN\nlingering VBG\nlingers VBZ\nlingo NN\nlingua FW\nlinguine NN\nlinguist NN\nlinguist-anthropologist NN\nlinguistic JJ\nlinguistically RB\nlinguistics NNS\nlinguists NNS\nliniment NN\nliniments NNS\nlining VBG\nlink NN\nlink-ups NNS\nlinkage NN\nlinkages NNS\nlinked VBN\nlinking VBG\nlinks NNS\nlinkup NN\nlinkups NNS\nlinoleum NN\nlint NN\nlion NN\nlion's-head NN\nlioness NN\nlionesses NNS\nlionized VBN\nlions NNS\nlip NN\nlip-sucking NN\nlipid NN\nlipoproteins NNS\nliposomes NNS\nlips NNS\nlipstick NN\nlipsticks NNS\nliquefied VBN\nliquefies VBZ\nliquefy VB\nliqueur NN\nliquid JJ\nliquid-chromatography NN\nliquid-crystal JJ\nliquid-drug JJ\nliquid-fuel NN\nliquid-glass NN\nliquid-nitrogen NN\nliquidate VB\nliquidated VBN\nliquidating VBG\nliquidation NN\nliquidations NNS\nliquidator NN\nliquidators NNS\nliquidities NNS\nliquidity NN\nliquidity-enhancing JJ\nliquidity-short-selling NN\nliquids NNS\nliquified JJ\nliquor NN\nliquor-crazed JJ\nlira NN\nliras NNS\nlire NNS\nlise NNS\nlisping VBG\nlist NN\nliste FW\nlisted VBN\nlisten VB\nlistened VBD\nlistener NN\nlistener-supported JJ\nlisteners NNS\nlistening VBG\nlistens VBZ\nlisteria FW\nlisting NN\nlistings NNS\nlistless JJ\nlistlessly RB\nlists NNS\nlit VBD\nlitany NN\nliter NN\nliteracy NN\nliteral JJ\nliteral-minded JJ\nliteralism NN\nliterally RB\nliteralness NN\nliterary JJ\nliterate JJ\nliterature NN\nliteratures NNS\nliters NNS\nlithe JJ\nlithium NN\nlithograph NN\nlithographic JJ\nlithographs NNS\nlithography NN\nlithotripsy NN\nlithotripter NN\nlitigant NN\nlitigants NNS\nlitigate VB\nlitigated VBN\nlitigation NN\nlitigation-support JJ\nlitigator NN\nlitigators NNS\nlitigious JJ\nlitle JJ\nlitmus NN\nlitter NN\nlitter-strewn JJ\nlitterbug NN\nlittered VBN\nlittering NN\nlitters NNS\nlittle JJ\nlittle-feared JJ\nlittle-girl JJ\nlittle-known JJ\nlittle-noted JJ\nlittle-noticed JJ\nlittle-publicized JJ\nlittle-town JJ\nlittle-understood JJ\nlittlest JJS\nliturgical JJ\nliturgy NN\nlivability NN\nlivable JJ\nlive VB\nlive-hauled VBD\nlive-haulers NNS\nlive-in JJ\nlive-oak NN\nlived VBD\nlivelier JJR\nliveliest JJS\nlivelihood NN\nliveliness NN\nlively JJ\nliver NN\nliveried JJ\nlivers NNS\nlivery NN\nlives NNS\nlivestock NN\nlivestock-dealing JJ\nlivid JJ\nlivin NN\nliving VBG\nliving-benefits JJ\nliving-room NN\nlivres FW\nlizard NN\nlizards NNS\nlmao UH\nlmaoo UH\nlmfao UH\nlo UH\nload NN\nload-shedding NNS\nloaded VBN\nloader NN\nloaders NNS\nloadin VBG\nloading NN\nloadings NNS\nloads NNS\nloaf NN\nloafed VBD\nloafers NNS\nloan NN\nloan-by-phone JJ\nloan-defaulters NNS\nloan-forgiveness NN\nloan-guarantee NN\nloan-loss NN\nloan-management NN\nloan-officer NN\nloan-production NN\nloan-repayment NN\nloan-restructuring JJ\nloan-to-value JJ\nloaned VBN\nloans NNS\nloath JJ\nloathed VBD\nloathes VBZ\nloathing NN\nloathsome JJ\nloaves NNS\nlob VB\nlob-scuse NN\nlobbied VBD\nlobbies NNS\nlobby NN\nlobbying VBG\nlobbyist NN\nlobbyists NNS\nlobe NN\nlobes NNS\nloblolly NN\nlobo NN\nlobscouse NN\nlobster NN\nlobster-backed JJ\nlobstermen NNS\nlobsters NNS\nlobular JJ\nlobule NN\nlobules NNS\nlocal JJ\nlocal-content JJ\nlocal-control JJ\nlocal-exchange JJ\nlocal-government JJ\nlocal-money NN\nlocal-news NN\nlocal-service JJ\nlocale NN\nlocales NNS\nlocalism NN\nlocalisms NNS\nlocalities NNS\nlocality NN\nlocalization NN\nlocalize VB\nlocalized JJ\nlocally RB\nlocals NNS\nlocate VB\nlocated VBN\nlocates VBZ\nlocatin NN\nlocating VBG\nlocation NN\nlocation-minded JJ\nlocations NNS\nloch NN\nlock VB\nlock-outs NNS\nlocked VBN\nlocker NN\nlocker-room NN\nlockers NNS\nlockhold NN\nlocking JJ\nlocking-in NN\nlockout NN\nlocks NNS\nlockstep NN\nlockup NN\nloco FW\nlocomotive NN\nlocomotives NNS\nlocus NN\nlocust NN\nlocusts NNS\nlocutions NNS\nlodge NN\nlodged VBN\nlodges NNS\nlodging NN\nlodgings NNS\nlodgment NN\nloft NN\nlofts NNS\nlofty JJ\nlog NN\nlog-house NN\nlog-jam NN\nlog-rolled VBD\nlogarithm NN\nlogarithms NNS\nlogged VBN\nlogger NN\nloggerheads NNS\nloggers NNS\nlogging NN\nlogic NN\nlogic-rhetoric NN\nlogical JJ\nlogically RB\nlogistic JJ\nlogistical JJ\nlogistics NNS\nlogistics-computer NN\nlogjam NN\nlogo NN\nlogos NNS\nlogs NNS\nloin NN\nloincloth NN\nloins NNS\nloitering NN\nlol UH\nlolling VBG\nlollipop NN\nlone JJ\nlonelier RBR\nloneliest JJS\nloneliness NN\nlonely JJ\nlonely-hearts NNS\nloner NN\nloners NNS\nlonesome JJ\nlong JJ\nlong-acting JJ\nlong-arranged JJ\nlong-awaited JJ\nlong-banned JJ\nlong-bodied JJ\nlong-bubbling JJ\nlong-canceled JJ\nlong-chain NN\nlong-cherished JJ\nlong-considered JJ\nlong-cruise JJ\nlong-dated JJ\nlong-deferred JJ\nlong-delayed JJ\nlong-depressed JJ\nlong-deprived JJ\nlong-distance JJ\nlong-dollar JJ\nlong-dominant JJ\nlong-dormant JJ\nlong-endurance JJ\nlong-established JJ\nlong-familiar JJ\nlong-far NN\nlong-format JJ\nlong-hair JJ\nlong-handled JJ\nlong-haul JJ\nlong-held JJ\nlong-hoped-for JJ\nlong-keeping JJ\nlong-known JJ\nlong-lasting JJ\nlong-life JJ\nlong-line JJ\nlong-lived JJ\nlong-neck JJ\nlong-necked JJ\nlong-opposed JJ\nlong-overdue JJ\nlong-planned JJ\nlong-range JJ\nlong-rumored JJ\nlong-run JJ\nlong-running JJ\nlong-settled JJ\nlong-shanked JJ\nlong-shelf-life JJ\nlong-simmering JJ\nlong-sleeved JJ\nlong-sought JJ\nlong-standing JJ\nlong-stemmed JJ\nlong-studied JJ\nlong-successful JJ\nlong-suffering JJ\nlong-suspected JJ\nlong-tenured JJ\nlong-term JJ\nlong-term-oriented JJ\nlong-term`` ``\nlong-termers NNS\nlong-time JJ\nlong-troubled JJ\nlong-vanished JJ\nlong-view JJ\nlong-yardage JJ\nlonged VBD\nlonged-for JJ\nlonger RB\nlonger-established JJ\nlonger-lived JJ\nlonger-range JJR\nlonger-run JJ\nlonger-term JJ\nlongerterm JJ\nlongest JJS\nlongest-standing JJS\nlongevity NN\nlonghaired JJ\nlonghand JJ\nlonghaul NN\nlonghorn NN\nlonghorns NNS\nlonging NN\nlongings NNS\nlongish JJ\nlongitude NN\nlongitudes NNS\nlongitudinal JJ\nlongneck JJ\nlongrange JJ\nlongrun JJ\nlongs VBZ\nlongshoreman NN\nlongshoremen NNS\nlongshot NN\nlongstanding JJ\nlongstrained VBN\nlongsuffering JJ\nlongterm JJ\nlongtime JJ\nlongue NN\nlook VB\nlook-alike JJ\nlook-see NN\nlookalike JJ\nlooked VBD\nlookee-loos NNS\nlookin VBG\nlooking VBG\nlookit NN\nlookout NN\nlooks VBZ\nlookup NN\nloom VBP\nloomed VBD\nlooming VBG\nlooms VBZ\nloon NN\nloonies NNS\nloony JJ\nloop NN\nloopaholics NNS\nlooped VBD\nloophole NN\nloophole... :\nloopholes NNS\nloops NNS\nloopy JJ\nloose JJ\nloose-jointed JJ\nloose-jowled JJ\nloose-knit JJ\nloose-leaf JJ\nloose-loaded JJ\nlooseleaf NN\nloosely RB\nloosely-taped JJ\nloosen VB\nloosened VBN\nlooseness NN\nloosening VBG\nloosens VBZ\nlooser JJR\nloosest JJS\nloot NN\nlooted VBN\nlooting NN\nlootings NNS\nlop JJ\nlope NN\nloped VBD\nlopes VBZ\nloping VBG\nlopped VBD\nlopping NN\nlopsided JJ\nlopsidedly RB\nloquacious JJ\nloquacity NN\nlorazapam NN\nlord NN\nlorded VBD\nlordly JJ\nlords NNS\nlordship NN\nlore NN\nlorries NNS\nlose VB\nloser NN\nlosers NNS\nloses VBZ\nlosing VBG\nloss NN\nloss-expense JJ\nloss-making JJ\nloss-plagued JJ\nloss-recovery JJ\nlosses NNS\nlosses... :\nlost VBD\nlost-profits JJ\nlot NN\nlotion NN\nlotions NNS\nlots NNS\nlotter NN\nlotteries NNS\nlottery NN\nlotus NN\nloud JJ\nloud-voiced JJ\nlouder JJR\nloudest JJS\nloudly RB\nloudspeaker NN\nloudspeakers NNS\nlouis NNS\nlounge NN\nlounged VBD\nlounges NNS\nlounging VBG\nlouse VB\nloused VBD\nlousy JJ\nloutish JJ\nlovable JJ\nlove NN\nlove'em NN\nlove-hate JJ\nlove-in-action NN\nlove-making NN\nlovebirds NNS\nloved VBD\nloved'em NN\nlovelier-than-life JJ\nlovelies NNS\nloveliest JJS\nloveliness NN\nlovelorn JJ\nlovely JJ\nlover NN\nlovering VBG\nlovers NNS\nloves VBZ\nlovin JJ\nloving JJ\nlovingly RB\nlow JJ\nlow*/JJ-tech NN\nlow-VAT JJ\nlow-ability JJ\nlow-acid JJ\nlow-altitude NN\nlow-back JJ\nlow-back-pain JJ\nlow-ball JJ\nlow-base-price JJ\nlow-boiling JJ\nlow-budget JJ\nlow-cal JJ\nlow-caliber NN\nlow-calorie JJ\nlow-ceilinged JJ\nlow-cholesterol JJ\nlow-class JJ\nlow-concept JJ\nlow-cost JJ\nlow-crime JJ\nlow-density JJ\nlow-down NN\nlow-duty JJ\nlow-end JJ\nlow-fat JJ\nlow-foam NN\nlow-frequency JJ\nlow-grade JJ\nlow-grossing JJ\nlow-growth JJ\nlow-heeled JJ\nlow-income JJ\nlow-interest JJ\nlow-key JJ\nlow-level JJ\nlow-life JJ\nlow-lifes NNS\nlow-load JJ\nlow-loss JJ\nlow-lying JJ\nlow-maintenance JJ\nlow-margin JJ\nlow-moisture JJ\nlow-paid JJ\nlow-pass JJ\nlow-paying JJ\nlow-pitched JJ\nlow-polluting JJ\nlow-power JJ\nlow-price JJ\nlow-priced JJ\nlow-profile JJ\nlow-profit JJ\nlow-profitmargin NN\nlow-quality JJ\nlow-rate JJ\nlow-rated JJ\nlow-risk JJ\nlow-slung JJ\nlow-smoke JJ\nlow-speed JJ\nlow-stress JJ\nlow-sudsing JJ\nlow-sugar JJ\nlow-sulfur JJ\nlow-sulphur JJ\nlow-tax NN\nlow-temperature JJ\nlow-tension JJ\nlow-to-no-fat JJ\nlow-value JJ\nlow-voltage JJ\nlow-volume JJ\nlow-wage JJ\nlow-water NN\nlow-yielding JJ\nlowball NN\nlowdown JJ\nlower JJR\nlower-class JJ\nlower-cost JJ\nlower-court JJ\nlower-cut JJ\nlower-emission NN\nlower-growth JJ\nlower-house NN\nlower-income JJ\nlower-level JJ\nlower-middle JJ\nlower-middle-class JJ\nlower-paid JJ\nlower-priced JJ\nlower-priority JJ\nlower-quality NN\nlower-rated JJ\nlower-status JJ\nlower-tech JJ\nlower-than-anticipated JJ\nlower-than-expected JJ\nlower-than-forecast JJ\nlower-than-planned JJ\nlower-value JJR\nlower-volume JJ\nlower-wage JJ\nlowered VBD\nlowering VBG\nlowers VBZ\nlowest JJS\nlowest-cost JJ\nlowest-paying JJ\nlowest-priced JJ\nlowest-rated JJ\nlowincome JJ\nlowlands NNS\nlowliest JJS\nlowly JJ\nlowprofile JJ\nlows NNS\nloyal JJ\nloyalist NN\nloyalists NNS\nloyalties NNS\nloyalty NN\nlube NN\nlubra NN\nlubricant NN\nlubricants NNS\nlubricated VBN\nlubricating-oil NN\nlucid JJ\nlucidity NN\nlucidly RB\nluck NN\nlucked VBD\nluckier JJR\nluckiest JJS\nluckily RB\nlucks NNS\nlucky JJ\nlucrative JJ\nlucy NN\nludicrous JJ\nludicrously RB\nludicrousness NN\nlug VB\nluggage NN\nlugged VBD\nlugging VBG\nlugs NNS\nlui FW\nlukewarm JJ\nlull NN\nlullaby NN\nlulled VBN\nlulls NNS\nlulu NN\nlumbar JJ\nlumber NN\nlumber-like JJ\nlumbered VBD\nlumbering JJ\nlumberjack NN\nlumberyard NN\nlumen NN\nluminaries NNS\nluminescence NN\nluminescent JJ\nluminosity NN\nluminous JJ\nluminously RB\nlummox NN\nlump NN\nlump-sum JJ\nlumped VBN\nlumpen-intellectual JJ\nlumpier JJR\nlumping VBG\nlumpish JJ\nlumps NNS\nlumpy JJ\nlunar JJ\nlunatic JJ\nlunatic-fringe JJ\nlunatics NNS\nlunation NN\nlunch NN\nlunch-box NN\nlunch-hour NN\nlunch-time NN\nlunched VBN\nluncheon NN\nluncheon-meat NN\nluncheon-table JJ\nluncheon-voucher NN\nluncheons NNS\nlunches NNS\nlunchroom NN\nlunchtime NN\nlung NN\nlung-cancer NN\nlung-function JJ\nlung-tissue JJ\nlunge VB\nlunged VBD\nlunger NN\nlunges VBZ\nlunging VBG\nlungs NNS\nlurch NN\nlurched VBD\nlurching VBG\nlure VB\nlured VBN\nlures VBZ\nlurid JJ\nluring VBG\nlurk VB\nlurked VBD\nlurking VBG\nlurks VBZ\nluscious JJ\nlush JJ\nlushes NNS\nlust NN\nluster NN\nlustful JJ\nlustily RB\nlustre NN\nlustrious JJ\nlustrous JJ\nlusts NNS\nlusty JJ\nlute NN\nlutihaw FW\nluv NN\nluxuriance NN\nluxuries NNS\nluxuriosly-upholstered JJ\nluxurious JJ\nluxury NN\nluxury-car NN\nluxury-goods NNS\nluxury-suite NN\nlye NN\nlyin NN\nlying VBG\nlyking VBG\nlymph NN\nlymphocytes NNS\nlymphocytic JJ\nlymphoma NN\nlynch VB\nlynch-mob JJ\nlynched VBN\nlyophilized VBN\nlyric JJ\nlyrical JJ\nlyricism NN\nlyricist NN\nlyricists NNS\nlyrics NNS\nlyriist NN\nm NN\nm&a JJ\nm.p.h NN\nm.p.h. NN\nmEq NNP\nmEq. NN\nmV NN\nma FW\nma'am NN\nmacabre JJ\nmacaque JJ\nmacaroni NNS\nmacaroni-and-cheese NN\nmacaw NN\nmacbook NNP\nmachete NN\nmachetes NNS\nmachikin FW\nmachinations NNS\nmachine NN\nmachine-family NN\nmachine-gun NN\nmachine-gun-toting JJ\nmachine-gunned CD\nmachine-masters NNS\nmachine-tool JJ\nmachine-vision NN\nmachinegun NN\nmachinelike JJ\nmachinery NN\nmachinery-trading JJ\nmachines NNS\nmachining NN\nmachinist NN\nmachinists NNS\nmacho JJ\nmachos NNS\nmackerel NN\nmackinaw NN\nmackintosh NN\nmacro-instructions NNS\nmacrocrystalline NN\nmacrocrystals NNS\nmacroeconomic JJ\nmacromolecular JJ\nmacromolecules NNS\nmacropathological JJ\nmacroscopically RB\nmad JJ\nmadam NN\nmadcap JJ\nmaddening JJ\nmaddeningly RB\nmade VBN\nmade-for-TV JJ\nmade-for-television JJ\nmade-up JJ\nmadhouse NN\nmadly RB\nmadman NN\nmadmen NNS\nmadness NN\nmadrigal NN\nmadrigaling NN\nmadrigals NNS\nmadstones NNS\nmaelstrom NN\nmaestro NN\nmafia NN\nmafias NNS\nmafiosi NNS\nmagazine NN\nmagazines NNS\nmagenta JJ\nmaget NN\nmaggot-covered JJ\nmaggots NNS\nmaggoty JJ\nmagic NN\nmagic-practicing JJ\nmagical JJ\nmagically RB\nmagician NN\nmagicians NNS\nmagisterially RB\nmagistrate NN\nmagistrates NNS\nmagnanimity NN\nmagnanimous JJ\nmagnate NN\nmagnates NNS\nmagnesium NN\nmagnet NN\nmagnetic JJ\nmagnetic-tape JJ\nmagnetic-tape-coating JJ\nmagnetically RB\nmagnetics NNS\nmagnetism NN\nmagnetisms NNS\nmagnetized VBN\nmagnets NNS\nmagnification NN\nmagnificence NN\nmagnificent JJ\nmagnificently RB\nmagnified VBN\nmagnifies VBZ\nmagnify VB\nmagnifying VBG\nmagnitude NN\nmagnitudes NNS\nmagnolia NN\nmagnum NN\nmagpies NNS\nmah PRP$\nmah-jongg FW\nmaharajahs NNS\nmahogany NN\nmaht MD\nmahua NN\nmai MD\nmai'teipa VB\nmaid NN\nmaiden NN\nmaidens NNS\nmaids NNS\nmaiestie NN\nmail NN\nmail-fraud NN\nmail-order JJ\nmail-processing JJ\nmail-room NN\nmail-sorting VBG\nmailboat NN\nmailbox NN\nmailboxes NNS\nmailed VBN\nmailed-fist-in-velvet-glove JJ\nmailers NNS\nmailgram NN\nmailgrams NNS\nmailing NN\nmailings NNS\nmailman NN\nmailmen NNS\nmailroom NN\nmailrooms NNS\nmails NNS\nmaimed JJ\nmain JJ\nmainframe NN\nmainframe-class JJ\nmainframe-manufacturing NN\nmainframes NNS\nmainland NN\nmainlander NN\nmainline JJ\nmainly RB\nmains NNS\nmainstay NN\nmainstays NNS\nmainstream NN\nmaintain VB\nmaintained VBN\nmaintainence NN\nmaintaining VBG\nmaintains VBZ\nmaintenance NN\nmais FW\nmaitre NNP\nmaitres FW\nmajesterial JJ\nmajestic JJ\nmajestically RB\nmajesty NN\nmajeure NN\nmajor JJ\nmajor-burden-to-the-planet NN\nmajor-frauds JJ\nmajor-league JJ\nmajor-market JJ\nmajor-medical JJ\nmajor-party JJ\nmajored VBN\nmajoring VBG\nmajoritarian JJ\nmajorities NNS\nmajority NN\nmajority-held JJ\nmajority-owned JJ\nmajority-party JJ\nmajors NNS\nmajuh NN\nmake VB\nmake-believe NN\nmake-overs NNS\nmake-ready NN\nmake-up NN\nmake-work JJ\nmake... :\nmakeover NN\nmaker NN\nmakers NNS\nmakersa NNS\nmakes VBZ\nmakeshift JJ\nmakeshifts NNS\nmakeup NN\nmakin VBG\nmaking VBG\nmakings NNS\nmaku FW\nmaladaptive JJ\nmaladies NNS\nmaladjusted JJ\nmaladjustment NN\nmaladjustments NNS\nmaladroit JJ\nmalady NN\nmalaise NN\nmalapropism NN\nmalapropisms NNS\nmalaria NN\nmalcontent NN\nmale JJ\nmale-dominated JJ\nmale-fertile JJ\nmale-headed JJ\nmale-only JJ\nmale-sterile JJ\nmalediction NN\nmalefactors NNS\nmaleness NN\nmales NNS\nmalevolence NN\nmalevolencies NNS\nmalevolent JJ\nmalfeasant JJ\nmalformations NNS\nmalformed JJ\nmalfunction NN\nmalfunctioning NN\nmalfunctions NNS\nmalice NN\nmalicious JJ\nmaliciously RB\nmalign JJ\nmalignancies NNS\nmalignancy NN\nmalignant JJ\nmaligned VBN\nmalingering VBG\nmall NN\nmalleable JJ\nmalls NNS\nmalnourished JJ\nmalnourishment NN\nmalnutrition NN\nmalocclusion NN\nmalposed JJ\nmalpractice NN\nmalpractices NNS\nmalt NN\nmalted VBN\nmaltreat VBP\nmaltreated VBN\nmaltreatment NN\nmalunya NN\nmama NN\nmamalian JJ\nmammal NN\nmammalian JJ\nmammals NNS\nmammary JJ\nmammas NN\nmammography NN\nmammoth JJ\nmammoths NNS\nman NN\nman-bites-dog JJ\nman-hours NNS\nman-in-the-European-street NN\nman-in-the-moon JJ\nman-made JJ\nman-to-man RB\nman. NN\nmana NN\nmanacles NNS\nmanagament NN\nmanage VB\nmanageability NN\nmanageable JJ\nmanaged VBD\nmanaged-care JJ\nmanagement NN\nmanagement-by-objective NN\nmanagement-consultant NN\nmanagement-consulting JJ\nmanagement-controlled JJ\nmanagement-employee NN\nmanagement-incentive JJ\nmanagement-information JJ\nmanagement-labor JJ\nmanagement-led JJ\nmanagement-pilot JJ\nmanagement-pilots JJ\nmanagement-research NN\nmanagement-services NNS\nmanagement-trained JJ\nmanagement-union JJ\nmanagement... :\nmanagements NNS\nmanager NN\nmanagerial JJ\nmanagers NNS\nmanages VBZ\nmanaging VBG\nmanagment NN\nmandamus NN\nmandate NN\nmandated VBN\nmandates NNS\nmandating VBG\nmandating'efficiency NN\nmandatory JJ\nmandatory-retirement JJ\nmandrel NN\nmane NN\nmanes NNS\nmaneuver NN\nmaneuverability NN\nmaneuvered VBD\nmaneuvering NN\nmaneuverings NNS\nmaneuvers NNS\nmanganese NN\nmanger NN\nmangled JJ\nmanhandled VBN\nmanhole NN\nmanholes NNS\nmanhood NN\nmanhours NNS\nmanhunts NNS\nmania NN\nmaniac NN\nmaniacal JJ\nmaniacs NNS\nmanias NNS\nmanic JJ\nmanic-depressive NN\nmaniclike JJ\nmanicured VBN\nmanicures VBZ\nmanifest JJ\nmanifestation NN\nmanifestations NNS\nmanifested VBD\nmanifesting VBG\nmanifestly RB\nmanifesto NN\nmanifestos NNS\nmanifold NN\nmanikin NN\nmanikins NNS\nmanila JJ\nmaninstays NNS\nmanipulate VB\nmanipulated VBN\nmanipulates VBZ\nmanipulating VBG\nmanipulation NN\nmanipulations NNS\nmanipulative JJ\nmanipulator NN\nmanipulators NNS\nmankind NN\nmanliness NN\nmanly JJ\nmanmade NN\nmanmade-fiber JJ\nmanna NN\nmanned JJ\nmannequin NN\nmannequins NNS\nmanner NN\nmannered JJ\nmannerism NN\nmannerisms NNS\nmanners NNS\nmanning VBG\nmano NN\nmanometer NN\nmanor NN\nmanors NNS\nmanpower NN\nmans VBZ\nmanse NN\nmanservant NN\nmansion NN\nmansions NNS\nmanslaughter NN\nmantel NN\nmantic JJ\nmantle NN\nmantlepiece NN\nmantrap NN\nmanual JJ\nmanually RB\nmanuals NNS\nmanuevering NN\nmanufacture VB\nmanufactured VBN\nmanufactured... :\nmanufacturer NN\nmanufacturers NNS\nmanufactures VBZ\nmanufacturing NN\nmanufacturing-automation NN\nmanufacturing-cost NN\nmanufacturing-sector NN\nmanumission NN\nmanumitted VBN\nmanure NN\nmanure-scented JJ\nmanuscript NN\nmanuscripts NNS\nmany JJ\nmany-bodied JJ\nmany-faced JJ\nmany-fold RB\nmany-much NN\nmany-sided JJ\nmany-times RB\nmanye JJ\nmanzanita NN\nmap NN\nmaple NN\nmaples NNS\nmapped VBN\nmapping NN\nmaps NNS\nmaquette NN\nmaquila NN\nmaquiladora NN\nmaquiladoras NNS\nmaquilas NNS\nmar VB\nmaraschino NN\nmarathon NN\nmarathons NNS\nmarauders NNS\nmarauding VBG\nmarble NN\nmarble-columned JJ\nmarble-encased JJ\nmarbleized VBN\nmarbleizing NN\nmarbles NNS\nmarcato FW\nmarch NN\nmarched VBD\nmarchers NNS\nmarches NNS\nmarchin NN\nmarching VBG\nmare NN\nmare-COOR NNP\nmares NNS\nmargarine NN\nmargin NN\nmargin-calls NNS\nmargin-the NN|DT\nmarginal JJ\nmarginal-rate NN\nmarginalia NNS\nmarginality NN\nmarginalizing VBG\nmarginally RB\nmargined VBN\nmargining VBG\nmargins NNS\nmargins... :\nmaria NNS\nmarijuana NN\nmarijuana-smuggling JJ\nmarimba NN\nmarina NN\nmarinade NN\nmarinas NNS\nmarinated VBN\nmarinating VBG\nmarine NN\nmarine-products NNS\nmarine-related JJ\nmarine-research NN\nmarine-shipping JJ\nmarine-transport NN\nmariner NN\nmarines NNS\nmarionettes NNS\nmarital JJ\nmaritime JJ\nmarjoram NN\nmark NN\nmark-denominated JJ\nmark-up NN\nmark-ups NNS\nmark-yen JJ\nmarkdown NN\nmarkdowns NNS\nmarked VBN\nmarkedly RB\nmarker NN\nmarkers NNS\nmarket NN\nmarket-affecting JJ\nmarket-allocation JJ\nmarket-based JJ\nmarket-basket JJ\nmarket-by-market JJ\nmarket-corporate JJ\nmarket-driven JJ\nmarket-hog JJ\nmarket-if-touched NN\nmarket-inspired JJ\nmarket-jarring JJ\nmarket-maker NN\nmarket-makers NNS\nmarket-making NN\nmarket-monitoring JJ\nmarket-moving JJ\nmarket-on-close JJ\nmarket-opening JJ\nmarket-oriented JJ\nmarket-place NN\nmarket-ready JJ\nmarket-reform JJ\nmarket-related JJ\nmarket-research NN\nmarket-revision NN\nmarket-sensitive JJ\nmarket-share JJ\nmarket-sharing JJ\nmarket-specific JJ\nmarket-stabilizing JJ\nmarket-style JJ\nmarket-system NN\nmarket-timing JJ\nmarket-watchers NNS\nmarket-weighted JJ\nmarket... :\nmarket:8.40 CD\nmarket:8.60 NN|CD\nmarket:8.80 CD\nmarket:8.90 CD\nmarketability NN\nmarketable JJ\nmarketed VBN\nmarketeers NNS\nmarketer NN\nmarketers NNS\nmarketin NN\nmarketing NN\nmarketing-and-distribution JJ\nmarketing-communications NNS\nmarketing-data NNS\nmarketing-wise JJ\nmarketings NNS\nmarketization NN\nmarketmaking NN\nmarketplace NN\nmarketplaces NNS\nmarkets NNS\nmarketshare NN\nmarketwide JJ\nmarketwise RB\nmarking VBG\nmarkings NNS\nmarkka FW\nmarkkaa NN\nmarks NNS\nmarksman NN\nmarksmanship NN\nmarkup NN\nmarkups NNS\nmarmalade NN\nmaroon JJ\nmarooned VBD\nmarque NN\nmarquee NN\nmarquees NNS\nmarques NNS\nmarred VBN\nmarriage NN\nmarriageables NNS\nmarriages NNS\nmarried VBN\nmarried''-style JJ\nmarried-couple JJ\nmarried-put JJ\nmarrieds NNS\nmarries VBZ\nmarring VBG\nmarrow NN\nmarrowbones NNS\nmarry VB\nmarrying VBG\nmars VBZ\nmarshal NN\nmarshaling VBG\nmarshalled VBD\nmarshalling NN\nmarshals NNS\nmarshes NNS\nmarshlands NNS\nmarshmallow NN\nmarshmallows NNS\nmart NNP\nmartial JJ\nmartingale NN\nmartini NN\nmartinis NNS\nmarts NNS\nmartyr NN\nmartyrdom NN\nmarvel VB\nmarveled VBD\nmarveling VBG\nmarvelled VBD\nmarvelous JJ\nmarvelously RB\nmarvels NNS\nmaryed VBN\nmascara NN\nmascot NN\nmasculine JJ\nmasculinity NN\nmasers NNS\nmash NN\nmashed VBN\nmashing VBG\nmask NN\nmasked VBN\nmaskers NNS\nmasking VBG\nmasks NNS\nmason NN\nmasonry NN\nmasons NNS\nmasquerade NN\nmasquerades VBZ\nmasquerading VBG\nmasquers NNS\nmass NN\nmass-audience JJ\nmass-building JJ\nmass-circulation JJ\nmass-distribution JJ\nmass-faxing JJ\nmass-market JJ\nmass-marketers NNS\nmass-media NN\nmass-merchandise NN\nmass-murderer NN\nmass-produce VB\nmass-produced JJ\nmass-producing VBG\nmass-production NN\nmass-reproduced JJ\nmass-transit NN\nmassacre NN\nmassacred VBD\nmassacres NNS\nmassage NN\nmassaged VBN\nmassages NNS\nmassaging VBG\nmasse FW\nmassed VBD\nmasses NNS\nmasseur NN\nmasseurs NNS\nmasseuse NN\nmasseuses NNS\nmassifs NNS\nmassing VBG\nmassive JJ\nmassively RB\nmassuh NN\nmast NN\nmaster NN\nmaster-race NN\nmastered VBN\nmasterful JJ\nmasterfully RB\nmastering VBG\nmasterly JJ\nmastermind NN\nmasterminding VBG\nmasterpiece NN\nmasterpieces NNS\nmasters NNS\nmasterworks NNS\nmastery NN\nmastiff NN\nmastodons NNS\nmastoideus NN\nmasts NNS\nmat NN\nmatador NN\nmatch VB\nmatch-width NN\nmatched VBN\nmatches VBZ\nmatching VBG\nmatching-fund JJ\nmatchless JJ\nmatchmaker NN\nmatchmakers NNS\nmatchmaking NN\nmate NN\nmated VBN\nmateless JJ\nmater NN\nmaterals NNS\nmaterial NN\nmaterial-formal JJ\nmaterial-management NN\nmaterial0F. NN\nmaterialism NN\nmaterialistic JJ\nmaterialize VB\nmaterialized VBD\nmaterializes VBZ\nmaterially RB\nmaterials NNS\nmaterials-handling JJ\nmaterials-related JJ\nmateriel NN\nmaternal JJ\nmaternity NN\nmates NNS\nmath NN\nmathematical JJ\nmathematically RB\nmathematician NN\nmathematicians NNS\nmathematics NNS\nmatinals FW\nmatinee JJ\nmatinees NNS\nmating NN\nmatriarch NN\nmatriarchal JJ\nmatricide NN\nmatriculate VB\nmatriculated VBN\nmatrimonial JJ\nmatrimony NN\nmatrix NN\nmatron NN\nmatronly JJ\nmatryoshka FW\nmats NNS\nmatsyendra NN\nmatt NN\nmatte NN\nmatter NN\nmatter-of-factly RB\nmatter-of-factness NN\nmattered VBD\nmatters NNS\nmatting NN\nmattress NN\nmattresses NNS\nmaturation NN\nmaturational JJ\nmature JJ\nmatured VBD\nmatures VBZ\nmaturing VBG\nmaturities NNS\nmaturity NN\nmaudlin JJ\nmaul VB\nmauler NN\nmauling VBG\nmausoleum NN\nmauve JJ\nmaven NN\nmavens NNS\nmaverick NN\nmavericks NNS\nmaw NN\nmawkish JJ\nmax NN\nmaxim NN\nmaximal JJ\nmaximization NN\nmaximize VB\nmaximized VBN\nmaximizes VBZ\nmaximizing VBG\nmaxims NNS\nmaximum JJ\nmaximum-security JJ\nmaximums NNS\nmay MD\nmay... :\nmaya FW\nmaybe RB\nmaye MD\nmayhem NN\nmayonnaise NN\nmayor NN\nmayoral JJ\nmayoralty NN\nmayors NNS\nmayorship NN\nmayst MD\nmaze NN\nmazes NNS\nmazurka NN\nmc. NN\nme PRP\nme/PRP NNP\nmea FW\nmeadow NN\nmeadows NNS\nmeager JJ\nmeal NN\nmeal-to-meal JJ\nmealie-meal NN\nmeals NNS\nmealtime NN\nmealy JJ\nmealynose NN\nmealynosed JJ\nmean VB\nmean-spirited JJ\nmean-square JJ\nmeandered VBD\nmeandering VBG\nmeanders VBZ\nmeaner JJR\nmeanes NNS\nmeanest JJS\nmeanin VBG\nmeaning NN\nmeaningful JJ\nmeaningfully RB\nmeaningfulness NN\nmeaningless JJ\nmeaninglessness NN\nmeanings NNS\nmeanly RB\nmeanness NN\nmeans VBZ\nmeant VBD\nmeantime NN\nmeanwhile RB\nmeasles NN\nmeasly JJ\nmeasurable JJ\nmeasurably RB\nmeasure NN\nmeasured VBN\nmeasurement NN\nmeasurements NNS\nmeasures NNS\nmeasuring VBG\nmeat NN\nmeat-hungry JJ\nmeat-packing JJ\nmeat-processing JJ\nmeat-wagon NN\nmeatpacker NN\nmeatpacking NN\nmeats NNS\nmeaty JJ\nmecca NN\nmechanic NN\nmechanical JJ\nmechanically RB\nmechanics NNS\nmechanism NN\nmechanisms NNS\nmechanist NN\nmechanistic JJ\nmechanization NN\nmechanized JJ\nmechanochemically RB\nmeclofenamate NN\nmecum FW\nmedal NN\nmedalist NN\nmedallions NNS\nmedals NNS\nmeddle VB\nmeddling VBG\nmedia NNS\nmedia-buying JJ\nmedia-conscious JJ\nmedia-linked JJ\nmedia-related JJ\nmedia-spending JJ\nmedia-stock JJ\nmediaevalist NN\nmedian JJ\nmedian-family NN\nmedian-nerve JJ\nmediate VB\nmediated VBN\nmediating VBG\nmediation NN\nmediator NN\nmediators NNS\nmedical JJ\nmedical-airlift NN\nmedical-assistance NN\nmedical-benefits NNS\nmedical-care NN\nmedical-instrument JJ\nmedical-leave JJ\nmedical-practice NN\nmedical-products NNS\nmedical-school NN\nmedical-support JJ\nmedical-test JJ\nmedically RB\nmedicare NN\nmedication NN\nmedication-dispensing JJ\nmedications NNS\nmedicinal JJ\nmedicinalis FW\nmedicine NN\nmedicines NNS\nmedico NN\nmedico-military NN\nmedics NNS\nmedieval JJ\nmediocre JJ\nmediocrities NNS\nmediocrity NN\nmeditate VB\nmeditated VBD\nmeditating VBG\nmeditation NN\nmeditations NNS\nmeditative JJ\nmedium NN\nmedium-distance JJ\nmedium-duty JJ\nmedium-grade JJ\nmedium-haul JJ\nmedium-size JJ\nmedium-sized JJ\nmedium-term JJ\nmedium-to-long-range JJ\nmediumistic JJ\nmediums NNS\nmediumship NN\nmedley NN\nmee PRP\nmeek JJ\nmeek-mannered JJ\nmeekest JJS\nmeekly RB\nmeet VB\nmeet... :\nmeetin NN\nmeeting NN\nmeetings NNS\nmeets VBZ\nmega JJ\nmega-crash NN\nmega-crashes NNS\nmega-deal NN\nmega-deals NNS\nmega-hit JJ\nmega-issues NNS\nmega-lawyer NN\nmega-mergers NNS\nmega-problems NNS\nmega-projects NNS\nmega-resort NN\nmega-resorts NNS\nmega-stadium NN\nmega-stardom NN\nmega-welfare JJ\nmegabillion NN\nmegabit NN\nmegabyte NN\nmegabytes NNS\nmegadrop NN\nmegahertz NN\nmegakaryocytic JJ\nmegalomania NN\nmegalomaniac NN\nmegalopolises NNS\nmegaquestions NNS\nmegaton NN\nmegatons NNS\nmegawatt NN\nmegawatts NNS\nmei FW\nmelamine NN\nmelancholy NN\nmelanderi NNPS\nmelange NN\nmelanin NN\nmeld VB\nmelding VBG\nmelds VBZ\nmelee NN\nmelioration NN\nmellifluous JJ\nmellow JJ\nmellowed VBN\nmelodic JJ\nmelodically RB\nmelodies NNS\nmelodious JJ\nmelodrama NN\nmelodramatic JJ\nmelody NN\nmelon NN\nmelon-like JJ\nmelt VB\nmelt-textured JJ\nmeltdown NN\nmelted VBN\nmelting VBG\nmelts VBZ\nmem FW\nmember NN\nmembers NNS\nmembers. NN\nmembership NN\nmemberships NNS\nmembrane NN\nmeme FW\nmemento NN\nmementos NNS\nmeminisse FW\nmemo NN\nmemoir NN\nmemoirs NNS\nmemorabilia NNS\nmemorable JJ\nmemoranda NNS\nmemorandum NN\nmemorandums NNS\nmemorial NN\nmemorialist NN\nmemorialization NN\nmemorialized VBN\nmemorials NNS\nmemories NNS\nmemorization NN\nmemorize VB\nmemorized VBN\nmemorizing NN\nmemory NN\nmemory-chip NN\nmemory-expansion JJ\nmemory-images NNS\nmemory-picture NN\nmemory-pictures NNS\nmemos NNS\nmen NNS\nmen-folk NNS\nmen-of-war NNS\nmenace NN\nmenaced VBN\nmenacing JJ\nmenarche NN\nmenarches NNS\nmend VB\nmendacious JJ\nmendacity NN\nmended VBN\nmendicant JJ\nmending VBG\nmenial JJ\nmeningioma NN\nmenopause NN\nmenstrual JJ\nmenstruation JJ\nmenswear NN\nmental JJ\nmental-health JJ\nmental-illness NN\nmentalities NNS\nmentality NN\nmentally RB\nmention VB\nmentioned VBN\nmentioning VBG\nmentions VBZ\nmentor NN\nmentors NNS\nmenu NN\nmenus NNS\nmercenaries NNS\nmercenary JJ\nmercer NN\nmerchandise NN\nmerchandise-trade JJ\nmerchandised VBN\nmerchandisers NNS\nmerchandising NN\nmerchant NN\nmerchant-banking JJ\nmerchantbanking NN\nmerchants NNS\nmerciful JJ\nmercifully RB\nmerciless JJ\nmercilessly RB\nmercurial JJ\nmercury NN\nmercy NN\nmere JJ\nmerely RB\nmerely'critical JJ\nmerest JJS\nmeretricious JJ\nmerge VB\nmerged VBN\nmerger NN\nmerger-acquisition JJ\nmerger-law NN\nmerger-related JJ\nmergers NNS\nmergers-advisory JJ\nmergers-and-acquisitions NNS\nmerges VBZ\nmerging VBG\nmeridian NN\nmeringues NNS\nmerit NN\nmerited VBD\nmeritless JJ\nmeritocracy NN\nmeritorious JJ\nmerits NNS\nmermaid NN\nmerriest JJS\nmerrily RB\nmerriment NN\nmerry JJ\nmerry-go-round NN\nmerrymaking NN\nmerveilleux FW\nmesenteric JJ\nmesh NN\nmeshed VBN\nmesmerized VBN\nmesothelioma NN\nmess NN\nmessage NN\nmessages NNS\nmessaging NN\nmessed VBD\nmessenger NN\nmessengers NNS\nmesses NNS\nmesshall NN\nmessiah NN\nmessianic JJ\nmessieurs FW\nmessing VBG\nmessy JJ\nmet VBD\nmetabolic JJ\nmetabolism NN\nmetabolite NN\nmetabolites NNS\nmetabolize VB\nmetabolized VBN\nmetal NN\nmetal-benders NNS\nmetal-cleaning JJ\nmetal-coil JJ\nmetal-cutting JJ\nmetal-forming JJ\nmetal-hydrido NN\nmetal-processing JJ\nmetal-products NNS\nmetal-tasting JJ\nmetal-workers NNS\nmetal-working JJ\nmetalized VBN\nmetallic JJ\nmetallurgical JJ\nmetallurgy NN\nmetals NNS\nmetals-stock NN\nmetalsmiths NNS\nmetalworkers NNS\nmetalworking NN\nmetamidophos NNS\nmetamorphic JJ\nmetamorphosed VBN\nmetamorphosis NN\nmetaphor NN\nmetaphorical JJ\nmetaphors NNS\nmetaphosphate NN\nmetaphysic NN\nmetaphysical JJ\nmetaphysicals NNS\nmetaphysics NNS\nmeted VBN\nmeteor NN\nmeteoric JJ\nmeteorite NN\nmeteorites NNS\nmeteoritic JJ\nmeteorological JJ\nmeteorologist NN\nmeteorology NN\nmeteors NNS\nmeter NN\nmetered VBN\nmetering VBG\nmeterological JJ\nmeters NNS\nmethacrylate NN\nmethadone NN\nmethane NN\nmethanol NN\nmethanol-gasoline JJ\nmethanol-powered JJ\nmethod NN\nmethode NNP\nmethodical JJ\nmethodically RB\nmethodological JJ\nmethodologies NNS\nmethodology NN\nmethods NNS\nmethodsm NN\nmethyl NN\nmethylene NN\nmethylglyoxal NN\nmeticulous JJ\nmeticulously RB\nmetier NN\nmeting VBG\nmetis NNS\nmetrazol NN\nmetre NN\nmetric JJ\nmetric-ton-per-year JJ\nmetrical JJ\nmetrics NNS\nmetro NN\nmetronome NN\nmetropolis NN\nmetropolitan JJ\nmetropolitanization NN\nmetropolitian JJ\nmettle NN\nmettlesome JJ\nmettwurst NN\nmew VB\nmewed VBD\nmews NN\nmezzo NN\nmg NN\nmg. NN\nmiami NNP\nmiasma NN\nmiasmal JJ\nmica NN\nmice NNS\nmicelle NN\nmicelles NNS\nmicoprocessors NNS\nmicro JJ\nmicro-electronic JJ\nmicro-liquidity NN\nmicro-microcurie NN\nmicro-organisms NNS\nmicroanalysis NN\nmicrobe NN\nmicrobes NNS\nmicrobial JJ\nmicrobiological JJ\nmicrobiologist NN\nmicrobiology NN\nmicrocassette NN\nmicrochannel JJ\nmicrochemistry NN\nmicrochip NN\nmicrochips NNS\nmicrocircuits NNS\nmicrocomputer NN\nmicrocomputer-systems JJ\nmicrocomputers NNS\nmicrocosm NN\nmicrocytochemistry NN\nmicroeconomic JJ\nmicroeconomics NNS\nmicroeconomy NN\nmicroelectronic JJ\nmicroelectronics NNS\nmicrofilm NN\nmicrofossils NNS\nmicrograms NNS\nmicrographics NNS\nmicroinjection NN\nmicromanage NN\nmicromanagement NN\nmicrometeorite NN\nmicrometeorites NNS\nmicrometeoritic JJ\nmicrometer NN\nmicrometers NNS\nmicrons NNS\nmicroorganism NN\nmicroorganisms NNS\nmicrophone NN\nmicrophones NNS\nmicrophoning VBG\nmicroprocessor NN\nmicroprocessor-based JJ\nmicroprocessors NNS\nmicroscope NN\nmicroscopes NNS\nmicroscopic JJ\nmicroscopical JJ\nmicroscopy NN\nmicroseconds NNS\nmicrosomal JJ\nmicrosurgery NN\nmicrotonal JJ\nmicrovan NN\nmicrowavable JJ\nmicrowave NN\nmicrowaved VBN\nmicrowaves NNS\nmicrowaving VBG\nmid JJ\nmid-'70s NNS\nmid-'80s NNS\nmid-1890 CD\nmid-1940s NNS\nmid-1948 JJ\nmid-1950 CD\nmid-1950s NNS\nmid-1958 NN\nmid-1960 CD\nmid-1960s NNS\nmid-1963 CD\nmid-1970 NN\nmid-1970s NNS\nmid-1979 NN\nmid-1980s NNS\nmid-1981 CD\nmid-1986 NN\nmid-1987 NN\nmid-1988 CD\nmid-1989 NN\nmid-1990 CD\nmid-1990s NNS\nmid-1991 CD\nmid-1992 NN\nmid-1995 NN\nmid-19th JJ\nmid-20 CD\nmid-30s CD\nmid-40s CD\nmid-50s NNS\nmid-70s CD\nmid-80s NNS\nmid-April NN\nmid-Atlantic JJ\nmid-August NNP\nmid-December NNP\nmid-February NNP\nmid-January NNP\nmid-July NN\nmid-June NNP\nmid-March NNP\nmid-November NNP\nmid-October NNP\nmid-September NNP\nmid-Victorian NNP\nmid-afternoon JJ\nmid-air NN\nmid-century JJ\nmid-continent JJ\nmid-conversation NN\nmid-engine JJ\nmid-fifties NNS\nmid-flight RB\nmid-market JJ\nmid-morning NN\nmid-priced JJ\nmid-range JJ\nmid-season NN\nmid-section NN\nmid-shimmy NN\nmid-size JJ\nmid-sized JJ\nmid-term JJ\nmid-thirties NNS\nmid-to-high JJ\nmid-to-late JJ\nmid-twentieth JJ\nmid-twentieth-century JJ\nmid-watch JJ\nmid-week JJ\nmid1984 CD\nmidafternoon NN\nmidair NN\nmidcapitalization NN\nmidcontinent JJ\nmidday NN\nmiddle NN\nmiddle-Gaelic JJ\nmiddle-age JJ\nmiddle-aged JJ\nmiddle-brow JJ\nmiddle-class JJ\nmiddle-ground JJ\nmiddle-income JJ\nmiddle-level JJ\nmiddle-management JJ\nmiddle-market JJ\nmiddle-of-the-road JJ\nmiddle-of-the-roaders NNS\nmiddle-priced JJ\nmiddle-range JJ\nmiddle-school JJ\nmiddle-sized JJ\nmiddlebrow JJ\nmiddleman NN\nmiddlemen NNS\nmiddles NNS\nmiddling JJ\nmidfield NN\nmidlands NNS\nmidlevel JJ\nmidmonth RB\nmidmorning NN\nmidnight NN\nmidocean JJ\nmidpoint NN\nmidpriced JJ\nmidrange JJ\nmidseason NN\nmidsession NN\nmidshipmen NNS\nmidsize JJ\nmidsized JJ\nmidsized-car JJ\nmidst NN\nmidstream NN\nmidsts NNS\nmidsummer NN\nmidterm JJ\nmidtown JJ\nmidway RB\nmidweek JJ\nmidwest JJS\nmidwestern JJ\nmidwife NN\nmidwinter NN\nmidyear NN\nmien NN\nmiffed VBN\nmight MD\nmighta MD|VB\nmightiest JJS\nmightily RB\nmighty JJ\nmignon NN\nmigraine NN\nmigrant JJ\nmigrants NNS\nmigrate VB\nmigrated VBN\nmigrates VBZ\nmigrating VBG\nmigration NN\nmigrations NNS\nmigratory JJ\nmil. NN\nmild JJ\nmild-mannered JJ\nmild-voiced JJ\nmild-winter JJ\nmilder JJR\nmildew NN\nmildewy JJ\nmildly RB\nmildness NN\nmile NN\nmile-long JJ\nmileage NN\nmileage-based JJ\nmiles NNS\nmiles-per-hour JJ\nmilestone NN\nmilestones NNS\nmiliaris NN\nmilieu NN\nmilion NN\nmilitancy NN\nmilitant JJ\nmilitantly RB\nmilitarily RB\nmilitarism NN\nmilitarist NN\nmilitary JJ\nmilitary-electronics NNS\nmilitary-medical JJ\nmilitary-service JJ\nmilitary-spending NN\nmilitary-style JJ\nmilitate VB\nmilitated VBN\nmilitia NN\nmilitiamen NNS\nmilitias NNS\nmilk NN\nmilk-chocolate JJ\nmilk-supply NN\nmilked VBD\nmilking VBG\nmilks VBZ\nmilkshakes NNS\nmilky JJ\nmill NN\nmill-pond NN\nmill-wheel NN\nmillages NNS\nmilled JJ\nmillenarianism NN\nmillenarians NNS\nmillenium NN\nmillennia NN\nmillennium NN\nmillenniums NNS\nmilliamperes NNS\nmillidegree NN\nmillidegrees NNS\nmilligram NN\nmilligrams NNS\nmilliliter NN\nmillilon NN\nmillimeter NN\nmillimeters NNS\nmillinery NN\nmilling NN\nmillion CD\nmillion-a-year JJ\nmillion-and-counting JJ\nmillion-asset JJ\nmillion-common NN\nmillion-dollar JJ\nmillion-dollar-a-year JJ\nmillion-dollar-plus JJ\nmillion-franc JJ\nmillion-gallon JJ\nmillion-mark JJ\nmillion-member JJ\nmillion-member-Teamsters NNPS\nmillion-plus JJ\nmillion-share JJ\nmillion-square-foot JJ\nmillion-to-$ $\nmillion-ton JJ\nmillion-unit JJ\nmillionaire NN\nmillionaires NNS\nmillions NNS\nmillionth JJ\nmillionths-of-a-second JJ\nmillisecond NN\nmillivoltmeter NN\nmilllion NN\nmillon NN\nmills NNS\nmillstones NNS\nmilord NN\nmilquetoast NN\nmimesis NN\nmimetic JJ\nmimetically RB\nmimic VB\nmimicked VBN\nmimicking VBG\nmimics NNS\nmimimum NN\nmin NN\nmin. NN\nminaces NNS\nminarets NNS\nminber NN\nmince VB\nminced VBN\nmincemeat NN\nmincing VBG\nmind NN\nmind-altering JJ\nmind-boggling JJ\nmind-numbing JJ\nmind-set NN\nminded VBD\nmindful JJ\nmindless JJ\nminds NNS\nmindset NN\nmine NN\nmine-hunting JJ\nmine-safety JJ\nmined VBN\nminefield NN\nminefields NNS\nminehunter NN\nminer NN\nmineral NN\nmineral-rich JJ\nmineralized JJ\nmineralogical JJ\nmineralogy NN\nminerals NNS\nminers NNS\nmines NNS\nmineworkers NNS\nmingle VB\nmingled VBD\nmingles VBZ\nmingling VBG\nmini-Prohibition NNP\nmini-cars NNS\nmini-component JJ\nmini-doll NN\nmini-empire NN\nmini-fiestas NNS\nmini-flap NN\nmini-mafia NN\nmini-mill NN\nmini-post JJ\nmini-revolution NN\nmini-saga NN\nmini-series NN\nmini-slip NN\nmini-studio NN\nmini-supercomputers NNS\nmini-vans NNS\nminiature JJ\nminiatures NNS\nminiaturized VBN\nminibars NNS\nminicar NN\nminicars NNS\nminicomputer NN\nminicomputers NNS\nminicrash NN\nminifying VBG\nminimal JJ\nminimalism NN\nminimalist JJ\nminimally RB\nminimill NN\nminimills NNS\nminimize VB\nminimized VBN\nminimizes VBZ\nminimizing VBG\nminimum JJ\nminimum-capital JJ\nminimum-fee JJ\nminimum-tax NN\nminimum-wage NN\nminimums NNS\nminimun NN\nminin VBG\nminincomputer JJR\nmining NN\nmininum-wage NN\nminions NNS\nminiscule JJ\nminiseries NNS\nminiskirt NN\nminiskirts NNS\nminister NN\nministered VBD\nministerial JJ\nministering VBG\nministers NNS\nministrations NNS\nministries NNS\nministry NN\nminisupercomputers NNS\nminivan NN\nminivans NNS\nminivans. NNS\nminiwelfare JJ\nmink NN\nminor JJ\nminor-leaguer NN\nminor-sport NN\nminorities NNS\nminority NN\nminority-internship JJ\nminority-owned JJ\nminors NNS\nmins NN\nminstrel NN\nminstrels NNS\nmint NN\nminted VBN\nminter NN\nminting VBG\nmints NNS\nminuet NN\nminus CC\nminus\\ JJ\nminuscule JJ\nminuses NNS\nminute NN\nminutely RB\nminutes NNS\nminutiae NNS\nmio FW\nmioxidil NN\nmiracle NN\nmiracles NNS\nmiraculous JJ\nmiraculously RB\nmire NN\nmired VBN\nmirror NN\nmirrored VBN\nmirroring VBG\nmirrors VBZ\nmirth NN\nmirthless JJ\nmis-reading VBG\nmisadventure NN\nmisadventures NNS\nmisalignment NN\nmisallocated VBD\nmisallocating VBG\nmisanthrope NN\nmisapplication NN\nmisapplied VBN\nmisapplying VBG\nmisapprehension NN\nmisappropriated VBD\nmisappropriating VBG\nmisappropriation NN\nmisbegotten JJ\nmisbehaving VBG\nmisbehavior NN\nmisbranded JJ\nmiscalculated VBD\nmiscalculation NN\nmiscalculations NNS\nmiscarriages NNS\nmiscarried VBD\nmiscegenation NN\nmiscellaneous JJ\nmiscellanies NNS\nmiscellany NN\nmischarged VBD\nmischarges NNS\nmischarging NN\nmischief NN\nmischievous JJ\nmisclassified VBN\nmiscommunication NN\nmisconception NN\nmisconceptions NNS\nmisconduct NN\nmisconstruction NN\nmisconstructions NNS\nmisconstrued VBN\nmiscount NN\nmiscreant JJ\nmiscreants NNS\nmiscues NNS\nmisdeeds NNS\nmisdemeanants NNS\nmisdemeanor NN\nmisdemeanors NNS\nmisdirectors NNS\nmiserable JJ\nmiserably RB\nmiseries NNS\nmiserly JJ\nmisery NN\nmisfired VBN\nmisfiring VBG\nmisfits NNS\nmisfortune NN\nmisfortunes NNS\nmisgauged VBN\nmisgivings NNS\nmisguided JJ\nmishandled VBD\nmishandling VBG\nmishap NN\nmishaps NNS\nmisimpressions NNS\nmisinformation NN\nmisinformed VBN\nmisinterpret VB\nmisinterpretation NN\nmisinterpreted VBN\nmisinterpreters NNS\nmisjudged VBD\nmisjudgment NN\nmisjudgments NNS\nmislaid VBN\nmisleading JJ\nmisleadingly RB\nmisleads VBZ\nmisled VBD\nmismanaged VBD\nmismanagement NN\nmismanaging VBG\nmismatch NN\nmismatched VBN\nmismatches NNS\nmismeasurement NN\nmismeasurements NNS\nmisnamed VBN\nmisnomer NN\nmiso NN\nmisogynist NN\nmisperceives VBZ\nmisperceptions NNS\nmisplace VB\nmisplaced VBN\nmisplacements NNS\nmisplacing VBG\nmispriced VBD\nmispronunciation NN\nmisquotation NN\nmisquoted VBN\nmisquoting VBG\nmisread VBD\nmisreading NN\nmisrelated VBN\nmisrepresent VB\nmisrepresentation NN\nmisrepresentations NNS\nmisrepresented VBD\nmisrepresenting VBG\nmisrepresents VBZ\nmisrouted VBN\nmiss VB\nmissed VBD\nmisses VBZ\nmisshapen JJ\nmissile NN\nmissile-defense JJ\nmissile-engineering JJ\nmissile-guidance JJ\nmissile-launch JJ\nmissile-range JJ\nmissile-transporter NN\nmissile-type JJ\nmissiles NNS\nmissing VBG\nmission NN\nmissionaries NNS\nmissionary JJ\nmissions NNS\nmissive NN\nmisspelled VBN\nmisspent VBN\nmisstated VBN\nmisstatements NNS\nmisstates VBZ\nmisstating VBG\nmisstep NN\nmissteps NNS\nmissy NN\nmist NN\nmist-like JJ\nmistake NN\nmistaken VBN\nmistakenly RB\nmistakes NNS\nmistaking VBG\nmisted VBD\nmister NN\nmistletoe NN\nmistook VBD\nmistreat VB\nmistreatment NN\nmistress NN\nmistresses NNS\nmistrial NN\nmistrials NNS\nmistrust NN\nmistrusted VBD\nmists NNS\nmisty JJ\nmisty-eyed JJ\nmisunderstand VB\nmisunderstanders NNS\nmisunderstanding NN\nmisunderstandings NNS\nmisunderstands VBZ\nmisunderstood VBN\nmisuse NN\nmisused VBN\nmisusing VBG\nmiswritten JJ\nmite NN\nmite-box NN\nmiter VB\nmites NNS\nmitigate VB\nmitigates VBZ\nmitigating VBG\nmitigation NN\nmitral JJ\nmitre NN\nmitt NN\nmittens NNS\nmiuchi FW\nmix NN\nmix-up NN\nmixed VBN\nmixed-up JJ\nmixer NN\nmixers NNS\nmixes NNS\nmixing VBG\nmixologists NNS\nmixture NN\nmixtures NNS\nml NN\nml. NN\nmm NN\nmm. NN\nmnemonic JJ\nmo NN\nmo-tivation NN\nmoan VB\nmoaned VBD\nmoaning VBG\nmoans VBZ\nmoat NN\nmob NN\nmobcaps NNS\nmobile JJ\nmobile-home NN\nmobile-telecommunications NNS\nmobility NN\nmobilization NN\nmobilize VB\nmobilized VBN\nmobilizing VBG\nmobs NNS\nmobster NN\nmobsters NNS\nmoccasins NNS\nmock JJ\nmocked VBN\nmockery NN\nmocking VBG\nmockingly RB\nmockups NNS\nmodal JJ\nmodality NN\nmode NN\nmodel NN\nmodel-year JJ\nmodeled VBN\nmodeling NN\nmodels NNS\nmodels-on-the-way-up JJ\nmodem NN\nmodems NNS\nmoderate JJ\nmoderate-income JJ\nmoderate-rehabilitation NN\nmoderated VBN\nmoderately RB\nmoderates NNS\nmoderating VBG\nmoderation NN\nmoderator NN\nmodern JJ\nmodern-dance NN\nmodern-day JJ\nmodernism NN\nmodernist JJ\nmodernistic JJ\nmodernists NNS\nmodernity NN\nmodernization NN\nmodernize VB\nmodernized VBN\nmodernizing VBG\nmoderns NNS\nmodes NNS\nmodest JJ\nmodestly RB\nmodesty NN\nmodicum NN\nmodification NN\nmodifications NNS\nmodified VBN\nmodifier NN\nmodifiers NNS\nmodifies VBZ\nmodify VB\nmodifying VBG\nmodish JJ\nmodular JJ\nmodulate VBP\nmodulated VBN\nmodulation NN\nmodulations NNS\nmodule NN\nmodules NNS\nmodus FW\nmogul NN\nmoguls NNS\nmoi FW\nmoire JJ\nmoist JJ\nmoisten VB\nmoistened JJ\nmoistening VBG\nmoisture NN\nmoisturizer NN\nmoisturizers NNS\nmolal JJ\nmolar NN\nmolars NNS\nmolasses NN\nmold NN\nmoldable JJ\nmoldboard NN\nmolded VBN\nmolding NN\nmoldings NNS\nmolds NNS\nmoldy JJ\nmole NN\nmolecular JJ\nmolecularly RB\nmolecule NN\nmolecules NNS\nmolehill NN\nmolest VB\nmolesting VBG\nmollified VBN\nmollify VB\nmollycoddle NN\nmolten JJ\nmolting VBG\nmolton NN\nmom NN\nmom-and-pop JJ\nmoment NN\nmomentarily RB\nmomentary JJ\nmomentoes NNS\nmomentous JJ\nmoments NNS\nmomentum NN\nmomentwhen NN|WRB\nmon FW\nmonacle NN\nmonarch NN\nmonarchists NNS\nmonarchy NN\nmonasteries NNS\nmonastery NN\nmonastic JJ\nmonasticism NN\nmonaural JJ\nmonde FW\nmonei NN\nmonetarism NN\nmonetarist NN\nmonetarists NNS\nmonetary JJ\nmonetary-damage NN|JJ\nmonetary-policy NN\nmonetary-stroke-military JJ\nmoney NN\nmoney-back JJ\nmoney-broking JJ\nmoney-center JJ\nmoney-fed JJ\nmoney-fund JJ\nmoney-granting NN\nmoney-handling NN\nmoney-hungry NN\nmoney-laundering NN\nmoney-lending JJ\nmoney-losing JJ\nmoney-maker NN\nmoney-making JJ\nmoney-management NN\nmoney-manager NN\nmoney-market JJ\nmoney-minded JJ\nmoney-retirees NNS\nmoney-saving JJ\nmoney-strapped JJ\nmoney-supply JJ\nmoney-transfer JJ\nmoney-winner NN\nmoney-wise JJ\nmoneyed JJ\nmoneymaker NN\nmoneymakers NNS\nmoneymaking JJ\nmoneys NNS\nmonic JJ\nmonicker JJR\nmonied JJ\nmonies NNS\nmoniker NN\nmonitor VB\nmonitored VBN\nmonitoring NN\nmonitors NNS\nmonk NN\nmonkey NN\nmonkey-gland NN\nmonkeys NNS\nmonkish JJ\nmonks NNS\nmono JJ\nmono-iodotyrosine JJ\nmono-unsaturated JJ\nmonochromatic JJ\nmonochrome JJ\nmonochromes NNS\nmonoclinic JJ\nmonoclonal JJ\nmonoclonal-antibody NN\nmonocrotophos NNS\nmonocytogenes FW\nmonodisperse JJ\nmonogamous JJ\nmonogrammed JJ\nmonograph NN\nmonographs NNS\nmonohull NN\nmonolith NN\nmonolithic JJ\nmonolithically RB\nmonoliths NNS\nmonologist NN\nmonologue NN\nmonologues NNS\nmonomer NN\nmonomers NNS\nmononuclear JJ\nmonophonic JJ\nmonopolies NNS\nmonopolistic JJ\nmonopolists NNS\nmonopolization NN\nmonopolize VB\nmonopolized VBD\nmonopolizing VBG\nmonopoly NN\nmonosodium NN\nmonosyllable NN\nmonosyllables NNS\nmonotone JJ\nmonotonous JJ\nmonotony NN\nmonoxide NN\nmonsieur NN\nmonsoon NN\nmonsoon-shrouded JJ\nmonster NN\nmonsters NNS\nmonstrosity NN\nmonstrous JJ\nmontage NN\nmontgolfiere FW\nmontgolfing NN\nmonth NN\nmonth-earlier JJ\nmonth-end JJ\nmonth-long JJ\nmonth-old JJ\nmonth-to-month JJ\nmonthlong JJ\nmonthly JJ\nmonths NNS\nmonths-long JJ\nmonthsit NN\nmontmorillonites NNS\nmonument NN\nmonumental JJ\nmonumentalism NN\nmonumentality NN\nmonumentally RB\nmonuments NNS\nmood NN\nmoodily RB\nmoods NNS\nmoody JJ\nmooed VBD\nmooing VBG\nmoon NN\nmoon-drenched JJ\nmoon-round JJ\nmoon-splashed JJ\nmoon-washed JJ\nmooncursers NNS\nmoonlight NN\nmoonlighting NN\nmoonlike JJ\nmoonlit JJ\nmoons NNS\nmoontrack NN\nmoored VBN\nmooring NN\nmoorings NNS\nmoors NNS\nmoot JJ\nmop VB\nmop-up NN\nmopped VBD\nmopping VBG\nmops NNS\nmor JJR\nmoraine NN\nmoral JJ\nmorale NN\nmorale-damaging JJ\nmorale-enhancing JJ\nmoralism NN\nmoralist NN\nmoralistic JJ\nmoralities NNS\nmorality NN\nmoralizers NNS\nmoralizing VBG\nmorally RB\nmorals NNS\nmorass NN\nmoratorium NN\nmorbid JJ\nmorbid-minded JJ\nmorbidity NN\nmore JJR\nmore-active JJ\nmore-advanced JJ\nmore-affordable JJ\nmore-attractive JJ\nmore-conventional JJR\nmore-discriminating JJ\nmore-distinctive JJR\nmore-efficient JJ\nmore-entrenched JJ\nmore-established JJR\nmore-favored JJ\nmore-general JJ\nmore-generic JJ\nmore-hazardous JJ\nmore-informed JJ\nmore-level JJ\nmore-mainstream JJ\nmore-mundane JJ\nmore-muscular JJ\nmore-natural JJ\nmore-open JJ\nmore-or-less RB\nmore-personal JJ\nmore-powerful JJR\nmore-pressing JJ\nmore-realistic JJ\nmore-selective JJR\nmore-senior JJR\nmore-sophisticated JJ\nmore-spontaneous JJ\nmore-stringent JJ\nmore-than-$ $\nmore-than-average RB\nmore-than-ordinary JJ\nmore-than-terrible JJ\nmore-volatile JJR\nmoreover RB\nmores NNS\nmorgen FW\nmorgue NN\nmoribund JJ\nmorning NN\nmorning-frightened JJ\nmorning-glory NN\nmorning-session NN\nmornings NNS\nmorocco-bound JJ\nmorose JJ\nmorosely RB\nmorphemic JJ\nmorphine NN\nmorphogenetic JJ\nmorphologic JJ\nmorphological JJ\nmorphology NN\nmorphophonemic JJ\nmorphophonemics NNS\nmorrow NN\nmorsel NN\nmorsels NNS\nmortages NNS\nmortal JJ\nmortality NN\nmortally RB\nmortals NNS\nmortar NN\nmortared VBN\nmortaring NN\nmortars NNS\nmortgage NN\nmortgage-backed JJ\nmortgage-backed-securities NNS\nmortgage-banking NN\nmortgage-based JJ\nmortgage-industry NN\nmortgage-insurance JJ\nmortgage-interest JJ\nmortgage-lending JJ\nmortgage-securities JJ\nmortgage-servicing NN\nmortgagebacked JJ\nmortgaged VBN\nmortgaged-backed JJ\nmortgages NNS\nmorticians NNS\nmortification NN\nmortis NN\nmos NNS\nmosaic NN\nmosaic-like JJ\nmosaics NNS\nmosey VB\nmosque NN\nmosques NNS\nmosquito NN\nmosquito-plagued JJ\nmosquitoes NNS\nmoss NN\nmoss-covered JJ\nmost RBS\nmost'bee-yoo-tee-fool JJ\nmost-active JJ\nmost-actives JJS\nmost-admired JJ\nmost-contentious RBS|JJ\nmost-dangerous JJ\nmost-desired JJ\nmost-favored-nation JJ\nmost-hazardous JJ\nmost-indebted JJS\nmost-influential JJ\nmost-jingoistic JJ\nmost-likely JJ\nmost-likely-successor JJ\nmost-livable JJS\nmost-obvious JJ\nmost-owned JJ\nmost-polluted JJS\nmost-prestigious JJ\nmost-recent JJ\nmost-recommended JJ\nmost-recommended-issues JJ\nmost-respected JJS\nmost-sold JJ\nmost-strident JJ\nmost-used JJ\nmost-valuable JJ\nmost-valuable-player NN\nmost-watched JJ\nmostaccioli NN\nmostly RB\nmot FW\nmotel NN\nmotel-keepers NNS\nmotel-keeping NN\nmotels NNS\nmotet NN\nmotets NNS\nmoth NN\nmoth-eaten VBN\nmoth-like JJ\nmothballing NN\nmothballs NNS\nmother NN\nmother-in-law NN\nmother-introject NN\nmother-naked JJ\nmother-of-pearl JJ\nmother-only JJ\nmother. NN\nmothered VBN\nmotherhood NN\nmotherland NN\nmotherless JJ\nmotherly JJ\nmothers NNS\nmothers-in-law NNS\nmoths NNS\nmotif NN\nmotifs NNS\nmotion NN\nmotion-control NN\nmotion-pattern NN\nmotion-picture NN\nmotional JJ\nmotional-modified JJ\nmotioned VBD\nmotioning VBG\nmotionless JJ\nmotions NNS\nmotivate VB\nmotivated VBN\nmotivates VBZ\nmotivating VBG\nmotivation NN\nmotivations NNS\nmotive NN\nmotives NNS\nmotley JJ\nmotor NN\nmotor-car NN\nmotor-control JJ\nmotor-drive JJ\nmotor-home NN\nmotor-industry NN\nmotor-operated JJ\nmotor-vehicle NN\nmotorbike NN\nmotorcade NN\nmotorcycle NN\nmotorcycled VBD\nmotorcycles NNS\nmotorcyle NN\nmotored VBD\nmotoring VBG\nmotorist NN\nmotorists NNS\nmotorized VBN\nmotors NNS\nmotors. NNS\nmotorscooters NNS\nmots FW\nmottled VBN\nmotto NN\nmough NN\nmould VB\nmouldering VBG\nmoulding NN\nmound NN\nmounded VBD\nmounds NNS\nmount VB\nmountain NN\nmountain-bike NN\nmountaineering NN\nmountaineers NNS\nmountainous JJ\nmountainously RB\nmountains NNS\nmountainside NN\nmountainsides NNS\nmountaintop NN\nmounted VBN\nmounting VBG\nmountings NNS\nmounts NNS\nmourn VB\nmourned VBD\nmourners NNS\nmournful JJ\nmournfully RB\nmourning VBG\nmourns VBZ\nmouse NN\nmousetrap NN\nmousetraps NNS\nmousse NN\nmousseline NN\nmoustache NN\nmousy JJ\nmouth NN\nmouth-to-mouth JJ\nmouth-up JJ\nmouth-watering JJ\nmouthed VBD\nmouthful NN\nmouthing VBG\nmouthpiece NN\nmouthpieces NNS\nmouths NNS\nmovable JJ\nmove NN\nmove-up JJ\nmoved VBD\nmovement NN\nmovements NNS\nmover NN\nmovers NNS\nmoves NNS\nmovie NN\nmovie-distribution NN\nmovie-goer NN\nmovie-like JJ\nmovie-making NN\nmovie-of-the-week NN\nmovie-production NN\nmovie-quality JJ\nmovie-star NN\nmovie-studio NN\nmovie-themed JJ\nmovie-to-be NN\nmoviegoer NN\nmovieland NN\nmoviemakers NNS\nmovies NNS\nmoviestar NN\nmoving VBG\nmovingly RB\nmow VB\nmowed VBN\nmower NN\nmoxie NN\nmpg NN\nmph NN\nmuch JJ\nmuch-abused JJ\nmuch-anticipated JJ\nmuch-awaited JJ\nmuch-beloved JJ\nmuch-copied JJ\nmuch-coveted JJ\nmuch-craved JJ\nmuch-criticized JJ\nmuch-delayed JJ\nmuch-despised JJ\nmuch-discussed JJ\nmuch-heralded JJ\nmuch-larger JJ\nmuch-lauded JJ\nmuch-maligned JJ\nmuch-needed JJ\nmuch-publicized JJ\nmuch-respected JJ\nmuch-revised JJ\nmuch-smaller JJ\nmuch-talked-about JJ\nmuch-thumbed JJ\nmuch-watched JJ\nmucilage NN\nmuck NN\nmucked VBN\nmucker NN\nmucking VBG\nmucky JJ\nmucosa NN\nmucus NN\nmud NN\nmud-beplastered JJ\nmud-caked JJ\nmud-logger NN\nmud-sweat-and-tears JJ\nmuddied VBN\nmuddle NN\nmuddled VBN\nmuddleheaded JJ\nmuddling VBG\nmuddy JJ\nmuddy-tasting JJ\nmudguard NN\nmudslinging NN\nmudwagon NN\nmuezzin NN\nmuff NN\nmuffed VBD\nmuffins NNS\nmuffled JJ\nmuffler NN\nmufflers NNS\nmuffs NNS\nmufti NN\nmufuggah NN\nmug NN\nmugged VBN\nmuggers NNS\nmugging NN\nmuggy JJ\nmugs NNS\nmujahideen FW\nmulatto NN\nmulch NN\nmulching VBG\nmule NN\nmule-drawn JJ\nmules NNS\nmulitiplier JJ\nmull VB\nmullah NN\nmullets NNS\nmulling VBG\nmulls VBZ\nmulti NNS\nmulti-agency JJ\nmulti-billion-dollar JJ\nmulti-colored JJ\nmulti-column JJ\nmulti-crystal JJ\nmulti-disciplinary JJ\nmulti-family JJ\nmulti-gear JJ\nmulti-lingual JJ\nmulti-media NNS\nmulti-million JJ\nmulti-million-dollar JJ\nmulti-millionaire JJ\nmulti-phase JJ\nmulti-product JJ\nmulti-purpose JJ\nmulti-spired JJ\nmulti-state JJ\nmulti-valued NNS\nmulti-valve JJ\nmulti-windowed JJ\nmulti-year JJ\nmultibank NN\nmultibillion JJ\nmultibillion-dollar JJ\nmultibillion-yen JJ\nmultibilliondollar JJ\nmultichannel JJ\nmulticolor JJ\nmulticolored JJ\nmultidimensional JJ\nmultifaceted JJ\nmultifamily JJ\nmultifiber JJR\nmultifigure NN\nmultihulled VBN\nmultilateral JJ\nmultilayer JJ\nmultilayered JJ\nmultilevel JJ\nmultilingual JJ\nmultilocation NN\nmultimedia NNS\nmultimegaton JJ\nmultimillion JJ\nmultimillion-dollar JJ\nmultimillion-pound-per-year JJ\nmultimillionaire NN\nmultimillions NNS\nmultinational JJ\nmultinationalism NN\nmultinationals NNS\nmultipactor NN\nmultipart JJ\nmultipartisan JJ\nmultiparty NN\nmultiple JJ\nmultiple-choice JJ\nmultiple-column JJ\nmultiple-paged JJ\nmultiple-purpose JJ\nmultiple-state JJ\nmultiple-use JJ\nmultiple-year JJ\nmultipled VBD\nmultiples NNS\nmultipleuser JJ\nmultiplexer NN\nmultiplexers NNS\nmultiplexing NN\nmultiplication NN\nmultiplicity NN\nmultiplied VBN\nmultiplies VBZ\nmultiply VB\nmultiplying VBG\nmultipronged VBN\nmultipurpose JJ\nmultiscreen JJ\nmultisided JJ\nmultistage JJ\nmultistate NN\nmultitasking VBG\nmultitude NN\nmultitudes NNS\nmultitudinous JJ\nmultivalent JJ\nmultivalve JJ\nmultiversity NN\nmultiyear JJ\nmum JJ\nmumble NN\nmumbled VBD\nmumbles VBZ\nmumbling VBG\nmumbo NN\nmumbo-jumbo NN\nmummies NNS\nmummified VBN\nmummy NN\nmunch VB\nmunched VBD\nmunches VBZ\nmunching VBG\nmunchkin NN\nmundane JJ\nmungus NN\nmuni NN\nmunicipal JJ\nmunicipal-bond JJ\nmunicipalities NNS\nmunicipality NN\nmunicipally RB\nmunicipally-sponsored JJ\nmunicipals NNS\nmunificence NN\nmunis NNS\nmunitions NNS\nmural NN\nmurals NNS\nmurder NN\nmurdered VBN\nmurderer NN\nmurderers NNS\nmurdering VBG\nmurderous JJ\nmurders NNS\nmurkier JJR\nmurkily RB\nmurky JJ\nmurmur NN\nmurmured VBD\nmurmuring VBG\nmurmurs VBZ\nmus MD\nmuscat JJ\nmuscatel NN\nmuscle NN\nmuscle-bound JJ\nmuscle-flexing JJ\nmuscle-meat NN\nmuscle-shaping JJ\nmuscled VBD\nmusclemen NNS\nmuscles NNS\nmuscling VBG\nmuscular JJ\nmusculature NN\nmuse NN\nmused VBD\nmuses VBZ\nmuseum NN\nmuseums NNS\nmush NN\nmushroom NN\nmushroom-processing JJ\nmushroomed VBN\nmushrooming NN\nmushrooms NNS\nmushy JJ\nmusic NN\nmusic-entertainment NN\nmusic-hall JJ\nmusic-loving JJ\nmusic-making NN\nmusic-publishing JJ\nmusical JJ\nmusicality NN\nmusically RB\nmusicals NNS\nmusician NN\nmusicians NNS\nmusicianship NN\nmusicologists NNS\nmusing VBG\nmusings NNS\nmusk NN\nmuskadell NN\nmusket NN\nmuskets NNS\nmussels NNS\nmust MD\nmusta MD\nmustache NN\nmustached JJ\nmustaches NNS\nmustachioed JJ\nmustard NN\nmuster VB\nmustered VBD\nmustering VBG\nmustiness NN\nmusts NNS\nmusuem NN\nmutant JJ\nmutate VB\nmutated VBN\nmutates VBZ\nmutation NN\nmutational JJ\nmutations NNS\nmute JJ\nmuted VBN\nmutely RB\nmutilated VBN\nmutilates VBZ\nmutilating VBG\nmutilation NN\nmutineer NN\nmutinies NNS\nmutinous JJ\nmutiny NN\nmutter VB\nmuttered VBD\nmutterers NNS\nmuttering VBG\nmutterings NNS\nmutters NNS\nmutton NN\nmutts NNS\nmutual JJ\nmutual-aid JJ\nmutual-assured JJ\nmutual-fund JJ\nmutual-funds NNS\nmutuality NN\nmutually RB\nmuzzle NN\nmuzzled VBN\nmuzzles NNS\nmuzzling JJ\nmy PRP$\nmycobacteria NN\nmycology NN\nmyelofibrosis NN\nmyelogenous JJ\nmyeloid NN\nmyn PRP$\nmyne PRP$\nmyocardial JJ\nmyocardium NN\nmyofibrillae NNS\nmyofibrils NNS\nmyopia NN\nmyopic JJ\nmyosin NN\nmyriad JJ\nmyrrh NN\nmyrtle NN\nmyself PRP\nmysteries NNS\nmysterious JJ\nmysteriously RB\nmystery NN\nmystery-story JJ\nmystic JJ\nmystical JJ\nmystically RB\nmysticism NN\nmysticisms NNS\nmystics NNS\nmystification NN\nmystified VBN\nmystique NN\nmyth NN\nmyth-making VBG\nmythic JJ\nmythical JJ\nmythological JJ\nmythologies NNS\nmythology NN\nmyths NNS\nn NN\nn't RB\nn't/RB NNP\nn'th JJ\nn-dimensional JJ\nn-trial NN\nna TO\nna/TO NNP\nnab VB\nnabbed VBN\nnabbing VBG\nnacelle NN\nnacho-crunching JJ\nnaczelnik FW\nnadir NN\nnagged VBD\nnagging JJ\nnaggings NNS\nnags NNS\nnah UH\nnahce JJ\nnail NN\nnailed VBN\nnailing VBG\nnails NNS\nnaive JJ\nnaively RB\nnaivete NN\nnaked JJ\nnakedly RB\nnakedness NN\nname NN\nname-brand JJ\nname-calling NN\nname-dropper NN\nname-droppers NNS\nname-dropping NN\nname-drops VBZ\nname-plating JJ\nnamed VBN\nnamedropper NN\nnameless JJ\nnamely RB\nnameplate NN\nnameplates NNS\nnames NNS\nnamesake NN\nnaming VBG\nnannies NNS\nnanny NN\nnap NN\nnaphtha NN\nnapkin NN\nnapkins NNS\nnapped VBD\nnapping VBG\nnaps NNS\nnarcissistically RB\nnarco NN\nnarcokleptocrat NN\nnarcolepsy NN\nnarcos NNS\nnarcosis NN\nnarcotic JJ\nnarcotics NNS\nnarcotizes VBZ\nnarcotraficantes FW\nnarrated VBN\nnarration NN\nnarrative NN\nnarratives NNS\nnarrator NN\nnarrow JJ\nnarrow-bodied JJ\nnarrow-casting NN\nnarrow-minded JJ\nnarrowed VBD\nnarrower JJR\nnarrowest JJS\nnarrowing VBG\nnarrowly RB\nnarrowness NN\nnarrows VBZ\nnary DT\nnasal JJ\nnasaled VBD\nnascent JJ\nnastier JJR\nnastiest JJS\nnasty JJ\nnatal JJ\nnatch UH\nnation NN\nnation-building NN\nnation-state NN\nnation-states NN\nnation-wide JJ\nnational JJ\nnational-policy NN\nnational-priority JJ\nnational-security NN\nnational-service JJ\nnational-treasure JJ\nnationalism NN\nnationalisms NNS\nnationalist JJ\nnationalistic JJ\nnationalists NNS\nnationalities NNS\nnationality NN\nnationalization NN\nnationalize VB\nnationalized VBD\nnationalizing VBG\nnationally RB\nnationals NNS\nnationhood NN\nnations NNS\nnationwide JJ\nnative JJ\nnative-born JJ\nnatives NNS\nnattily RB\nnatty JJ\nnatural JJ\nnatural-foods NNS\nnatural-gas NN\nnatural-gas-pipeline JJ\nnatural-gas-pricing JJ\nnatural-law NN\nnatural-resources NNS\nnaturalism NN\nnaturalist NN\nnaturalistic JJ\nnaturalized VBN\nnaturally RB\nnaturalness NN\nnature NN\nnature-conquering JJ\nnatured JJ\nnatures NNS\nnaturopath NN\nnaught NN\nnaughtier JJR\nnaughty JJ\nnausea NN\nnauseated VBN\nnauseous JJ\nnautical JJ\nnaval JJ\nnavel NN\nnavels NNS\nnavies NNS\nnavigable JJ\nnavigate VB\nnavigated VBN\nnavigating VBG\nnavigation NN\nnavigational JJ\nnavigator NN\nnavigators NNS\nnavy NN\nnavy-blue JJ\nnaw UH\nnawt RB\nnawth NN\nnay RB\nnaysay VB\nnaysayers NNS\nnd CC\nne FW\nne'er RB\nnear IN\nnear-Balkanization NN\nnear-Communists NNS\nnear-absence NN\nnear-at-hand JJ\nnear-blind JJ\nnear-by IN\nnear-certain JJ\nnear-complete JJ\nnear-completed JJ\nnear-completion NN\nnear-disaster NN\nnear-doubling NN\nnear-equivalents NNS\nnear-hysteria NN\nnear-identical JJ\nnear-irrelevant JJ\nnear-left NN\nnear-limit JJ\nnear-luxury JJ\nnear-maddened JJ\nnear-majority JJ\nnear-manic JJ\nnear-market JJ\nnear-misses NN\nnear-monopolies NNS\nnear-monopoly NN\nnear-mutiny NN\nnear-panic JJ\nnear-paralysis NN\nnear-perfect JJ\nnear-recession NN\nnear-record JJ\nnear-rich NN\nnear-solid JJ\nnear-strangers NNS\nnear-synonyms NNS\nnear-term JJ\nnear-total JJ\nnear-unanimous JJ\nnear-unmatched JJ\nnearby JJ\nneared VBD\nnearer JJR\nnearest JJS\nnearing VBG\nnearly RB\nnearly-30 JJ\nnearness NN\nnears VBZ\nnearsighted JJ\nnearsightedly RB\nneat JJ\nneater RBR\nneatest JJS\nneatly RB\nneatness NN\nnebula NN\nnebular JJ\nnebulous JJ\nnecessaries NNS\nnecessarily RB\nnecessary JJ\nnecessitate VBP\nnecessitated VBN\nnecessitates VBZ\nnecessitating VBG\nnecessities NNS\nnecessity NN\nneck NN\nneck-and-neck JJ\nneck-deep JJ\nnecking NN\nnecklace NN\nnecklace-like JJ\nnecklaces NNS\nneckline NN\nnecks NNS\nnecktie NN\nneckties NNS\nnecromantic JJ\nnecropsy NN\nnecrosis NN\nnecrotic JJ\nnectar NN\nnectareous JJ\nnectaries NNS\nneed NN\nneeded VBN\nneeded... :\nneeding VBG\nneedle NN\nneedle-like JJ\nneedle-nosed JJ\nneedle-sharp JJ\nneedled VBD\nneedlelike JJ\nneedles NNS\nneedless JJ\nneedlessly RB\nneeds VBZ\nneedy JJ\nnegate VB\nnegated VBN\nnegation NN\nnegative JJ\nnegatively RB\nnegatives NNS\nnegativism NN\nneglect NN\nneglected VBN\nneglecting VBG\nneglects VBZ\nnegligence NN\nnegligent JJ\nnegligent-homicide NN\nnegligently RB\nnegligible JJ\nnegligibly RB\nnegociant NN\nnegociants NNS\nnegotatiators NNS\nnegotiable JJ\nnegotiate VB\nnegotiated VBN\nnegotiates VBZ\nnegotiating VBG\nnegotiation NN\nnegotiations NNS\nnegotiations... :\nnegotiator NN\nnegotiators NNS\nnegro NNP\nnegroes NNPS\nneige FW\nneighbhorhoods NNS\nneighbor NN\nneighborhood NN\nneighborhoods NNS\nneighboring VBG\nneighborliness NN\nneighborly JJ\nneighbors NNS\nneighbourhood NN\nneighbours NNS\nnein FW\nneither DT\nnemeses NNS\nnemesis NN\nneo JJ\nneo-Nazis NNPS\nneo-classicism NN\nneo-dadaist NN\nneo-fascist JJ\nneo-populist JJ\nneo-stagnationist JJ\nneo-swing NN\nneoclassical JJ\nneoconservative JJ\nneocortex NN\nneocortical-hypothalamic JJ\nneoliberal JJ\nneolithic JJ\nneon NN\nneon-lighted JJ\nneon-lit JJ\nneonatal JJ\nneophyte JJ\nneophytes NNS\nneoplasia FW\nneoprene NN\nnephew NN\nnephews NNS\nnepotism NN\nnerd NN\nnerd-and-geek JJ\nnerds NNS\nnerdy JJ\nnerly RB\nnerve NN\nnerve-cell JJ\nnerve-ends NNS\nnerve-racking JJ\nnerve-shattering JJ\nnerveless JJ\nnerves NNS\nnervous JJ\nnervously RB\nnervousness NN\nnervy JJ\nnest NN\nnest-egg NN\nnestbuilding NN\nnested VBN\nnester NN\nnesters NNS\nnesting VBG\nnestled VBN\nnestling NN\nnests NNS\nnet JJ\nnet-benefit JJ\nnet-capital JJ\nnet-like JJ\nnet-profits JJ\nnether JJ\nnets NNS\nnetted VBD\nnetting VBG\nnettled VBD\nnettlesome JJ\nnetwork NN\nnetwork-affiliated JJ\nnetwork-buying JJ\nnetwork-owned JJ\nnetwork-services JJ\nnetwork-wide JJ\nnetwork-writer JJ\nnetworking NN\nnetworks NNS\nneural JJ\nneuralgia NN\nneurasthenic NN\nneuritis NN\nneuroblastoma NN\nneurological JJ\nneurologist NN\nneurologists NNS\nneuromuscular JJ\nneuron NN\nneuronal JJ\nneuropathology NN\nneuropathy NN\nneuropsychiatric JJ\nneuroselective JJ\nneuroses NNS\nneurosis NN\nneurosurgeon NN\nneurotic JJ\nneurotoxic JJ\nneurotransmitter NN\nneurotransmitters NNS\nneuter NN\nneutered VBN\nneutral JJ\nneutralism NN\nneutralist JJ\nneutralists NNS\nneutrality NN\nneutralization NN\nneutralize VB\nneutralized VBN\nneutralizes VBZ\nneutrino NN\nneutrino-sized JJ\nneutron NN\nneutrons NNS\nneutrophils NNS\nnever RB\nnever-ending JJ\nnever-predictable JJ\nnever-to-be-forgotten JJ\nnevertheless RB\nnew JJ\nnew-business NN\nnew-car NN\nnew-country JJ\nnew-found JJ\nnew-generation NN\nnew-home JJ\nnew-house JJ\nnew-issue JJ\nnew-issues JJ\nnew-job JJ\nnew-loan JJ\nnew-model JJ\nnew-money JJ\nnew-mown JJ\nnew-product NN\nnew-rich JJ\nnew-share JJ\nnew-spilled JJ\nnew-styled JJ\nnew-telephone-line NN\nnewage NN\nnewborn JJ\nnewborns NNS\nnewcasts NNS\nnewcomer NN\nnewcomers NNS\nnewdrug NN\nnewel NN\nnewer JJR\nnewest JJS\nnewfangled JJ\nnewfound JJ\nnewissue NN\nnewly RB\nnewly-appointed JJ\nnewly-created JJ\nnewly-emerging JJ\nnewly-married JJ\nnewly-plowed JJ\nnewly-scrubbed JJ\nnewly-weds NNS\nnewlywed NN\nnewlyweds NNS\nnews NN\nnews-division NN\nnews-magazine NN\nnews-oriented JJ\nnews-release NN\nnews-weeklies NNS\nnews-weekly NN\nnewsboy NN\nnewscast NN\nnewscaster NN\nnewscasts NNS\nnewsgathering NN\nnewsies NNS\nnewsletter NN\nnewsletters NNS\nnewsmaker NN\nnewsman NN\nnewsmen NNS\nnewspaper NN\nnewspaper-delivery NN\nnewspaper-industry JJ\nnewspaper-printing NN\nnewspaper-publishing JJ\nnewspaperman NN\nnewspapers NNS\nnewsperson NN\nnewsprint NN\nnewsprints NNS\nnewsreel NN\nnewsroom NN\nnewsstand NN\nnewsstands NNS\nnewsweekly RB\nnewswire NN\nnewsworthiness NN\nnewsworthy JJ\nnewt NN\nnext JJ\nnext-door JJ\nnext-generation NN\nnext-to-last JJ\nnexus NN\nngandlu FW\nnibble VB\nnibblers NNS\nnibbling VBG\nnibs NNS\nnice JJ\nnice-looking JJ\nnicely RB\nnicer JJR\nnicest JJS\nniceties NNS\nniche NN\nniche-itis,`` ``\nniche-market NN\nniches NNS\nnicked VBN\nnickel NN\nnickel-iron NN\nnickeling VBG\nnickels NNS\nnickname NN\nnicknamed VBN\nnicknames NNS\nnicotine NN\nnicotine-choked JJ\nnicotine-free JJ\nniece NN\nnieces NNS\nnifty JJ\nniger NN\nnigga NN\nniggardly JJ\nnigger NN\nniggers NNS\nnigh RB\nnight NN\nnight-coach JJ\nnight-sight NN\nnight-time JJ\nnight-vision JJ\nnight-watchman NN\nnightclub NN\nnightclubs NNS\nnightdress NN\nnighted JJ\nnighters NNS\nnightfall NN\nnightgown-clad JJ\nnightgowns NNS\nnightingale NN\nnightingales NNS\nnightly JJ\nnightmare NN\nnightmares NNS\nnightmarish JJ\nnights NNS\nnightshirt NN\nnighttime JJ\nnigras NNS\nnigs NNS\nnihilism NN\nnihilist NN\nnihilistic JJ\nnil JJ\nnilly RB\nnilpotent JJ\nnimble JJ\nnimbler JJR\nnimbly RB\nnine CD\nnine-bedroom JJ\nnine-cent JJ\nnine-chambered JJ\nnine-day JJ\nnine-digit JJ\nnine-game JJ\nnine-member JJ\nnine-month JJ\nnine-months NNS\nnine-page JJ\nnine-point JJ\nnine-press NN\nnine-state JJ\nnine-story JJ\nnine-tenths NNS\nnine-thirty CD\nnine-to-five JJ\nnine-year JJ\nnine-year-old JJ\nninefold JJ\nnineteen CD\nnineteen-year-old JJ\nnineteenth JJ\nnineteenth-century JJ\nnineties NNS\nninetieth JJ\nninety CD\nninety-eight CD\nninety-five CD\nninety-nine CD\nninety-six CD\nninety-two CD\nninth JJ\nninth-circuit JJ\nninth-inning NN\nninth-largest JJ\nnip NN\nnipped VBD\nnipples NNS\nnips NNS\nnirvana NN\nnise JJ\nnisf-i-jahan NNP\nnit-picking NN\nnit-picky JJ\nnitpicking JJ\nnitrate NN\nnitrates NNS\nnitrite NN\nnitrocellulose NN\nnitrofurantoin NN\nnitrogen NN\nnitrogen-based JJ\nnitrogen-fertilizer NN\nnitrogen-mustard JJ\nnitroglycerine NN\nnitrous JJ\nnitwits NNS\nnixed VBD\nnnuolapertar-it-vuh-karti-birifw FW\nno DT\nno'junk JJ\nno-back NN\nno-brainer NN\nno-bunkum JJ\nno-confidence NN\nno-drinking JJ\nno-driving JJ\nno-fat JJ\nno-fault JJ\nno-frills JJ\nno-fuss JJ\nno-goal NN\nno-good JJ\nno-good-bums NNS\nno-growth JJ\nno-hit JJ\nno-hitters NNS\nno-inflation JJ\nno-layoff JJ\nno-load JJ\nno-loads NNS\nno-lose JJ\nno-man JJ\nno-man's-land NN\nno-men NNS\nno-mistakes JJ\nno-more-nonsense JJ\nno-muss JJ\nno-new-tax JJ\nno-new-taxes JJ\nno-no NN\nno-nonsense JJ\nno-nos NNS\nno-o UH\nno-one JJ\nno-profit JJ\nno-smoking JJ\nno-star JJ\nno-strike JJ\nno-tax JJ\nno-tax-increase JJ\nno-trade JJ\nno-trading JJ\nno-valued JJ\nno-walls-no-doors JJ\nno-waste JJ\nno-win JJ\nno. NN\nnobility NN\nnoble JJ\nnobleman NN\nnoblemen NNS\nnobler JJR\nnobles NNS\nnoblesse JJ\nnoblest JJS\nnobly RB\nnobody NN\nnociceptive JJ\nnoconfidence JJ\nnocturnal JJ\nnod NN\nnodded VBD\nnodding VBG\nnodes NNS\nnods VBZ\nnodular JJ\nnodules NNS\nnoes NNS\nnoir FW\nnoire NN\nnoise NN\nnoiseless JJ\nnoisemakers NNS\nnoises NNS\nnoisier JJR\nnoisily RB\nnoisy JJ\nnolens FW\nnoli NNS\nnolle FW\nnolo FW\nnomadic JJ\nnomads NNS\nnomenclatural JJ\nnomenclature NN\nnomenklatura FW\nnomias NNS\nnominal JJ\nnominally RB\nnominate VB\nnominated VBN\nnominating VBG\nnomination NN\nnominations NNS\nnominee NN\nnominees NNS\nnon FW\nnon-AMT JJ\nnon-Alternative NNP\nnon-Aryan JJ\nnon-Big JJ\nnon-British JJ\nnon-Canadian JJ\nnon-Castilians NNPS\nnon-Catholic NNP\nnon-Catholics NNPS\nnon-Christians NNPS\nnon-Cocom JJ\nnon-Communist JJ\nnon-Dow NNP\nnon-EC JJ\nnon-English NN\nnon-European JJ\nnon-Fed JJ\nnon-Federal JJ\nnon-Ford JJ\nnon-GM JJ\nnon-Germans NNS\nnon-God NN\nnon-Greek JJ\nnon-Hispanic JJ\nnon-Humana JJ\nnon-Hungarians NNPS\nnon-ICO JJ\nnon-Indian JJ\nnon-Indonesian JJ\nnon-Japanese JJ\nnon-Jew NN\nnon-Jewish JJ\nnon-Jews NNS\nnon-Korean JJ\nnon-Magyars NNPS\nnon-Manpower JJ\nnon-Mexican JJ\nnon-NMS JJ\nnon-New JJ\nnon-OPEC JJ\nnon-Russian JJ\nnon-Socialist JJ\nnon-Soviet JJ\nnon-Swedish JJ\nnon-Tagalog JJ\nnon-Tories NNS\nnon-U.S. JJ\nnon-Western JJ\nnon-`` ``\nnon-absorbent JJ\nnon-academic JJ\nnon-accrual JJ\nnon-accruing JJ\nnon-advertising JJ\nnon-affiliate NN\nnon-airline JJ\nnon-alcohol JJ\nnon-alcoholic JJ\nnon-algebraically JJ\nnon-amortizing JJ\nnon-annualized JJ\nnon-answer JJ\nnon-arbitrage JJ\nnon-artistic JJ\nnon-authoritative JJ\nnon-auto JJ\nnon-automotive JJ\nnon-bank JJ\nnon-banking JJ\nnon-bearing JJ\nnon-beer JJ\nnon-binding JJ\nnon-biodegradable JJ\nnon-black JJ\nnon-books NNS\nnon-brain JJ\nnon-brand JJ\nnon-building JJ\nnon-business JJ\nnon-caffeine JJ\nnon-call JJ\nnon-callable JJ\nnon-cash JJ\nnon-casino JJ\nnon-church JJ\nnon-circumvention NN\nnon-clients NNS\nnon-code JJ\nnon-college JJ\nnon-color NN\nnon-com NN\nnon-commissioned JJ\nnon-communist JJ\nnon-communists NNS\nnon-comparable JJ\nnon-compete JJ\nnon-competition JJ\nnon-competitive JJ\nnon-compliance NN\nnon-conformists NNS\nnon-confrontational JJ\nnon-consolidated JJ\nnon-consumer NN\nnon-contact JJ\nnon-contract JJ\nnon-contributory JJ\nnon-controlling JJ\nnon-convertible JJ\nnon-core JJ\nnon-credit JJ\nnon-crisis JJ\nnon-cumulative JJ\nnon-cyclical JJ\nnon-daily JJ\nnon-dairy-creamer NN\nnon-dealer JJ\nnon-deductible JJ\nnon-defense JJ\nnon-defense-related JJ\nnon-democratic JJ\nnon-direct JJ\nnon-disabled JJ\nnon-dischargable JJ\nnon-discrimination NN\nnon-diva-like JJ\nnon-dividend-bearing JJ\nnon-dramas NNS\nnon-drug JJ\nnon-dual JJ\nnon-duck JJ\nnon-durable JJ\nnon-earning JJ\nnon-economical JJ\nnon-economists NNS\nnon-edible JJ\nnon-elderly JJ\nnon-employee JJ\nnon-encapsulating JJ\nnon-energy JJ\nnon-enforcement JJ\nnon-enzymatic JJ\nnon-equity JJ\nnon-event NN\nnon-exclusive JJ\nnon-executive JJ\nnon-exempt JJ\nnon-existant JJ\nnon-existent JJ\nnon-familial JJ\nnon-family JJ\nnon-farm JJ\nnon-fat JJ\nnon-fiction JJ\nnon-figurative JJ\nnon-financial JJ\nnon-firm JJ\nnon-flight JJ\nnon-food JJ\nnon-forthcoming JJ\nnon-fortress-like JJ\nnon-freezing JJ\nnon-gasoline JJ\nnon-governmental JJ\nnon-high JJ\nnon-horticultural JJ\nnon-hydrogen-bonded JJ\nnon-identity JJ\nnon-ideological JJ\nnon-inflationary JJ\nnon-insider NN\nnon-instinctive JJ\nnon-institutionalized JJ\nnon-insurance JJ\nnon-intellectual JJ\nnon-interest JJ\nnon-interest-bearing JJ\nnon-interference NN\nnon-interstate JJ\nnon-interventionist JJ\nnon-invasive JJ\nnon-investment JJ\nnon-issue NN\nnon-itemized JJ\nnon-job-connected JJ\nnon-junk JJ\nnon-junkies NNS\nnon-lawyers NNS\nnon-lethal JJ\nnon-life JJ\nnon-linear JJ\nnon-liquid JJ\nnon-literary JJ\nnon-management JJ\nnon-market NN\nnon-meat NN\nnon-medical JJ\nnon-mega JJ\nnon-member NN\nnon-members NNS\nnon-merger JJ\nnon-metallic JJ\nnon-methanol JJ\nnon-military JJ\nnon-mining JJ\nnon-monetary JJ\nnon-monopolistic JJ\nnon-negative JJ\nnon-network JJ\nnon-newspaper JJ\nnon-newtonian JJ\nnon-nonsense NN\nnon-objective JJ\nnon-objects NNS\nnon-oil JJ\nnon-operating JJ\nnon-option JJ\nnon-packaging JJ\nnon-paper NN\nnon-partisan JJ\nnon-party JJ\nnon-patent JJ\nnon-pathogenic JJ\nnon-performing JJ\nnon-person NN\nnon-pipeline NN\nnon-poetry NN\nnon-police JJ\nnon-political JJ\nnon-polygynous JJ\nnon-porous JJ\nnon-pregnant JJ\nnon-prescription JJ\nnon-priority JJ\nnon-productive JJ\nnon-professional JJ\nnon-professionals NNS\nnon-profit JJ\nnon-propagandistic JJ\nnon-propagating JJ\nnon-public JJ\nnon-publishers NNS\nnon-readers NNS\nnon-realistic JJ\nnon-recessionary JJ\nnon-recourse JJ\nnon-recurring JJ\nnon-refundable JJ\nnon-regulated JJ\nnon-religious JJ\nnon-repetitious JJ\nnon-representation JJ\nnon-research JJ\nnon-resident JJ\nnon-residential JJ\nnon-residents NNS\nnon-resistants JJ\nnon-retail JJ\nnon-romantic JJ\nnon-sales JJ\nnon-scheduled JJ\nnon-scientific JJ\nnon-scientist JJ\nnon-seamen NNS\nnon-sentimental JJ\nnon-service JJ\nnon-service-connected JJ\nnon-skid JJ\nnon-smokers NNS\nnon-smoking JJ\nnon-social JJ\nnon-staple JJ\nnon-state JJ\nnon-stop JJ\nnon-strategic JJ\nnon-striking JJ\nnon-subcommittee JJ\nnon-subscription JJ\nnon-subsidized JJ\nnon-success NN\nnon-supervisory JJ\nnon-surgical JJ\nnon-swimmers NNS\nnon-systematic JJ\nnon-tariff JJ\nnon-taxable JJ\nnon-telephone JJ\nnon-thermal JJ\nnon-time NN\nnon-toxic JJ\nnon-trade JJ\nnon-trade-related JJ\nnon-traders NNS\nnon-traditional JJ\nnon-union JJ\nnon-user NN\nnon-utility JJ\nnon-vaccinated JJ\nnon-verbal JJ\nnon-vested JJ\nnon-veterans NNS\nnon-violence NN\nnon-violent JJ\nnon-violently RB\nnon-viral JJ\nnon-virulent JJ\nnon-volatile JJ\nnon-voting JJ\nnon-wage JJ\nnon-warranty NN\nnon-wealthy JJ\nnon-white JJ\nnon-wireline JJ\nnon-working JJ\nnon-writers NNS\nnonacid JJ\nnonaddictive JJ\nnonagricultural JJ\nnonbanking JJ\nnonbinding JJ\nnonbusiness NN\nnoncallable JJ\nnoncash JJ\nnonce NN\nnonchalant JJ\nnonchlorinated JJ\nnonchurchgoing JJ\nnoncombat JJ\nnoncombatant JJ\nnoncommercial JJ\nnoncommissioned JJ\nnoncommittal JJ\nnoncommittally RB\nnoncommunist NN\nnoncompetitive JJ\nnoncompetitively RB\nnoncompliance NN\nnoncompliant JJ\nnonconformist NN\nnonconformists NNS\nnoncontract JJ\nnoncontroversial JJ\nnonconvertible JJ\nnoncorrosive JJ\nnoncriminal JJ\nnoncumulative JJ\nnoncustomer NN\nnondairy JJ\nnondeductible JJ\nnondefeatist JJ\nnondefense JJ\nnondemocratic JJ\nnondescript JJ\nnondescriptly RB\nnondestructive JJ\nnondiscretionary JJ\nnondiscrimination NN\nnondiscriminatory JJ\nnondoctrinaire JJ\nnondollar JJ\nnondriver NN\nnondrying JJ\nnondurable JJ\nnondurables NNS\nnone NN\nnoneconomic JJ\nnonelectrical JJ\nnonentity NN\nnonequivalence NN\nnonequivalent JJ\nnonessential JJ\nnonetheless RB\nnonevent NN\nnonexecutive JJ\nnonexistent JJ\nnonfarm JJ\nnonfat JJ\nnonferrous JJ\nnonfiction NN\nnonfinancial JJ\nnonflammable JJ\nnonfood NN\nnonfunctional JJ\nnoninflationary JJ\nnoninstitutionalized JJ\nnoninterest JJ\nnoninterest-income NN\nnoninterference NN\nnonintervention NN\nnonionic JJ\nnonism NN\nnonlethal JJ\nnonlinguistic JJ\nnonliterary JJ\nnonmaterial JJ\nnonmedia NN\nnonmembers NNS\nnonmetallic JJ\nnonminority NN\nnonmusical JJ\nnonmythological JJ\nnonobservant JJ\nnonoccurrence NN\nnonogenarian NN\nnonoperating VBG\nnonpareil JJ\nnonparticulate NN\nnonpartisan JJ\nnonpaying JJ\nnonpayment NN\nnonperformers NNS\nnonperforming JJ\nnonphysical JJ\nnonpoisonous JJ\nnonpolitical JJ\nnonporous JJ\nnonprescription NN\nnonpriority NN\nnonproductive JJ\nnonprofit JJ\nnonproliferation NN\nnonpublic JJ\nnonqualified VBN\nnonracial JJ\nnonreactivity NN\nnonreactors NNS\nnonrecourse JJ\nnonrecurring VBG\nnonrefundable JJ\nnonregulated JJ\nnonresident JJ\nnonresidential JJ\nnonresidential-contracting JJ\nnonsegregated JJ\nnonsense NN\nnonsensical JJ\nnonshifters NNS\nnonsingular JJ\nnonsmokers NNS\nnonsocialist JJ\nnonspecific JJ\nnonspecifically RB\nnonstandard JJ\nnonstop JJ\nnonstops NNS\nnonstrategic JJ\nnonstrikers NNS\nnonsuccessful JJ\nnonsurgical JJ\nnonsystematic JJ\nnonthreatening VBG\nnontoxic JJ\nnontrade NN\nnontraditional JJ\nnontransferable JJ\nnonunion JJ\nnonunionized VBN\nnonverbal JJ\nnonverbally RB\nnonviolence NN\nnonviolent JJ\nnonvirulent JJ\nnonvoting JJ\nnonwhite JJ\nnonwhites NNS\nnonworking JJ\nnoodles NNS\nnook NN\nnooks NNS\nnoon NN\nnoontime NN\nnoose NN\nnope UH\nnor CC\nnoradrenalin NN\nnorethandrolone NN\nnorm NN\nnormal JJ\nnormalcy NN\nnormalization NN\nnormalize VB\nnormalized VBN\nnormalizing VBG\nnormally RB\nnormals NNS\nnormative JJ\nnorms NNS\nnorske NNP\nnorth RB\nnorth-bound JJ\nnorth-flowing JJ\nnorth-south JJ\nnortheast NN\nnortheastern JJ\nnortherly JJ\nnorthern JJ\nnortherner NN\nnortherners NNS\nnorthernmost JJ\nnorthers NNS\nnorthward RB\nnorthwest RB\nnorthwestern JJ\nnos NNS\nnos. NN\nnose NN\nnose-dive NN\nnose-dived VBD\nnose-to-nose JJ\nnosebag NN\nnosebleed NN\nnosed VBD\nnosedive NN\nnosedived VBD\nnosediving VBG\nnoses NNS\nnosing VBG\nnostalgia NN\nnostalgic JJ\nnostalgically RB\nnostril NN\nnostrils NNS\nnostrums NNS\nnosy JJ\nnot RB\nnot-A NN\nnot-ace NN\nnot-for-profit JJ\nnot-knowing RB|VBG\nnot-less-deadly JJ\nnot-quite-mainstream JJ\nnot-quite-perfect JJ\nnot-so-favorite JJ\nnot-so-lonely JJ\nnot-so-new JJ\nnot-so-pale JJ\nnot-so-rich NN\nnot-so-subtly RB\nnot-so-trivial JJ\nnot-strictly-practical JJ\nnot-too-distant JJ\nnot-yet-married JJ\nnot. NN\nnotable JJ\nnotables NNS\nnotably RB\nnotarized VBN\nnotation NN\nnotch NN\nnotched VBN\nnotched-stick JJ\nnotches NNS\nnotching VBG\nnote NN\nnotebook NN\nnotebook-size JJ\nnotebook-sized JJ\nnotebooks NNS\nnoted VBD\nnoteholder NN\nnoteholders NNS\nnotepad NN\nnotes NNS\nnoteworthy JJ\nnothin NN\nnothing NN\nnothing-down JJ\nnothingness NN\nnothings NNS\nnotice NN\nnoticeable JJ\nnoticeably RB\nnoticed VBD\nnotices NNS\nnoticing VBG\nnotification NN\nnotifications NNS\nnotified VBN\nnotifies VBZ\nnotify VB\nnotifying VBG\nnoting VBG\nnotion NN\nnotions NNS\nnotoriety NN\nnotorious JJ\nnotoriously RB\nnott RB\nnotwithstanding IN\nnought NN\nnoun NN\nnouns NNS\nnourish VB\nnourished VBN\nnourishes VBZ\nnourishment NN\nnous FW\nnouveau JJ\nnouveaux FW\nnouvelle JJ\nnovel NN\nnovel-in-progress NN\nnovelist NN\nnovelistic JJ\nnovelists NNS\nnovelized JJ\nnovels NNS\nnovelties NNS\nnovelty NN\nnovice NN\nnovices NNS\nnovitiate NN\nnovitiates NNS\nnovo FW\nnow RB\nnow-Rep JJ\nnow-deceased JJ\nnow-defunct JJ\nnow-discontinued JJ\nnow-dismembered JJ\nnow-dominant JJ\nnow-evident JJ\nnow-famous JJ\nnow-historic JJ\nnow-infamous JJ\nnow-legal JJ\nnow-misplaced JJ\nnow-notorious JJ\nnow-obscure JJ\nnow-ousted JJ\nnow-purged JJ\nnow-repentant JJ\nnow-scuttled JJ\nnow-shaky JJ\nnow-shuttered JJ\nnow-smaller JJ\nnow-standard JJ\nnow-troubled JJ\nnow-vacant JJ\nnow... :\nnowadays RB\nnowbankrupt JJ\nnowhere RB\nnoxious JJ\nnozzle NN\nnozzles NNS\nnuance NN\nnuances NNS\nnubbins NNS\nnubile JJ\nnuceoside NN\nnuclear JJ\nnuclear-armed JJ\nnuclear-arms NNS\nnuclear-bomb NN\nnuclear-industry NN\nnuclear-plant JJ\nnuclear-power JJ\nnuclear-powered JJ\nnuclear-propulsion JJ\nnuclear-tipped JJ\nnuclear-weapons NNS\nnuclear-weapons-sites NNS\nnucleated VBN\nnuclei NNS\nnucleic JJ\nnucleoli NNS\nnucleotide NN\nnucleus NN\nnuclide NN\nnude JJ\nnudes NNS\nnudge VB\nnudged VBD\nnudging VBG\nnudism NN\nnudist JJ\nnudity NN\nnufs NNS\nnugget NN\nnuisance NN\nnuisances NNS\nnukes NNS\nnull JJ\nnull-type JJ\nnullified VBN\nnullifiers NNS\nnullify VB\nnullifying VBG\nnullity NN\nnumb JJ\nnumbed VBN\nnumber NN\nnumber-crunchers NNS\nnumber-one JJ\nnumbered VBN\nnumbering VBG\nnumbers NNS\nnumbing JJ\nnumbingly RB\nnumbness NN\nnumenous JJ\nnumeral NN\nnumerals NNS\nnumerator NN\nnumerical JJ\nnumerically RB\nnumerological JJ\nnumerology NN\nnumerous JJ\nnuminous JJ\nnumismatic JJ\nnun NN\nnuns NNS\nnuper FW\nnurse NN\nnursed VBD\nnurseries NNS\nnursery NN\nnurses NNS\nnursing NN\nnursing-home NN\nnursing-homes\\/retirement-living JJ\nnurture VB\nnurture... :\nnurtured VBD\nnurturer NN\nnurturing VBG\nnut NN\nnut-house NN\nnut-like JJ\nnutmeg NN\nnutrient JJ\nnutrients NNS\nnutrition NN\nnutritional JJ\nnutritionists NNS\nnutritious JJ\nnutritive JJ\nnuts NNS\nnuts-and-bolts JJ\nnutshell NN\nnutty JJ\nnux NN\nnuzzled VBD\nnw. NN\nnyet UH\nnylon NN\nnymph NN\nnympho NN\nnymphomaniac NN\nnymphomaniacs NNS\nnymphs NNS\nnystatin NN\no IN\no'clock RB\no'er IN\noaf NN\noafs NNS\noak NN\noak-log NN\noaken JJ\noaks NNS\noases NNS\noasis NN\noat NN\noat-based JJ\noat-bran NN\noath NN\noath-taking NN\noathe NN\noaths NNS\noatmeal NN\noats NNS\nobdurate JJ\nobedience NN\nobedience-trained JJ\nobediences NNS\nobedient JJ\nobediently RB\nobeisance NN\nobeisant JJ\nobelisk NN\nobese JJ\nobesity NN\nobey VB\nobeyed VBD\nobeying VBG\nobeys VBZ\nobfuscate VB\nobfuscation NN\nobfuscations NNS\nobituaries NNS\nobject NN\nobjected VBD\nobjectification NN\nobjecting VBG\nobjection NN\nobjectionable JJ\nobjections NNS\nobjective NN\nobjectively RB\nobjectiveness NN\nobjectives NNS\nobjectivity NN\nobjector NN\nobjectors NNS\nobjects NNS\nobjets FW\nobligated VBN\nobligates VBZ\nobligating VBG\nobligation NN\nobligational JJ\nobligations NNS\nobligatory JJ\nobligatto NN\noblige VB\nobliged VBN\nobliges VBZ\nobliging JJ\nobligingly RB\noblique JJ\nobliquely RB\nobliterans NNS\nobliterate VB\nobliterated VBN\nobliteration NN\noblivion NN\noblivious JJ\noblong JJ\nobnoxious JJ\noboist NN\nobscene JJ\nobscenities NNS\nobscenity NN\nobscure JJ\nobscured VBN\nobscurely RB\nobscures VBZ\nobscuring VBG\nobscurities NNS\nobscurity NN\nobsequies NNS\nobsequious JJ\nobsequiousness NN\nobservable JJ\nobservance NN\nobservances NNS\nobservant JJ\nobservation NN\nobservational JJ\nobservations NNS\nobservatory NN\nobserve VB\nobserved VBN\nobserver NN\nobservers NNS\nobserves VBZ\nobserving VBG\nobsessed VBN\nobsesses VBZ\nobsession NN\nobsessions NNS\nobsessive JJ\nobsessive-compulsive JJ\nobsessively RB\nobsidian NN\nobsolescent JJ\nobsolesence NN\nobsolete JJ\nobsoleted VBN\nobsoleting VBG\nobstacle NN\nobstacles NNS\nobstetrician NN\nobstinacy NN\nobstinate JJ\nobstruct VB\nobstructed VBN\nobstructing VBG\nobstruction NN\nobstructionism NN\nobstructionist NN\nobstructive JJ\nobtain VB\nobtainable JJ\nobtaine VB\nobtained VBN\nobtaining VBG\nobtrudes VBZ\nobtrusiveness NN\nobtuse JJ\nobverse NN\nobviate VB\nobvious JJ\nobviously RB\nobviousness NN\nocarina NN\noccasion NN\noccasional JJ\noccasionally RB\noccasioned VBN\noccasions NNS\noccidental JJ\noccipital JJ\noccluded VBN\nocclusion NN\nocclusive JJ\noccupancies NNS\noccupancy NN\noccupant NN\noccupants NNS\noccupation NN\noccupation-as NN|IN\noccupational JJ\noccupations NNS\noccupied VBN\noccupies VBZ\noccupy VB\noccupying VBG\noccur VB\noccured VBD\noccuring VBG\noccurred VBD\noccurrence NN\noccurrences NNS\noccurring VBG\noccurs VBZ\nocean NN\nocean-going JJ\nocean-pollution NN\nocean-shipping NN\nocean-thermal JJ\noceanfront JJ\noceanographic JJ\noceanography NN\noceans NNS\noceanthermal JJ\nocelot NN\noch FW\nocher NN\nochre JJ\noctagonal JJ\noctahedron NN\noctane NN\noctave JJ\noctaves NNS\noctillion CD\noctogenaraians NNS\noctogenarian JJ\noctogenarians NNS\noctopus NN\noctoroon NN\nocular JJ\nodd JJ\nodd-looking JJ\nodd-lot JJ\nodd-sounding JJ\nodd-year JJ\noddball JJ\noddballs NNS\noddest JJS\noddities NNS\noddity NN\noddly RB\nodds NNS\nodds-on JJ\node NN\nodious JJ\nodor NN\nodors NNS\nodyssey NN\noedipal JJ\noerations NNS\noeufs FW\nof IN\nof'aw NN\nof'em IN|PP\nof'for IN\nof'idling NN\nof'no NN\nof'tholin NN\nof... :\noff IN\noff-Broadway JJ\noff-again JJ\noff-balance JJ\noff-base JJ\noff-beat JJ\noff-budget JJ\noff-center JJ\noff-color JJ\noff-duty JJ\noff-exchange JJ\noff-farm JJ\noff-field JJ\noff-flavors NNS\noff-hours JJ\noff-key JJ\noff-level JJ\noff-limits JJ\noff-line JJ\noff-network JJ\noff-off JJ\noff-off-Broadway NNP\noff-price JJ\noff-putting JJ\noff-road JJ\noff-season NN\noff-shore JJ\noff-speed JJ\noff-stage NN\noff-the-books JJ\noff-the-cuff JJ\noff-the-record JJ\noff-the-shelf JJ\noff-white JJ\noff-year JJ\noffal NN\noffbeat JJ\noffcourse JJ\noffences NNS\noffend VB\noffended VBN\noffender NN\noffenders NNS\noffending VBG\noffends VBZ\noffense NN\noffenses NNS\noffensive JJ\noffensively RB\noffensives NNS\noffer NN\noffered VBN\noffering NN\noffering-price JJ\nofferings NNS\noffers VBZ\noffersey NNS\noffhand JJ\noffhandedly RB\noffi NNS\noffical JJ\nofficals NNS\noffice NN\noffice-equipment NN\noffice-furniture JJ\noffice-product NN\noffice-products NNS\noffice-supplies NNS\noffice-supply JJ\noffice-systems NNS\noffice\\/dept. NN\nofficeholders NNS\nofficer NN\nofficered VBN\nofficers NNS\noffices NNS\nofficial NN\nofficialdom NN\nofficially RB\nofficials NNS\nofficials-cum-drug-traffickers NNS\nofficiate VB\nofficiated VBD\nofficiating VBG\nofficio FW\nofficious JJ\noffing NN\noffocus NN\noffputting JJ\noffsaddled VBD\noffset VB\noffsets VBZ\noffsetting VBG\noffshoot NN\noffshoots NNS\noffshore JJ\noffshore-rig NN\noffside NN\noffspring NN\noffstage RB\noft RB\noft-quoted JJ\noft-repeated JJ\noften RB\noften-criticized JJ\noften-disparaged JJ\noften-fatal JJ\noften-heard JJ\noften-ignored JJ\noften-repeated JJ\noftener RBR\noftentimes RB\nogled VBD\nogles VBZ\nogling VBG\nogress NN\noh UH\nohmic JJ\noil NN\noil-and-gas JJ\noil-based JJ\noil-bath NN\noil-bearing JJ\noil-consuming JJ\noil-covered JJ\noil-depletion JJ\noil-driller NN\noil-drilling NN\noil-exporting NN\noil-field NN\noil-finding JJ\noil-futures NNS\noil-industry NN\noil-lease JJ\noil-leasing NN\noil-patch JJ\noil-poor JJ\noil-price NN\noil-producing JJ\noil-production NN\noil-recycling NN\noil-rig NN\noil-service NN\noil-services JJ\noil-slicked JJ\noil-spill NN\noil-tanker NN\noil-trading NN\noil-transport JJ\noil-well NN\noilcloth NN\noiled JJ\noiler NN\noilfield NN\noilfields NNS\noilheating NN\noilman NN\noilman-rancher NN\noils NNS\noilseed NN\noilseeds NNS\noilworkers NNS\noily JJ\noink UH\nointment NN\noiticica NN\nok UH\nokay JJ\noks VBZ\nol JJ\nold JJ\nold-age JJ\nold-boy NN\nold-fashioned JJ\nold-grad-type NN\nold-growth JJ\nold-guard JJ\nold-line JJ\nold-maid NN\nold-model JJ\nold-name JJ\nold-style JJ\nold-time JJ\nold-timer NN\nold-timers NNS\nold-world JJ\nolden JJ\nolder JJR\nolder-skewing JJR\noldest JJS\noldies NNS\noldline NN\nolds NNS\noldsters NNS\nole JJ\noleanders NNS\nolefins NNS\noleomargarine NN\noleophilic JJ\noleophobic JJ\nolestra NN\nolfactory JJ\noligarchs NNS\noligopoly NN\nolim FW\nolive JJ\nolive-flushed JJ\nolive-green JJ\nolivefaced JJ\nolives NNS\nologies NNS\nombudsman NN\nomelet NN\nomelets NNS\nomelette NN\nomen NN\nomens NNS\nomeprazole NN\nomg UH\nominous JJ\nominously RB\nomission NN\nomissions NNS\nomit VB\nomits VBZ\nomitted VBN\nomitting VBG\nommission NN\nomnia FW\nomnibus JJ\nomnipotence NN\nomnipresence NN\nomnipresent JJ\nomniscient JJ\non IN\non'frontier NN\non-again JJ\non-again-off-again JJ\non-air JJ\non-and-off JJ\non-board JJ\non-budget JJ\non-campus JJ\non-level NN\non-line JJ\non-ramps NNS\non-set JJ\non-site JJ\non-stage JJ\non-sure JJ\non-the-go JJ\non-the-job JJ\non-the-scene JJ\non-the-spot JJ\non-time JJ\nonboard NN\nonce RB\nonce-a-day JJ\nonce-a-month JJ\nonce-absolute JJ\nonce-balkanized JJ\nonce-bloated JJ\nonce-bustling JJ\nonce-closed JJ\nonce-cozy JJ\nonce-desirable JJ\nonce-devoted JJ\nonce-distinct JJ\nonce-downtrodden JJ\nonce-dry JJ\nonce-dull JJ\nonce-exploding JJ\nonce-faltering JJ\nonce-fashionable JJ\nonce-grumpy JJ\nonce-high-flying JJ\nonce-in-a-lifetime JJ\nonce-indomitable JJ\nonce-loyal JJ\nonce-lucrative JJ\nonce-mighty JJ\nonce-moribund JJ\nonce-over NN\nonce-over-lightly NN\nonce-popular JJ\nonce-powerful JJ\nonce-prestigious JJ\nonce-prevailing JJ\nonce-private JJ\nonce-profitable JJ\nonce-promising JJ\nonce-proud JJ\nonce-rich JJ\nonce-sacred JJ\nonce-scandalous JJ\nonce-sleepy JJ\nonce-spare JJ\nonce-sporadic JJ\nonce-staid JJ\nonce-stately JJ\nonce-stodgy JJ\nonce-strong JJ\nonce-troubled JJ\nonce-unprofitable JJ\nonce-unthinkable JJ\nonce-vast JJ\noncogene NN\noncogenes NNS\noncologist NN\noncology NN\noncoming JJ\nonct IN\none CD\none-act JJ\none-act-play JJ\none-acter JJ\none-acters NNS\none-arm JJ\none-branch JJ\none-by-one JJ\none-color JJ\none-company JJ\none-country JJ\none-day JJ\none-digit JJ\none-dimensional JJ\none-drug JJ\none-dumbbell JJ\none-eighth NN\none-family JJ\none-fifth NN\none-for-one JJ\none-for-two JJ\none-fourth NN\none-gee JJ\none-half NN\none-half-point JJ\none-horse JJ\none-hour JJ\none-house JJ\none-hundredth NN\none-in-a-million JJ\none-in-four JJ\none-inch JJ\none-industry JJ\none-iron JJ\none-issue JJ\none-kiloton JJ\none-liners NNS\none-man JJ\none-megabit JJ\none-million-letter JJ\none-million-plus JJ\none-minute JJ\none-month JJ\none-month-old JJ\none-newspaper JJ\none-night JJ\none-o'clock CD|RB\none-of-a-kind JJ\none-on-one JJ\none-out-of-three JJ\none-over-par JJ\none-owner JJ\none-page JJ\none-paragraph JJ\none-parent JJ\none-party JJ\none-penny JJ\none-percentage JJ\none-percentage-point JJ\none-person NN\none-plane JJ\none-point JJ\none-pound-or-so JJ\none-product NN\none-quarter NN\none-quarter-cent JJ\none-reel JJ\none-restaurant NN\none-room JJ\none-sentence JJ\none-set JJ\none-ship JJ\none-shot JJ\none-sided JJ\none-sixteenth NN\none-sixth JJ\none-size-fits-all JJ\none-square-mile JJ\none-step JJ\none-stooler NN\none-stop JJ\none-story JJ\none-stroke JJ\none-tenth JJ\none-term JJ\none-third NN\none-thirty RB\none-thousand-zloty JJ\none-thousandth NN\none-time JJ\none-twentieth JJ\none-two JJ\none-two-three NN\none-upmanship NN\none-upsmanship NN\none-way JJ\none-week JJ\none-week-old JJ\none-woman JJ\none-word JJ\none-year JJ\none-year-old JJ\none-yen JJ\noneasy NN\noneness NN\nonepage JJ\nonerous JJ\nones NNS\noneself PRP\nonetime JJ\noneyear JJ\nongoing JJ\nonion NN\nonions NNS\nonleh RB\nonline JJ\nonlooker NN\nonlookers NNS\nonly RB\nonrush NN\nonrushing JJ\nonscreen RB\nonset NN\nonslaught NN\nonslaughts NNS\nonstage NN\nonto IN\nontological JJ\nontologically RB\nonus NN\nonward RB\nonward-driving JJ\nonwards RB\nonyx NN\noodles NN\noohs UH\noomph NN\noops UH\nooze NN\noozed VBD\noozing VBG\nop NNP\nop-ed JJ\nopalescent JJ\nopaque JJ\nopen JJ\nopen-access NN\nopen-air JJ\nopen-bank JJ\nopen-checkbook NN\nopen-collared JJ\nopen-door NN\nopen-end JJ\nopen-ended JJ\nopen-face JJ\nopen-handed JJ\nopen-interest JJ\nopen-market JJ\nopen-meeting JJ\nopen-minded JJ\nopen-mouthed JJ\nopen-necked JJ\nopen-shelf JJ\nopen-skies JJ\nopen-top JJ\nopen-work JJ\nopen-year JJ\nopened VBD\nopenended VBN\nopener NN\nopeners NNS\nopening NN\nopening-day NN\nopening-hour JJ\nopenings NNS\nopenly RB\nopenness NN\nopens VBZ\nopera NN\noperable JJ\noperagoers NNS\noperalet NN\noperand NN\noperands NNS\noperas NNS\noperate VB\noperated VBN\noperates VBZ\noperatic JJ\noperating VBG\noperating-cost JJ\noperating-room NN\noperating-system JJ\noperation NN\noperational JJ\noperationally RB\noperations NNS\noperations... :\noperations\\ NNP\noperative JJ\noperatives NNS\noperator NN\noperator-assisted JJ\noperator-services NNS\noperators NNS\noperatorship NN\noperetta NN\noperina NN\nophthalmic JJ\nophthalmologists NNS\nopiates NNS\nopines VBZ\nopining VBG\nopinion NN\nopinion-makers NNS\nopinionated JJ\nopinionmakers NNS\nopinions NNS\nopium NN\nopponent NN\nopponents NNS\nopportune JJ\nopportuning NN\nopportunism NN\nopportunist NN\nopportunistic JJ\nopportunists NNS\nopportunities NNS\nopportunity NN\noppose VB\nopposed VBN\nopposes VBZ\nopposing VBG\nopposite JJ\nopposition NN\nopposition-party JJ\noppposes VBZ\noppressed JJ\noppresses VBZ\noppression NN\noppressive JJ\noppressors NNS\nopprobrium NN\nopt VB\nopted VBD\noptic JJ\noptical JJ\noptical-disk JJ\noptical-fiber JJ\noptical-products NNS\noptical-scanning JJ\noptical-storage JJ\noptically RB\nopticians NNS\noptics NNS\noptimal JJ\noptimality NN\noptimism NN\noptimist NN\noptimistic JJ\noptimistically RB\noptimists NNS\noptimization NN\noptimize VB\noptimizing VBG\noptimo FW\noptimum JJ\nopting VBG\noption NN\noption-based JJ\noption-related JJ\noptional JJ\noptioned VBN\noptions NNS\noptions-related JJ\noptions-trading JJ\nopto-electronic JJ\noptronics NN\nopts VBZ\nopulence NN\nopulent JJ\nopus NN\nor CC\nor'dizzy JJ\nor'fortress NN\nor'junk NN\nor'you're NN\nor... :\noracle NN\noracles NNS\noral JJ\noral-care JJ\norally RB\norange JJ\norange-and-blue JJ\norange-and-white JJ\norange-flavored JJ\norange-juice NN\noranges NNS\norate VB\noratio FW\noration NN\norations NNS\norator NN\noratorical JJ\noratorio NN\norators NNS\noratory NN\norb NN\norbit NN\norbital JJ\norbited VBD\norbiting VBG\norbits NNS\norchard NN\norchard... :\norchardists NNS\norchards NNS\norchestra NN\norchestral JJ\norchestras NNS\norchestrate VB\norchestrated VBD\norchestrating VBG\norchestration NN\norchestrations NNS\norchid-strewn JJ\norchids NNS\nordain VB\nordained VBN\nordeal NN\norder NN\norder-delivery JJ\norder-entry JJ\norder-imbalance NN\norder-matching NNS\norder-processing JJ\norder-taker NN\norder-taking NN\norder-to-ship JJ\nordere VBN\nordered VBD\nordering VBG\norderings NNS\norderliness NN\norderly JJ\norders NNS\norders-related JJ\nordinance NN\nordinances NNS\nordinarily RB\nordinarius NN\nordinary JJ\nordinates NNS\nordination NN\nordnance NN\nordo FW\nore NN\nores NNS\norgan NN\norgan-transplant JJ\norgandy NN\norganic JJ\norganically RB\norganics NNS\norganification NN\norganised VBD\norganism NN\norganismic JJ\norganisms NNS\norganist NN\norganization NN\norganization-position JJ\norganizational JJ\norganizationally RB\norganizations NNS\norganize VB\norganized VBN\norganized-crime NN\norganizer NN\norganizers NNS\norganizes VBZ\norganizing VBG\norgans NNS\norgasm NN\norgasms NNS\norgiastic JJ\norgies NNS\norginally RB\norginate VB\norgone NN\norgy NN\noriental JJ\norientation NN\norientations NNS\noriented VBN\noriented-polypropylene JJ\norienting VBG\norifices NNS\norigin NN\norigin... :\noriginal JJ\noriginal-equipment JJ\noriginal-instrument JJ\noriginal-issue JJ\noriginality NN\noriginally RB\noriginals NNS\noriginate VB\noriginated VBD\noriginates VBZ\noriginating VBG\norigination NN\noriginations NNS\noriginator NN\noriginators NNS\norigins NNS\nornament NN\nornamental JJ\nornamentation NN\nornamented VBN\nornaments NNS\nornate JJ\nornately RB\nornery JJ\norney JJ\nornithological JJ\nornithologist NN\nornithology NN\nornraier RBR\norphan JJ\norphanage NN\norphaned VBN\norphans NNS\northicon NN\northodontic JJ\northodontics NNS\northodontist NN\northodontists NNS\northodox JJ\northodoxy NN\northographic JJ\northographies NNS\northography NN\northopedic JJ\northopedics NNS\northophosphate NN\northophosphates NNS\northorhombic JJ\norzae NNS\nos NN\noscillated VBD\noscillating VBG\noscillation NN\noscillator NN\nosf IN\nosmium NN\nosmotic JJ\nosseous JJ\nossification NN\nossify VB\nostensible JJ\nostensibly RB\nostentation NN\nostentatious JJ\nostentatiously RB\nosteoarthritis NN\nosteoporosis NN\nostinato NN\nostinatos NNS\nostracism NN\nostracized VBN\nostrich JJ\nothe JJ\nother JJ\nother-directed JJ\nother-nation JJ\nother. NN\nothers NNS\notherwise RB\notherworldliness NN\notherworldly JJ\notter NN\notters NNS\noud NN\nought MD\noughta MD\noui FW\nould JJ\nounce NN\nounces NNS\nour PRP$\nours PRP\nourselves PRP\noust VB\nousted VBN\nouster NN\nousting VBG\nout IN\nout'n IN\nout-and-out JJ\nout-compete VB\nout-dated JJ\nout-group NN\nout-migrants NNS\nout-migration NN\nout-moded JJ\nout-of-alignment NN\nout-of-bounds JJ\nout-of-court JJ\nout-of-date JJ\nout-of-door NN\nout-of-doors NNS\nout-of-favor JJ\nout-of-kilter JJ\nout-of-mind JJ\nout-of-pocket JJ\nout-of-repair NN\nout-of-school JJ\nout-of-sight JJ\nout-of-state JJ\nout-of-staters NNS\nout-of-step JJ\nout-of-synch JJ\nout-of-the-way JJ\nout-of-touch JJ\nout-of-town JJ\nout-plunging JJ\nout-reaching JJ\nout-smart VB\nout-trade VB\nout... :\noutage NN\noutages NNS\noutback NN\noutbid VB\noutbidding VBG\noutboard JJ\noutboards NNS\noutbound JJ\noutbreak NN\noutbreaks NNS\noutburst NN\noutbursts NNS\noutcast NN\noutcasts NNS\noutclass VBP\noutclassed VBN\noutcome NN\noutcomes NNS\noutcrops NNS\noutcry NN\noutcuss VBZ\noutdated JJ\noutdid VBD\noutdistanced VBD\noutdistancing VBG\noutdo VB\noutdone VBN\noutdoor JJ\noutdoor-maintenance NN\noutdoors RB\noutdoorsman NN\noutdoorsman\\ NN\noutdrew VBD\nouter JJ\nouter-space NN\noutface VB\noutfield NN\noutfielder NN\noutfielders NNS\noutfit NN\noutfits NN\noutfitted VBD\noutfitting VBG\noutflank VB\noutflow NN\noutflows NNS\noutfly VB\noutfought NN\noutfox VB\noutgained VBD\noutgeneraled VBN\noutgoing JJ\noutgrew VBD\noutgrip VB\noutgrow VB\noutgrown VBN\noutgrowth NN\noutguess VB\noutguessing VBG\nouthouse NN\nouting NN\noutings NNS\noutlanders NNS\noutlandish JJ\noutlandishly RB\noutlast VB\noutlasted VBD\noutlaw VB\noutlawed VBN\noutlawing VBG\noutlawry NN\noutlaws NNS\noutlay NN\noutlays NNS\noutleaped VBD\noutlet NN\noutlets NNS\noutline NN\noutlined VBN\noutlines NNS\noutlining VBG\noutlive VB\noutlived VBN\noutlook NN\noutlooks NNS\noutlying JJ\noutmaneuver VB\noutmaneuvered VBN\noutmatched VBD\noutmoded JJ\noutnumber VBP\noutnumbered VBD\noutpace VB\noutpaced VBD\noutpaces VBZ\noutpacing VBG\noutpatient NN\noutperform VB\noutperformed VBD\noutperforming VBG\noutperforms VBZ\noutplacement NN\noutplayed VBD\noutpost NN\noutposts NNS\noutpouring NN\noutput NN\noutput-axis NN\noutput-restricting JJ\noutputs NNS\noutputting VBG\noutrage NN\noutraged VBN\noutrageous JJ\noutrageously RB\noutrages NNS\noutrank VBP\noutranks VBZ\noutreach NN\noutrigger NN\noutriggers NNS\noutright JJ\noutrun VB\nouts NNS\noutscored VBD\noutscoring VBG\noutsell VB\noutselling VBG\noutsells VBZ\noutset NN\noutshine VB\noutshines VBZ\noutshone NN\noutside IN\noutsider NN\noutsiders NNS\noutsized JJ\noutskirt NN\noutskirts NNS\noutslugged VBN\noutsmarted VBD\noutsold VBD\noutspend VBP\noutspends VBZ\noutspoken JJ\noutspread VBN\noutstanding JJ\noutstandingly RB\noutstate JJ\noutstretched VBN\noutstrip VB\noutstripped NN\noutstripping VBG\noutstrips VBZ\noutta IN\noutward RB\noutward-looking JJ\noutward-projecting JJ\noutwardly RB\noutweigh VBP\noutweighed VBD\noutweighs VBZ\noutwit VB\noutworn JJ\nova NN\noval JJ\novals NNS\novarian JJ\novata NN\novation NN\noven NN\novens NNS\nover IN\nover-40 JJ\nover-50 JJ\nover-50s NNS\nover-achievement NN\nover-achievers NNS\nover-all JJ\nover-allotment JJ\nover-allotments NNS\nover-ambition NN\nover-arching JJ\nover-arranged JJ\nover-broad JJ\nover-capacity NN\nover-committed JJ\nover-corrected VBD\nover-emphasize JJ\nover-emphasized VBN\nover-hand JJ\nover-hired VBD\nover-land JJ\nover-large JJ\nover-leveraged JJ\nover-magazined VBN\nover-night JJ\nover-occupied JJ\nover-optimistic JJ\nover-populated JJ\nover-pretended JJ\nover-price VB\nover-produce VB\nover-regulation NN\nover-rewarding JJ\nover-simple JJ\nover-simplification NN\nover-spent JJ\nover-stitched JJ\nover-stored JJ\nover-stress VB\nover-subscribed JJ\nover-the-air JJ\nover-the-counter JJ\nover-the-road JJ\noveractive JJ\noverage JJ\noveraggressive JJ\noverall JJ\noverallotment NN|JJ\noverallotments NNS\noveralls NNS\noverambition NN\noverarching VBG\noverarming VBG\noverbearing JJ\noverbid VBD\noverbilled VBD\noverbilling VBG\noverbillings NNS\noverblown JJ\noverboard RB\noverborrowing VBG\noverbought VBN\noverbreadth NN\noverbroad JJ\noverbuilding NN\noverbuilt JJ\noverburden VB\noverburdened VBN\novercame VBD\novercapacity NN\novercast NN\novercerebral JJ\novercharge NN\novercharged VBN\novercharges NNS\novercharging VBG\novercoat NN\novercoats NNS\novercollateralized VBN\novercollected JJ\novercollection NN\novercome VB\novercomes VBZ\novercoming VBG\novercoming... :\novercommitted VBN\noverconfident JJ\novercooked VBN\novercooks VBZ\novercooled JJ\novercrowded JJ\novercrowding NN\novercurious JJ\noverdependence NN\noverdeveloped JJ\noverdoing VBG\noverdone VBN\noverdose NN\noverdosed VBN\noverdoses NNS\noverdosing VBG\noverdraft NN\noverdraw VB\noverdrawn JJ\noverdressed JJ\noverdrive NN\noverdriving VBG\noverdue JJ\novereager JJ\novereat VBP\novereating NN\noveremphasis NN\noveremphasize VB\noveremphasized VBN\noverenforced VBN\noverestimate VB\noverestimated VBD\noverestimates VBZ\noverestimation NN\noverexcited VBN\noverexercised VBN\noverexpansion NN\noverexploitation NN\noverexploited JJ\noverexpose VB\noverextend VBP\noverextended VBN\noverfeed VB\noverfill VB\noverflights NNS\noverflow NN\noverflowed VBD\noverflowing VBG\noverflows NNS\noverfunded VBN\noverfunding NN\novergeneralization NN\novergenerous JJ\novergrazing NN\novergrown VBN\noverhand JJ\noverhang NN\noverhanging VBG\noverhangs NNS\noverharvesting NN\noverhaul NN\noverhauled VBN\noverhauling VBG\noverhauls NNS\noverhead JJ\noverhear VB\noverheard VBN\noverhearing VBG\noverhears VBZ\noverheat VB\noverheated VBN\noverheating VBG\noverhyped JJ\noverinclusion NN\noverindebtedness NN\noverindulged VBD\noverinsistent JJ\noverinvested VBN\noverjoyed JJ\noverkill NN\noverlaid VBN\noverland RB\noverlap NN\noverlapped VBN\noverlapping VBG\noverlaps VBZ\noverlay NN\noverlays VBZ\noverleveraged JJ\noverleveraging VBG\noverload NN\noverloaded VBN\noverlong JJ\noverlook VB\noverlooked VBN\noverlooking VBG\noverlooks VBZ\noverloud JJ\noverly RB\noverlying JJ\novermedicated VBN\novernight JJ\novernighters NNS\noverpaid VBN\noverpass NN\noverpay VB\noverpaying VBG\noverpayment NN\noverpayments NNS\noverplanted VBN\noverplayed VBD\noverpopulated VBN\noverpopulation NN\noverpower VB\noverpowered VBN\noverpowering JJ\noverpowers VBZ\noverpressure NN\noverpriced VBN\noverproduce VB\noverproducers NNS\noverproduction NN\noverprotected VBN\noverprotection NN\noverprotective JJ\noverpurchase VB\noverran VBD\noverrated VBN\noverreach VB\noverreached VBD\noverreaches VBZ\noverreact VB\noverreacted VBN\noverreacting VBG\noverreaction NN\noverregulated JJ\noverregulation NN\noverrendered VBN\noverridden VBN\noverride VB\noverrides VBZ\noverriding VBG\noverrode VBD\noverrule VB\noverruled VBD\noverrules VBZ\noverruling VBG\noverrun VBN\noverruns NNS\noversaturating VBG\noversaw VBD\noverseas JJ\noversee VB\noverseeing VBG\noverseen VBN\noverseer NN\noverseers NNS\noversees VBZ\novershadow VBP\novershadowed VBN\novershadowing VBG\novershadows VBZ\novershoes NNS\novershoots VBZ\novershot VBD\noversight NN\noversimplification NN\noversimplified VBN\noversize JJ\noversized JJ\noversoft JJ\noversoftness NN\noversold VBN\noverspending NN\noverstaff VB\noverstaffed JJ\noverstate VB\noverstated VBN\noverstatement NN\noverstates VBZ\noverstating VBG\noverstaying VBG\noverstepping VBG\noverstored JJ\noverstrained VBN\noverstraining NN\noverstretch VB\noversubscribed VBN\noversupplied JJ\noversupply NN\novert JJ\novertake VB\novertaken VBN\novertakin VBG\novertaking VBG\novertaxed JJ\noverthrow VB\noverthrowing VBG\noverthrown VBN\novertime NN\novertly RB\novertones NNS\novertook VBD\noverture NN\novertures NNS\noverturn VB\noverturned VBN\noverturning VBG\noverturns VBZ\noveruse NN\noverused VBN\novervalued VBN\novervaulting JJ\noverview NN\noverweening JJ\noverweight JJ\noverweighted VBN\noverwhelm VB\noverwhelmed VBN\noverwhelming JJ\noverwhelmingly RB\noverworked VBN\noverworking VBG\noverwritten JJ\noverwrought JJ\noverzealous JJ\noverzealousness NN\noviform JJ\novulation NN\nowe VBP\nowed VBN\nowes VBZ\nowing JJ\nowl NN\nowl-shaped JJ\nowls NNS\nown JJ\nowne JJ\nowned VBN\nowner NN\nowner-bred JJ\nowners NNS\nownership NN\nownership... :\nownerships NNS\nowning VBG\nowns VBZ\nownself PRP\nox NN\noxalate NN\noxaloacetic JJ\noxcart NN\noxen NNS\noxidation NN\noxide NN\noxides NNS\noxidised VBN\noxidized JJ\noxidizer NN\noxygen NN\noxygens NNS\noxyhydroxides NNS\noxytetracycline NN\noyabun NN\noystchers NNS\noyster NN\noysters NNS\noz NN\noz. NN\nozone NN\nozone-cancer JJ\nozone-damaging JJ\nozone-depleting JJ\nozone-destroying JJ\nozone-exposed JJ\nozone-forming JJ\nozone-safe JJ\nozonedepletion NN\np NN\np'lite NN\np-aminobenzoic JJ\np. NN\np.a. NN\np.m RB\np.m. NN\np.m.-conclusion NN\np.m.-midnight NNP\np53 NN\npH NNP\npa NN\npace NN\npace-setter NN\npaced VBD\npacem FW\npacemaker NN\npacemakers NNS\npacer NN\npacers NNS\npaces NNS\npachinko NN\npacific JJ\npacified VBD\npacifier NN\npacifies VBZ\npacifism NN\npacifist NN\npacifistic JJ\npacify VB\npacing VBG\npack NN\npackage NN\npackage-delivery JJ\npackage-design NN\npackage-holiday JJ\npackage-sort JJ\npackage-sorting NN\npackage-tracing NN\npackaged VBN\npackaged-goods NNS\npackages NNS\npackaging NN\npacked VBN\npackers NNS\npacket NN\npackets NNS\npacking VBG\npacks NNS\npact NN\npacts NNS\npad NN\npadded JJ\npaddies NNS\npadding NN\npaddle NN\npaddleball NN\npaddles NNS\npaddock NN\npadlock NN\npadlocked VBD\npads NNS\npaean NN\npaeans NNS\npagan JJ\npaganism NN\npage NN\npage-composition NN\npage-long JJ\npage-one JJ\npageant NN\npageantry NN\npageants NNS\npager NN\npagers NNS\npages NNS\npaginated VBN\npaging NN\npagoda NN\npagodas NNS\npaid VBN\npaid-for IN\npaid-in JJ\npaid-up JJ\npaide VBN\npaie VB\npail NN\npails NNS\npain NN\npain-bringing JJ\npain-relief NN\npained JJ\npainful JJ\npainfully RB\npainkiller NN\npainkillers NNS\npainless JJ\npainlessly RB\npains NNS\npains-taking JJ\npainstaking JJ\npainstakingly RB\npaint NN\npaint-recycling JJ\npaintbrush NN\npainted VBN\npainted-in NN\npainter NN\npainteresque JJ\npainters NNS\npainting NN\npaintings NNS\npaints NNS\npair NN\npaired VBN\npairing NN\npairings NNS\npairs NNS\npajama NN\npajama-clad JJ\npajamas NNS\npal NN\npalace NN\npalaces NNS\npalamedes NN\npalatability NN\npalatable JJ\npalate NN\npalates NNS\npalatial JJ\npalazzi NNS\npalazzo NN\npalazzos NNS\npale JJ\npale-blue JJ\npaled VBD\npalely RB\npaleness NN\npaleo NN\npaleocortical JJ\npaleoexplosion NN\npaleontologically RB\npaleontologists NNS\npales VBZ\npalest JJS\npalette NN\npalindromes NNS\npaling VBG\npalisades NNS\npall NN\npalladium NN\npallet NN\npalletized VBN\npallets NNS\npalliative JJ\npallid JJ\npallor NN\npalm NN\npalm-fringed JJ\npalm-lined JJ\npalm-studded JJ\npalm-tree NN\npalmed VBD\npalms NNS\npalmtop NN\npalmtops NNS\npalpable JJ\npalpably RB\npalpitations NNS\npals NNS\npalsy NN\npaltry JJ\npampas NNS\npamper VB\npampered JJ\npampering VBG\npampers VBZ\npamphlet NN\npamphleteer NN\npamphlets NNS\npan NN\npan-European JJ\npan-national JJ\npan-nationalism NN\npan-tribal JJ\npanacea NN\npanaceas NNS\npanache NN\npancake NN\npancakes NNS\npancreas NN\npancreatitis NN\npandanus NN\npandemic NN\npandemonium NN\npandering VBG\npanders NNS\npane NN\npanel NN\npanelboard NN\npaneled JJ\npaneling NN\npanelists NNS\npanelization NN\npanelized VBN\npanels NNS\npanes NNS\npangs NNS\npanhandle NN\npanhandler NN\npanic NN\npanic-driven JJ\npanic-stricken JJ\npanicked VBD\npanicking VBG\npanicky JJ\npanics NNS\npanjandrum NN\npanjandrums NNS\npanky NN\npanned VBN\npanning VBG\npanoply NN\npanorama NN\npanoramas NNS\npanoramic JJ\npans NNS\npansies NNS\npansy NN\npant NN\npant-legs NNS\npantaloons NNS\npanted VBD\npantheist NN\npantheon NN\npanthers NNS\npanties NNS\npanting VBG\npantomime NN\npantomimed VBD\npantomimic JJ\npantry NN\npants NNS\npants-legs NN\npany NN\npanzers NNS\npaot NN\npap NN\npapal JJ\npaper NN\npaper-and-crayon JJ\npaper-clip NN\npaper-company JJ\npaper-goods NNS\npaper-littered JJ\npaper-making JJ\npaper-manufacturing JJ\npaper-products NNS\npaper-pushing JJ\npaper-shuffling NN\npaper-work NN\npaperback NN\npaperbacks NNS\npaperboard NN\npaperboy NN\npaperclip NN\npapering VBG\npaperless JJ\npapers NNS\npaperwads NNS\npaperwork NN\npapery JJ\npapier-mache NN\npapiers FW\npapillary JJ\npaprika NN\npapyrus NN\npar NN\npar-3 NN\npar-5 JJ\nparable NN\nparables NNS\nparachute NN\nparachutes NNS\nparachuting VBG\nparade NN\nparaded VBN\nparades NNS\nparadigm NN\nparadigmatic JJ\nparadigms NNS\nparading VBG\nparadise NN\nparadises NNS\nparadox NN\nparadoxical JJ\nparadoxically RB\nparagon NN\nparagraph NN\nparagraphing NN\nparagraphs NNS\nparakeet NN\nparakeets NNS\nparalanguage NN\nparalegal NN\nparalegals NNS\nparalinguistic JJ\nparallel JJ\nparallel-computing JJ\nparalleled VBN\nparalleling VBG\nparallelism NN\nparallels NNS\nparalysis NN\nparalyze VB\nparalyzed VBN\nparalyzes VBZ\nparalyzing VBG\nparamagnet NN\nparamagnetic JJ\nparameter NN\nparameters NNS\nparametric JJ\nparamilitary JJ\nparamount JJ\nparanoia NN\nparanoiac NN\nparanoid JJ\nparanormal JJ\nparaoxon NN\nparapet NN\nparapets NNS\nparaphernalia NNS\nparaphrase NN\nparaphrases NNS\nparaphrasing VBG\nparapsychology NN\nparaquat NN\nparasite NN\nparasites NNS\nparasitic JJ\nparasol NN\nparasols NNS\nparastatals NNS\nparasympathetic JJ\nparatroopers NNS\nparatroops NNS\nparaxial JJ\nparboiled VBD\nparcel NN\nparceled VBN\nparceling NN\nparcels NNS\nparched VBN\nparchment NN\npardon VB\npardonable JJ\npardoned VBN\npardons NNS\npare VB\npared VBN\npared-down JJ\nparedon NN\nparenchyma NN\nparent NN\nparent-child JJ\nparent-company JJ\nparent-teacher JJ\nparentage NN\nparental JJ\nparental-consent JJ\nparental-leave JJ\nparentheses NNS\nparenthetically RB\nparenthood NN\nparenting NN\nparentis FW\nparents NNS\npari-mutuel JJ\npariah NN\npariahs NNS\nparimutuels NNS\nparing VBG\nparings NNS\nparish NN\nparishes NNS\nparishioners NNS\nparisology NN\nparities NNS\nparity NN\npark NN\nparked VBN\nparking NN\nparkish JJ\nparklike JJ\nparks NNS\nparkway NN\nparlance NN\nparlayed VBD\nparley NN\nparliament NN\nparliamentarian NN\nparliamentarians NNS\nparliamentary JJ\nparliaments NNS\nparlor NN\nparlors NNS\nparochial JJ\nparodied VBD\nparodies NNS\nparody NN\nparole NN\nparolees NNS\nparoxysmal JJ\nparquet NN\nparried VBD\nparrot-like JJ\nparroting VBG\nparrots NNS\nparry VB\npars NNS\nparses VBZ\nparsimonious JJ\nparsimony NN\nparsing VBG\nparsley NN\nparson NN\nparsonage NN\nparsympathetic JJ\npart NN\npart-owner NN\npart-time JJ\npart-timers NNS\npartake VB\npartaker VB\npartakes VBZ\npartaking VBG\nparte NN\nparted VBD\npartial JJ\npartially RB\nparticipant NN\nparticipants NNS\nparticipate VB\nparticipated VBD\nparticipates VBZ\nparticipating VBG\nparticipation NN\nparticipations NNS\nparticipative JJ\nparticipatory JJ\nparticle NN\nparticle-board NN\nparticles NNS\nparticular JJ\nparticularistic JJ\nparticularistic-seeming JJ\nparticularity NN\nparticularly RB\nparticulars NNS\nparticulate JJ\nparticulates NNS\nparties NNS\nparting NN\npartings NNS\npartisan JJ\npartisans NNS\npartisanship NN\npartition NN\npartitioned VBN\npartly RB\npartner NN\npartner-in-charge NN\npartner-notification NN\npartnered VBN\npartners NNS\npartnership NN\npartnerships NNS\npartook VBP\nparts NNS\nparts-engineering JJ\nparts-suppliers NNS\nparty NN\nparty-giving NN\nparty-line JJ\npartying VBG\nparvenus NNS\npas FW\npasha NN\npashas NNS\npaso NN\npass VB\npass-through JJ\npassable JJ\npassably RB\npassage NN\npassages NNS\npassageway NN\npassbook NN\npassbooks NNS\npasse JJ\npassed VBN\npassel NN\npassenger NN\npassenger-car NN\npassenger-kilometers NNS\npassenger-loading JJ\npassenger-mile NN\npassenger-miles NNS\npassenger-reservation NN\npassenger-restraint NN\npassenger-tire JJ\npassenger-transportation JJ\npassengers NNS\npasser-by NN\npasserby NN\npassers-by NNS\npasses VBZ\npassing VBG\npassion NN\npassionate JJ\npassionately RB\npassions NNS\npassive JJ\npassive-loss JJ\npassively RB\npassiveness NN\npassivity NN\npassport NN\npassports NNS\npassthrough JJ\npasswords NNS\npast JJ\npast-due JJ\npast-fantasy JJ\npast-oriented JJ\npast. NN\npasta NN\npastdue JJ\npaste NN\npasted VBN\npasted-in JJ\npastel JJ\npastel-like JJ\npastels NNS\npastes NNS\npasteurization NN\npasteurized VBN\npastilles NNS\npastime NN\npastimes NNS\npasting VBG\npastness NN\npastor NN\npastoral JJ\npastoris NN\npastors NNS\npastrami NNS\npastries NNS\npastry NN\npastry-lined JJ\npasture NN\npastures NNS\npasty JJ\npat JJ\npatch NN\npatched VBN\npatches NNS\npatchwork NN\npate NN\npatent NN\npatent-infringement NN\npatent-law NN\npatent-sharing JJ\npatented VBN\npatenting NN\npatently RB\npatents NNS\npater NN\npaternal JJ\npaternalism NN\npaternalist JJ\npaternalistic JJ\npaternally RB\npaternity NN\npaterollers NNS\npath NN\npathetic JJ\npathfinder NN\npathless JJ\npathlogy NN\npathogenesis NN\npathogenic JJ\npathologic JJ\npathological JJ\npathologically RB\npathologist NN\npathology NN\npathos NN\npaths NNS\npathway NN\npathways NNS\npatience NN\npatient NN\npatient-advocacy NN\npatient-care JJ\npatient-interview JJ\npatient-physician JJ\npatienthood NN\npatiently RB\npatients NNS\npatina NN\npatinas NNS\npatio NN\npatisseries NNS\npatria FW\npatriarch NN\npatriarchal JJ\npatriarchate NN\npatriarchy NN\npatrician JJ\npatrimony NN\npatriot NN\npatriotic JJ\npatriotism NN\npatriots NNS\npatristic JJ\npatrol NN\npatrolled VBN\npatrolling VBG\npatrolman NN\npatrolmen NNS\npatrols NNS\npatron NN\npatronage NN\npatronage-free JJ\npatroness NN\npatronize VB\npatronized VBN\npatronizing VBG\npatronne NN\npatrons NNS\npatrons... :\npats NNS\npatsies NNS\npatsy NN\npatted VBD\npatter NN\npattered VBD\npattern NN\npatterned VBN\npatterns NNS\npatties NNS\npatting VBG\npatty-cake JJ\npaucity NN\npaunch NN\npaunchy JJ\npauper NN\npause NN\npaused VBD\npauses VBZ\npausing VBG\npavane NN\npave VB\npaved JJ\npavement NN\npavement-performance NN\npavements NNS\npaves VBZ\npavian FW\npavilion NN\npavilions NNS\npaving VBG\npaving-equipment NN\npaw NN\npawed VBN\npawing VBG\npawn NN\npawning VBG\npawns NNS\npawnshop NN\npaws NNS\npax FW\npax-ordo NN\npaxam NN\npay VB\npay-TV NN\npay-and-benefit JJ\npay-as-you-go JJ\npay-back JJ\npay-cable JJ\npay-down JJ\npay-for-performance JJ\npay-hike JJ\npay-in-kind JJ\npay-later JJ\npay-movie JJ\npay-out NN\npay-per-view JJ\npay-television NN\npayable JJ\npayables NNS\npayback NN\npaycheck NN\npaychecks NNS\npayday NN\npaydirt NN\npaydown NN\npayer NN\npayers NNS\npaying VBG\npayloads NNS\npaymaster NN\npayment NN\npayment-in-kind JJ\npayment-system NN\npayment... :\npayments NNS\npayoff NN\npayoffif NN\npayoffs NNS\npayola NN\npayout NN\npayout-bylaws NNS\npayouts NNS\npayroll NN\npayroll-paring JJ\npayroll-reduction NN\npayroll-tax NN\npayrolls NNS\npays VBZ\npea NN\npea-green JJ\npeace NN\npeace-keeping NN\npeace-loving JJ\npeace-treaty NN\npeaceable JJ\npeaceful JJ\npeacefully RB\npeacekeeping JJ\npeacemaker NN\npeacemakers NNS\npeacemaking NN\npeacetime NN\npeach NN\npeaches NNS\npeacock NN\npeacocks NNS\npeak NN\npeaked VBD\npeaking VBG\npeaks NNS\npeaky JJ\npeal NN\npealing VBG\npeals NNS\npeanut NN\npeanut-butter NN\npeanuts NNS\npear NN\npear-shaped JJ\npearl NN\npearl-gray JJ\npearl-handled JJ\npearls NNS\npearly JJ\npears NNS\npeas NNS\npeasant NN\npeasanthood NN\npeasants NNS\npebble NN\npebbles NNS\npecan NN\npecans NNS\npeccadilloes NNS\npeccavi FW\npeck VBP\npecked VBD\npecks NNS\npecs NNS\npectoral-front JJ\npectoral-ribcage NN\npectoralis NN\npectorals NNS\npeculiar JJ\npeculiarities NNS\npeculiarity NN\npeculiarly RB\npecuniary JJ\npedagogical JJ\npedagogue NN\npedal VB\npedaled VBN\npedaling VBG\npedals NNS\npedantic JJ\npeddle VB\npeddled VBN\npeddler NN\npeddlers NNS\npeddles VBZ\npeddling VBG\npedestal NN\npedestals NNS\npedestrian JJ\npedestrians NNS\npediatric JJ\npediatrician NN\npediatrics NN\npedigree NN\npedigreed VBN\npedimented VBN\npee-wee JJ\npeed VBN\npeek NN\npeeked VBD\npeeking VBG\npeel VB\npeel-off JJ\npeelback JJ\npeeled VBN\npeeling VBG\npeels VBZ\npeep NN\npeeping VBG\npeer NN\npeer-group JJ\npeered VBD\npeering VBG\npeerless JJ\npeers NNS\npeeved VBN\npeeves NNS\npeg VBP\npegboard NN\npegboards NNS\npegged VBN\npegged-down JJ\npeggin NN\npegging VBG\npegs NNS\npejorative JJ\npell-mell NN\npellagra NN\npellets NNS\npelting JJ\npeltry NN\npelts NNS\npelvic JJ\npelvis NN\npemmican NN\npen NN\npen-and-ink JJ\npen-and-pencil JJ\npenal JJ\npenalize VB\npenalized VBN\npenalizes VBZ\npenalizing VBG\npenalties NNS\npenalty NN\npenalty-free JJ\npenalty-lending JJ\npenance NN\npence NN\npenchant NN\npencil NN\npencil-and-sepia JJ\npencil-pusher NN\npenciled VBN\npencils NNS\npendant NN\npending VBG\npendulum NN\npenetrate VB\npenetrated VBN\npenetrates VBZ\npenetrating JJ\npenetration NN\npenetrations NNS\npenicillin NN\npeninsula NN\npenises NNS\npenitentiary NN\npenknife NN\npenman NN\npennant NN\npennants NNS\npenned VBN\npennies NNS\npenniless JJ\npenning VBG\npenny NN\npenny-ante JJ\npenny-brokerage JJ\npenny-pinching JJ\npenny-stock JJ\npenny-stockbroker NN\npenny-stocks NN\npenny-wise JJ\npennystock NN\npens NNS\npension NN\npension-fund NN\npension-industry JJ\npension-insurance JJ\npension-minded JJ\npension-plan NN\npension-tax NN\npensioner NN\npensioners NNS\npensions NNS\npent-up JJ\npentagon NN\npentameter NN\npentamidine NN\npenthouse NN\npenultimate JJ\npenurious JJ\npenury NN\npeonies NNS\npeople NNS\npeople-oriented JJ\npeople... :\npeopled VBN\npeoples NNS\npep NN\npepper NN\npepper-coated JJ\npeppered VBD\npeppering VBG\npeppermint NN\npeppermints NNS\npepperoni NNS\npeppers NNS\npeppery JJ\npepping VBG\npeppy JJ\npeptidases NNS\npeptide NN\npeptides NNS\npeptizing VBG\nper IN\nper-ad JJ\nper-capita JJ\nper-day JJ\nper-game JJ\nper-passenger NN\nper-pupil JJ\nper-sale JJ\nper-share JJ\nper-store JJ\nper-subscriber NN\nper-ton JJ\nper-year JJ\nperceive VB\nperceived VBN\nperceives VBZ\nperceiving VBG\npercent NN\npercentage NN\npercentage-point JJ\npercentages NNS\npercenter NN\nperceptible JJ\nperception NN\nperceptions NNS\nperceptive JJ\nperceptiveness NN\nperceptual JJ\nperch NN\nperchance RB\nperched VBN\nperchlorate NN\npercolator NN\npercussion NN\npercussionist NN\npercussive JJ\nperemptory JJ\nperennial JJ\nperennially RB\nperennials NNS\nperestroika FW\nperestrokia NN\nperfect JJ\nperfect-attendance NN\nperfectability NN\nperfected VBN\nperfectibility NN\nperfecting VBG\nperfection NN\nperfectionism NN\nperfectionists NNS\nperfectly RB\nperfidious JJ\nperfidy NN\nperforated JJ\nperforations NNS\nperforce RB\nperform VB\nperformance NN\nperformance-based JJ\nperformance-capacity NN\nperformance-oriented JJ\nperformance-related JJ\nperformance-sharing JJ\nperformances NNS\nperformed VBN\nperformer NN\nperformers NNS\nperforming VBG\nperforming-arts NNS\nperforms VBZ\nperfume NN\nperfumed JJ\nperfumery NN\nperfumes NNS\nperfunctorily RB\nperfunctory JJ\nperfuses VBZ\nperfusion NN\nperhaps RB\nperhaps-decisive JJ\nperidontal JJ\nperil NN\nperilla NN\nperilous JJ\nperilously RB\nperils NNS\nperimeter NN\nperinatally RB\nperiod NN\nperiodic JJ\nperiodical NN\nperiodically RB\nperiodicals NNS\nperiodicity NN\nperiodontal JJ\nperiods NNS\nperipheral JJ\nperipherally RB\nperipherals NNS\nperiphery NN\nperiphrastic JJ\nperiscopes NNS\nperish VB\nperishable JJ\nperishables NNS\nperished VBD\nperishes VBZ\nperishing VBG\nperitoneal JJ\nperiwinkles NNS\nperjury NN\nperk JJ\nperked VBD\nperking VBG\nperks NNS\nperky JJ\npermanant JJ\npermanence NN\npermanent JJ\npermanent-insurance JJ\npermanent-looking JJ\npermanently RB\npermeable JJ\npermeate VB\npermeated VBN\npermeates VBZ\npermeating VBG\npermissibility NN\npermissible JJ\npermission NN\npermissive JJ\npermit VB\npermits VBZ\npermitted VBN\npermitting VBG\npernicious JJ\nperoxide NN\nperpendicular JJ\nperpendicularly RB\nperpetrate VB\nperpetrated VBN\nperpetration NN\nperpetrator NN\nperpetrators NNS\nperpetual JJ\nperpetually RB\nperpetuate VB\nperpetuated VBN\nperpetuates VBZ\nperpetuating VBG\nperpetuation NN\nperpetuity NN\nperplex VBP\nperplexed JJ\nperplexing JJ\nperplexity NN\nperquisites NNS\npersecute VBP\npersecuted VBN\npersecuting VBG\npersecution NN\npersecutors NNS\npersecutory JJ\nperseverance NN\npersevere VB\npersevered VBD\nperseveres VBZ\npershare JJ\npersiflage NN\npersimmons NNS\npersist VB\npersisted VBD\npersistence NN\npersistency NN\npersistent JJ\npersistently RB\npersisting VBG\npersists VBZ\nperson NN\nperson-to-person JJ\npersona NN\npersonae NNS\npersonage NN\npersonages NNS\npersonal JJ\npersonal-care JJ\npersonal-computer NN\npersonal-income JJ\npersonal-income-tax JJ\npersonal-injury JJ\npersonal-property NN\npersonal-spending NN\npersonalities NNS\npersonality NN\npersonalize VB\npersonalized VBN\npersonally RB\npersonally-owned JJ\npersonification NN\npersonified VBN\npersonifies VBZ\npersonifying VBG\npersonnel NNS\npersons NNS\nperspective NN\nperspectives NNS\nperspiration NN\nperspired VBD\nperspiring JJ\npersuade VB\npersuaded VBN\npersuaders NNS\npersuades VBZ\npersuading VBG\npersuasion NN\npersuasions NNS\npersuasive JJ\npersuasively RB\npersuasiveness NN\npert JJ\npertain VBP\npertained VBP\npertaining VBG\npertains VBZ\npertinence NN\npertinent JJ\nperturbation NN\nperturbations NNS\nperturbed JJ\npertussis NN\nperusal NN\nperuse VB\nperusing VBG\npervade VBP\npervaded VBD\npervades VBZ\npervading VBG\npervaporation NN\npervasive JJ\npervasively RB\npervasiveness NN\nperverse JJ\nperversely RB\nperversion NN\nperversions NNS\nperversities NNS\npervert NN\nperverted VBN\npesatas NNS\npeseta NN\npesetas NNS\npeso NN\npesos NNS\npessimism NN\npessimist NN\npessimistic JJ\npessimists NNS\npest NN\npest-control JJ\npester VB\npestering VBG\npesticide NN\npesticide-free JJ\npesticide-reform NN\npesticides NNS\npesticides.`` ``\npestilence NN\npestilent JJ\npests NNS\npet NN\npet-rabbit-raising JJ\npetals NNS\npeter VB\npetered VBN\npetit FW\npetite JJ\npetition NN\npetitioned VBD\npetitioner NN\npetitions NNS\npetits FW\npetrified JJ\npetro-dollar JJ\npetrochemical NN\npetrochemicals NNS\npetroleum NN\npetroleum-exploration JJ\npetroleum-products NNS\npetroleum-related JJ\npetroleumproducts NNS\npets NNS\npetted VBN\npettiness NN\npettinesses NNS\npetting NN\npetty JJ\npetulance NN\npetulant JJ\npew NN\npews NNS\npewter NN\npeyote NN\npfennig NN\npfennigs NNS\npfffted VBD\nphagocytes NNS\nphalanx NN\nphantasy NN\nphantom JJ\npharamaceuticals NNS\npharaohs NNS\npharmaceutical JJ\npharmaceuticals NNS\npharmacies NNS\npharmacist NN\npharmacists NNS\npharmacological JJ\npharmacology NN\npharmacuetical JJ\npharmacy NN\nphase NN\nphase-in NN\nphase-one JJ\nphase-out NN\nphase-two JJ\nphased VBN\nphases NNS\nphasing VBG\nphasing-out NN\npheasant NN\npheasants NNS\nphenolic NN\nphenomena NNS\nphenomenal JJ\nphenomenally RB\nphenomenological JJ\nphenomenon NN\nphenonenon NN\nphenothiazine NN\nphilandering VBG\nphilanthropic JJ\nphilanthropies NNS\nphilanthropist NN\nphilanthropists NNS\nphilanthropy NN\nphilantrophy NN\nphilantropists NNS\nphilharmonic NN\nphilodendron NN\nphilological JJ\nphilologists NNS\nphilology NN\nphilosopher NN\nphilosophers NNS\nphilosophic JJ\nphilosophical JJ\nphilosophically RB\nphilosophies NNS\nphilosophized VBD\nphilosophizing VBG\nphilosophy NN\nphis NNS\nphlegm NN\nphloem NN\nphobia NN\nphobias NNS\nphobic-like JJ\nphoenix NN\nphone NN\nphone-company NN\nphonebook NN\nphoned VBD\nphonemes NNS\nphonemic JJ\nphonemics NNS\nphones NNS\nphonetic JJ\nphonetics NNS\nphoney JJ\nphonic JJ\nphonies NNS\nphoning VBG\nphonograph NN\nphonographs NNS\nphonologic JJ\nphonology NN\nphony JJ\nphosgene NN\nphosphate NN\nphosphate-buffered NN\nphosphates NNS\nphosphide NN\nphosphine NN\nphosphines NNS\nphosphor NN\nphosphor-screen NN\nphosphorescent JJ\nphosphorous JJ\nphosphors NNS\nphosphorus NN\nphosphorus-bridged JJ\nphoto NN\nphoto-montage JJ\nphoto-offset JJ\nphotocathode NN\nphotocathodes NNS\nphotochemical JJ\nphotocopiers NNS\nphotocopy VB\nphotocopying VBG\nphotoelectronic JJ\nphotoelectrons NNS\nphotofinishers NNS\nphotofinishing NN\nphotofloodlights NNS\nphotogenic JJ\nphotograph NN\nphotographed VBN\nphotographer NN\nphotographers NNS\nphotographic JJ\nphotographic-paper NN\nphotographic-products JJ\nphotographically RB\nphotographing VBG\nphotographs NNS\nphotography NN\nphotojournalism NN\nphotoluminescence NN\nphotomicrograph NN\nphotomicrography NN\nphoton-counting JJ\nphotorealism NN\nphotos NNS\nphotosensitive JJ\nphotosynthesis NN\nphrase NN\nphrase'coffee NN\nphrased VBN\nphrasemaking NN\nphraseology NN\nphrases NNS\nphrasing NN\nphrasings NNS\nphthalate NN\nphyla NN\nphysical JJ\nphysical-chemical JJ\nphysically RB\nphysicalness NN\nphysicals NNS\nphysician NN\nphysician-executive JJ\nphysician-owned JJ\nphysician-patient JJ\nphysician-reimbursement JJ\nphysicians NNS\nphysicist NN\nphysicists NNS\nphysics NN\nphysiochemical JJ\nphysiognomy NN\nphysiologic JJ\nphysiological JJ\nphysiology NN\nphysiotherapist NN\nphysique NN\npi NN\npianism NN\npianissimos NNS\npianist NN\npianist-comedian NN\npianist\\/bassoonist\\/composer NN\npianistic JJ\npianists NNS\npiano NN\npianos NNS\npiasters NNS\npiazza NN\npiazzas NNS\npic NN\npicayune JJ\npick VB\npick-up JJ\npickaxe NN\npicked VBD\npicker NN\npickers NNS\npicket NN\npicketed VBD\npicketers NNS\npicketing NN\npickets NNS\npickier JJR\npickiest JJS\npicking VBG\npickings NNS\npickins NNS\npickle NN\npickled JJ\npickles NNS\npickoff NN\npickoffs NNS\npickpocket NN\npicks VBZ\npickup NN\npickup-bed NN\npickups NNS\npicky JJ\npicnic NN\npicnicked VBD\npicnickers NNS\npicnics NNS\npico NN\npicocassette NN\npics NNS\npictorial JJ\npictorially RB\npicture NN\npicture-images NNS\npicture-palace NN\npicture-postcard NN\npicture-taking NN\npicture-tube JJ\npictured VBN\npictures NNS\npicturesque JJ\npicturesquely RB\npicturing VBG\npiddling JJ\npidgin NN\npie NN\npie-in-the-sky JJ\npiece NN\npiece-by-piece JJ\npieced VBN\npiecemeal RB\npieces NNS\npiecewise RB\npied-a-terre FW\npier NN\npier-table NN\npierce VB\npierced VBN\npiercing VBG\npiers NNS\npies NNS\npiety NN\npiezoelectric JJ\npiezoelectricity NN\npig NN\npig-drunk JJ\npig-infested JJ\npigen NN\npigeon NN\npigeon-holed JJ\npigeonhole NN\npigeonholing NN\npigeons NNS\npiggyback NN\npiggybacking VBG\npiglet NN\npiglets NNS\npigment NN\npigmented VBN\npigments NNS\npigpens NNS\npigs NNS\npigskin NN\npigsty NN\npike NN\npiker NN\npile NN\npiled VBD\npiles NNS\npileup NN\npileups NNS\npilferers NNS\npilfering VBG\npilgrim NN\npilgrimage NN\npilgrimages NNS\npilgrims NNS\npiling VBG\npilings NNS\npill NN\npill-factory JJ\npillage VB\npillaged VBD\npillar NN\npillared JJ\npillars NNS\npilloried VBN\npillorying VBG\npillow NN\npillowcases NNS\npillows NNS\npills NNS\npilot NN\npilot-dominated JJ\npilot-management JJ\npilot-seniority NN\npilot-training JJ\npilot-union JJ\npilote FW\npiloting NN\npilots NNS\npimp NN\npimpled JJ\npimples NNS\npimplike JJ\npimps NNS\npin NN\npin-curl JJ\npin-point JJ\npin-pointed VBN\npinafores NNS\npinball NN\npinball-parlor NN\npinch NN\npinch-hit VB\npinch-hitter NN\npinch-hitters NNS\npinched VBN\npinches NNS\npinching VBG\npine NN\npine-knot JJ\npineapple NN\npines NNS\nping NN\nping-pong NN\npinging VBG\npinhead NN\npinheaded JJ\npinholes NNS\npinioned VBN\npink JJ\npink-cheeked JJ\npink-petticoated JJ\npink-sheet JJ\npinkish-white JJ\npinkly RB\npinks NNS\npinnacle NN\npinnacles NNS\npinned VBN\npinning VBG\npinnings NNS\npinochle NN\npinpoint VB\npinpointed VBN\npinpointing VBG\npinpoints NNS\npins NNS\npinstripe-suited JJ\npint NN\npint-sized JJ\npinto NN\npints NNS\npioneer NN\npioneered VBD\npioneering VBG\npioneers NNS\npious JJ\npiously RB\npip UH\npipe NN\npiped VBD\npipedreams NNS\npipeline NN\npipelines NNS\npiper NN\npipers NNS\npipes NNS\npiping NN\npipsqueak NN\npiquant JJ\npique JJ\npiqued VBN\npiracy NN\npiranha NN\npirate NN\npirated VBN\npirates NNS\npiroghi NNS\npirogues NNS\npirouette NN\npiss VB\npissed VBN\npistachio JJ\npistils NNS\npistol NN\npistol-packing JJ\npistol-whipped VBD\npistoleers NNS\npistols NNS\npiston NN\npiston-brake NN\npistons NNS\npit NN\npit-run JJ\npitch NN\npitched VBD\npitcher NN\npitcher-coach NN\npitchers NNS\npitches NNS\npitchfork NN\npitching VBG\npitchmen NNS\npiteous JJ\npitfall NN\npitfalls NNS\npith NN\npithiest JJS\npithy JJ\npitiable JJ\npitied VBD\npitiful JJ\npitifully RB\npitiless JJ\npitilessly RB\npitons NNS\npits NNS\npittance NN\npitted VBN\npitting VBG\npituitary JJ\npituitary-gland NN\npity NN\npityingly RB\npivot JJ\npivotal JJ\npivoting VBG\npixie-like JJ\npixies NNS\npizazz NN\npizza NN\npizza-eating JJ\npizzas NNS\npizzas-with-everything NNS\npizzazz NN\npizzeria NN\npizzerias NNS\npizzicato NN\npl. NNP\nplacard NN\nplacard-carrying JJ\nplacards NNS\nplacate VB\nplacated VBN\nplacating VBG\nplace NN\nplace-kicker NN\nplace-kicking NN\nplace-name JJ\nplace-names NN\nplacebo NN\nplaced VBN\nplaceless JJ\nplacement NN\nplacements NNS\nplaces NNS\nplacid JJ\nplacing VBG\nplagiarism NN\nplagiarize VB\nplagiarized VBN\nplagiarizers NNS\nplague NN\nplague-sized JJ\nplagued VBN\nplagues VBZ\nplaguing VBG\nplaid JJ\nplaid-floored JJ\nplaids NNS\nplain JJ\nplain-clothes JJ\nplain-clothesmen NNS\nplain-out RB\nplain-spoken JJ\nplain-vanilla NN\nplainclothes NNS\nplainer JJR\nplainest JJS\nplainly RB\nplains NNS\nplaintiff NN\nplaintiffs NNS\nplaintive JJ\nplaintively RB\nplan NN\nplanar JJ\nplane NN\nplane-building NN\nplaned VBN\nplaneload NN\nplaner NN\nplanes NNS\nplanet NN\nplanetarium NN\nplanetary JJ\nplanetary-science JJ\nplanetoid NN\nplanetoids NNS\nplanets NNS\nplank NN\nplanking NN\nplanks NNS\nplanned VBN\nplanner NN\nplanners NNS\nplanning NN\nplanoconcave JJ\nplans NNS\nplant NN\nplant-and-equipment JJ\nplant-closing JJ\nplant-expansion JJ\nplant-location JJ\nplant-modernization JJ\nplant-science NN\nplant-sciences JJ\nplant-vaccine JJ\nplant-wide JJ\nplantain NN\nplantation NN\nplantations NNS\nplanted VBN\nplanter NN\nplanters NNS\nplanting VBG\nplantings NNS\nplants NNS\nplaque NN\nplaques NNS\nplasm NN\nplasma NN\nplasmodium NN\nplaster NN\nplaster-of-Paris NN\nplastered VBN\nplasterer NN\nplastering NN\nplasters NNS\nplastic NN\nplastic-bodied JJ\nplastic-body JJ\nplastic-coated JJ\nplastic-covered JJ\nplastic-pipe JJ\nplastic-products NNS\nplastic-timber NN\nplastically RB\nplasticity NN\nplastics NNS\nplastics-industry NN\nplastisols NNS\nplate NN\nplateau NN\nplated VBN\nplateful JJ\nplates NNS\nplatform NN\nplatform-controller NN\nplatforms NNS\nplatinum NN\nplatitudes NNS\nplatitudinous JJ\nplatoon NN\nplatoons NNS\nplatted VBN\nplatter JJ\nplatters NNS\nplaudits NNS\nplausibility NN\nplausible JJ\nplausibly RB\nplay VB\nplay-acting NN\nplay-by-play JJ\nplay-girl NN\nplay-it-safe JJ\nplay-off NN\nplayable JJ\nplayback NN\nplaybacks NNS\nplayboy NN\nplayed VBD\nplayed-out JJ\nplayer NN\nplayers NNS\nplayful JJ\nplayfully RB\nplayfulness NN\nplayground NN\nplaygrounds NNS\nplayhouse NN\nplayin VBG\nplaying VBG\nplayland NN\nplaymate NN\nplaymates NNS\nplayoff NN\nplayoffs NNS\nplaypen NN\nplayroom NN\nplays VBZ\nplaythings NNS\nplaytime NN\nplaywright NN\nplaywright-director NN\nplaywrights NNS\nplaywriting NN\nplaza NN\nplazas NNS\nplea NN\nplea-bargain JJ\nplead VB\npleaded VBD\npleader NN\npleading VBG\npleadingly RB\npleadings NNS\npleads VBZ\npleas NNS\npleasance NN\npleasant JJ\npleasantly RB\npleasantness NN\npleasantries NNS\nplease VB\npleased VBN\npleases VBZ\npleasin VBG\npleasing JJ\npleasingly RB\npleasurable JJ\npleasure NN\npleasure-boat NN\npleasure-seeking NN\npleasure\\ CC\npleasures NNS\npleated JJ\npleats NNS\nplebeian JJ\npledge NN\npledged VBD\npledges NNS\npledging VBG\nplenary JJ\nplenipotentiary NN\nplenitude NN\nplentiful JJ\nplenty NN\nplenum NN\nplethora NN\npleura NNS\npleural JJ\npliable JJ\npliant JJ\nplied VBD\npliers NNS\nplies VBZ\nplight NN\nplights NNS\nplinking JJ\nplod VB\nplodded VBD\nplodding VBG\nplods VBZ\nplopped VBD\nplot NN\nplots NNS\nplotted VBN\nplotters NNS\nplotting VBG\nplough VB\nplow NN\nplowed VBN\nplowing VBG\nplows NNS\nplowshares NNS\nploy NN\nploys NNS\npluck VB\nplucked VBD\nplucking VBG\nplucky JJ\nplug NN\nplug-in JJ\nplugged VBN\nplugging VBG\nplugs NNS\nplugugly JJ\nplum NN\nplumage NN\nplumb RB\nplumbed VBD\nplumber NN\nplumbers NNS\nplumbing NN\nplume NN\nplumed JJ\nplumes NNS\nplummet VB\nplummeted VBD\nplummeting VBG\nplummetted VBD\nplump JJ\nplumped VBD\nplumpness NN\nplumps VBZ\nplunder NN\nplundered VBN\nplunderers NNS\nplundering NN\nplunge NN\nplunged VBD\nplunges NNS\nplunging VBG\nplunked VBD\nplunkers NNS\nplunking VBG\npluralism NN\npluralist NN\npluralistic JJ\nplurality NN\npluri-party JJ\nplus CC\nplus-one JJ\npluses NNS\nplush JJ\nplutocratic JJ\nplutocrats NNS\nplutonium NN\nplutonium-based JJ\nplutonium-handling NN\nplutonium-powered JJ\nplutonium-recovery JJ\nply VBP\nplying VBG\nplywood NN\npm NN\npneumatic JJ\npneumocystis NN\npneumonia NN\npo'k NN\npoachers NNS\npoaches VBZ\npoaching VBG\npoark NN\npocket NN\npocket-size JJ\npocketbook NN\npocketbooks NNS\npocketed VBD\npocketful NN\npocketing VBG\npockets NNS\npockmarked JJ\npod NN\npodiatric JJ\npodiatrist NN\npodium NN\npodiums NNS\npods NNS\npoem NN\npoems NNS\npoems-in-drawing-and-type JJ\npoeple NN\npoet NN\npoet-painter NN\npoetic JJ\npoetically RB\npoetizing VBG\npoetry NN\npoetry-and-jazz NN\npoetry-writing JJ\npoets NNS\npogroms NNS\npoignancy NN\npoignant JJ\npoignantly RB\npoint NN\npoint-blank JJ\npoint-of-sale JJ\npoint-spread JJ\npointe FW\npointed VBD\npointedly RB\npointer NN\npointers NNS\npointing VBG\npointless JJ\npoints NNS\npointy JJ\npoise NN\npoised VBN\npoised... :\npoises NNS\npoison NN\npoison-pill JJ\npoisoned VBN\npoisoner NN\npoisoning NN\npoisonous JJ\npoisons NNS\npoivre FW\npoke NN\npoked VBD\npokeneu FW\npoker NN\npokerfaced JJ\npokes VBZ\npokey JJ\npoking VBG\npol NN\npolar JJ\npolarities NNS\npolarity NN\npolarization NN\npolarize VB\npolarized VBN\npolarizing VBG\npole NN\npolecat NN\npolemic JJ\npolemical JJ\npolemics NNS\npoles NNS\npolice NN\npolice-community JJ\npolice-dodging NN\npoliced VBN\npoliceman NN\npoliceman-murderer NN\npolicemen NNS\npolices NNS\npolicewoman NN\npolicies NNS\npolicing VBG\npolicy NN\npolicy-coordination NN\npolicy-makers NNS\npolicy-making JJ\npolicy-oriented JJ\npolicy-research NN\npolicy-setting JJ\npolicyholder NN\npolicyholders NNS\npolicymaker NN\npolicymakers NNS\npolicymaking JJ\npoling VBG\npolio NN\npolis NN\npolish VB\npolished VBN\npolishes NNS\npolishing VBG\npolite JJ\npolitely RB\npoliteness NN\npolitic JJ\npolitical JJ\npolitical-action JJ\npolitical-corruption NN\npolitical-reform JJ\npolitically RB\npolitician NN\npoliticians NNS\npoliticize VB\npoliticized VBN\npoliticizing VBG\npoliticking NN\npolitico NN\npolitico-plaintiffs NNS\npolitico-sociological JJ\npoliticos NNS\npolitics NNS\npolities NNS\npolitique FW\npolity NN\npolivinylchloride NN\npolka NN\npolka-dotted JJ\npoll NN\npoll-taker NN\npoll-takers NNS\npolled VBN\npollen NN\npollen-and-nectar NN\npollen-inhibiting JJ\npollen-producing VBG\npollinate VB\npollinated VBN\npollinating VBG\npollination NN\npolling NN\npollings NNS\npolls NNS\npollster NN\npollsters NNS\npollutant NN\npollutants NNS\npollute VB\npolluted JJ\npolluter NN\npolluters NNS\npolluting VBG\npollution NN\npollution-causing JJ\npollution-control JJ\npollution-free JJ\npollution-reduction NN\npolo NN\npolonaise NN\npols NNS\npoltergeists NNS\npoltically RB\npoly-unsaturated JJ\npolybutene NN\npolybutenes NNS\npolycrystalline JJ\npolyelectrolytes NNS\npolyester NN\npolyesters NNS\npolyether NN\npolyether-type JJ\npolyethers NNS\npolyethylene NN\npolygynous JJ\npolyisobutylene NN\npolyisocyanate NN\npolyisocyanates NNS\npolymer NN\npolymerase NN\npolymeric JJ\npolymerization NN\npolymerizations NNS\npolymers NNS\npolymyositis NN\npolynomial NN\npolynomials NNS\npolyols NNS\npolyphosphate NN\npolyphosphates NNS\npolyproplene NN\npolypropylene NN\npolyps NNS\npolyrhythms NNS\npolysilicon NN\npolysiloxanes NNS\npolystyrene NN\npolytonal JJ\npolyunsaturated JJ\npolyurethane NN\npolyvinyl NN\npomaded VBN\npomological JJ\npomologist NN\npomp NN\npomp-filled JJ\npompons NNS\npompous JJ\npompously RB\npompousness NN\nponcho NN\npond NN\nponder VB\npondered VBD\npondering VBG\nponderous JJ\nponderousness NN\nponders VBZ\nponds NNS\npong NN\nponied VBD\nponies NNS\npontiff NN\npontifical JJ\npontificate VB\npontificates VBZ\npony NN\npony-tailed JJ\nponying VBG\nponytails NNS\npooch NN\npooched VBD\npoodle NN\npoodles NNS\npoof NN\npooh-poohed VB\npoohbah NN\npool NN\npool-care JJ\npool-equipment NN\npool-equipped JJ\npool-owners NNS\npool-side JJ\npool-table NN\npool... :\npooled VBN\npooling VBG\npooling-of-interest JJ\npooling-of-interests JJ\npools NNS\npoolside NN\npoor JJ\npoor-mouth JJ\npoor-performing JJ\npoor-quality JJ\npoor-white-trash JJ\npoorer JJR\npoorer-quality JJR\npoorest JJS\npoorly RB\npop NN\npop'lar JJ\npop-music NN\npop-out JJ\npopcorn NN\npope NN\npoplar NN\npoplin NN\npopped VBD\npoppies NNS\npopping VBG\npoppy NN\npoppyseed NN\npops VBZ\npopulace NN\npopular JJ\npopular-priced JJ\npopularity NN\npopularize VB\npopularized VBN\npopularizing VBG\npopularly RB\npopulate VB\npopulated VBN\npopulating VBG\npopulation NN\npopulation-control JJ\npopulation... :\npopulations NNS\npopulism NN\npopulist JJ\npopulists NNS\npopulous JJ\nporcelain NN\nporcelains NNS\nporch NN\nporches NNS\nporcupine NN\nporcupines NNS\npore NN\npored VBD\npores NNS\nporing JJ\npork NN\npork-barrel JJ\npork-barrelers NNS\npork-barreling NN\nporno-inspired JJ\npornographer NN\npornographic JJ\npornography NN\nporosity NN\nporous JJ\nporpoise NN\nporpoises NNS\nporridge NN\nport NN\nport-of-call NN\nport-shopping NN\nport-side JJ\nportability NN\nportable JJ\nportables NNS\nportal NN\nportant FW\nportend VBP\nportended VBD\nportends VBZ\nportent NN\nportentous JJ\nportents NNS\nporter NN\nportering NN\nporters NNS\nportfolio NN\nportfolio-maker NN\nportfolio... :\nportfolios NNS\nportico NN\nporticoes NNS\nportion NN\nportions NNS\nportly JJ\nportrait NN\nportraits NNS\nportraiture NN\nportray VB\nportrayal NN\nportrayals NNS\nportrayed VBN\nportraying VBG\nportrays VBZ\nports NNS\nportwatchers NNS\npose VB\nposed VBN\nposes VBZ\nposeur NN\nposeurs NNS\nposh JJ\nposhest JJS\nposing VBG\nposition NN\nposition-building NN\nposition-squaring NN\nposition... :\npositional JJ\npositioned VBN\npositioning VBG\npositions NNS\npositionsthat NN\npositive JJ\npositively RB\npositivism NN\npositivist NN\npositivists NNS\nposse NN\nposseman NN\npossemen NNS\npossess VBP\npossessed VBD\npossesses VBZ\npossessing VBG\npossession NN\npossessions NNS\npossessive JJ\npossessor NN\npossibilities NNS\npossibility NN\npossible JJ\npossiblities NNS\npossiblity NN\npossibly RB\npossum NN\npossum-hunting NN\npost NN\npost-1979 JJ\npost-1987 JJ\npost-1992 CD\npost-1997 JJ\npost-Barre JJ\npost-Black JJ\npost-Civil NNP\npost-Deng JJ\npost-Hugo JJ\npost-Inaugural JJ\npost-June JJ\npost-Oct NNP\npost-Revolutionary JJ\npost-Vietnam JJ\npost-Watergate JJ\npost-World NNP\npost-attack JJ\npost-bankruptcy JJ\npost-bellum FW\npost-census NN\npost-chemotherapy JJ\npost-colonial JJ\npost-colonialism NN\npost-conviction JJ\npost-crash JJ\npost-earthquake JJ\npost-electoral JJ\npost-fray RB\npost-game JJ\npost-graduate JJ\npost-hearing JJ\npost-hurricane JJ\npost-independence JJ\npost-merger JJ\npost-midnight JJ\npost-minimalist JJ\npost-modern JJ\npost-modernism NN\npost-mortal JJ\npost-mortem JJ\npost-nuptial JJ\npost-operative JJ\npost-production NN\npost-quake JJ\npost-reapportionment JJ\npost-retirement JJ\npost-revolutionary JJ\npost-sale JJ\npost-season NN\npost-secondary JJ\npost-split JJ\npost-surgery JJ\npost-surgical JJ\npost-trial JJ\npost-war JJ\npostage NN\npostage-prepaid JJ\npostage-stamp NN\npostal JJ\npostal-business JJ\npostcard NN\npostcards NNS\npostdoctoral JJ\nposted VBD\nposter NN\nposter-sized JJ\nposterior JJ\nposterity NN\nposters NNS\npostgraduate JJ\nposthumous JJ\nposting VBG\npostings NNS\npostition NN\npostman NN\npostmark NN\npostmarked VBN\npostmarks NNS\npostmaster NN\npostmasters NNS\npostmen NNS\npostponable JJ\npostpone VB\npostponed VBN\npostponement NN\npostponements NNS\npostponing VBG\npostride JJ\nposts NNS\npostscript NN\npostulate VB\npostulated VBN\npostulates NNS\nposture NN\npostured VBD\npostures NNS\nposturing NN\npostwar JJ\npot NN\npotable JJ\npotash NN\npotassium NN\npotato NN\npotato-like JJ\npotato-supplier NN\npotatoes NNS\npotboiler NN\npotboilers NNS\npotency NN\npotent JJ\npotentates NNS\npotential JJ\npotentialities NNS\npotentiality NN\npotentially RB\npotentials NNS\npotentiometer NN\npothole NN\npotholes NNS\npothos NN\npotion NN\npotions NNS\npotpourri NN\npots NNS\npottage NN\npotted JJ\npotter NN\npotters NNS\npottery NN\npotting VBG\npotty NN\npouch NN\npouches NNS\npoultice NN\npoultices NNS\npoultry NN\npoultry-loving JJ\npounce VB\npounced VBD\npouncing VBG\npound NN\npound-DM JJ\npound-deutsche JJ\npound-foolish JJ\npound-of-flesh JJ\npounded VBD\npounding VBG\npounds NNS\npour VB\npoured VBD\npoured-in-place VBN\npouring VBG\npours VBZ\npout NN\npouted VBD\npouty-looking JJ\npoverty NN\npoverty-stricken JJ\npowder NN\npowdered JJ\npowderpuff NN\npowders NNS\npowdery JJ\npower NN\npower-buying JJ\npower-company NN\npower-driven JJ\npower-generation NN\npower-grid NN\npower-hitter NN\npower-hungry JJ\npower-plant NN\npower-sharing JJ\npower-starved JJ\npower-steering NN\npower-surge NN\npower-switching JJ\npower-tool JJ\npower-train NN\npower-transmission JJ\npowerboat NN\npowered VBN\npowerful JJ\npowerfully RB\npowerfulness NN\npowerhouse NN\npowerhouses NNS\npowering VBG\npowerless JJ\npowerlessness NN\npowerplants NNS\npowers NNS\npowers-that-be NN\npowertrain NN\npowpow NN\npowwow NN\npox NN\npp. NNS\nppl NN\npr NN\npracticability NN\npracticable JJ\npractical JJ\npracticality NN\npractically RB\npractice NN\npracticed VBN\npractices NNS\npracticing VBG\npractised JJ\npractising VBG\npractitioner NN\npractitioners NNS\npragmatic JJ\npragmatism NN\npragmatist NN\npragmatists NNS\nprai VBP\nprairie NN\nprairies NNS\npraise NN\npraised VBD\npraises VBZ\npraiseworthy JJ\npraising VBG\npram NN\nprams NNS\nprancing NN\npranha NN\nprank NN\npranks NNS\npranksters NNS\npratakku FW\npratfalls NNS\nprattle NN\nprawns NNS\npray VB\npray-for-growth-later JJ\nprayed VBD\nprayer NN\nprayer-requests NN\nprayer-time NN\nprayerbooks NNS\nprayerful JJ\nprayerfully RB\nprayers NNS\nprayin NN\npraying VBG\nprays VBZ\npre-18th-century JJ\npre-1917 JJ\npre-1933 JJ\npre-1950s JJ\npre-1960 JJ\npre-1967 JJ\npre-1975 CD\npre-1986 JJ\npre-Anglo-Saxon JJ\npre-Christmas JJ\npre-Civil NNP\npre-Communist JJ\npre-Easter JJ\npre-Fair JJ\npre-French JJ\npre-Freudian JJ\npre-Gorbachev JJ\npre-Han NNP\npre-Hugo JJ\npre-May JJ\npre-Punic JJ\npre-Reagan JJ\npre-Revolutionary JJ\npre-Sterling JJ\npre-Vatican NNP\npre-World NNP\npre-World-War JJ\npre-`` ``\npre-academic JJ\npre-approved JJ\npre-arranged JJ\npre-assault JJ\npre-bankruptcy NN\npre-cast JJ\npre-clinical JJ\npre-college JJ\npre-colonial NN\npre-conditions NNS\npre-conscious JJ\npre-consumption NN\npre-cooked JJ\npre-cooled JJ\npre-crash JJ\npre-date VB\npre-dawn JJ\npre-determined JJ\npre-drilled JJ\npre-emancipation NN\npre-eminence NN\npre-eminent JJ\npre-employment JJ\npre-empt VB\npre-empted VBN\npre-empting JJ\npre-emption JJ\npre-emptive JJ\npre-existence JJ\npre-existent JJ\npre-existing JJ\npre-festival JJ\npre-financed JJ\npre-fund VB\npre-game JJ\npre-historic JJ\npre-history JJ\npre-independence NN\npre-introduction JJ\npre-kidnap JJ\npre-kindergarten NN\npre-legislative JJ\npre-literate JJ\npre-maquila JJ\npre-margin JJ\npre-marital JJ\npre-market JJ\npre-med JJ\npre-merger JJ\npre-natal JJ\npre-noon NN\npre-nuptial JJ\npre-packed JJ\npre-paid VBD\npre-penicillin JJ\npre-planning NN\npre-primary JJ\npre-production JJ\npre-publication JJ\npre-quake JJ\npre-recorded JJ\npre-reform JJ\npre-refunded JJ\npre-register VB\npre-registered VBN\npre-sale JJ\npre-school JJ\npre-season JJ\npre-selected VBN\npre-selling VBG\npre-sentencing JJ\npre-set JJ\npre-signed VBN\npre-split JJ\npre-strike JJ\npre-suspension JJ\npre-tax JJ\npre-tested VBN\npre-trading JJ\npre-transfer JJ\npre-trial JJ\npre-try VB\npre-vision JJ\npre-war JJ\npreach VB\npreached VBD\npreacher NN\npreacher-singer NN\npreachers NNS\npreaches VBZ\npreachiness NN\npreaching NN\npreachy JJ\npreadmission NN\npreamble NN\npreambles NNS\npreapproved VBN\nprearranged VBN\nprecarious JJ\nprecariously RB\nprecaution NN\nprecautionary JJ\nprecautions NNS\nprecede VB\npreceded VBD\nprecedence NN\nprecedent NN\nprecedent-based JJ\nprecedent-setting JJ\nprecedents NNS\nprecedes VBZ\npreceding VBG\npreceeded VBN\npreceeding VBG\nprecept NN\nprecepts NNS\nprechlorination NN\nprecinct NN\nprecincts NNS\nprecious JJ\nprecious-metals NNS\nprecipice NN\nprecipice-walled JJ\nprecipices NNS\nprecipitate VB\nprecipitated VBD\nprecipitating VBG\nprecipitin NN\nprecipitous JJ\nprecipitously RB\nprecise JJ\nprecise-sounding JJ\nprecisely RB\nprecision NN\nprecision-materials NNS\nprecision-timing NN\npreclearance NN\npreclinical JJ\npreclude VB\nprecluded VBD\nprecludes VBZ\nprecocious JJ\nprecociously RB\nprecocity NN\nprecompetitive JJ\npreconceived JJ\npreconceptions NNS\nprecondition NN\npreconditioned VBD\npreconditions NNS\npreconference JJ\npreconscious JJ\nprecooked VBN\nprecrash JJ\nprecursor NN\nprecursors NNS\nprecursory JJ\nprecut JJ\npredates VBZ\npredator NN\npredators NNS\npredatory JJ\npredawn JJ\npredecessor NN\npredecessors NNS\npredestined VBN\npredetermined VBN\npredicament NN\npredicated VBN\npredicates NNS\npredicator NN\npredict VBP\npredict\\ VBP\npredictability NN\npredictable JJ\npredictably RB\npredicted VBD\npredicting VBG\npredicting-machines NNS\nprediction NN\npredictions NNS\npredictive JJ\npredictor NN\npredictors NNS\npredicts VBZ\npredigested VBN\npredilection NN\npredilections NNS\npredispose VB\npredisposed VBN\npredisposing VBG\npredisposition NN\npredispositions NNS\nprednisone NN\npredominance NN\npredominant JJ\npredominantly RB\npredominate VBP\npredominated VBD\npredominately RB\npredominates VBZ\npredominating VBG\npredomination NN\npreemployment NN\npreempt VB\npreemptive JJ\npreening VBG\nprefab JJ\nprefabricated VBN\npreface NN\nprefaced VBD\nprefectural JJ\nprefecture NN\nprefectures NNS\nprefer VBP\npreferable JJ\npreferably RB\npreference NN\npreferences NNS\npreferential JJ\npreferentially RB\npreferment NN\npreferrance NN\npreferred JJ\npreferred-dividend JJ\npreferred-share JJ\npreferred-stock JJ\npreferring VBG\nprefers VBZ\nprefixes NNS\npreflight NN\nprefuh VB\nprefund VB\npregnancies NNS\npregnancy NN\npregnant JJ\nprehistoric JJ\npreisolated VBN\nprejudged VBN\nprejudging VBG\nprejudice NN\nprejudiced VBN\nprejudices NNS\nprejudicial JJ\nprelate NN\npreliminaries NNS\npreliminarily RB\npreliminary JJ\npreliterate JJ\nprelude NN\npremarital JJ\npremature JJ\nprematurely RB\npremediated JJ\npremeditated JJ\npremier NN\npremiere NN\npremiered VBD\npremieres NNS\npremiering VBG\npremise NN\npremises NNS\npremium NN\npremium-beer NN\npremium-brand JJ\npremium-food NN\npremium-priced JJ\npremiums NNS\npremix NN\npremonition NN\npremonitions NNS\npremonitory JJ\nprenatal JJ\npreoccupation NN\npreoccupations NNS\npreoccupied VBN\npreoccupies VBZ\npreoccupy VBP\npreordained VBN\npreordainment NN\nprep JJ\nprepackaged VBN\nprepaid JJ\nprepaid-tuition JJ\npreparation NN\npreparations NNS\npreparative JJ\npreparatives NNS\npreparatory JJ\nprepare VB\nprepared VBN\npreparedness NN\npreparer NN\npreparers NNS\nprepares VBZ\npreparing VBG\nprepay VB\nprepaying VBG\nprepayment NN\nprepayment-protected JJ\nprepayments NNS\nprepolymer NN\npreponderance NN\npreponderantly RB\npreponderating JJ\npreposition NN\nprepositional JJ\nprepositioning JJ\npreposterous JJ\npreppie NN\nprepping VBG\npreppy JJ\nprepreg NN\npreprepared VBN\npreprinting NN\npreprivatization NN\nprepubescent JJ\nprepublication NN\nprepupal JJ\nprepurchase JJ\npreradiation NN\nprerecorded VBN\npreregistration NN\nprerequisite NN\nprerequisites NNS\nprerogative NN\nprerogatives NNS\npresage VB\npresaged VBD\npresages VBZ\npresaging VBG\npresale JJ\npreschool JJ\npreschooler NN\npreschoolers NNS\nprescient JJ\nprescribe VB\nprescribed VBN\nprescriber NN\nprescribers NNS\nprescribes VBZ\nprescribing VBG\nprescription NN\nprescription-drug NN\nprescriptions NNS\nprescriptive JJ\npresence NN\npresences NNS\npresent JJ\npresent-day JJ\npresent-time JJ\npresentable JJ\npresentation NN\npresentational JJ\npresentations NNS\npresente JJ\npresented VBN\npresenter NN\npresenters NNS\npresenting VBG\npresently RB\npresentlye NN\npresentments NNS\npresentness NN\npresents VBZ\npreservation NN\npreservative JJ\npreserve VB\npreserved VBN\npreserves VBZ\npreserving VBG\npreset JJ\npreside VB\npresided VBD\npresidency NN\npresident NN\npresident-U.S. NN\npresident-elect NN\npresident-engineering NN|NN\npresident-finance NN\npresident-international NN\npresident-marketing JJ\npresident\\/chief NN\npresident\\/finance NN\npresident\\/national-government NN\npresident\\/product NN\npresident\\/public JJ\npresidential JJ\npresidential-primary NN\npresidents NNS\npresides VBZ\npresiding VBG\npresorting NN\npress NN\npress-forge NN\npress-freedom NN\npress-ganged JJ\npress-release NN\npressed VBN\npressed-paper JJ\npresser NN\npresses NNS\npressing VBG\npressman NN\npressure NN\npressure-cooker NN\npressure-formed JJ\npressure-measurement NN\npressure-measuring JJ\npressure-sensing JJ\npressure-volume-temperature NN\npressure... :\npressured VBN\npressures NNS\npressuring VBG\npressurized VBN\nprestidigitation NN\nprestidigitator NN\nprestige NN\nprestige-sentitive JJ\nprestigious JJ\npresto RB\npresumably RB\npresume VB\npresumed VBN\npresumes VBZ\npresuming VBG\npresumption NN\npresumptions NNS\npresumptuous JJ\npresuppose VBP\npresupposes VBZ\npresupposition NN\npresuppositions NNS\npretax JJ\npretence NN\npretend VB\npretended VBD\npretending VBG\npretends VBZ\npretense NN\npretenses NNS\npretensions NNS\npretentious JJ\npretest NN\npretext NN\npretexts NNS\npretreatment NN|JJ\npretrial JJ\nprettier JJR\nprettiest JJS\nprettily RB\nprettiness NN\npretty RB\npretty-good-rated JJ\npretty-much JJ\nprevail VB\nprevaile VB\nprevailed VBD\nprevailin NN\nprevailing VBG\nprevails VBZ\nprevalance NN\nprevalence NN\nprevalent JJ\nprevayle VB\nprevent VB\npreventable JJ\npreventative JJ\npreventatives NNS\nprevented VBN\npreventing VBG\nprevention NN\npreventive JJ\nprevents VBZ\npreview NN\npreviewing VBG\npreviews NNS\nprevious JJ\nprevious-month JJ\nprevious-year JJ\npreviously RB\nprevision NN\nprevisions NNS\nprewar JJ\nprey NN\npreying VBG\nprice NN\nprice'tres NN\nprice-adjusted JJ\nprice-and-seasonally RB\nprice-based JJ\nprice-competitive JJ\nprice-conscious JJ\nprice-consciousness NN\nprice-corroding JJ\nprice-cutting NN\nprice-depressing JJ\nprice-determination JJ\nprice-driven JJ\nprice-earnings JJ\nprice-fixing NN\nprice-gouging NN\nprice-growth JJ\nprice-increase NN\nprice-jarring JJ\nprice-jolting JJ\nprice-level JJ\nprice-moving JJ\nprice-reform JJ\nprice-reporting NN\nprice-sensitive JJ\nprice-setting NN\nprice-skirmishing JJ\nprice-slashing JJ\nprice-stability NN\nprice-stabilized JJ\nprice-stabilizing JJ\nprice-support JJ\nprice-supporting JJ\nprice-to-book JJ\nprice-to-earnings JJ\nprice-valuation NN\nprice-value JJ\nprice-weakening NN\nprice-wise JJ\nprice\\/earnings NNS\npricecutting NN\npriced VBN\npriceless JJ\nprices NNS\nprices... :\npricetags NNS\npricey JJ\npricier JJR\npriciest JJS\npricing NN\npricings NNS\nprick NN\npricked VBN\npricking VBG\nprickly JJ\npricks NNS\npride NN\nprided VBD\nprides VBZ\nprie-dieu FW\npries VBZ\npriest NN\npriestly JJ\npriests NNS\nprim JJ\nprima NN\nprima-facie FW\nprimacy NN\nprimal JJ\nprimaries NNS\nprimarily RB\nprimarly RB\nprimary JJ\nprimary-color JJ\nprimary-election NN\nprimates NNS\nprime JJ\nprime-1 NN\nprime-3 NN\nprime-time JJ\nprimed VBN\nprimers NNS\nprimes NNS\nprimetime NN\nprimeval JJ\npriming VBG\nprimitive JJ\nprimitive-eclogue JJ\nprimitives NNS\nprimitivism NN\nprimly RB\nprimordial JJ\nprimping VBG\nprince NN\nprincely JJ\nprinces NNS\nprincess NN\nprincess-in-a-carriage NN\nprincesse JJ\nprincipal JJ\nprincipal-only JJ\nprincipally RB\nprincipals NNS\nprinciple NN\nprincipled JJ\nprinciples NNS\nprincpal NN\nprint NN\nprint-developing JJ\nprint-out JJ\nprint-shop NN\nprintable JJ\nprinted VBN\nprinter NN\nprinters NNS\nprinting NN\nprinting-equipment NN\nprinting-ink JJ\nprinting-press NN\nprinting-systems NNS\nprintmaking NN\nprintout NN\nprintouts NNS\nprints NNS\nprior RB\nprior-approval JJ\nprior-day JJ\nprior-notice JJ\nprior-review JJ\nprior-year JJ\npriori FW\npriorities NNS\npriority NN\nprison NN\nprisoner NN\nprisoner-made JJ\nprisoners NNS\nprisoners. NNS\nprisons NNS\npristine JJ\nprivacy NN\nprivate JJ\nprivate-bank JJ\nprivate-banking JJ\nprivate-detective NN\nprivate-eye NN\nprivate-insurance NN\nprivate-label JJ\nprivate-line JJ\nprivate-management NN\nprivate-placement JJ\nprivate-school JJ\nprivate-sector JJ\nprivately RB\nprivately-owned JJ\nprivation NN\nprivations NNS\nprivatization NN\nprivatization-consulting JJ\nprivatizations NNS\nprivatize VB\nprivatized VBN\nprivatizing VBG\nprivet NN\nprivies NNS\nprivilege NN\nprivileged JJ\nprivileges NNS\nprivileging VBG\nprivvy JJ\nprivy JJ\nprize NN\nprize-fight JJ\nprize-fighter NN\nprize-winning JJ\nprized VBN\nprizes NNS\npro FW\npro-ALPA JJ\npro-Castro JJ\npro-Communist JJ\npro-Europe JJ\npro-Gorbachev JJ\npro-Hearst JJ\npro-Iranian JJ\npro-NATO JJ\npro-Noriega JJ\npro-Reagan JJ\npro-Republican JJ\npro-Socialist JJ\npro-Soviet JJ\npro-Trujillo JJ\npro-U.N.F.P. JJ\npro-Western JJ\npro-Yankee NN\npro-abortion JJ\npro-active JJ\npro-ball NN\npro-business JJ\npro-choice JJ\npro-consumer JJ\npro-consumption NN\npro-cut JJ\npro-democracy JJ\npro-enterprise JJ\npro-environment NN\npro-environmental JJ\npro-family NN\npro-forma FW\npro-growth JJ\npro-independence JJ\npro-investment JJ\npro-labor JJ\npro-life JJ\npro-mark JJ\npro-market JJ\npro-neutralist JJ\npro-rata JJ\npro-rated JJ\npro-reform JJ\npro-repeal JJ\npro-sealed-records JJ\npro-selected JJ\npro-shareholder NN\npro-student JJ\npro-tem JJ\npro-union JJ\nprobabilistic JJ\nprobabilities NNS\nprobability NN\nprobable JJ\nprobably RB\nprobaby NN\nprobate NN\nprobation NN\nprobe NN\nprobe-based JJ\nprobed VBD\nprobes NNS\nprobing VBG\nprobings NNS\nprobity NN\nprobl'y RB\nproblem NN\nproblem-solving JJ\nproblem-the JJ\nproblematic JJ\nproblematical JJ\nproblematics NNS\nproblems NNS\nprobly RB\nproboscis NN\nprocedural JJ\nprocedurally RB\nprocedure NN\nprocedures NNS\nproceed VB\nproceeded VBD\nproceeding NN\nproceedings NNS\nproceeds NNS\nprocess NN\nprocess-control NN\nprocess-server NN\nprocessed VBN\nprocessed-foods JJ\nprocessed-meat JJ\nprocessed-meats NNS\nprocesses NNS\nprocessing NN\nprocession NN\nprocessional NN\nprocessor NN\nprocessors NNS\nprochoice NN\nproclaim VB\nproclaimed VBD\nproclaiming VBG\nproclaims VBZ\nproclamation NN\nproclamations NNS\nproclivities NNS\nprocrastinate VB\nprocrastinated VBD\nprocrastination NN\nprocreate VB\nprocreation NN\nprocreative JJ\nprocreativity NN\nproctor NN\nproctors NNS\nprocure VB\nprocured VBN\nprocurement NN\nprocurer NN\nprod VB\nprodded VBN\nprodding VBG\nprodigal JJ\nprodigally RB\nprodigies NNS\nprodigious JJ\nprodigiously RB\nprodigy NN\nprods VBZ\nproduce VB\nproduced VBN\nproducer NN\nproducer-consumer JJ\nproducer-hubby NN\nproducer-price JJ\nproducer\\/director NN\nproducers NNS\nproduces VBZ\nproducin VBG\nproducing VBG\nproduct NN\nproduct-design JJ\nproduct-development NN\nproduct-inspection JJ\nproduct-launch NN\nproduct-liability JJ\nproduct-line NN\nproduct-marketing NN\nproduct-monoclonal JJ\nproduct-registration NN\nproduct-related JJ\nproduct-swap NN\nproduct-testing NN\nproduction NN\nproduction-ceiling NN\nproduction-cost NN\nproduction-rate JJ\nproduction-sharing JJ\nproductions NNS\nproductive JJ\nproductivity NN\nproductivity-based JJ\nproductivity-share NN\nproducts NNS\nproducts... :\nproessional NN\nprof NN\nprofane JJ\nprofanity NN\nprofess VBP\nprofessed VBD\nprofessedly RB\nprofesses VBZ\nprofesseur NN\nprofessing VBG\nprofession NN\nprofessional JJ\nprofessional-design JJ\nprofessional-level JJ\nprofessional\\/executive JJ\nprofessionalism NN\nprofessionally RB\nprofessionals NNS\nprofessions NNS\nprofessor NN\nprofessorial JJ\nprofessoriate NN\nprofessors NNS\nprofessorship NN\nprofessorships NNS\nprofet NN\nproffer VB\nproffered VBD\nprofferred VBN\nproficiency NN\nproficient JJ\nprofile NN\nprofiled VBN\nprofiles NNS\nprofiling VBG\nprofit NN\nprofit-driven CD\nprofit-eating JJ\nprofit-making JJ\nprofit-margin NN\nprofit-maximizing JJ\nprofit-motivated JJ\nprofit-oriented JJ\nprofit-seeking JJ\nprofit-sharing NN\nprofit-staggering JJ\nprofit-taking NN\nprofitability NN\nprofitable JJ\nprofitably RB\nprofited VBD\nprofiteering VBG\nprofiteers NNS\nprofiting VBG\nprofits NNS\nprofits-optimism JJ\nprofittaking NN\nprofitting VBG\nprofligacy NN\nprofligate JJ\nprofound JJ\nprofoundest JJS\nprofoundity NN\nprofoundly RB\nprofs NNS\nprofundity NN\nprofuse JJ\nprofusely RB\nprofusion NN\nprogandist NN\nprogenitors NNS\nprogeny NN\nprogess NN\nprognoses NNS\nprognosis NN\nprognostication NN\nprognostications NNS\nprognosticator NN\nprognosticators NNS\nprogram NN\nprogram-bashing JJ\nprogram-dominated JJ\nprogram-driven JJ\nprogram-maker NN\nprogram-related JJ\nprogram-selling JJ\nprogram-trade JJ\nprogram-trading JJ\nprogramed VBN\nprograming NN\nprogrammable JJ\nprogrammatic JJ\nprogrammed VBN\nprogrammer NN\nprogrammers NNS\nprogrammes NNS\nprogramming NN\nprograms NNS\nprogress NN\nprogressed VBD\nprogresses VBZ\nprogressing VBG\nprogression NN\nprogressions NNS\nprogressive JJ\nprogressively RB\nprogressives NNS\nprogressivism NN\nprogressivity NN\nprohibit VB\nprohibited VBN\nprohibiting VBG\nprohibition NN\nprohibitions NNS\nprohibitive JJ\nprohibitively RB\nprohibiton NN\nprohibits VBZ\nproject NN\nprojected VBN\nprojectile NN\nprojectiles NNS\nprojecting VBG\nprojection NN\nprojections NNS\nprojective JJ\nprojector NN\nprojectors NNS\nprojects NNS\nproletarian JJ\nproletariat NN\nproliferate VBP\nproliferated VBN\nproliferating VBG\nproliferation NN\nprolific JJ\nprolixity NN\nprolong VB\nprolongation NN\nprolonged VBN\nprolonging VBG\nprolongs VBZ\nprolusion NN\nprolusions NNS\nprom NN\npromenade NN\npromenades NNS\nprominant JJ\nprominence NN\nprominent JJ\nprominently RB\npromiscuous JJ\npromise NN\npromise... :\npromised VBD\npromises VBZ\npromising JJ\npromissory JJ\npromote VB\npromoted VBN\npromoter NN\npromoters NNS\npromotes VBZ\npromoting VBG\npromotion NN\npromotional JJ\npromotions NNS\nprompt VB\nprompted VBD\nprompting VBG\npromptings NNS\npromptly RB\nprompts VBZ\npromulgated VBN\npromulgating VBG\npromulgators NNS\nprone JJ\nproneness NN\nprongs NNS\npronoun NN\npronounce VB\npronounced VBN\npronouncement NN\npronouncements NNS\npronounces VBZ\npronouncing JJ\npronouns NNS\npronto RB\npronunciation NN\nproof NN\nproof-of-purchases NNS\nproofread VBD\nproofreading VBG\nprop VB\npropaganda NN\npropagandist NN\npropagandistic JJ\npropagandists NNS\npropagandize VB\npropagandizes VBZ\npropagate VB\npropagated VBN\npropagation NN\npropane NN\npropects NNS\npropel VB\npropellant NN\npropellants NNS\npropelled VBN\npropeller NN\npropeller-driven JJ\npropellers NNS\npropelling VBG\npropels VBZ\npropensity NN\nproper JJ\nproperly RB\nproperties NNS\nproperties.`` ``\nproperty NN\nproperty-and-casualty JJ\nproperty-casualty JJ\nproperty-claim NN\nproperty-claims-service NN\nproperty-investment NN\nproperty-liability NN\nproperty-loan JJ\nproperty-management NN\nproperty-poor JJ\nproperty-price JJ\nproperty-related JJ\nproperty-rich JJ\nproperty-sector NN\nproperty-tax JJ\nproperty-tax-cutting JJ\nproperty\\ JJ\nproperty\\/casualty NN\npropfan NN\npropfans NNS\nprophecies NNS\nprophecy NN\nprophesied VBD\nprophesies VBZ\nprophesized VBD\nprophesying VBG\nprophet NN\nprophetic JJ\nprophetically RB\nprophets NNS\npropionate NN\npropitiate VB\npropitious JJ\nproponent NN\nproponents NNS\nproportion NN\nproportional JJ\nproportionality NN\nproportionally RB\nproportionate JJ\nproportionately RB\nproportioned JJ\nproportions NNS\nproposal NN\nproposals NNS\npropose VB\nproposed VBN\nproposed... :\nproposes VBZ\nproposing VBG\nproposition NN\nproposition... :\npropositioned VBD\npropositions NNS\npropounded VBD\npropped VBN\npropping VBG\nproprietary JJ\nproprieter NN\nproprieties NNS\nproprietor NN\nproprietors NNS\nproprietorship NN\nproprietorships NNS\nproprietory JJ\npropriety NN\nprops NNS\npropsed VBN\npropulsion NN\npropulsions NNS\npropulsive JJ\npropylene NN\npropylthiouracil NN\nprorata FW\nprorate VB\nprorated VBN\nproration NN\npros NNS\nprosaic JJ\nprosceniums NNS\nproscribe VBP\nproscribed VBN\nproscribes VBZ\nproscription NN\nproscriptive JJ\nprose NN\nprosecute VB\nprosecuted VBN\nprosecuting VBG\nprosecution NN\nprosecutions NNS\nprosecutor NN\nprosecutorial JJ\nprosecutors NNS\nproselytizing VBG\nprosodic JJ\nprosodies NNS\nprosoma NN\nprospect NN\nprospective JJ\nprospectively RB\nprospector NN\nprospects NNS\nprospectus NN\nprospectuses NNS\nprosper VB\nprospered VBN\nprospering VBG\nprosperity NN\nprosperous JJ\nprospers VBZ\nprossed FW\nprostaglandin NN\nprostate NN\nprostitute NN\nprostitutes NNS\nprostitution NN\nprostitution.. NN\nprostrate JJ\nprosy JJ\nprotagonist NN\nprotagonists NNS\nprotease NN\nproteases NNS\nprotect VB\nprotected VBN\nprotecting VBG\nprotection NN\nprotectionism NN\nprotectionist JJ\nprotectionists NNS\nprotections NNS\nprotective JJ\nprotectively RB\nprotector NN\nprotectors NNS\nprotects VBZ\nprotege NN\nproteges NNS\nprotein NN\nprotein-1 NN\nprotein-bound JJ\nprotein-making JJ\nprotein-restricted JJ\nproteins NNS\nproteolysis NN\nproteolytic JJ\nprotest NN\nprotestations NNS\nprotested VBD\nprotester NN\nprotesters NNS\nprotesting VBG\nprotestors NNS\nprotests NNS\nproto-Athabascan NN\nproto-Yokuts NNS\nproto-oncogenes NN\nproto-senility NN\nprotocol NN\nprotocols NNS\nproton NN\nprotons NNS\nprotoplasm NN\nprotoplasmic JJ\nprototype NN\nprototyped VBN\nprototypes NNS\nprototypical JJ\nprotozoa NNS\nprotozoan JJ\nprotracted JJ\nprotrude VB\nprotruded VBD\nprotruding VBG\nprotrusion NN\nprotuberance NN\nproud JJ\nprouder RBR\nproudest JJS\nproudly RB\nprovdied VBD\nprove VB\nproved VBD\nproven VBN\nprovenance NN\nproverb NN\nproverbial JJ\nproverbs NNS\nproverty NN\nproves VBZ\nprovide VB\nprovided VBN\nprovidence NN\nprovidential JJ\nprovider NN\nproviders NNS\nprovides VBZ\nproviding VBG\nprovince NN\nprovince-wide JJ\nprovinces NNS\nprovincial JJ\nprovincialism NN\nprovincially RB\nproving VBG\nprovision NN\nprovisional JJ\nprovisionally RB\nprovisioned VBN\nprovisioning VBG\nprovisions NNS\nproviso NN\nprovisons NNS\nprovocateurs NNS\nprovocation NN\nprovocative JJ\nprovocatively RB\nprovoke VB\nprovoked VBD\nprovokes VBZ\nprovoking VBG\nprovost NN\nprow NN\nprowazwki NN\nprowess NN\nprowl NN\nprowled VBD\nprowlers NNS\nprowling VBG\nprowls VBZ\nproxies NNS\nproximal JJ\nproximate JJ\nproximity NN\nproxy NN\nproxy-solicitation JJ\nprude NN\nprudence NN\nprudent JJ\nprudent-man JJ\nprudential JJ\nprudentially RB\nprudently RB\nprune NN\npruned VBN\nprunes NNS\npruning VBG\nprurient JJ\npruta NN\npry VB\nprying JJ\npsalm NN\npsalmist NN\npseudo JJ\npseudo-Kennedyism NN\npseudo-anthropological JJ\npseudo-capitalism NN\npseudo-emotion NN\npseudo-feeling NN\npseudo-glamorous JJ\npseudo-government NN\npseudo-happiness NN\npseudo-history NN\npseudo-lobbyists NNS\npseudo-patriotism NN\npseudo-profundities NNS\npseudo-questions NNS\npseudo-scientific JJ\npseudo-sophistication NN\npseudo-symmetric JJ\npseudo-thinking NN\npseudo-willing NN\npseudoephedrine NN\npseudonym NN\npseudonymous JJ\npseudophloem NN\npseudosocialism NN\npseudynom NN\npsi NNS\npsoriasis NN\npsyche NN\npsyches NNS\npsychiatric JJ\npsychiatrist NN\npsychiatrists NNS\npsychiatry NN\npsychic JJ\npsychical JJ\npsychically RB\npsychically-blind JJ\npsychics NNS\npsycho-physiology NN\npsychoactive JJ\npsychoanalysis NN\npsychoanalyst NN\npsychoanalytic JJ\npsychobiology NN\npsychological JJ\npsychological-intellectual JJ\npsychologically RB\npsychologist NN\npsychologists NNS\npsychology NN\npsychopath NN\npsychopathic JJ\npsychopharmacological JJ\npsychopomp NN\npsychosocial JJ\npsychosomatic JJ\npsychotherapeutic JJ\npsychotherapist NN\npsychotherapists NNS\npsychotherapy NN\npsychotic JJ\npsyllium NN\npsyllium-fortified JJ\npterygia NN\npub NN\npuberty NN\npubescent JJ\npublic JJ\npublic-TV NN\npublic-accommodation NN\npublic-address JJ\npublic-affairs NNS\npublic-asset JJ\npublic-audit JJ\npublic-employee NN\npublic-fund JJ\npublic-health JJ\npublic-housing JJ\npublic-information JJ\npublic-interest JJ\npublic-land JJ\npublic-limit JJ\npublic-opinion JJ\npublic-owned JJ\npublic-policy NN\npublic-relations NNS\npublic-school JJ\npublic-sector NN\npublic-service JJ\npublic-spirited JJ\npublic-stock NN\npublic-television NN\npublic-transit JJ\npublic-works NNS\npublic... :\npublically RB\npublication NN\npublications NNS\npublicist NN\npublicists NNS\npublicity NN\npublicity-conscious JJ\npublicity-seeking JJ\npublicity-shy JJ\npublicize VB\npublicized VBN\npublicizing VBG\npublicly RB\npublicly-held JJ\npublicly-traded JJ\npublicsector JJ\npublish VB\npublishable JJ\npublished VBN\npublisher NN\npublishers NNS\npublishes VBZ\npublishing NN\npublishing-group JJ\npubs NNS\npuckered VBN\npuckering VBG\npuckish JJ\npudding NN\npudding-faced JJ\npuddings NNS\npuddle NN\npuddles NNS\npuerile JJ\npuff NN\npuffed VBN\npuffed-up JJ\npuffers NNS\npuffery NN\npuffing VBG\npuffs VBZ\npuffy JJ\npug-nosed JJ\npugh JJ\npugnacious JJ\npuissant JJ\npuke NN\npulchritude NN\npull VB\npull-backs NNS\npull-down JJ\npull-out NN\npullback NN\npullbacks NNS\npulled VBD\npullet-roofed JJ\npulley NN\npulleys NNS\npulling VBG\npullout NN\npullouts NNS\npulls VBZ\npulmonary JJ\npulp NN\npulping VBG\npulpit NN\npulpits NNS\npulpwood NN\npulsated VBD\npulsating VBG\npulsation NN\npulsations NNS\npulse NN\npulse-jet NN\npulse-timing JJ\npulsed VBN\npulses NNS\npulsing VBG\npulverize VB\npulverized VBN\npulverizing VBG\npumas NNS\npummel VB\npummeled VBD\npummeling NN\npump VB\npump-action JJ\npump-priming NN\npumped VBN\npumped-up JJ\npumping VBG\npumpkin NN\npumps NNS\npun NN\npunch NN\npunchbowl NN\npunched VBD\npunched-card JJ\npuncher NN\npunchers NNS\npunches NNS\npunching VBG\npunchy JJ\npunctuality NN\npunctually RB\npunctuated VBN\npunctuation NN\npunctured JJ\npuncturing VBG\npunditry NN\npundits NNS\npungency NN\npungent JJ\npungently RB\npunish VB\npunishable JJ\npunished VBN\npunishes VBZ\npunishing VBG\npunishment NN\npunishments NNS\npunitive JJ\npunk NN\npunks NNS\npunky JJ\npunning VBG\npunnished VBD\npuns NNS\npunster NN\npunt NN\npunted VBD\npunters NNS\npunts NNS\npuny JJ\npup NN\npupated VBN\npupates VBZ\npupil NN\npupils NNS\npuppet NN\npuppeteers NNS\npuppets NNS\npuppies NNS\npuppy NN\npuppyish JJ\npups NNS\npur-poises NNS\npurchase NN\npurchase-and-lease JJ\npurchased VBN\npurchaser NN\npurchasers NNS\npurchases NNS\npurchasing VBG\npure JJ\npure-meat NN\npure-voiced JJ\npurely RB\npurest JJS\npurgation NN\npurgatory NN\npurge NN\npurged VBN\npurges VBZ\npurging VBG\npurhasing NN\npurification NN\npurified VBN\npurifier NN\npurifiers NNS\npurify VB\npurifying VBG\npurism NN\npurists NNS\npuritan JJ\npuritanical JJ\npurity NN\npurled VBD\npurling VBG\npurloined VBN\npurple JJ\npurple-black JJ\npurpling VBG\npurport VBP\npurported JJ\npurportedly RB\npurporting VBG\npurports VBZ\npurpose NN\npurpose... :\npurposed VBN\npurposeful JJ\npurposefully RB\npurposeless JJ\npurposely RB\npurposes NNS\npurposive JJ\npurposively RB\npurring VBG\npurrs VBZ\npurse NN\npurse-snatchings NNS\npursed VBD\npurses NNS\npursuant JJ\npursue VB\npursued VBN\npursuer NN\npursuers NNS\npursues VBZ\npursuing VBG\npursuit NN\npursuits NNS\npurtiest JJS\npurveyor NN\npurveyors NNS\npurview NN\npush VB\npush-button JJ\npush-offs NNS\npush-up NN\npush-ups NNS\npushed VBD\npushers NNS\npushes VBZ\npushin NN\npushing VBG\npushover NN\npushups NNS\npushy JJ\npusillanimity NN\npussy NN\npussy-willow NN\npussycat NN\nput VB\nput-option NN\nput-upon JJ\nputains FW\nputative JJ\nputout NN\nputs VBZ\nputt NN\nputtable JJ\nputted VBD\nputter NN\nputtered VBD\nputtering VBG\nputting VBG\nputty NN\nputty-like JJ\npuzzle NN\npuzzled VBN\npuzzlement NN\npuzzler NN\npuzzles NNS\npuzzling JJ\npvt NN\npygmies NNS\npyknotic JJ\npylons NNS\npynte NN\npyocanea NN\npyorrhea NN\npyramid NN\npyramid-shaped JJ\npyramidal JJ\npyramiding VBG\npyramids NNS\npyre NN\npyrometer NN\npyrometers NNS\npyrophosphate NN\npyrotechnic JJ\npyschiatrist NN\npython NN\npythons NNS\nqua FW\nquack NN\nquacked VBD\nquackery NN\nquacks NNS\nquadratic JJ\nquadrennial JJ\nquadric NN\nquadriceps NNS\nquadrillion CD\nquadrillionth NN\nquadripartite JJ\nquadrupeds NNS\nquadruple VB\nquadrupled VBN\nquadruples VBZ\nquadrupling VBG\nquagmire NN\nquailing VBG\nquaint JJ\nquaintly RB\nquake NN\nquake-displaced JJ\nquake-hit JJ\nquake-inflicted JJ\nquake-prone JJ\nquake-related JJ\nquake-relief JJ\nquake-shocked JJ\nquake-torn JJ\nquakes NNS\nquaking VBG\nqualification NN\nqualifications NNS\nqualified VBN\nqualifies VBZ\nqualify VB\nqualifying VBG\nqualitative JJ\nqualitatively RB\nqualities NNS\nquality NN\nquality-adjusted JJ\nquality-conscious JJ\nquality-control NN\nquality-improvement NN\nqualms NNS\nquam FW\nquandary NN\nquantification NN\nquantified VBN\nquantify VB\nquantitative JJ\nquantitatively RB\nquantities NNS\nquantitive JJ\nquantity NN\nquantity-based JJ\nquantum NN\nquarantine VB\nquarrel NN\nquarreled VBD\nquarreling VBG\nquarrels NNS\nquarrelsome JJ\nquarry NN\nquarrymen NNS\nquart NN\nquarter NN\nquarter-by-quarter JJ\nquarter-century NN\nquarter-century-old JJ\nquarter-inch JJ\nquarter-mile NN\nquarter-million-dollar JJ\nquarter-moon NN\nquarter-of-a-century JJ\nquarter-point NN\nquarter-to-quarter JJ\nquarterback NN\nquarterbacks NNS\nquarterly JJ\nquarters NNS\nquartet NN\nquartets NNS\nquarts NNS\nquartz NN\nquartzite-quarrying NN\nquash VB\nquashed VBD\nquashing VBG\nquasi-federal JJ\nquasi-folk JJ\nquasi-governmental JJ\nquasi-mechanistic JJ\nquasi-monopolistic JJ\nquasi-parliamentary\\/judicial JJ\nquasi-performer NN\nquasi-private JJ\nquasi-public JJ\nquasi-recitative JJ\nquasi-religious JJ\nquasi-tax JJ\nquasi-xenophobic JJ\nquasisports NNS\nquatrain NN\nquaver NN\nquavered VBD\nquavering VBG\nque FW\nqueasily RB\nqueasiness NN\nqueen NN\nqueens NNS\nqueenside NN\nqueer JJ\nqueerer JJR\nqueerest JJS\nqueers NNS\nquell VB\nquelling NN\nquench VB\nquenching NN\nqueried VBN\nqueries NNS\nquerulous JJ\nquerulously RB\nquery NN\nquerying VBG\nquest NN\nquestion NN\nquestion-and-answer JJ\nquestion... :\nquestionable JJ\nquestionably RB\nquestionaire NN\nquestioned VBD\nquestioner NN\nquestioners NNS\nquestioning VBG\nquestioningly RB\nquestionnaire NN\nquestionnaires NNS\nquestions NNS\nquests NNS\nquetzal NN\nqueue NN\nqueued JJ\nqueues NNS\nqueuing VBG\nqui FW\nquibble VB\nquibbling VBG\nquibs NNS\nquibusdam FW\nquick JJ\nquick-drying JJ\nquick-fired VBN\nquick-fix JJ\nquick-frozen VBN\nquick-handling JJ\nquick-kill JJ\nquick-service JJ\nquick-tempered JJ\nquick-to-prepare JJ\nquicken VB\nquickened VBD\nquickening VBG\nquicker JJR\nquickest JJS\nquickie NN\nquickly RB\nquickness NN\nquicksand NN\nquicksilver JJ\nquickstep NN\nquickwitted JJ\nquid FW\nquid-pro-quo JJ\nquiescent JJ\nquiet JJ\nquiet-spoken JJ\nquieted VBD\nquieter JJR\nquieting VBG\nquietly RB\nquietness NN\nquill NN\nquill-pen JJ\nquilt NN\nquilted JJ\nquince NN\nquinine NN\nquinolone NN\nquintessential JJ\nquintet NN\nquintets NNS\nquintillion CD\nquintuple RB\nquip NN\nquipped VBD\nquipping VBG\nquips VBZ\nquirk NN\nquirking VBG\nquirks NNS\nquirky JJ\nquirt NN\nquisling NN\nquit VB\nquite RB\nquite-comfortable JJ\nquite-literal JJ\nquits VBZ\nquitting VBG\nquivered VBD\nquivering VBG\nquivers NNS\nquixotic JJ\nquiz NN\nquizzed VBD\nquizzical JJ\nquo FW\nquok FW\nquorum NN\nquota NN\nquota-breakers NNS\nquota-cheaters NNS\nquota-increase JJ\nquota-trained JJ\nquotas NNS\nquotation NN\nquotations NNS\nquote VB\nquoted VBN\nquotes NNS\nquoting VBG\nr NN\nr-Revised VBN\nr.p.m. NN\nrabbi NN\nrabbinical JJ\nrabbit NN\nrabbit-test JJ\nrabbits NNS\nrabble NN\nrabid JJ\nraccoon NN\nraccoon-skin JJ\nraccoons NNS\nrace NN\nrace-based JJ\nrace-car NN\nrace-driver NN\nrace-drivers NNS\nrace... :\nraced VBD\nracehorse NN\nracehorses NNS\nracers NNS\nraces NNS\nracetrack NN\nracetracks NNS\nraceway NN\nracial JJ\nracial-minority JJ\nracial-preference NN\nracially RB\nracing VBG\nracism NN\nracist JJ\nracists NNS\nrack NN\nracked VBN\nracket NN\nracketeer NN\nracketeering NN\nracketeers NNS\nrackets NNS\nrackety JJ\nracking VBG\nracks NNS\nracoons NNS\nracy JJ\nradar NN\nradar-controlled JJ\nradar-eluding VBG\nradar-threat JJ\nradar-type JJ\nradar. NN\nradars NNS\nraddled VBN\nradial JJ\nradiance NN\nradiant JJ\nradiate VB\nradiated VBD\nradiates VBZ\nradiating VBG\nradiation NN\nradiation-produced JJ\nradiation-protection JJ\nradiations NNS\nradiator NN\nradiators NNS\nradical JJ\nradical-moderate JJ\nradicalism NN\nradicalized VBN\nradically RB\nradicals NNS\nradii NNS\nradio NN\nradio-TV JJ\nradio-cassette NN\nradio-controlled JJ\nradio-location NN\nradio-pharmaceutical JJ\nradio-show JJ\nradio-station NN\nradioactive JJ\nradioactivity NN\nradiocarbon NN\nradiochlorine NN\nradioclast NN\nradioed JJ\nradiography NN\nradioing VBG\nradiomen NNS\nradionic JJ\nradiopasteurization NN\nradiopharmaceutical JJ\nradiophonic JJ\nradios NNS\nradiosterilization NN\nradiosterilized VBN\nradish NN\nradius NN\nradon NN\nrads NNS\nraffish JJ\nraft NN\nraftered VBN\nrafters NNS\nrafts NNS\nrag NN\nrage NN\nraged VBD\nrages VBZ\nragged JJ\nraggedness NN\nragging VBG\nraging VBG\nrags NNS\nragtime NN\nraid NN\nraided VBN\nraider NN\nraiders NNS\nraiding VBG\nraids NNS\nrail NN\nrail-car NN\nrail-equipment JJ\nrail-mobile JJ\nrail-passenger NN\nrail-traffic JJ\nrailbed NN\nrailbike NN\nrailbiker NN\nrailbikers NNS\nrailbikes NNS\nrailbiking NN\nrailbirds NNS\nrailcar NN\nrailcars NNS\nrailed VBD\nrailhead NN\nrailing NN\nrailings NNS\nraillery NN\nrailroad NN\nrailroad-holding JJ\nrailroader NN\nrailroading VBG\nrailroads NNS\nrails NNS\nrailway NN\nrailway-based JJ\nrailways NNS\nraiment NN\nrain NN\nrain-slick JJ\nrainbow NN\nrainbow-hued JJ\nrainbows NNS\nraincoats NNS\nraindrops NNS\nrained VBD\nrainfall NN\nrainier JJR\nraining VBG\nrainless JJ\nrainout NN\nrains NNS\nrainstorm NN\nrainwater NN\nrainy JJ\nraise VB\nraised VBN\nraiser NN\nraisers NNS\nraises VBZ\nraisin NN\nraising VBG\nraison FW\nraj NN\nrajah NN\nrake NN\nraked VBD\nraking VBG\nrakish JJ\nrakishly RB\nraku NN\nrallied VBD\nrallies NNS\nrally NN\nrallying VBG\nram VB\nramble VB\nrambled VBD\nrambles VBZ\nrambling NN\nramblings NNS\nrambunctious JJ\nramification NN\nramifications NNS\nrammed VBD\nramming VBG\nramp NN\nrampage NN\nrampancy NN\nrampant JJ\nrampart NN\nramparts NNS\nramps NNS\nramrod-stiff JJ\nramrod-straight JJ\nramshackle JJ\nran VBD\nranch NN\nrancher NN\nranchers NNS\nranches NNS\nrancho NN\nrancid JJ\nrancidity NN\nrancor NN\nrancorous JJ\nrand NN\nrandom JJ\nrandom-access JJ\nrandom-storage JJ\nrandom-walk JJ\nrandomization NN\nrandomly RB\nrandomness NN\nrang VBD\nrange NN\nranged VBD\nrangelands NNS\nranger NN\nrangers NNS\nranges NNS\nranging VBG\nrangy JJ\nrank NN\nrank-and-file JJ\nranked VBD\nrankest JJS\nranking JJ\nrankings NNS\nrankled VBN\nrankles VBZ\nranks NNS\nransack VB\nransacked VBN\nransacking VBG\nransom NN\nrant VBP\nranted VBD\nrap NN\nrapacious JJ\nrape NN\nrape-and-incest JJ\nraped VBN\nrapers NNS\nrapes NNS\nrapeseed NN\nrapeseeds NNS\nrapid JJ\nrapid-fire JJ\nrapid-transit JJ\nrapidement FW\nrapidity NN\nrapidly RB\nrapidly-diminishing JJ\nrapier NN\nraping VBG\nrapist NN\nrapists NNS\nrapped VBD\nrapping NN\nrapport NN\nrapprochement NN\nrapt JJ\nraptor NN\nraptors NNS\nrapture NN\nraptures NNS\nrare JJ\nrarefied VBN\nrarely RB\nrarer JJR\nrarest JJS\nrarified JJ\nraring JJ\nrarities NNS\nrarity NN\nrasa NN\nrascal NN\nrascals NNS\nrash NN\nrasp NN\nraspberry JJ\nrasped VBD\nrasping JJ\nrasps NNS\nraspy NN\nrat NN\nrat-a-tat-tat JJ\nrat-a-tat-tatty JJ\nrat-holes NNS\nrata FW\nratable JJ\nratchet VB\nratcheting VBG|NN\nrate NN\nrate-IRA NN\nrate-increase JJ\nrate-making JJ\nrate-mortgages NNS\nrate-of-return JJ\nrate-sensitive JJ\nrate-slashing JJ\nrate-tightening JJ\nrate-watchers NNS\nrate... :\nrateable JJ\nrated VBN\nratepayers NNS\nrates NNS\nrather RB\nratification NN\nratified VBD\nratifiers NNS\nratifies VBZ\nratify VB\nratifying VBG\nrating NN\nratings NNS\nratings-getter NN\nratio NN\nratiocinating JJ\nration NN\nrational JJ\nrationale NN\nrationalism NN\nrationalist JJ\nrationalistic JJ\nrationality NN\nrationalization NN\nrationalizations NNS\nrationalize VB\nrationalized JJ\nrationalizing VBG\nrationally RB\nrationed VBN\nrationing NN\nrations NNS\nratios NNS\nrator NN\nrats NNS\nrattail NN\nrattle NN\nrattled VBN\nrattler NN\nrattlers NNS\nrattles VBZ\nrattlesnake NN\nrattlesnakes NNS\nrattling VBG\nratty JJ\nraucous JJ\nraucously RB\nravaged VBN\nravages NNS\nravaging VBG\nrave VBP\nraved VBD\nravenous JJ\nraves VBZ\nravines NNS\nraving VBG\nravings NNS\nraw JJ\nraw-material NN\nraw-materials NNS\nraw-sugar JJ\nrawboned JJ\nrawhide NN\nray NN\nrayon NN\nrays NNS\nrazed VBN\nrazing VBG\nrazor NN\nrazor-edged JJ\nrazor-sharp JJ\nrazor-thin JJ\nrazorback NN\nrazors NNS\nrbi NNS\nre NN\nre-acquire VB\nre-activate VB\nre-adopt NN\nre-animated JJ\nre-animates VBZ\nre-arguing VBG\nre-assumed VBN\nre-creactions NNS\nre-create VB\nre-created JJ\nre-creates VBZ\nre-creating NN\nre-creation NN\nre-creations NNS\nre-declared VBD\nre-echo VB\nre-edited VBN\nre-educate VB\nre-education NN\nre-elected VBN\nre-election NN\nre-emerge VB\nre-emerged VBD\nre-emergence NN\nre-emphasis NN\nre-emphasise VB\nre-emphasize VB\nre-emphasizing VBG\nre-enact VB\nre-enacted VBN\nre-enacting VBG\nre-enactment NN\nre-enactments NNS\nre-energized JJ\nre-enforces VBZ\nre-engineered VBD\nre-enter VB\nre-entered VBD\nre-entering VBG\nre-entry NN\nre-establish VB\nre-established VBD\nre-establishing VBG\nre-establishment NN\nre-evaluate VB\nre-evaluating JJ\nre-evaluation NN\nre-examination NN\nre-examine VB\nre-examined VBD\nre-examines VBZ\nre-examining VBG\nre-explore VB\nre-export NN\nre-exports NNS\nre-incorporated VBN\nre-incorporation NN\nre-injecting JJ\nre-instated VBN\nre-insure VB\nre-introduction NN\nre-invested JJ\nre-investment NN\nre-legalization VB\nre-living NN\nre-marketing NN\nre-moralizing VBG\nre-open VB\nre-opening VBG\nre-order JJ\nre-oriented VBN\nre-paid VBD\nre-rated VBN\nre-regulation NN\nre-rescue VB\nre-run VBN\nre-runs NNS\nre-scheduled VBN\nre-set VB\nre-sharpening NN\nre-supplied VBN\nre-thinking VBG\nre-thought JJ\nre-use VB\nre-used VBN\nre-vision NN\nreaccelerate VB\nreaccelerating VBG\nreacceleration NN\nreach VB\nreached VBN\nreaches VBZ\nreaching VBG\nreacquainted VBN\nreacquire VB\nreacquired VBN\nreacquisition NN\nreact VB\nreactants NNS\nreacted VBD\nreacting VBG\nreaction NN\nreactionaries NNS\nreactionary JJ\nreactions NNS\nreactivated VBN\nreactivity NN\nreactor NN\nreactors NNS\nreacts VBZ\nread VB\nread-my-lips JJ\nread-only JJ\nreadable JJ\nreadapting VBG\nreader NN\nreader-friendly JJ\nreaders NNS\nreadership NN\nreadied VBN\nreadily RB\nreadiness NN\nreading NN\nreading-rooms NNS\nreadings NNS\nreadjust VB\nreadjusted VBN\nreadjustment NN\nreadjustments NNS\nreadmit VB\nreadmitted VBN\nreads VBZ\nready JJ\nready-made JJ\nready-to-eat JJ\nready-to-wear JJ\nreadying VBG\nreaffirm VB\nreaffirmation NN\nreaffirmed VBD\nreaffirming VBG\nreaffirms VBZ\nreagent NN\nreagents NNS\nreal JJ\nreal-analytic JJ\nreal-estate NN\nreal-estate-asset JJ\nreal-estate-investment NN\nreal-estate-related JJ\nreal-life JJ\nreal-time JJ\nreal-world JJ\nrealer JJR\nrealest JJS\nrealestate NN\nrealign VB\nrealign... :\nrealigned VBD\nrealigning VBG\nrealignment NN\nrealignments NNS\nrealism NN\nrealismo FW\nrealist NN\nrealistic JJ\nrealistically RB\nrealists NNS\nrealities NNS\nreality NN\nreality-based JJ\nrealization NN\nrealize VB\nrealized VBD\nrealizes VBZ\nrealizing VBG\nreallocate VB\nreallocated VBN\nreallocating VBG\nreally RB\nrealm NN\nrealms NNS\nrealness NN\nrealtor NN\nrealtors NNS\nrealty NN\nreams NNS\nreap VB\nreaped VBN\nreaper NN\nreaping VBG\nreappear VBP\nreappearance NN\nreappeared VBD\nreappearing VBG\nreappears VBZ\nreappointed VBN\nreapportion VBP\nreapportioned VBN\nreapportionment NN\nreappraisal NN\nreappraisals NNS\nreappraise VB\nreappraised VBD\nreappraising VBG\nreaps VBZ\nrear JJ\nrear-guard JJ\nrear-looking JJ\nrear-seat NN\nreared VBD\nrearguard NN\nrearing VBG\nrearm VB\nrearmed JJ\nrearrange VB\nrearranged VBD\nrearrangement NN\nrearrangements NNS\nrearranges VBZ\nrearranging VBG\nrears VBZ\nrearview NN\nreasearch NN\nreason NN\nreasonable JJ\nreasonably RB\nreasoned VBD\nreasoning NN\nreasons NNS\nreassemble VB\nreassembled VBN\nreassert VB\nreasserting VBG\nreasserts VBZ\nreassess VB\nreassessed VBD\nreassessing VBG\nreassessment NN\nreassign VB\nreassigned VBN\nreassignment NN\nreassignments NNS\nreassume VB\nreassumed VBN\nreassurance NN\nreassurances NNS\nreassure VB\nreassured VBN\nreassuring VBG\nreassuringly RB\nreattached VBN\nreauthorization NN\nreauthorize VB\nreauthorized VBN\nreawaken VB\nreawakening VBG\nrebalance VB\nrebalanced VBN\nrebalancing VBG\nrebate NN\nrebated VBN\nrebates NNS\nrebel NN\nrebelled VBD\nrebelling VBG\nrebellion NN\nrebellions NNS\nrebellious JJ\nrebelliously RB\nrebels NNS\nrebirth NN\nreborn VBN\nrebound NN\nrebounded VBD\nrebounding VBG\nrebounds VBZ\nrebuff NN\nrebuffed VBN\nrebuffing VBG\nrebuild VB\nrebuilder NN\nrebuilding VBG\nrebuilds VBZ\nrebuilt VBN\nrebuke VB\nrebuked VBD\nrebut VB\nrebuts VBZ\nrebuttal NN\nrebuttals NNS\nrebutted VBN\nrec NN\nrecalcitrant JJ\nrecalculated VBD\nrecalculating VBG\nrecalculation NN\nrecalculations NNS\nrecall VB\nrecalled VBD\nrecalling VBG\nrecalls VBZ\nrecantation NN\nrecanted VBD\nrecapitalization NN\nrecapitalizations NNS\nrecapitalize VB\nrecapitalized VBN\nrecapitalizing VBG\nrecapitulate VB\nrecapitulation NN\nrecaptilization NN\nrecapture VB\nrecaptured VBN\nrecapturing VBG\nrecast VB\nrecede VBP\nreceded VBD\nreceding VBG\nreceipt NN\nreceipts NNS\nreceivable JJ\nreceivables NN\nreceive VB\nreceived VBD\nreceiver NN\nreceivers NNS\nreceivership NN\nreceives VBZ\nreceiving VBG\nrecent JJ\nrecently RB\nrecently-announced JJ\nrecently-filed JJ\nrecently-passed JJ\nrecentralized VBN\nrecentralizing VBG\nreceptacle NN\nreception NN\nreceptionist NN\nreceptionists NNS\nreceptions NNS\nreceptive JJ\nreceptivity NN\nreceptor NN\nreceptors NNS\nrecess NN\nrecessed VBN\nrecession NN\nrecession-free JJ\nrecession-inspired JJ\nrecession-oriented JJ\nrecession-plagued JJ\nrecession-proof JJ\nrecession-resistant JJ\nrecession-sensitive JJ\nrecession-wary JJ\nrecessionary JJ\nrecessions NNS\nrecharge NN\nrechargeable JJ\nrecharged VBN\nrecharging VBG\nrechartering VBG\nrecheck VBP\nrechristening VBG\nrechristens VBZ\nrecipe NN\nrecipes NNS\nrecipient JJ\nrecipients NNS\nreciprocal JJ\nreciprocate VB\nreciprocates VBZ\nreciprocity NN\nrecit FW\nrecital NN\nrecitals NNS\nrecitation NN\nrecitations NNS\nrecitative NN\nrecite VB\nrecited VBD\nrecites VBZ\nreciting VBG\nreckless JJ\nreckless-endangerment NN\nrecklessly RB\nrecklessness NN\nreckon VBP\nreckoned VBN\nreckoning NN\nreckonings NNS\nreckons VBZ\nreclaim VB\nreclaimed VBN\nreclaiming VBG\nreclaims VBZ\nreclamation NN\nreclassification NN\nreclassified VBD\nrecliner NN\nreclining VBG\nrecluse NN\nreclusive JJ\nrecoated VBN\nrecognised VBD\nrecognition NN\nrecognitions NNS\nrecognizable JJ\nrecognizably RB\nrecognizance NN\nrecognize VB\nrecognized VBN\nrecognizes VBZ\nrecognizing VBG\nrecoil NN\nrecoiled VBD\nrecoilless JJ\nrecollect VBP\nrecollected VBD\nrecollection NN\nrecollections NNS\nrecollectivization NN\nrecombinant JJ\nrecombinant-DNA NN\nrecombination NN\nrecommence VB\nrecommend VB\nrecommendation NN\nrecommendations NNS\nrecommendatons NNS\nrecommended VBD\nrecommending VBG\nrecommends VBZ\nrecompence NN\nrecompense NN\nreconceptualization NN\nreconcilable JJ\nreconcile VB\nreconciled VBN\nreconciles VBZ\nreconciliation NN\nreconciliations NNS\nreconciling VBG\nrecond VBD\nrecondite JJ\nreconditioning VBG\nreconfiguration NN\nreconfigure NN\nreconfirm VB\nreconfirmation NN\nreconfirming VBG\nreconnaissanace NN\nreconnaissance NN\nreconnect VB\nreconnoiter VBP\nreconsider VB\nreconsideration NN\nreconsidered VBN\nreconsidering VBG\nreconstitute VB\nreconstituting VBG\nreconstruct VB\nreconstructed JJ\nreconstructing VBG\nreconstruction NN\nreconstructions NNS\nreconstructs VBZ\nrecontamination NN\nreconvened VBN\nreconvenes VBZ\nreconvention NN\nreconverting VBG\nrecooned VBD\nrecopied VBN\nrecord NN\nrecord-breaking JJ\nrecord-high JJ\nrecord-keeping NN\nrecord-tying JJ\nrecorded VBN\nrecorded-music JJ\nrecorder NN\nrecorders NNS\nrecorders. NNS\nrecording NN\nrecording-company NN\nrecordings NNS\nrecordkeeping NN\nrecords NNS\nrecork VB\nrecount VB\nrecounted VBD\nrecounting VBG\nrecounts VBZ\nrecoup VB\nrecouped VBD\nrecouping VBG\nrecourse NN\nrecover VB\nrecoverability NN\nrecoverable JJ\nrecovered VBD\nrecoveries NNS\nrecovering VBG\nrecovers VBZ\nrecovery NN\nrecovery-program NN\nrecraft VB\nrecreate VB\nrecreated VBN\nrecreates VBZ\nrecreating VBG\nrecreation NN\nrecreational JJ\nrecreational-vehicle NN\nrecrimination NN\nrecriminations NNS\nrecruit VB\nrecruited VBN\nrecruiter NN\nrecruiting VBG\nrecruitment NN\nrecruits NNS\nrectangle NN\nrectangles NNS\nrectangular JJ\nrectification NN\nrectified VBN\nrectifier NN\nrectify VB\nrectifying VBG\nrectilinear JJ\nrectitude NN\nrectlinearly RB\nrector NN\nrectum NN\nrecumbent JJ\nrecuperate VB\nrecuperating VBG\nrecuperation NN\nrecur VB\nrecurred VBD\nrecurrence NN\nrecurrences NNS\nrecurrent JJ\nrecurrently RB\nrecurring VBG\nrecursive JJ\nrecusant NN\nrecused VBN\nrecut JJ\nrecyclability NN\nrecyclable JJ\nrecycle VB\nrecycled VBN\nrecycler NN\nrecycles VBZ\nrecycling NN\nred JJ\nred-and-white JJ\nred-and-yellow JJ\nred-bellied JJ\nred-blood JJ\nred-blooded JJ\nred-brick JJ\nred-carpet JJ\nred-cheeked JJ\nred-clay NN\nred-faced JJ\nred-figured JJ\nred-flag VB\nred-frocked JJ\nred-haired JJ\nred-handed JJ\nred-light JJ\nred-necked JJ\nred-rimmed JJ\nred-tailed JJ\nred-tape NN\nred-tile JJ\nred-tipped JJ\nred-turbaned JJ\nred-visored JJ\nred-white-and-blue JJ\nredactions NNS\nredactor NN\nredcoat NN\nredcoats NNS\nreddened VBD\nredder JJR\nreddish JJ\nredecorated VBN\nredecorating VBG\nredecoration NN\nrededicate VB\nrededicating VBG\nredeem VB\nredeemable JJ\nredeemded VBN\nredeemed VBN\nredeemin VBG\nredeeming VBG\nredeems VBZ\nredefine VB\nredefined VBD\nredefining VBG\nredefinition NN\nredelivered VBN\nredemption NN\nredemptions NNS\nredemptive JJ\nredeploy VB\nredeployment NN\nredeposition NN\nredesign NN\nredesignation NN\nredesigned VBN\nredesigning VBG\nredevelop VB\nredevelopers NNS\nredevelopment NN\nredfish NN\nredhead NN\nredheaded JJ\nredheader NN\nredheads NNS\nredial VB\nredirect VB\nredirected VBN\nredirecting VBG\nredirection NN\nrediscover VB\nrediscovered VBN\nrediscovering VBG\nrediscovery NN\nredistribute VB\nredistributed VBN\nredistributes VBZ\nredistributing VBG\nredistribution NN\nredistributionism NN\nredistributionist NN\nredistributive JJ\nredistricting VBG\nredlining VBG\nredneck NN\nrednecks NNS\nredo VB\nredoing VBG\nredone JJ\nredouble VB\nredoubled VBN\nredoubling VBG\nredoubt NN\nredound VB\nredounds VBZ\nredraw VB\nredrawn JJ\nredress VB\nredressed VBN\nreds NNS\nreduce VB\nreduced VBN\nreduced-fat JJ\nreduced-instruction NN\nreduced-instruction-set-computer JJ\nreducer NN\nreduces VBZ\nreducing VBG\nreduction NN\nreductions NNS\nredundancies NNS\nredundancy NN\nredundant JJ\nredwood NN\nredwoods NNS\nreedbuck NN\nreeds NNS\nreedy JJ\nreef NN\nreefs NNS\nreek VBP\nreeked VBD\nreeking VBG\nreel NN\nreelected VBN\nreelection NN\nreeled VBD\nreeling VBG\nreemerged VBD\nreemphasizes VBZ\nreenact VB\nreentered VBD\nreestablish VB\nreevaluation NN\nreexamination NN\nreexamine VB\nreexamining VBG\nrefashion NN\nrefashioning VBG\nrefectories NNS\nrefer VB\nreferee NN\nreferees NNS\nreference NN\nreference-points NNS\nreferences NNS\nreferenda NN\nreferendum NN\nreferent NN\nreferral NN\nreferrals NNS\nreferred VBN\nreferrin VBG\nreferring VBG\nrefers VBZ\nrefight VB\nrefile VB\nrefill NN\nrefillable JJ\nrefilled VBN\nrefinance VB\nrefinanced VBN\nrefinancing NN\nrefinancings NNS\nrefine VB\nrefined JJ\nrefined-petroleum-products JJ\nrefinement NN\nrefinements NNS\nrefiner NN\nrefineries NNS\nrefiners NNS\nrefinery NN\nrefining NN\nrefitting VBG\nreflect VB\nreflectance NN\nreflectance-measuring JJ\nreflected VBD\nreflecting VBG\nreflection NN\nreflections NNS\nreflective JJ\nreflector NN\nreflectors NNS\nreflects VBZ\nreflex NN\nreflexes NNS\nreflexively RB\nreflexly RB\nrefocus VB\nrefocused VBD\nrefocuses VBZ\nrefocusing NN\nrefolded VBD\nreforestation NN\nreform NN\nreform-minded JJ\nreformation NN\nreformatory NN\nreformed VBN\nreformer JJ\nreformers NNS\nreforming VBG\nreformism NN\nreformist NN\nreformists NNS\nreforms NNS\nreformulated VBN\nreformulation NN\nrefracted VBD\nrefraction NN\nrefractive JJ\nrefractories NNS\nrefractory JJ\nrefrain VB\nrefrained VBD\nrefraining VBG\nrefresh VBP\nrefreshed JJ\nrefresher NN\nrefreshing JJ\nrefreshingly RB\nrefreshment NN\nrefreshments NNS\nrefrigerant NN\nrefrigerated VBN\nrefrigeration NN\nrefrigerator NN\nrefrigerators NNS\nrefuel VB\nrefueling NN\nrefuge NN\nrefugee NN\nrefugee-assistance NN\nrefugees NNS\nrefund NN\nrefundable JJ\nrefunded VBN\nrefunding VBG\nrefunds NNS\nrefurbish VB\nrefurbished VBN\nrefurbishing VBG\nrefurbishment NN\nrefurnished VBN\nrefusal NN\nrefuse VB\nrefuse-littered JJ\nrefused VBD\nrefusers NNS\nrefuses VBZ\nrefusing VBG\nrefute VB\nrefuted VBD\nregain VB\nregained VBD\nregaining VBG\nregains VBZ\nregal JJ\nregaled VBD\nregalia NNS\nregard NN\nregarded VBN\nregarding VBG\nregardless RB\nregards VBZ\nregattas NNS\nregenerate VB\nregenerates VBZ\nregenerating VBG\nregeneration NN\nregents NNS\nreggae NN\nreggae-and-rock JJ\nregi FW\nregime NN\nregimen NN\nregiment NN\nregimentation NN\nregimented VBN\nregiments NNS\nregimes NNS\nregion NN\nregion-by-region JJ\nregional JJ\nregionalism JJ\nregionally RB\nregionals NNS\nregions NNS\nregister VB\nregistered VBN\nregistering VBG\nregisters NNS\nregistrant NN\nregistrants NNS\nregistrar NN\nregistration NN\nregistrations NNS\nregistries NNS\nregistry NN\nregress VB\nregression NN\nregressive JJ\nregret VBP\nregrets VBZ\nregrettable JJ\nregrettably RB\nregretted VBD\nreground JJ\nregroup VB\nregrouped VBD\nregrouping NN\nregular JJ\nregular-featured JJ\nregular-season JJ\nregularity NN\nregularly RB\nregulars NNS\nregulate VB\nregulated VBN\nregulates VBZ\nregulating VBG\nregulation NN\nregulation-writing JJ\nregulation\\/deregulation NN\nregulations NNS\nregulative JJ\nregulator NN\nregulators NNS\nregulatory JJ\nreguli NNS\nregulus NN\nregummed VBD\nregurgitated VBD\nregurgitating VBG\nrehabilitate VB\nrehabilitated VBN\nrehabilitating VBG\nrehabilitation NN\nrehabilitations NNS\nreharmonization NN\nrehash NN\nrehashed VBD\nrehashing VBG\nrehear VB\nrehearing NN\nrehearsal NN\nrehearsals NNS\nrehearse VB\nrehearsed VBN\nrehearsing VBG\nreign NN\nreigned VBD\nreigning VBG\nreignite VB\nreignited VBD\nreigniting VBG\nreigns VBZ\nreimburse VB\nreimburseable JJ\nreimbursed VBN\nreimbursement NN\nreimbursements NNS\nreimburses VBZ\nreimbursing VBG\nreimpose VB\nrein VB\nreinbursement NN\nreincarcerated VBN\nreincarnated VBD\nreincorporated VBN\nreincorporating VBG\nreindicting VBG\nreined VBD\nreinforce VB\nreinforced VBN\nreinforced-fiberglass JJ\nreinforcement NN\nreinforcements NNS\nreinforces VBZ\nreinforcing VBG\nreining VBG\nreinman NN\nreins NNS\nreinstall VB\nreinstalled VBN\nreinstate VB\nreinstated VBD\nreinstatement NN\nreinstating VBG\nreinstituting VBG\nreinstitution NN\nreinsurance NN\nreinsure VB\nreinsured VBN\nreinsurer JJR\nreinsurers NNS\nreinsuring VBG\nreintegrated VBN\nreinterpret VB\nreinterpretation NN\nreinterpreted VBN\nreinterpreting VBG\nreintroduce VBP\nreintroduced VBN\nreintroduces VBZ\nreintroducing VBG\nreinvent VB\nreinvented VBD\nreinvest VB\nreinvested VBN\nreinvestigating VBG\nreinvestigation NN\nreinvesting VBG\nreinvestment NN\nreinvigorate VB\nreinvigorated VBN\nreinvigorating VBG\nreinvigoration NN\nreipublicae FW\nreissue NN\nreiterate VB\nreiterated VBD\nreiterates VBZ\nreiterating VBG\nreiteration NN\nreject VB\nrejected VBD\nrejecting VBG\nrejection NN\nrejections NNS\nrejects VBZ\nrejiggering VBG\nrejoice VBP\nrejoiced VBD\nrejoices VBZ\nrejoicing VBG\nrejoin VB\nrejoinder NN\nrejoined VBD\nrejoining VBG\nrejoins VBZ\nrejuvenate VB\nrejuvenated VBN\nrejuvenates VBZ\nrejuvenation NN\nrekindle VB\nrekindled VBN\nrekindles VBZ\nrekindling VBG\nrelabeling VBG\nrelapse NN\nrelapsed VBD\nrelate VBP\nrelated VBN\nrelatedness NN\nrelates VBZ\nrelating VBG\nrelation NN\nrelation-back JJ\nrelational JJ\nrelations NNS\nrelationship NN\nrelationship-building NN\nrelationships NNS\nrelative JJ\nrelative-performance JJ\nrelatively RB\nrelatives NNS\nrelativism NN\nrelativist NN\nrelativistic JJ\nrelativity NN\nrelatonship NN\nrelaunch VB\nrelaunched VBN\nrelax VB\nrelaxation NN\nrelaxed VBN\nrelaxer NN\nrelaxes VBZ\nrelaxing VBG\nrelay VB\nrelayed VBD\nrelaying VBG\nrelearns VBZ\nrelease NN\nreleased VBN\nreleases NNS\nreleasing VBG\nrelegated VBN\nrelegating VBG\nrelent VBP\nrelented VBD\nrelenting VBG\nrelentless JJ\nrelentlessly RB\nrelentlessness NN\nrelevance NN\nrelevancy NN\nrelevant JJ\nreliability NN\nreliable JJ\nreliables NNS\nreliably RB\nreliance NN\nreliant JJ\nrelic NN\nrelicensing NN\nrelics NNS\nrelict NN\nrelied VBN\nrelief NN\nreliefs NNS\nrelies VBZ\nrelieve VB\nrelieved VBN\nreliever NN\nrelieves VBZ\nrelieving VBG\nreligion NN\nreligionists NNS\nreligions NNS\nreligiosity NN\nreligious JJ\nreligious-right NN\nreligiously RB\nreligiousness NN\nrelinquish VB\nrelinquished VBD\nrelinquishing VBG\nrelish NN\nrelished VBD\nrelishes VBZ\nrelishing VBG\nrelisting NN\nrelive VBP\nrelives VBZ\nreliving NN\nreloaded VBD\nrelocate VB\nrelocated VBD\nrelocating VBG\nrelocation NN\nrelocations NNS\nreluctance NN\nreluctant JJ\nreluctantly RB\nrely VB\nrelying VBG\nrelyriced VBD\nremade VBN\nremain VB\nremainder NN\nremained VBD\nremaining VBG\nremains VBZ\nremake VB\nremakes NNS\nremanded VBD\nremanding VBG\nremark NN\nremarkable JJ\nremarkably RB\nremarked VBD\nremarketings NNS\nremarking VBG\nremarks NNS\nremarried VBD\nremarry VB\nremarrying NN\nrematch NN\nrematches NNS\nremedial JJ\nremediation NN\nremedied VBN\nremedies NNS\nremedy NN\nremember VB\nremembered VBD\nremembering VBG\nremembers VBZ\nremembrance NN\nremembrances NNS\nremind VB\nreminded VBD\nreminder NN\nreminders NNS\nreminding VBG\nreminds VBZ\nreminisced VBD\nreminiscence NN\nreminiscences NNS\nreminiscent JJ\nreminisces VBZ\nreminiscing VBG\nremiss JJ\nremissions NNS\nremittances NNS\nremitted VBN\nremitting VBG\nremnant NN\nremnants NNS\nremodeled VBD\nremodeling VBG\nremolding VBG\nremonstrate VB\nremonstrated VBD\nremora NNS\nremorse NN\nremorseful JJ\nremorseless JJ\nremote JJ\nremote-control JJ\nremote-controlled JJ\nremote-site NN\nremotely RB\nremoteness NN\nremoter JJR\nremotest JJS\nremounting VBG\nremovable JJ\nremoval NN\nremove VB\nremoved VBN\nremoves VBZ\nremoving VBG\nremuda NN\nremunerated VBN\nremuneration NN\nremunerative JJ\nrenaissance NN\nrenal JJ\nrename VB\nrenamed VBN\nrenames VBZ\nrenaming VBG\nrenationalize VB\nrenaturation NN\nrend VB\nrender VB\nrendered VBN\nrendering VBG\nrenderings NNS\nrenders VBZ\nrendezvous NN\nrendezvoused VBD\nrendition NN\nrenditions NNS\nrenegade NN\nrenege VB\nreneged VBD\nreneging VBG\nrenegotiable JJ\nrenegotiate VB\nrenegotiated VBN\nrenegotiating VBG\nrenegotiation NN\nrenegotiations NNS\nrenew VB\nrenewable JJ\nrenewal NN\nrenewals NNS\nrenewed VBN\nrenewing VBG\nrenews VBZ\nrenounce VB\nrenounced VBD\nrenouncing VBG\nrenovate VB\nrenovated VBN\nrenovating VBG\nrenovation NN\nrenovations NNS\nrenown NN\nrenowned JJ\nrent NN\nrent-a-colonel NN\nrent-control NN\nrent-controlled JJ\nrent-free JJ\nrent-subsidized JJ\nrent-subsidy JJ\nrental JJ\nrental-car NN\nrentals NNS\nrented VBN\nrenter NN\nrenters NNS\nrenting VBG\nrents NNS\nrenunciation NN\nrenunciations NNS\nreoccupation NN\nreoffered VBN\nreoffering VBG\nreopen VB\nreopened VBD\nreopening VBG\nreopens VBZ\nreorder VB\nreordering NN\nreorganization NN\nreorganization-plan JJ\nreorganizations NNS\nreorganize VB\nreorganized VBN\nreorganizes VBZ\nreorganizing VBG\nreorient VB\nreorientation NN\nreoriented VBN\nrep NN\nrep'tation NN\nrepackage VB\nrepackaged VBN\nrepackaging VBG\nrepaid VBN\nrepainted VBN\nrepainting NN\nrepair NN\nrepaired VBN\nrepairing VBG\nrepairman NN\nrepairmen NNS\nrepairs NNS\nreparation NN\nreparations NNS\nrepartee NN\nrepassed VBN\nrepatriate VB\nrepatriated VBN\nrepatriating VBG\nrepatriation NN\nrepatriations NNS\nrepay VB\nrepayable JJ\nrepaying VBG\nrepayment NN\nrepayments NNS\nrepeal NN\nrepealed VBN\nrepealing VBG\nrepeals VBZ\nrepeat VB\nrepeated VBN\nrepeatedly RB\nrepeater NN\nrepeaters NNS\nrepeating VBG\nrepeats VBZ\nrepel VB\nrepelled VBN\nrepellent JJ\nrepelling VBG\nrepels VBZ\nrepent VB\nrepentance NN\nrepentant JJ\nrepercussions NNS\nrepertoire NN\nrepertory NN\nrepetition NN\nrepetitions NNS\nrepetitious JJ\nrepetitive JJ\nrephrase VB\nrephrased VBN\nreplace VB\nreplaced VBN\nreplacement NN\nreplacement-car NN\nreplacements NNS\nreplaces VBZ\nreplacing VBG\nreplanted VBN\nreplaster VB\nreplay NN\nreplaying VBG\nreplays NNS\nreplenish VB\nreplenished VBN\nreplenishment NN\nreplete JJ\nreplica NN\nreplicate VB\nreplicated VBN\nreplicating VBG\nreplication NN\nreplied VBD\nreplies VBZ\nreply NN\nreplying VBG\nrepond VB\nreponsibility NN\nreport NN\nreportage NN\nreported VBD\nreportedly RB\nreporter NN\nreporters NNS\nreporting VBG\nreportorial JJ\nreports NNS\nrepose NN\nreposed VBD\nreposition VB\nrepositioning NN\nrepositories NNS\nrepository NN\nrepossesed JJ\nrepossess VB\nrepossessed JJ\nreprehensible JJ\nrepresent VB\nrepresentation NN\nrepresentational JJ\nrepresentations NNS\nrepresentative NN\nrepresentatives NNS\nrepresented VBN\nrepresenting VBG\nrepresentives NNS\nrepresents VBZ\nrepress VB\nrepressed VBN\nrepressers NNS\nrepressing VBG\nrepression NN\nrepressions NNS\nrepressive JJ\nreprice VB\nrepriced VBN\nrepricing NN\nreprieve NN\nreprimanded VBN\nreprimanding VBG\nreprint VB\nreprinted VBN\nreprinting VBG\nreprints NNS\nreprisal NN\nreprisals NNS\nreproach NN\nreproaches VBZ\nreprobate NN\nreprobating VBG\nreprocess VB\nreproduce VB\nreproduced VBN\nreproduces VBZ\nreproducibilities NNS\nreproducibility NN\nreproducible JJ\nreproducibly RB\nreproducing VBG\nreproduction NN\nreproductions NNS\nreproductive JJ\nreprographic JJ\nreproof NN\nreproval NN\nreprove VB\nreprovingly RB\nreps NNS\nreptile NN\nreptilian JJ\nrepublic NN\nrepublican JJ\nrepublics NNS\nrepudiate VB\nrepudiated VBN\nrepudiating VBG\nrepudiation NN\nrepugnance NN\nrepugnant JJ\nrepulsed VBN\nrepulsion NN\nrepulsions NNS\nrepulsive JJ\nrepurchase NN\nrepurchased VBN\nrepurchases NNS\nrepurchasing VBG\nreputable JJ\nreputation NN\nreputations NNS\nrepute NN\nreputed VBN\nreputedly RB\nreqion NN\nrequalify VB\nrequest NN\nrequested VBD\nrequesters NNS\nrequesting VBG\nrequests NNS\nrequire VB\nrequired VBN\nrequired. VBN\nrequirement NN\nrequirements NNS\nrequires VBZ\nrequiring VBG\nrequisite JJ\nrequisites NNS\nrequisition NN\nrequisitioned VBD\nrequsting VBG\nreread VB\nreregulate VB\nreregulation NN\nreroofing NN\nrerouted VBN\nrerouting VBG\nrerun NN\nrerun-sales NNS\nreruns NNS\nresale NN\nresales NNS\nreschedulable JJ\nreschedule VB\nrescheduled VBD\nrescheduling VBG\nrescind VB\nrescinded VBN\nrescinding VBG\nrescission NN\nrescissions NNS\nrescue NN\nrescued VBN\nrescuers NNS\nrescues NNS\nrescuing VBG\nreseachers NNS\nresealed VBN\nresearch NN\nresearch-and-development NN\nresearch-and-production JJ\nresearch-based JJ\nresearch-heavy JJ\nresearch-staff NN\nresearchable JJ\nresearched VBN\nresearcher NN\nresearchers NNS\nresearches VBZ\nresearching VBG\nresell VB\nreseller JJR\nresellers NNS\nreselling VBG\nresells VBZ\nresemblance NN\nresemblances NNS\nresemble VB\nresembled VBD\nresembles VBZ\nresembling VBG\nresent VBP\nresented VBD\nresentful JJ\nresentment NN\nresents VBZ\nreserpine NN\nreservation NN\nreservations NNS\nreserve NN\nreserve-building NN\nreserve-draining JJ\nreserve... :\nreserved VBN\nreserves NNS\nreserving VBG\nreservists NNS\nreservoir NN\nreservoirs NNS\nreset NN\nresettable JJ\nresettle VB\nresettled VBN\nresettlement NN\nresettling VBG\nresew VB\nreshape VB\nreshaped VBN\nreshapes VBZ\nreshaping VBG\nreshuffle NN\nreshuffled VBD\nreshuffling VBG\nreshufflings NNS\nreside VBP\nresided VBD\nresidence NN\nresidences NNS\nresidency NN\nresident NN\nresidential JJ\nresidential-real-estate JJ\nresidentially RB\nresidents NNS\nresides VBZ\nresiding VBG\nresidual JJ\nresiduals NNS\nresidue NN\nresidues NNS\nresifted VBN\nresign VB\nresignation NN\nresignations NNS\nresigned VBD\nresignedly RB\nresigning VBG\nresigns VBZ\nresilience NN\nresiliency NN\nresilient JJ\nresiliently RB\nresin NN\nresin-saturated JJ\nresinlike JJ\nresins NNS\nresiny JJ\nresist VB\nresistance NN\nresistances NNS\nresistant JJ\nresisted VBN\nresisting VBG\nresistive JJ\nresistor NN\nresistors NNS\nresists VBZ\nresold VBN\nresolute JJ\nresolutely RB\nresolution NN\nresolutions NNS\nresolve VB\nresolved VBN\nresolves VBZ\nresolving VBG\nresonable JJ\nresonance NN\nresonances NNS\nresonant JJ\nresonantly RB\nresonate VB\nresonated VBD\nresonates VBZ\nresorcinol NN\nresort NN\nresort-casino NN\nresorted VBN\nresorting VBG\nresorts NNS\nresounding JJ\nresounds VBZ\nresource NN\nresource-intensive JJ\nresource-use NN\nresource-wasting JJ\nresourceful JJ\nresourcefully RB\nresourcefulness NN\nresources NNS\nrespect NN\nrespectability NN\nrespectable JJ\nrespected VBN\nrespectful JJ\nrespectfully RB\nrespecting VBG\nrespective JJ\nrespectively RB\nrespects NNS\nrespiration NN\nrespiration... :\nrespirators NNS\nrespiratory JJ\nrespite NN\nresplendent JJ\nrespond VB\nresponded VBD\nrespondent NN\nrespondents NNS\nresponding VBG\nresponds VBZ\nresponse NN\nresponses NNS\nresponsibilities NNS\nresponsibility NN\nresponsible JJ\nresponsiblilty NN\nresponsibly RB\nresponsive JJ\nresponsively RB\nresponsiveness NN\nrest NN\nrest-room NN\nrestaffed VBD\nrestaged VBN\nrestaging VBG\nrestart VB\nrestarted VBN\nrestarters NNS\nrestarting VBG\nrestate VB\nrestated VBN\nrestatement NN\nrestates VBZ\nrestating VBG\nrestaurant NN\nrestaurant-development NN\nrestaurant-industry JJ\nrestaurants NNS\nrestaurateur NN\nrestaurateurs NNS\nrested VBD\nrestful JJ\nresting VBG\nrestitution NN\nrestive JJ\nrestively RB\nrestless JJ\nrestlessly RB\nrestlessness NN\nrestock VB\nrestorability NN\nrestoration NN\nrestorative JJ\nrestore VB\nrestored VBN\nrestorer NN\nrestorers NNS\nrestores VBZ\nrestoring VBG\nrestrain VB\nrestrained VBN\nrestraining VBG\nrestrains VBZ\nrestraint NN\nrestraints NNS\nrestrict VB\nrestricted VBN\nrestricted-entry JJ\nrestricting VBG\nrestriction NN\nrestrictions NNS\nrestrictive JJ\nrestricts VBZ\nrestroom NN\nrestructure VB\nrestructured VBN\nrestructures VBZ\nrestructuring NN\nrestructurings NNS\nrests VBZ\nrestuarant JJ\nrestudy NN\nrestyled VBN\nresublimed VBN\nresubmit VB\nresubmitted VBD\nresult NN\nresultant JJ\nresultants NNS\nresulted VBD\nresulted... :\nresulting VBG\nresults NNS\nresults-oriented JJ\nresume VB\nresumed VBD\nresumes VBZ\nresuming VBG\nresumption NN\nresurfaced VBD\nresurgence NN\nresurgent JJ\nresurging VBG\nresurrect VB\nresurrected VBN\nresurrecting VBG\nresurrection NN\nresurrects VBZ\nresuscitate VB\nresuscitated VBN\nresuscitating VBG\nresuscitation NN\nresuspended VBN\nresuspension NN\nretablos FW\nretail JJ\nretail-banking JJ\nretail-based JJ\nretail-brokerage JJ\nretail-distribution NN\nretail-sales JJ\nretail-sized JJ\nretail-volume NN\nretailed VBN\nretailer NN\nretailer-sales JJ\nretailers NNS\nretailing NN\nretails VBZ\nretain VB\nretained VBN\nretainer NN\nretainers NNS\nretaining VBG\nretains VBZ\nretake VB\nretaking VBG\nretaliate VB\nretaliated VBD\nretaliating VBG\nretaliation NN\nretaliatory JJ\nretard VB\nretardant NN\nretardants NNS\nretardation NN\nretarded JJ\nretarding VBG\nretargeting VBG\nretch NN\nretching VBG\nretell VBP\nretelling NN\nretention NN\nretentive JJ\nretentiveness NN\nrethink VB\nrethinking VBG\nrethought JJ\nreticence NN\nreticent JJ\nreticulate JJ\nretied VBD\nretina NN\nretinal JJ\nretinoblastoma NN\nretinue NN\nretire VB\nretired VBN\nretiree NN\nretirees NNS\nretirement NN\nretirement-savings JJ\nretirement-system JJ\nretirements NNS\nretires VBZ\nretiring VBG\nretold VBD\nretooled VBN\nretooling VBG\nretools VBZ\nretort NN\nretorted VBD\nretorts NNS\nretouching NN\nretrace VB\nretraced VBD\nretracing VBG\nretract VB\nretractable JJ\nretracted VBN\nretracting VBG\nretraction NN\nretrain VB\nretrained VBN\nretraining NN\nretranslated VBN\nretread NN\nretreat NN\nretreated VBD\nretreating VBG\nretreats NNS\nretrench VBP\nretrenching NN\nretrenchment NN\nretrial NN\nretrial... :\nretribution NN\nretried VBN\nretrievable JJ\nretrieval NN\nretrieve VB\nretrieved VBN\nretriever NN\nretro JJ\nretroactive JJ\nretroactively RB\nretroactivity NN\nretrofit VB\nretrofitted VBN\nretrofitting NN\nretrogradations NNS\nretrograde JJ\nretrogressive JJ\nretrospect NN\nretrospective NN\nretroviral JJ\nretrovirus NN\nretroviruses NNS\nretrovision NN\nretry VB\nreturn NN\nreturn-on-savings JJ\nreturn-preparer NN\nreturn-printing JJ\nreturn. NN\nreturned VBD\nreturning VBG\nreturns NNS\nretweet NN\nreunifed VBN\nreunification NN\nreunion NN\nreunion-Halloween JJ\nreunions NNS\nreunite VB\nreunited VBN\nreuniting VBG\nreupholstering VBG\nreusable JJ\nreuse VB\nreused VBN\nreusing VBG\nrev'rend NN\nrevaluation NN\nrevalued VBN\nrevaluing NN\nrevamp VB\nrevamped VBN\nrevamping VBG\nrevamps VBZ\nreveal VB\nrevealed VBD\nrevealing VBG\nreveals VBZ\nreveille NN\nrevel VB\nrevelation NN\nrevelations NNS\nrevelatory JJ\nreveled VBD\nrevelers NNS\nreveling VBG\nrevellers NNS\nrevelling VBG\nrevellings NNS\nrevelry NN\nrevels NNS\nrevenge NN\nrevenge-seeking JJ\nrevenue NN\nrevenue-desperate JJ\nrevenue-generating JJ\nrevenue-law JJ\nrevenue-losing JJ\nrevenue-neutral JJ\nrevenue-producing JJ\nrevenue-raisers NNS\nrevenue-raising JJ\nrevenue-sharing JJ\nrevenuers NNS\nrevenues NNS\nreverberate VB\nreverberated VBN\nreverberating VBG\nreverberation NN\nreverberations NNS\nrevered VBN\nreverence NN\nreverent JJ\nreverential JJ\nreverie NN\nreversal NN\nreversals NNS\nreverse VB\nreverse-engineering NN\nreverse-reverse JJ\nreverse-surface JJ\nreversed VBD\nreverses VBZ\nreversibility NN\nreversible JJ\nreversing VBG\nrevert VB\nreverted VBD\nreverting VBG\nreverts VBZ\nrevery NN\nrevetments NNS\nreview NN\nreviewed VBN\nreviewed\\/designed VBN\nreviewer NN\nreviewers NNS\nreviewing VBG\nreviews NNS\nreviled VBN\nrevise VB\nrevised VBN\nrevises VBZ\nrevising VBG\nrevision NN\nrevisionist JJ\nrevisionists NNS\nrevisions NNS\nrevisit VB\nrevisited VBD\nrevisits VBZ\nrevitalization NN\nrevitalize VB\nrevitalized VBD\nrevitalizing VBG\nrevival NN\nrevivalism NN\nrevivals NNS\nrevive VB\nrevived VBN\nrevives VBZ\nrevivified VBN\nreviving VBG\nrevocable JJ\nrevocation NN\nrevoke VB\nrevoked VBN\nrevoking VBG\nrevolt NN\nrevolted VBD\nrevolting JJ\nrevoltingly RB\nrevolts NNS\nrevolution NN\nrevolutionaries NNS\nrevolutionary JJ\nrevolutionists NNS\nrevolutionize VB\nrevolutionized VBD\nrevolutionizing VBG\nrevolutions NNS\nrevolve VB\nrevolved VBD\nrevolver NN\nrevolves VBZ\nrevolving VBG\nrevs VBZ\nrevulsion NN\nrevved VBD\nreward NN\nrewarded VBN\nrewarding JJ\nrewards NNS\nreweave VB\nreworked VBD\nreworking NN\nrewrapped NN\nrewrite VB\nrewrites VBZ\nrewriting VBG\nrewritten VBN\nrewrote VBD\nrewt NN\nrf NN\nrhapsodic JJ\nrhapsodize VBP\nrhapsodizing VBG\nrhapsody NN\nrhenium NN\nrhetoric NN\nrhetorical JJ\nrhetoricians NNS\nrheum NN\nrheumatic JJ\nrheumatism NN\nrheumatoid JJ\nrhinestones NNS\nrhino NN\nrhinoceros NN\nrhinos NNS\nrhinotracheitis NN\nrhinovirus-receptors NNS\nrhododendron NN\nrhu-beb NN\nrhubarb-like JJ\nrhyme NN\nrhymed VBD\nrhymes VBZ\nrhyming VBG\nrhythm NN\nrhythm-and-blues NN\nrhythmic JJ\nrhythmical JJ\nrhythmically RB\nrhythms NNS\nrib NN\nribald JJ\nribbed JJ\nribbies NNS\nribbing NN\nribbon NN\nribbons NNS\nribcage NN\nriboflavin NN\nribonucleic JJ\nribosomal JJ\nribozyme NN\nribozymes NNS\nribs NNS\nrice NN\nrice-processing JJ\nrich JJ\nriche JJ\nricher JJR\nriches NNS\nrichest JJS\nrichissimos NNS\nrichly RB\nrichness NN\nrickety JJ\nricocheted VBD\nrid JJ\nriddance NN\nridden VBN\nridding VBG\nriddle NN\nriddled VBN\nriddles NNS\nriddling VBG\nride VB\nrider NN\nrider-fashion JJ\nriders NNS\nridership NN\nrides NNS\nridge NN\nridges NNS\nridicule NN\nridiculed VBN\nridicules VBZ\nridiculing VBG\nridiculous JJ\nridiculously RB\nriding VBG\nridings NNS\nrife JJ\nriff NN\nriffing VBG\nriffle VB\nriffs NNS\nrifle NN\nrifle-shotgun NN\nrifled JJ\nrifleman NN\nriflemen NNS\nriflemen-rangers NNS\nrifles NNS\nrifling NN\nrift NN\nrifts NNS\nrig NN\nrigatoni NN\nrigged VBN\nrigger NN\nriggers NNS\nrigging NN\nright NN\nright-angle NN\nright-angled JJ\nright-angling NN\nright-field NN\nright-hand JJ\nright-handed JJ\nright-hander NN\nright-of-entry NN\nright-to-counsel JJ\nright-to-life JJ\nright-to-lifers NNS\nright-to-privacy JJ\nright-to-work JJ\nright-wing JJ\nright-wingers NNS\nrighted VBN\nrighteous JJ\nrighteousness NN\nrightfield NN\nrightful JJ\nrightfully RB\nrighthander NN\nrightist JJ\nrightly RB\nrightness NN\nrights NNS\nrights-of-way JJ\nrightward JJ\nrigid JJ\nrigidities NNS\nrigidity NN\nrigidly RB\nrigids NNS\nrigor NN\nrigorous JJ\nrigorously RB\nrigors NNS\nrigs NNS\nrigueur FW\nrile VBP\nriled VBN\nriles VBZ\nrill NN\nrim NN\nrim-fire JJ\nrim-fires NNS\nrime NN\nrimless JJ\nrimmed JJ\nrims NNS\nrinds NNS\nring NN\nring-around-a-rosy NN\nring-around-the-rosie NN\nring-labeled JJ\nringed JJ\nringer NN\nringers NNS\nringing VBG\nringings NNS\nringleader NN\nringlets NNS\nrings NNS\nringside NN\nringsiders NNS\nrink NN\nrinse NN\nrinses NNS\nrinsing NN\nriot NN\nrioted VBD\nrioters NNS\nrioting NN\nriotous JJ\nriots NNS\nrip VB\nrip-off NN\nrip-roaring JJ\nripe JJ\nripen VBP\nripened VBD\nripening VBG\nripens VBZ\nripoff NN\nripoffs NNS\nripped VBD\nripping VBG\nripple NN\nrippled VBD\nripples NNS\nrippling VBG\nrise NN\nrise-perhaps RB\nrisen VBN\nrises VBZ\nrisible JJ\nrising VBG\nrisk NN\nrisk-analysis NN\nrisk-averse JJ\nrisk-benefited NN\nrisk-capital JJ\nrisk-fraught JJ\nrisk-free JJ\nrisk-management NN\nrisk-takers NNS\nrisk-taking NN\nrisked VBD\nriskier JJR\nriskiest JJS\nriskiness NN\nrisking VBG\nrisks NNS\nrisky JJ\nrite NN\nrites NNS\nritiuality NN\nritorno FW\nritual NN\nritualized VBN\nrituals NNS\nritzy JJ\nrival JJ\nrival-bashing JJ\nrivaled VBD\nrivaling VBG\nrivalled VBD\nrivalries NNS\nrivalry NN\nrivals NNS\nriven VBN\nriver NN\nriverbank NN\nriverbanks NNS\nriverboat NN\nriverfront NN\nrivers NNS\nriverside NN\nriveted VBN\nriveting VBG\nrivets VBZ\nrivulets NNS\nroach NN\nroad NN\nroad-building JJ\nroad-circuit NN\nroad-construction JJ\nroad-crossing NN\nroad-map NN\nroad-show NN\nroad-shy JJ\nroadbed NN\nroadblock NN\nroadblocks NNS\nroadbuilding NN\nroadhouse NN\nroadrunner NN\nroads NNS\nroadside NN\nroadster NN\nroadway NN\nroadways NNS\nroam VB\nroamed VBD\nroaming VBG\nroams VBZ\nroar NN\nroared VBD\nroaring VBG\nroaringest JJS\nroars VBZ\nroast NN\nroasted VBN\nroasters NNS\nroasts NNS\nrob VB\nrobbed VBN\nrobber NN\nrobberies NNS\nrobbers NNS\nrobbery NN\nrobbing VBG\nrobe NN\nrobed VBN\nrobes NNS\nrobin NN\nrobing NN\nrobot NN\nrobotic JJ\nrobotics NNS\nrobotism NN\nrobots NNS\nrobs VBZ\nrobust JJ\nrobustly RB\nrobustness NN\nrock NN\nrock'n NN\nrock'n'roll NN\nrock-and-roll NN\nrock-carved JJ\nrock-hard JJ\nrock-like JJ\nrock-ribbed JJ\nrock-scored JJ\nrock-steady NN\nrock-strewn NN\nrockbound JJ\nrocked VBD\nrocker NN\nrockers NNS\nrocket NN\nrocket-bomb NN\nrocket-bombs NNS\nrocket-fuel NN\nrocket-like JJ\nrocket-motor NN\nrocket-propelled JJ\nrocket-propulsion NN\nrocketed VBD\nrocketing VBG\nrockets NNS\nrockin JJ\nrocking NN\nrocklike JJ\nrocks NNS\nrockstrewn NN\nrocky JJ\nrococo JJ\nrod NN\nrodder NN\nrodders NNS\nrodding NN\nrode VBD\nrodent NN\nrodents NNS\nrodeo NN\nrodeos NNS\nrods NNS\nroemer NN\nrogue JJ\nrogues NNS\nroi FW\nroil VB\nroiled VBN\nroiling VBG\nrole NN\nrole-experiment NN\nrole-experimentation NN\nrole-playing NN\nroleplayed VBN\nroleplaying NN\nroles NNS\nroll NN\nroll-call JJ\nroll-out NN\nrollback NN\nrollbacks NNS\nrolled VBD\nrolled-up JJ\nroller NN\nroller-coaster NN\nrollercoaster NN\nrollers NNS\nrollicking JJ\nrollickingly RB\nrolling VBG\nrolling-steel NN\nrollout NN\nrollover NN\nrollovers NNS\nrolls NNS\nrollup NN\nroly-poly JJ\nromance NN\nromancers NNS\nromances NNS\nromancing VBG\nromantic JJ\nromantically RB\nromanticism NN\nromanticize VB\nromanticized VBN\nromanticizing NN\nromantick JJ\nromantics NNS\nromp NN\nromped VBD\nromping VBG\nromps NNS\nroof NN\nroof-crush JJ\nroofed VBN\nroofer NN\nroofers NNS\nroofing NN\nroofs NNS\nrooftop NN\nrooftops NNS\nrooftree NN\nrook NN\nrookie NN\nrookie-of-the-year NN\nrookies NNS\nroom NN\nroom-rate JJ\nroomed VBD\nroomette NN\nroomful NN\nroomier JJR\nroominess NN\nrooming VBG\nrooming-house NN\nroommate NN\nroommates NNS\nrooms NNS\nroomy JJ\nroost VB\nrooster NN\nrooster-comb NN\nroosters NNS\nroosting VBG\nroot NN\nroot-canal NN\nrooted VBN\nrooters NNS\nrooting VBG\nrootless JJ\nroots NNS\nrope NN\nrope-sight NN\nroped VBD\nropers NNS\nropes NNS\nrosarians NNS\nrosaries NNS\nrose VBD\nrose-gold NN\nrose-of-Sharon NN\nrose-pink JJ\nrose-tea NN\nrosebuds NNS\nrosebush NN\nroses NNS\nrosettes NNS\nrosier JJR\nrosiest JJS\nrosins NNS\nroster NN\nrosters NNS\nrostrum NN\nrosy JJ\nrosy-fingered JJ\nrot NN\nrotary JJ\nrotate VB\nrotated VBN\nrotates VBZ\nrotating VBG\nrotation NN\nrotational JJ\nrotationally RB\nrotations NNS\nrote NN\nrotenone NN\nrotogravures NNS\nrotor NN\nrots VBZ\nrotted VBN\nrotten JJ\nrotting VBG\nrotund JJ\nrotunda NN\nrotundity NN\nrouge FW\nrough JJ\nrough-and-ready-sounding JJ\nrough-and-tumble JJ\nrough-cut JJ\nrough-hewn JJ\nrough-housing NN\nrough-sanded JJ\nrough-tough JJ\nroughcast NN\nroughed VBD\nroughened VBN\nrougher JJR\nroughest JJS\nroughhewn JJ\nroughish JJ\nroughly RB\nroughneck NN\nroughnecks NNS\nroughness NN\nroughshod JJ\nroulette NN\nround NN\nround-bottom JJ\nround-eyed JJ\nround-faced JJ\nround-table JJ\nround-the-clock JJ\nround-the-world JJ\nround-tipped JJ\nround-trip JJ\nround-tripping NN\nroundabout JJ\nrounded VBN\nrounder JJR\nroundhead NN\nroundhouse NN\nrounding VBG\nroundly RB\nroundness NN\nrounds NNS\nroundtable JJ\nroundtrip NN\nroundup NN\nroundups NNS\nrouse VB\nroused VBD\nrousing JJ\nroustabout NN\nroustabouts NNS\nrout NN\nroute NN\nrouted VBN\nroutes NNS\nroutine JJ\nroutinely RB\nroutines NNS\nrouting VBG\nroutings NNS\nrove VB\nroved VBD\nroving VBG\nrovings NNS\nrow NN\nrowdiness NN\nrowdy JJ\nrowed VBD\nrowing NN\nrows NNS\nroyal JJ\nroyalties NNS\nroyalty NN\nroyalty-free JJ\nrpm NN\nrub NN\nrubbed VBD\nrubber NN\nrubber-like JJ\nrubber-necking VBG\nrubber-stamp VB\nrubber-stamped JJ\nrubberized VBN\nrubberstamp NN\nrubbery JJ\nrubbin VBG\nrubbing VBG\nrubbish NN\nrubble NN\nrubdowns NNS\nrubfests NNS\nrubicund JJ\nrubies NNS\nruble NN\nruble\\/gold JJ\nrubles NNS\nrubout NN\nrubric NN\nrubs NNS\nruckus NN\nrudder NN\nrudderless JJ\nruddiness NN\nruddy JJ\nrude JJ\nrudely RB\nrudeness NN\nrudimentary JJ\nrudiments NNS\nrue NN\nrueful JJ\nruefully RB\nruefulness NN\nruffian NN\nruffians NNS\nruffle VB\nruffled VBN\nruffles VBZ\nrug NN\nrugged JJ\nruggedly RB\nrugs NNS\nruh FW\nruin NN\nruined VBN\nruining VBG\nruinous JJ\nruins NNS\nrule NN\nrule-making JJ\nrule. NN\nrule`` ``\nruled VBD\nruler NN\nrulers NNS\nrules NNS\nruling NN\nruling-class JJ\nruling-party NN\nrulings NNS\nrum NN\nrum-tum-tum JJ\nrumble NN\nrumbled VBD\nrumbles VBZ\nrumbling VBG\nrumblings NNS\nrumdum NN\nrumen NN\nruminants NNS\nruminate VB\nruminated VBD\nrumination NN\nruminations NNS\nrummage VB\nrummaged VBD\nrummaging JJ\nrummy NN\nrumor NN\nrumor-driven JJ\nrumor-fraught JJ\nrumor-happy JJ\nrumored VBN\nrumors NNS\nrump NN\nrumpled JJ\nrumpus NN\nrun VB\nrun-down JJ\nrun-from-above JJ\nrun-ins NNS\nrun-of-the-mill JJ\nrun-of-the-mine JJ\nrun-on NN\nrun-scoring JJ\nrun-up NN\nrun-ups NNS\nrunabout NN\nrunaway JJ\nrundown NN\nrunes NNS\nrung VBN\nruning VBG\nrunner NN\nrunner-up NN\nrunners NNS\nrunners-up NNS\nrunnin VBG\nrunning VBG\nrunny JJ\nrunoff NN\nruns VBZ\nrunt NN\nrunup NN\nrunups NNS\nrunway NN\nrunways NNS\nrupee NN\nrupees NNS\nrupiah NN\nrupture NN\nruptured VBN\nrupturing VBG\nrural JJ\nrural-care JJ\nruse NN\nrush NN\nrush-hour JJ\nrushed VBD\nrushes VBZ\nrushing VBG\nrusse NN\nrusset JJ\nrusset-colored JJ\nrust NN\nrusted JJ\nrustic JJ\nrusticated VBN\nrusting JJ\nrustle NN\nrustled VBN\nrustler NN\nrustler-hunter NN\nrustlers NNS\nrustlin NN\nrustling NN\nrustlings NNS\nrusty JJ\nrut NN\nrutabaga NN\nrutabagas NNS\nruthenium NN\nruthless JJ\nruthlessly RB\nruthlessness NN\nruts NNS\nrutted JJ\nrye NN\ns PRP\ns'accuse FW\ns'excuse FW\ns'posin VBG\ns-values NNS\ns.r.l. NNP\nsabbatical NN\nsaber NN\nsaber-rattling NN\nsaber-toothed JJ\nsabers-along IN\nsable NN\nsables NNS\nsabotage NN\nsabre NN\nsabre-rattling NN\nsac NN\nsacadolares FW\nsaccharin NN\nsachems NNS\nsack NN\nsacked VBD\nsacker NN\nsackes NNS\nsacking VBG\nsackings NNS\nsackless JJ\nsacks NNS\nsacral JJ\nsacrament NN\nsacraments NNS\nsacred JJ\nsacredness NN\nsacrifice NN\nsacrificed VBN\nsacrifices NNS\nsacrificial JJ\nsacrificing VBG\nsacrificium FW\nsacrilege NN\nsacrilegious JJ\nsacrosanct JJ\nsad JJ\nsaddened JJ\nsadder JJR\nsaddle NN\nsaddlebags NNS\nsaddled VBN\nsaddles NNS\nsaddling VBG\nsadism NN\nsadist NN\nsadistic JJ\nsadly RB\nsadness NN\nsafari NN\nsafaris NNS\nsafe JJ\nsafe-conduct NN\nsafe-cracking JJ\nsafe-deposit JJ\nsafe-driving JJ\nsafe-sounding JJ\nsafeguard VB\nsafeguarded VBN\nsafeguarding VBG\nsafeguards NNS\nsafekeep VB\nsafekeeping NN\nsafely RB\nsafer JJR\nsafest JJS\nsafeties NNS\nsafety NN\nsafety-first JJ\nsafety-related JJ\nsafety-seat NN\nsafety-sensitive JJ\nsaffron NN\nsag VB\nsaga NN\nsaga-like JJ\nsage NN\nsagebrush NN\nsages NNS\nsagged VBD\nsagging VBG\nsaggy JJ\nsago NN\nsags NNS\nsahibs NNS\nsaid VBD\nsaid'let's NNS\nsaid.`` ``\nsaid:`` ``\nsail VB\nsailboat NN\nsailboats NNS\nsailed VBD\nsailing NN\nsailor NN\nsailorly RB\nsailors NNS\nsails NNS\nsaint NN\nsainthood NN\nsaintliness NN\nsaintly JJ\nsaints NNS\nsaith VBZ\nsake NN\nsalable JJ\nsalacious JJ\nsalad NN\nsalads NNS\nsalamander NN\nsalami NNS\nsalaried JJ\nsalaries NNS\nsalary NN\nsalary-pool NN\nsalarymen NNS\nsale NN\nsale-lease-back JJ\nsale-leaseback NN\nsale-purchase NN\nsale-purchases NNS\nsale\\/leaseback NN\nsales NNS\nsales-building JJ\nsales-conscious JJ\nsales-incentive JJ\nsales-loss JJ\nsales-moving JJ\nsales-of IN\nsales-tax NN\nsales. NNS\nsales... :\nsalesgirl NN\nsaleslady NN\nsalesman NN\nsalesmanship NN\nsalesmen NNS\nsalesparson NN\nsalespeople NN\nsalesperson NN\nsaleswomen NNS\nsalicylate NN\nsalicylates NNS\nsalicylic JJ\nsalient JJ\nsaline NN\nsalinity NN\nsaliva NN\nsalivary JJ\nsalivate VB\nsallies NNS\nsallow JJ\nsally VB\nsallying VBG\nsalmon NN\nsalmon-colored JJ\nsalmonella NN\nsalon NN\nsalons NNS\nsaloon NN\nsaloonkeeper NN\nsaloons NNS\nsalsa NN\nsalt NN\nsalt-crusted JJ\nsalt-edged JJ\nsalt-fractionation NN\nsaltbush NN\nsalted VBN\nsaltier JJR\nsalting VBG\nsalts NNS\nsaltwater NN\nsalty JJ\nsalubrious JJ\nsalutaris FW\nsalutary JJ\nsalutation NN\nsalute NN\nsaluted VBD\nsalutes NNS\nsaluting VBG\nsalvage VB\nsalvaged VBN\nsalvages VBZ\nsalvaging VBG\nsalvation NN\nsalve NN\nsalves NNS\nsalvo NN\nsalvos NNS\nsambuca NN\nsambur NN\nsame JJ\nsame-store JJ\nsameness NN\nsamovar FW\nsamovars NNS\nsample NN\nsampled VBN\nsampler NN\nsamplers NNS\nsamples NNS\nsampling NN\nsamplings NNS\nsamurai FW\nsana FW\nsanatorium NN\nsanctified JJ\nsanctify VB\nsanctimonious JJ\nsanction NN\nsanctioned VBN\nsanctioning VBG\nsanctions NNS\nsanctity NN\nsanctorum FW\nsanctuary NN\nsanctum FW\nsanctums NNS\nsand NN\nsand-mining NN\nsandals NNS\nsandalwood NN\nsandbars NNS\nsandbox NN\nsander NN\nsanding NN\nsandpaper NN\nsands NNS\nsandwich NN\nsandwich-type JJ\nsandwiched VBN\nsandwiches NNS\nsandy JJ\nsandy-haired JJ\nsane JJ\nsaner JJR\nsanest JJS\nsang VBD\nsang-froid FW\nsangaree NN\nsangiovanni NNS\nsanguine JJ\nsanguineous JJ\nsanguineum NN\nsanhedrin NN\nsanipractor NN\nsanitaire FW\nsanitarium NN\nsanitary JJ\nsanitation NN\nsanitation-control JJ\nsanitationists NNS\nsanitize VBP\nsanitized VBN\nsanitizing NN\nsanity NN\nsank VBD\nsantos FW\nsap VB\nsapiens JJ\nsapling NN\nsaponins NNS\nsapped VBN\nsapping VBG\nsappy JJ\nsaps VBZ\nsarakin FW\nsarcasm NN\nsarcasms NNS\nsarcastic JJ\nsarcastically RB\nsarcolemmal JJ\nsarcoma NN\nsardines NNS\nsardonic JJ\nsardonically RB\nsari NN\nsarsaparilla NN\nsash NN\nsashay NN\nsashayed VBD\nsassafras NN\nsassing NN\nsassy JJ\nsat VBD\nsatellite NN\nsatellite-TV JJ\nsatellite-assembly NN\nsatellite-delivered JJ\nsatellite-dish NN\nsatellite-launch JJ\nsatellite-launching JJ\nsatellite-linked JJ\nsatellite-transmission NN\nsatellites NNS\nsatiate VB\nsatiety NN\nsatin NN\nsatin-covered JJ\nsatire NN\nsatiric JJ\nsatirical JJ\nsatirically RB\nsatirist NN\nsatirizes VBZ\nsatisfaction NN\nsatisfactions NNS\nsatisfactorily RB\nsatisfactory JJ\nsatisfied VBN\nsatisfies VBZ\nsatisfy VB\nsatisfying JJ\nsaturate VB\nsaturated VBN\nsaturation NN\nsauce NN\nsaucepan NN\nsaucer NN\nsaucers NNS\nsauces NNS\nsaucy JJ\nsauerkraut NN\nsauna NN\nsaunas NNS\nsaunter NN\nsausage NN\nsausage-grinder NN\nsausage-meat NN\nsausages NNS\nsaute VB\nsauterne JJ\nsavage JJ\nsavaged VBD\nsavagely RB\nsavagery NN\nsavages NNS\nsave VB\nsave-the-earth JJ\nsave-the-universe JJ\nsave-the-wildlife JJ\nsaved VBN\nsaver NN\nsavers NNS\nsavers\\/investors NNS\nsaves VBZ\nsaving VBG\nsavings NNS\nsavings-and-loan JJ\nsavings-and-loans JJ\nsavings-deposit JJ\nsavings-type JJ\nsavior NN\nsaviour NN\nsavor VB\nsavored VBD\nsavoring VBG\nsavors NNS\nsavory JJ\nsavvier JJR\nsavviest JJS\nsavvy JJ\nsaw VBD\nsaw-horse NN\nsawdust NN\nsawed-off JJ\nsawing NN\nsawmill NN\nsaws NNS\nsawtimber NN\nsax NN\nsaxophone NN\nsaxophones NNS\nsaxophonist NN\nsaxophonists NNS\nsay VBP\nsay'direct VB\nsay'well VB\nsay'wow VB\nsay,'you're VBP\nsay-because IN\nsay-great JJ\nsay-so NN\nsay-speak NN\nsay... :\nsay:'none NN\nsayed VBD\nsayin NN\nsaying VBG\nsayings NNS\nsayonara FW\nsays VBZ\nsays. VBZ\nscab NN\nscabbard NN\nscabbed VBN\nscabrous JJ\nscabs NNS\nscads NNS\nscaffold NN\nscaffolding NN\nscaffoldings NNS\nscairt VBN\nscalar JJ\nscalawags NNS\nscald VB\nscalded VBN\nscalding VBG\nscale NN\nscale-down JJ\nscaled VBN\nscaled-back JJ\nscaled-backed JJ\nscaled-down JJ\nscales NNS\nscaling VBG\nscalloped JJ\nscallops NNS\nscalp NN\nscalpels NNS\nscalps NNS\nscam NN\nscammed VBD\nscammers NNS\nscamper VBP\nscampering VBG\nscams NNS\nscan NN\nscandal NN\nscandal-plagued JJ\nscandal-ridden JJ\nscandal-stench NN\nscandal-tossed JJ\nscandal-tripped JJ\nscandal-wracked JJ\nscandalized VBD\nscandalizes VBZ\nscandalizing JJ\nscandalous JJ\nscandals NNS\nscanned VBD\nscanner NN\nscanners NNS\nscanning NN\nscans NNS\nscant JJ\nscants VBZ\nscanty JJ\nscape VB\nscapegoat NN\nscapegoating NN\nscapegoats NNS\nscapulars NNS\nscar NN\nscarce JJ\nscarcely RB\nscarcely-tapped JJ\nscarcer JJR\nscarcest JJS\nscarcity NN\nscare VB\nscare-tactic NN\nscarecrowish JJ\nscared VBN\nscares NNS\nscarf NN\nscarfing VBG\nscarify VB\nscaring VBG\nscarlet JJ\nscarred JJ\nscars NNS\nscarves NN\nscary JJ\nscathing JJ\nscathingly RB\nscatter NN\nscatterbrained JJ\nscattered VBN\nscattergun NN\nscattering VBG\nscatters VBZ\nscattershot JJ\nscavanged VBN\nscavenger NN\nscavengers NNS\nscavenging VBG\nscedule NN\nscenario NN\nscenarios NNS\nscene NN\nsceneries NNS\nscenery NN\nscenes NNS\nscenic JJ\nscenics NNS\nscent NN\nscented JJ\nscents NNS\nsceptical JJ\nscepticism NN\nschedule NN\nscheduled VBN\nschedules NNS\nscheduling NN\nschema NN\nschemata NN\nschematic JJ\nschematically RB\nscheme NN\nschemers NNS\nschemes NNS\nscheming JJ\nscherzo NN\nschillings NNS\nschism NN\nschizoid JJ\nschizophrenia NN\nschizophrenic JJ\nschmoozing NN\nschmumpered VBD\nschnapps NN\nschnooks NNS\nscholar NN\nscholar-businessman NN\nscholar-in-residence NN\nscholarly JJ\nscholars NNS\nscholarship NN\nscholarships NNS\nscholastic JJ\nscholastically RB\nscholastics NNS\nschool NN\nschool-age JJ\nschool-based JJ\nschool-board NN\nschool-bus NN\nschool-desegregation NN\nschool-district JJ\nschool-financing JJ\nschool-improvement JJ\nschool-leaving JJ\nschool-lunch NN\nschool-research JJ\nschool-sponsored JJ\nschoolbooks NNS\nschoolboy NN\nschoolboys NNS\nschoolchildren NN\nschooldays NNS\nschooled VBN\nschoolers NNS\nschoolgirl NN\nschoolgirlish JJ\nschoolgirls NNS\nschoolhouse NN\nschooling NN\nschoolmaster NN\nschoolmate NN\nschoolmates NNS\nschoolroom NN\nschools NNS\nschoolteacher NN\nschoolteachers NNS\nschoolwork NN\nschooner NN\nsci-fi JJ\nsciatica NN\nscience NN\nscience-education NN\nscience-fiction NN\nscience-watchers NNS\nsciences NNS\nscientific JJ\nscientifically RB\nscientifically-trained JJ\nscientist NN\nscientist-consultant NN\nscientist\\/traders NNS\nscientists NNS\nscimitar NN\nscimitar-wielding JJ\nscimitars NNS\nscintillating JJ\nscion NN\nscions NNS\nscissoring VBG\nscissors NNS\nsclerosis NN\nsclerotic JJ\nscoff VBP\nscoffed VBD\nscoffer NN\nscoffing NN\nscofflaws NNS\nscoffs VBZ\nscold VB\nscolded VBN\nscolding VBG\nscolds NNS\nscoop NN\nscooped VBD\nscooping VBG\nscoops VBZ\nscooted VBD\nscooter NN\nscooting VBG\nscop NN\nscope NN\nscoped NN\nscopes NNS\nscops NNS\nscorched JJ\nscorcher NN\nscore NN\nscore-wise JJ\nscoreboard NN\nscoreboards NNS\nscorecard NN\nscored VBD\nscorekeepers NNS\nscorekeeping NN\nscoreless JJ\nscorer NN\nscorers NNS\nscores NNS\nscoring VBG\nscorn NN\nscorned VBN\nscornful JJ\nscornfully RB\nscot-free JJ\nscotch NN\nscotched VBD\nscotches NNS\nscoundrel NN\nscoundrels NNS\nscour VBP\nscoured VBN\nscourge NN\nscourges NNS\nscouring VBG\nscours NNS\nscout NN\nscouted VBD\nscouting VBG\nscouts NNS\nscowl VBP\nscowled VBD\nscowling NN\nscowls VBZ\nscraggly JJ\nscramble NN\nscrambled VBD\nscrambles NNS\nscrambling VBG\nscrap NN\nscrapbook NN\nscrape NN\nscraped VBD\nscrapes NNS\nscraping VBG\nscrapped VBN\nscrapping VBG\nscrappy JJ\nscraps NNS\nscratch NN\nscratched VBD\nscratches NNS\nscratchiness NN\nscratching VBG\nscratchy JJ\nscrawl NN\nscrawled VBD\nscrawny JJ\nscream VB\nscreamed VBD\nscreaming VBG\nscreams NNS\nscreech NN\nscreeched VBD\nscreeches NNS\nscreeching VBG\nscreechy JJ\nscreed NN\nscreen NN\nscreened VBN\nscreening NN\nscreenings NNS\nscreenland NN\nscreenplay NN\nscreens NNS\nscreenwriters NNS\nscrew NN\nscrew-loose JJ\nscrewball JJ\nscrewdriver NN\nscrewed VBN\nscrews NNS\nscribble VB\nscribbled VBD\nscribblers NNS\nscribbles VBZ\nscribbling VBG\nscribe NN\nscribes NNS\nscribing NN\nscrim NN\nscrimmage NN\nscrimmaged VBD\nscrimp VB\nscrimped VBD\nscrimping VBG\nscript NN\nscripts NNS\nscriptural JJ\nscripture NN\nscriptures NNS\nscriptwriter NN\nscriptwriters NNS\nscrivener NN\nscroll NN\nscrolls NNS\nscrounge VBP\nscrounged VBD\nscrounging VBG\nscrub VB\nscrubbed VBN\nscrubbers NNS\nscrubbing NN\nscruff NN\nscrumptious JJ\nscrupulosity NN\nscrupulous JJ\nscrupulously RB\nscrutin FW\nscrutinize VB\nscrutinized VBN\nscrutinizes VBZ\nscrutinizing VBG\nscrutiny NN\nscuba NN\nscudding VBG\nscuff VB\nscuffle NN\nsculpted VBN\nsculptor NN\nsculptors NNS\nsculpts VBZ\nsculptural JJ\nsculpture NN\nsculptured VBN\nsculptures NNS\nscurried VBD\nscurries NNS\nscurrilous JJ\nscurry NN\nscurrying VBG\nscurvy NN\nscuttle VB\nscuttled VBD\nscuttling VBG\nse FW\nsea NN\nsea-beach NN\nsea-blessed JJ\nsea-damp JJ\nsea-food NN\nsea-horses NNS\nsea-launched JJ\nsea-transport JJ\nsea-turtle-saving JJ\nsea-village NN\nseaboard NN\nseaborne JJ\nseacoast NN\nseafarers NNS\nseafaring JJ\nseafood NN\nseagulls NNS\nseahorse NN\nseal NN\nsealants NNS\nsealed VBN\nsealift NN\nsealing NN\nseals NNS\nseam NN\nseaman NN\nseamanship NN\nseamen NNS\nseamier JJR\nseamless JJ\nseamlessly RB\nseams NNS\nseamstress NN\nseamy JJ\nseances NNS\nseaport NN\nseaports NNS\nseaquake NN\nsear VB\nsearch NN\nsearch-and-examination JJ\nsearch-and-seizure JJ\nsearched VBD\nsearcher NN\nsearchers NNS\nsearches NNS\nsearching VBG\nsearchingly RB\nsearchings NNS\nsearchlight NN\nsearchlights NNS\nsearing VBG\nseas NNS\nseashore NN\nseashores NNS\nseaside JJ\nseason NN\nseasonal JJ\nseasonality NN\nseasonally RB\nseasoned JJ\nseasoning NN\nseasonings NNS\nseasons NNS\nseat NN\nseat-back JJ\nseat-belt NN\nseat-for-the-secretary JJ\nseat-sale JJ\nseatbelt NN\nseated VBN\nseating NN\nseatrout NN\nseats NNS\nseawall NN\nseawater NN\nseaweed NN\nsec. NN\nsecant NN\nsecants NNS\nsecco NN\nsecede VB\nseceded VBN\nseceding VBG\nsecession NN\nsecessionist NN\nsecessionists NNS\nseclude VB\nsecluded VBN\nseclusion NN\nsecond JJ\nsecond-biggest JJ\nsecond-by-second JJ\nsecond-class JJ\nsecond-consecutive JJ\nsecond-deadliest JJ\nsecond-degree JJ\nsecond-echelon JJ\nsecond-floor JJ\nsecond-grader NN\nsecond-guess VB\nsecond-guessed VBN\nsecond-guessing NN\nsecond-half JJ\nsecond-hand JJ\nsecond-highest JJ\nsecond-in-command NN\nsecond-largest JJ\nsecond-leading JJ\nsecond-level JJ\nsecond-look JJ\nsecond-most-conservative JJ\nsecond-order JJ\nsecond-place JJ\nsecond-quarter JJ\nsecond-rate JJ\nsecond-round JJ\nsecond-stage JJ\nsecond-story JJ\nsecond-tier JJ\nsecond-time JJ\nsecond-to-die JJ\nsecond-worst JJ\nsecond-year JJ\nsecondarily RB\nsecondary JJ\nsecondbiggest JJS\nsecondhand JJ\nsecondly RB\nseconds NNS\nsecrecy NN\nsecret JJ\nsecretarial JJ\nsecretaries NNS\nsecretary NN\nsecretary-general NN\nsecretary-treasurer NN\nsecreted VBN\nsecretion NN\nsecretions NNS\nsecretive JJ\nsecretively RB\nsecretly RB\nsecrets NNS\nsect NN\nsectarian JJ\nsection NN\nsectional JJ\nsectionalized JJ\nsections NNS\nsector NN\nsector... :\nsectorial JJ\nsectors NNS\nsects NNS\nsecular JJ\nsecularism NN\nsecularist NN\nsecularists NNS\nsecularized VBN\nsecure VB\nsecured VBN\nsecurely RB\nsecuring VBG\nsecurites NNS\nsecurities NNS\nsecurities'fraud NN\nsecurities-based JJ\nsecurities-firm NN\nsecurities-fraud NN\nsecurities-industry NN\nsecurities-investment JJ\nsecurities-law NN\nsecurities-laws NNS\nsecurities-price JJ\nsecurities-trading JJ\nsecurities-turnover JJ\nsecuritiess NN\nsecuritization NN\nsecurity NN\nsecurity-services NN\nsecurity-type JJ\nsed VBD\nsedan NN\nsedans NNS\nsedate JJ\nsedately RB\nsedative NN\nsedentary JJ\nsediment NN\nsedimentary JJ\nsedimentation NN\nsediments NNS\nsedition NN\nseditious JJ\nseduce VB\nseduced VBN\nseducer NN\nseduces VBZ\nseducing VBG\nseduction NN\nseductive JJ\nsedulously RB\nseduzione FW\nsee VB\nsee-lective JJ\nsee-through JJ\nseed NN\nseed-bearing JJ\nseed-capital JJ\nseed-pods NNS\nseedbed NN\nseedcoat NN\nseedcoats NNS\nseeded VBN\nseedless JJ\nseedlings NNS\nseeds NNS\nseedy JJ\nseein VBG\nseeing VBG\nseek VB\nseeker NN\nseekers NNS\nseekin VBG\nseeking VBG\nseekingly RB\nseeks VBZ\nseem VB\nseemed VBD\nseeming JJ\nseemingly RB\nseems VBZ\nseen VBN\nseep VB\nseepage NN\nseeped VBD\nseeping VBG\nseer NN\nseers NNS\nseersucker NN\nsees VBZ\nseesaw NN\nseesawing VBG\nseethe VB\nseethes VBZ\nseething VBG\nsegment NN\nsegmental JJ\nsegmentation NN\nsegmented JJ\nsegmenting VBG\nsegments NNS\nsegregate VB\nsegregated VBN\nsegregating VBG\nsegregation NN\nsegregationist NN\nsegregationists NNS\nseige NN\nseisho FW\nseismic JJ\nseismograph NN\nseismographic JJ\nseismographs NNS\nseismological JJ\nseize VB\nseized VBN\nseized-property JJ\nseizes VBZ\nseizin VBG\nseizing VBG\nseizure NN\nseizures NNS\nseldom RB\nseldom-stolen JJ\nselect VB\nselected VBN\nselecting VBG\nselection NN\nselection-rejection JJ\nselections NNS\nselective JJ\nselectively RB\nselectiveness NN\nselectivity NN\nselectors NNS\nselects VBZ\nself NN\nself-absorbed JJ\nself-acceptance NN\nself-administration NN\nself-aggrandisement NN\nself-aggrandizement NN\nself-aggrandizing JJ\nself-analysis NN\nself-appointed JJ\nself-assertion NN\nself-assertive JJ\nself-assurance NN\nself-assured JJ\nself-awareness NN\nself-betrayal NN\nself-censorship NN\nself-centered JJ\nself-certainty NN\nself-chosen JJ\nself-completion NN\nself-conceited JJ\nself-confessed JJ\nself-confidence NN\nself-confident JJ\nself-congratulation NN\nself-congratulatory JJ\nself-conscious JJ\nself-consciously RB\nself-consciousness NN\nself-consistent JJ\nself-consuming JJ\nself-contained JJ\nself-content JJ\nself-control NN\nself-correcting JJ\nself-crimination NN\nself-critical JJ\nself-criticism NN\nself-deceived JJ\nself-deceiving JJ\nself-deception NN\nself-deceptions NNS\nself-declared JJ\nself-defeat NN\nself-defeating JJ\nself-defense NN\nself-definition NN\nself-deluded JJ\nself-delusion NN\nself-deprecating JJ\nself-deprecation NN\nself-described JJ\nself-designated JJ\nself-destructed VBD\nself-destruction NN\nself-destructive JJ\nself-determination NN\nself-diagnostic JJ\nself-dictate NN\nself-discipline NN\nself-discovery NN\nself-dramatization NN\nself-effacement NN\nself-effacing JJ\nself-employed JJ\nself-employment NN\nself-enclosed JJ\nself-energizing JJ\nself-enforced JJ\nself-esteem NN\nself-evident JJ\nself-examination NN\nself-exile NN\nself-experimentation NN\nself-explanatory JJ\nself-expression NN\nself-extinguishing JJ\nself-financed JJ\nself-flagellation NN\nself-fulfilling JJ\nself-funding NN\nself-governing JJ\nself-government NN\nself-hatred NN\nself-help NN\nself-image NN\nself-images NN\nself-important JJ\nself-imposed JJ\nself-incrimination NN\nself-indulgence NN\nself-indulgent JJ\nself-inflicted JJ\nself-insurance NN\nself-insure VBP\nself-insured JJ\nself-interest NN\nself-interested JJ\nself-involved JJ\nself-judging JJ\nself-locking JJ\nself-managing JJ\nself-mastery NN\nself-multilation NN\nself-observation NN\nself-ordained JJ\nself-pacification NN\nself-perceived JJ\nself-perpetuating JJ\nself-pity NN\nself-pitying JJ\nself-plagiarisms NNS\nself-policing JJ\nself-portrait NN\nself-portraits NNS\nself-prescribed JJ\nself-preservation NN\nself-proclaimed JJ\nself-professed JJ\nself-promotion NN\nself-protection NN\nself-published JJ\nself-realized JJ\nself-redefinition NN\nself-referential JJ\nself-reform NN\nself-regulating JJ\nself-regulation NN\nself-regulator NN\nself-regulatory JJ\nself-reinsure VB\nself-reliance NN\nself-reliant JJ\nself-respect NN\nself-respecting JJ\nself-restraint NN\nself-righteous JJ\nself-righteousness NN\nself-rule NN\nself-sacrifice NN\nself-sacrificing JJ\nself-satisfaction NN\nself-screening JJ\nself-scrutiny NN\nself-seeking JJ\nself-serve NN\nself-served VBD\nself-serving JJ\nself-splicing JJ\nself-starters NNS\nself-starting JJ\nself-styled JJ\nself-sufficiency NN\nself-sufficient JJ\nself-supporting JJ\nself-sustaining JJ\nself-taught JJ\nself-tender JJ\nself-tilth NN\nself-unloading JJ\nself-victimized JJ\nself-will NN\nself-willed JJ\nselfdamaging JJ\nselfeffacing VBG\nselfish JJ\nselfishness NN\nselfless JJ\nselflessness NN\nsell VB\nsell-off NN\nsell-offs NNS\nsell-order JJ\nsell-through NN\nselle VB\nseller NN\nseller-financed JJ\nsellers NNS\nsellin NN\nselling VBG\nselloff NN\nselloffs NNS\nsellout NN\nsells VBZ\nselves NNS\nsemantic JJ\nsemantically RB\nsemantics NNS\nsemblance NN\nsemen NN\nsemester NN\nsemesters NNS\nsemi-abstract JJ\nsemi-abstractions NNS\nsemi-ambiguous JJ\nsemi-annual JJ\nsemi-annually RB\nsemi-arid JJ\nsemi-automatic JJ\nsemi-autonomous JJ\nsemi-catatonic JJ\nsemi-celebrities NNS\nsemi-circle NN\nsemi-city JJ\nsemi-conductors NNS\nsemi-conscious JJ\nsemi-controlled JJ\nsemi-finalists NNS\nsemi-finished JJ\nsemi-gelatinous JJ\nsemi-heights NNS\nsemi-independent JJ\nsemi-inflated JJ\nsemi-isolated JJ\nsemi-liquefied JJ\nsemi-literate JJ\nsemi-local JJ\nsemi-major JJ\nsemi-minor JJ\nsemi-nude JJ\nsemi-obscure JJ\nsemi-precious JJ\nsemi-private JJ\nsemi-processed JJ\nsemi-professional JJ\nsemi-professionally RB\nsemi-public JJ\nsemi-retired JJ\nsemi-rigid JJ\nsemi-serious JJ\nsemi-skilled JJ\nsemi-special JJ\nsemi-statist JJ\nsemi-sterile JJ\nsemiannual JJ\nsemiannually RB\nsemiarid JJ\nsemiautomatic JJ\nsemicircular JJ\nsemiconductor NN\nsemiconductor-coating NN\nsemiconductor-depreciation JJ\nsemiconductor-equipment NN\nsemiconductor-manufacturing NN\nsemiconductor-production NN\nsemiconductors NNS\nsemidrying JJ\nsemiempirical JJ\nsemifinalists NNS\nsemifinals NNS\nsemifinished VBN\nsemiliterate JJ\nsemimonthly JJ\nseminal JJ\nseminar NN\nseminarian NN\nseminarians NNS\nseminars NNS\nseminary NN\nsemipublic JJ\nsemiquantitative JJ\nsemisecret JJ\nsemitrance NN\nsemitropical JJ\nsemper FW\nsenate NN\nsenator NN\nsenatorial JJ\nsenators NNS\nsend VB\nsenders NNS\nsending VBG\nsends VBZ\nsenile JJ\nsenilis NNS\nsenior JJ\nsenior-debt NN\nsenior-graduate NN\nsenior-level JJ\nsenior-management NN\nsenior-subordinated JJ\nsenioritatis FW\nseniority NN\nseniority-list NN\nseniors NNS\nsenora NN\nsensation NN\nsensational JJ\nsensationalism NN\nsensationalizing VBG\nsensations NNS\nsense NN\nsensed VBD\nsenseless JJ\nsenselessly RB\nsenses NNS\nsensibilities NNS\nsensibility NN\nsensible JJ\nsensibly RB\nsensing VBG\nsensitive JJ\nsensitive-area NN\nsensitively RB\nsensitives NNS\nsensitivities NNS\nsensitivity NN\nsensitize VB\nsensitized VBN\nsensor NN\nsensors NNS\nsensory JJ\nsensual JJ\nsensuality NN\nsensuous JJ\nsent VBD\nsentence NN\nsentence-structure JJ\nsentenced VBN\nsentences NNS\nsentencing NN\nsentencings NNS\nsentient JJ\nsentiment NN\nsentimental JJ\nsentimentalists NNS\nsentimentality NN\nsentimentalize VB\nsentiments NNS\nsentinel NN\nsentinels NNS\nsentry NN\nseparable JJ\nseparate JJ\nseparated VBN\nseparately RB\nseparateness NN\nseparates VBZ\nseparating VBG\nseparation NN\nseparation-of-powers JJ\nseparations NNS\nseparatist JJ\nseparatists NNS\nseparators NNS\nsepia JJ\nsepsis NN\nsepta NNS\nseptation NN\nseptic JJ\nseptillion CD\nseptuagenarian NN\nseptum NN\nsepulchred VBN\nseq NN\nsequel NN\nsequels NNS\nsequence NN\nsequence-tagged JJ\nsequenced VBN\nsequences NNS\nsequester NN\nsequestered VBN\nsequestering NN\nsequestration NN\nsequined JJ\nsequins NNS\nsera NNS\nseraphim NN\nserenade NN\nserenaded VBN\nserendipity NN\nserene JJ\nserenely RB\nserenity NN\nserfs NNS\nserge NN\nsergeant NN\nsergeants NNS\nserial JJ\nserialized VBN\nserials NNS\nseries NN\nseries-production NN\nseries. NN\nserious JJ\nserious-minded JJ\nseriously RB\nseriousness NN\nserloin NN\nsermon NN\nsermons NNS\nsermons\\/From JJ\nserological JJ\nserotonin NN\nserpent NN\nserpentine JJ\nserpents NNS\nserratus NN\nserum NN\nservant NN\nservants NNS\nserve VB\nserve-the-world JJ\nserved VBN\nserver NN\nservers NNS\nserves VBZ\nservice NN\nservice-center NN\nservice-connected JJ\nservice-industry JJ\nservice-oriented JJ\nservice-sector JJ\nservice-type JJ\nserviceable JJ\nserviced VBN\nservicemen NNS\nservicers NNS\nservices NNS\nservices-repair NN\nservicing NN\nserviettes NNS\nservile JJ\nserving VBG\nservings NNS\nservitors NNS\nservitude NN\nservo NN\nsesame NN\nsession NN\nsessions NNS\nset VBN\nset-aside JJ\nset-asides NNS\nset-up NN\nsetback NN\nsetbacks NNS\nsets NNS\nsetters NNS\nsetting VBG\nsettings NNS\nsettle VB\nsettled VBD\nsettlement NN\nsettlements NNS\nsettler NN\nsettlers NNS\nsettles VBZ\nsettling VBG\nsetup NN\nsetups NNS\nseven CD\nseven-bedroom JJ\nseven-concert JJ\nseven-course JJ\nseven-day JJ\nseven-digit JJ\nseven-eighths NNS\nseven-figure JJ\nseven-fold JJ\nseven-hit JJ\nseven-inch JJ\nseven-inning JJ\nseven-iron NN\nseven-member JJ\nseven-million-ton JJ\nseven-month JJ\nseven-month-old JJ\nseven-o'clock RB\nseven-point JJ\nseven-session JJ\nseven-shot JJ\nseven-stories JJ\nseven-story JJ\nseven-tenths NNS\nseven-thirty RB\nseven-unit JJ\nseven-volume JJ\nseven-week JJ\nseven-week-old JJ\nseven-word JJ\nseven-year JJ\nseven-year-old JJ\nseven-yen JJ\nsevenday JJ\nsevenfold RB\nseventeen CD\nseventeen-inch JJ\nseventeen-year-old JJ\nseventeenth JJ\nseventeenth-century JJ\nseventh JJ\nseventh-biggest JJ\nseventh-consecutive JJ\nseventh-inning JJ\nseventh-largest JJ\nseventh-most-admired JJ\nseventies NNS\nseventy CD\nseventy-eight JJ\nseventy-fifth JJ\nseventy-five CD\nseventy-five-foot JJ\nseventy-foot JJ\nseventy-four CD\nseventy-odd JJ\nseventy-six JJ\nseventy-two JJ\nsever VB\nseverable JJ\nseveral JJ\nseveral-year JJ\nseverally RB\nseveralty NN\nseverance NN\nsevere JJ\nsevere-looking JJ\nsevered VBN\nseverely RB\nseverest JJS\nsevering VBG\nseverity NN\nseverly RB\nsevices NNS\nsew VB\nsewage NN\nsewage-polluted JJ\nsewage-treatment NN\nsewed VBD\nsewer NN\nsewer-repair JJ\nsewerage NN\nsewers NNS\nsewing NN\nsewing-machine NN\nsewn VBN\nsews VBZ\nsex NN\nsex-change JJ\nsex-discrimination NN\nsex-education NN\nsex-for-hire JJ\nsex-manuals NNS\nsexes NNS\nsexism NN\nsexist JJ\nsexologist NN\nsexology NN\nsexpot NN\nsextet NN\nsextillion CD\nsexton NN\nsexual JJ\nsexuality NN\nsexualized JJ\nsexually RB\nsexy JJ\nsforzando NN\nsh-ts NN\nsha MD\nshabbily RB\nshabby JJ\nshack NN\nshack-up JJ\nshacked VBN\nshackle VB\nshackled VBN\nshackles NNS\nshacks NNS\nshad NN\nshade NN\nshade-darkened JJ\nshaded VBN\nshades NNS\nshadier JJR\nshading NN\nshadings NNS\nshadow NN\nshadowed VBN\nshadowing NN\nshadows NNS\nshadowy JJ\nshady JJ\nshaft NN\nshafts NNS\nshag JJ\nshaggy JJ\nshags VBZ\nshah NN\nshake VB\nshake-up NN\nshaken VBN\nshakeout NN\nshaker NN\nshakers NNS\nshakes VBZ\nshakeup NN\nshakily RB\nshaking VBG\nshaky JJ\nshall MD\nshallow JJ\nshallow-water NN\nshallower JJR\nshallowness NN\nshalt VB\nsham NN\nshamanistic JJ\nshambled VBD\nshambles NN\nshambling VBG\nshame NN\nshamed VBN\nshamefacedly RB\nshameful JJ\nshameless JJ\nshamelessly RB\nshames NNS\nshampoo NN\nshampooed VBN\nshamrock NN\nshamrocks NNS\nshams NNS\nshanties NNS\nshantung-like JJ\nshanty NN\nshantytown NN\nshantytowns NNS\nshape NN\nshape-up JJ\nshaped VBN\nshapeless JJ\nshapely JJ\nshapes NNS\nshaping VBG\nshards NNS\nshare NN\nshare-buying NN\nshare-holders NNS\nshare-price JJ\nshare-purchase NN\nshare-repurchase JJ\nshare-trading NN\nshare... :\nsharecrop NN\nsharecropper NN\nsharecroppers NNS\nshared VBN\nshareholder NN\nshareholder-owned JJ\nshareholder-payout JJ\nshareholder-rights JJ\nshareholder\\ JJ\nshareholder\\/management NN\nshareholders NNS\nshareholding NN\nshareholdings NNS\nshareowners NNS\nsharers NNS\nshares NNS\nsharing VBG\nshark NN\nshark-infested JJ\nsharks NNS\nsharkskin NN\nsharp JJ\nsharp-focus JJ\nsharp-jawed JJ\nsharp-leafed JJ\nsharp-limbed JJ\nsharp-rising JJ\nsharpen VB\nsharpened VBN\nsharpener NN\nsharpening VBG\nsharpens VBZ\nsharper JJR\nsharpest JJS\nsharply RB\nsharpness NN\nsharpshooter NN\nsharpshooters NNS\nshashlik NN\nshatter VB\nshattered VBN\nshattering VBG\nshatteringly RB\nshatterproof JJ\nshatters NNS\nshave VB\nshaved VBN\nshaven JJ\nshaver NN\nshavers NNS\nshaves VBZ\nshaving NN\nshavings NNS\nshawl NN\nshawls NNS\nshe PRP\nshe's VBZ\nshea NN\nsheaf NN\nshear NN\nsheared JJ\nshearing NN\nsheath NN\nsheathing NN\nsheaths NNS\nshed VB\nshedding VBG\nsheds VBZ\nsheen NN\nsheep NN\nsheep-like JJ\nsheep-lined JJ\nsheepe NNS\nsheepish JJ\nsheepskin NN\nsheer JJ\nsheered VBD\nsheet NN\nsheet-fed JJ\nsheet-metal JJ\nsheet-rolling VBG\nsheeted JJ\nsheeting NN\nsheetrock NN\nsheets NNS\nsheik NN\nsheiks NNS\nshelf NN\nshelf-life NN\nshelf-registered JJ\nshelf-stable JJ\nshell NN\nshell-psychology NN\nshell-shocked JJ\nshelled VBD\nshellfire NN\nshellfish NN\nshelling VBG\nshells NNS\nshellshocked VBN\nshelter NN\nshelter. NN\nsheltered VBN\nsheltering VBG\nshelters NNS\nshelve VB\nshelved VBD\nshelves NNS\nshelving NN\nshenanigans NNS\nshepherd NN\nshepherded VBD\nshepherding VBG\nshepherds NNS\nsherbet NN\nsherbet-colored JJ\nsheriff NN\nsheriffs NNS\nsherry NN\nshewe NN\nshibboleth NN\nshibboleths NNS\nshied VBD\nshield NN\nshielded VBN\nshielding NN\nshields NNS\nshies VBZ\nshift NN\nshifted VBD\nshifters NNS\nshifting VBG\nshiftless JJ\nshifts NNS\nshifty JJ\nshill NN\nshillings NNS\nshills NNS\nshim VB\nshimmer NN\nshimmered VBD\nshimmering VBG\nshimming NN\nshimmy VB\nshims NNS\nshin NN\nshinbone NN\nshine NN\nshines VBZ\nshingle NN\nshingles NNS\nshining VBG\nshiningly RB\nshins NNS\nshiny JJ\nship NN\nship-to-surface NN\nshipboard NN\nshipboard-weapons NNS\nshipbuilder NN\nshipbuilders NNS\nshipbuilding NN\nshipload NN\nshipmate NN\nshipmates NNS\nshipment NN\nshipments NNS\nshipowners NNS\nshipped VBN\nshipper NN\nshippers NNS\nshipping VBG\nshipping-rate JJ\nships NNS\nshipsets NNS\nshipshape JJ\nshipwreck NN\nshipwrecked JJ\nshipyard NN\nshipyards NNS\nshirk VB\nshirked VBN\nshirkers NNS\nshirking VBG\nshirt NN\nshirt-pocket NN\nshirt-sleeved JJ\nshirtfront NN\nshirtless JJ\nshirts NNS\nshirtsleeve NN\nshirtwaist NN\nshish NN\nshit NN\nshit-sick JJ\nshitt NN\nshiver NN\nshivered VBD\nshivering VBG\nshivers NNS\nshivery JJ\nshmaltzy NN\nsho UH\nshoals NNS\nshock NN\nshock-damping JJ\nshocked VBN\nshocker NN\nshocking JJ\nshockingly RB\nshockproof JJ\nshocks NNS\nshockwave NN\nshod JJ\nshoddy JJ\nshoe NN\nshoe-horn VB\nshoe-horned VBN\nshoe-string NN\nshoehorned VBN\nshoelace NN\nshoelaces NNS\nshoemaker NN\nshoemaking VBG\nshoes NNS\nshoestring NN\nshoestrings NNS\nshoji FW\nshone VBD\nshoo-in NN\nshooed VBN\nshooing VBG\nshook VBD\nshoot VB\nshoot-'em-up NN\nshoot-down NN\nshoot-out NN\nshooter NN\nshooters NNS\nshootin VBG\nshooting NN\nshootings NNS\nshootout NN\nshootouts NNS\nshoots VBZ\nshop NN\nshop-by-catalog JJ\nshop-till-you-drop JJ\nshopkeeper NN\nshopkeepers NNS\nshoplifters NNS\nshoplifting NN\nshopped VBN\nshopper NN\nshoppers NNS\nshopping NN\nshopping-center NN\nshopping-mall NN|JJ\nshops NNS\nshopworn JJ\nshore NN\nshored VBN\nshoreline NN\nshorelines NNS\nshores NNS\nshoring VBG\nshorn VB\nshort JJ\nshort-barrel NN\nshort-changing JJ\nshort-circuited VBD\nshort-contact JJ\nshort-covering NN\nshort-cut JJ\nshort-cutting JJ\nshort-dated JJ\nshort-dollar JJ\nshort-haul JJ\nshort-lived JJ\nshort-of-war JJ\nshort-range JJ\nshort-run JJ\nshort-sale JJ\nshort-sell VB\nshort-seller NN\nshort-sellers NNS\nshort-selling NN\nshort-skirted JJ\nshort-staffed JJ\nshort-story NN\nshort-term JJ\nshort-time JJ\nshort-to-medium JJ\nshort-to-medium-range JJ\nshort-wave JJ\nshortage NN\nshortages NNS\nshortcake NN\nshortchanged VBN\nshortchanging VBG\nshortcoming NN\nshortcomings NNS\nshortcovering NN\nshortcut NN\nshortcuts NNS\nshorted VBN\nshorten VB\nshortened VBN\nshortening VBG\nshorter JJR\nshorter-tenure JJ\nshorter-term JJ\nshortest JJS\nshortfall NN\nshortfalls NNS\nshorthand NN\nshorthanded JJ\nshorting VBG\nshortlived JJ\nshortly RB\nshortner NN\nshortness NN\nshorts NNS\nshortsighted JJ\nshortsightedness NN\nshortstop NN\nshortterm JJ\nshortwings NNS\nshot NN\nshot-up JJ\nshotgun NN\nshotguns NNS\nshots NNS\nshotshells NNS\nshouders NNS\nshould MD\nshould-be JJ\nshould... :\nshouldda MD|VB\nshoulder NN\nshoulder-high JJ\nshoulder-to-shoulder JJ\nshouldered VBD\nshouldering VBG\nshoulders NNS\nshouldn't MD\nshout VB\nshouted VBD\nshouting VBG\nshouts VBZ\nshove VB\nshoved VBD\nshovel NN\nshoveled VBD\nshoveling VBG\nshovels NNS\nshoves VBZ\nshoving VBG\nshow NN\nshow-biz NN\nshow-down NN\nshow-offy JJ\nshow-piece JJ\nshow-stoppers NNS\nshow\\ NN\nshowcase NN\nshowcases NNS\nshowcasing VBG\nshowdown NN\nshowed VBD\nshower NN\nshowered VBN\nshowerhead NN\nshowering VBG\nshowers NNS\nshowgirls NNS\nshowgrounds NNS\nshowin NN\nshowing VBG\nshowings NNS\nshowman NN\nshowmanship NN\nshowmen NNS\nshown VBN\nshowpiece NN\nshowroom NN\nshowrooms NNS\nshows VBZ\nshowy JJ\nshrank VBD\nshrapnel NN\nshred NN\nshredded JJ\nshredder NN\nshredding VBG\nshreds NNS\nshrewd JJ\nshrewder JJR\nshrewdest JJS\nshrewdly RB\nshrewish JJ\nshriek NN\nshrieked VBD\nshrieking NN\nshrieks NNS\nshrift NN\nshrill JJ\nshrilled VBD\nshrilling VBG\nshrillness NN\nshrilly RB\nshrimp NN\nshrimpers NNS\nshrimping NN\nshrine NN\nshrines NNS\nshrink VB\nshrinkage NN\nshrinking VBG\nshrinks VBZ\nshrivel VB\nshriveled VBN\nshroud VBP\nshrouded VBN\nshrouding VBG\nshrouds VBZ\nshrub NN\nshrub-covered JJ\nshrubbery NN\nshrubbery-lined JJ\nshrubs NNS\nshrug VB\nshrugged VBD\nshrugging VBG\nshrugs VBZ\nshrunk VBN\nshrunken JJ\nshtik NN\nshuck VB\nshucks UH\nshudder VB\nshuddered VBD\nshuddering VBG\nshudders NNS\nshuddery NN\nshuffle NN\nshuffled VBD\nshuffling VBG\nshuld MD\nshulde MD\nshun VB\nshunned VBD\nshunning VBG\nshuns VBZ\nshunt NN\nshunts NNS\nshut VBN\nshut-in JJ\nshut-off JJ\nshutdown NN\nshutdowns NNS\nshute VB\nshutoff NN\nshutout NN\nshuts VBZ\nshutter NN\nshuttered JJ\nshuttering VBG\nshutters NNS\nshutting VBG\nshuttle NN\nshuttle-busing NN\nshuttled VBD\nshuttles NNS\nshuttling VBG\nshvartze NN\nshy JJ\nshying VBG\nshyly RB\nsibilant JJ\nsibling NN\nsiblings NNS\nsic RB\nsick JJ\nsick-building JJ\nsickened VBN\nsickening JJ\nsicker JJR\nsickish JJ\nsickle JJ\nsickliest JJS\nsickly JJ\nsickly-tolerant JJ\nsickness NN\nsickroom NN\nside NN\nside-arm NN\nside-by-side RB\nside-conclusions NNS\nside-crash JJ\nside-effects NNS\nside-looking JJ\nside-rack NN\nside-step VBP\nside-stepped VBD\nside-stepping JJ\nsidearms NNS\nsideboard NN\nsideboards NNS\nsidechairs NNS\nsided VBD\nsidekick NN\nsidelight NN\nsideline NN\nsideline-business JJ\nsidelined VBN\nsidelines NNS\nsidelining VBG\nsidelong JJ\nsideman NN\nsidemen NNS\nsides NNS\nsideshow NN\nsidestep VB\nsidestepped VBD\nsidestepping VBG\nsidesteps VBZ\nsidestreet NN\nsidetrack VB\nsidetracked VBD\nsidewalk NN\nsidewalks NNS\nsideways RB\nsidewinder NN\nsidewise RB\nsiding NN\nsidings NNS\nsidle VB\nsidled VBD\nsieben FW\nsiege NN\nsienna JJ\nsiesta NN\nsieve NN\nsift VB\nsifted VBD\nsifting NN\nsigh NN\nsighed VBD\nsighing VBG\nsighs VBZ\nsight NN\nsight-seeing JJ\nsighted VBN\nsighting NN\nsightings NNS\nsights NNS\nsightseeing NN\nsightseers NNS\nsign NN\nsign-carrying JJ\nsign-language NN\nsign-off NN\nsignal NN\nsignal-intensity NN\nsignal-processing JJ\nsignal-to-noise JJ\nsignaled VBD\nsignaling VBG\nsignalizes VBZ\nsignalled VBD\nsignalling VBG\nsignals NNS\nsignatories NNS\nsignatory JJ\nsignature NN\nsignatures NNS\nsignboard NN\nsignboards NNS\nsigned VBD\nsigner NN\nsigners NNS\nsignificance NN\nsignificant JJ\nsignificantly RB\nsignified VBD\nsignifies VBZ\nsignify VB\nsignifying VBG\nsigning VBG\nsignpost NN\nsignposts NNS\nsigns NNS\nsigue FW\nsilence NN\nsilenced VBN\nsilences NNS\nsilencing VBG\nsilent JJ\nsilently RB\nsilhouette NN\nsilhouetted VBN\nsilhouettes NNS\nsilica NN\nsilica-glass NN\nsilicate NN\nsilicates NNS\nsilicon NN\nsilicone NN\nsilk NN\nsilk-stocking JJ\nsilke NN\nsilken JJ\nsilkily RB\nsilky JJ\nsill NN\nsillier JJR\nsilliest JJS\nsilliness NN\nsilly JJ\nsilo NN\nsilos NNS\nsilted VBN\nsilvas FW\nsilver NN\nsilver-bearded JJ\nsilver-blue JJ\nsilver-conspiracy NN\nsilver-gray JJ\nsilver-haired JJ\nsilver-painted JJ\nsilversmith NN\nsilverware NN\nsilvery JJ\nsimian JJ\nsimilar JJ\nsimilar-sized JJ\nsimilar-sounding JJ\nsimilarities NNS\nsimilarity NN\nsimilarly RB\nsimile NN\nsimiliar JJ\nsimilitude NN\nsimmer VB\nsimmered VBN\nsimmering VBG\nsimperers NNS\nsimple JJ\nsimple-minded JJ\nsimple-seeming JJ\nsimpler JJR\nsimples NNS\nsimplest JJS\nsimpleton NN\nsimpliciter FW\nsimplicities NNS\nsimplicitude NN\nsimplicity NN\nsimplification NN\nsimplified JJ\nsimplifies VBZ\nsimplify VB\nsimplifying VBG\nsimplistic JJ\nsimply RB\nsimulate VB\nsimulated VBN\nsimulates VBZ\nsimulation NN\nsimulations NNS\nsimulator NN\nsimulators NNS\nsimulcasting VBG\nsimultaneous JJ\nsimultaneously RB\nsin NN\nsin-ned VB\nsince IN\nsincere JJ\nsincerely RB\nsincerest JJS\nsincerity NN\nsind FW\nsine FW\nsinecure NN\nsinecures NNS\nsinews NNS\nsinewy JJ\nsinful JJ\nsinfulness NN\nsing VB\nsing-song NN\nsinged VBD\nsinger NN\nsingers NNS\nsinging VBG\nsingle JJ\nsingle-A JJ\nsingle-A-1 JJ\nsingle-A-1-plus NNP\nsingle-A-1\\ NN\nsingle-A-2 JJ\nsingle-A-3 JJ\nsingle-A-minus JJ\nsingle-A-plus JJ\nsingle-A2 JJ\nsingle-A\\ NN\nsingle-B JJ\nsingle-B-1 JJ\nsingle-B-2 JJ\nsingle-B-3 NNP\nsingle-B-minus JJ\nsingle-B-plus JJ\nsingle-D JJ\nsingle-adjudicator JJ\nsingle-barrel JJ\nsingle-cell JJ\nsingle-class JJ\nsingle-copy JJ\nsingle-country JJ\nsingle-crystal NN\nsingle-day JJ\nsingle-digit JJ\nsingle-domain JJ\nsingle-dose JJ\nsingle-employer JJ\nsingle-engine JJ\nsingle-family JJ\nsingle-firm JJ\nsingle-foot JJ\nsingle-handed JJ\nsingle-handedly RB\nsingle-home JJ\nsingle-issue JJ\nsingle-job JJ\nsingle-lane JJ\nsingle-level JJ\nsingle-lot JJ\nsingle-malt JJ\nsingle-market JJ\nsingle-minded JJ\nsingle-most-needed JJ\nsingle-owner JJ\nsingle-parent JJ\nsingle-party JJ\nsingle-payment JJ\nsingle-premium JJ\nsingle-room-occupancy JJ\nsingle-season JJ\nsingle-sentence JJ\nsingle-sex JJ\nsingle-shot JJ\nsingle-spaced JJ\nsingle-sponsor JJ\nsingle-step JJ\nsingle-store JJ\nsingle-valued JJ\nsingle-warhead NN\nsingled VBD\nsinglehandedly RB\nsingleness NN\nsingles NNS\nsingling VBG\nsingly RB\nsings VBZ\nsingsonged VBD\nsingular JJ\nsingularity NN\nsingularly RB\nsinister JJ\nsink VB\nsinkhole NN\nsinking VBG\nsinking-fund JJ\nsinks VBZ\nsinkt FW\nsinless JJ\nsinned VBN\nsinner NN\nsinners NNS\nsinners\\/Who NN\nsinning NN\nsins NNS\nsinuous JJ\nsinuously RB\nsinuousness NN\nsinus NN\nsinuses NNS\nsinusoidal JJ\nsinusoids NNS\nsip NN\nsiphon VB\nsiphoned VBD\nsiphoning VBG\nsiphons NNS\nsipped VBD\nsippers NNS\nsipping VBG\nsir NN\nsired VBN\nsiren JJ\nsirens NNS\nsirloin NN\nsis NN\nsister NN\nsister-in-law NN\nsisters NNS\nsisters-in-law NNS\nsit VB\nsit-down JJ\nsit-in NN\nsit-ins NNS\nsitcom NN\nsitcoms NNS\nsite NN\nsite-development NN\nsites NNS\nsiting NN\nsits VBZ\nsitter NN\nsitters NNS\nsitting VBG\nsittings NNS\nsitu FW\nsituated VBN\nsituation NN\nsituations NNS\nsitus NN\nsix CD\nsix-bottle JJ\nsix-cent JJ\nsix-cent-a-share JJ\nsix-count JJ\nsix-county JJ\nsix-cylinder JJ\nsix-day JJ\nsix-dollar JJ\nsix-figure JJ\nsix-fold RB\nsix-foot JJ\nsix-foot-four JJ\nsix-footer NN\nsix-four CD\nsix-gallon JJ\nsix-game JJ\nsix-hour JJ\nsix-inch JJ\nsix-inch-square JJ\nsix-lane JJ\nsix-man JJ\nsix-mile JJ\nsix-minute JJ\nsix-month JJ\nsix-months NNS\nsix-packs NNS\nsix-person JJ\nsix-point JJ\nsix-shooter NN\nsix-story JJ\nsix-thirty JJ\nsix-time JJ\nsix-ton JJ\nsix-week JJ\nsix-week-long JJ\nsix-week-old JJ\nsix-year JJ\nsix-year-old JJ\nsixfold RB\nsixteen CD\nsixteen-year-old JJ\nsixteenth JJ\nsixth JJ\nsixth-biggest JJ\nsixth-grade JJ\nsixth-largest JJ\nsixth-sense NN\nsixties NNS\nsixty CD\nsixty-day JJ\nsixty-eight CD\nsixty-five CD\nsixty-five-mile JJ\nsixty-nine CD\nsixty-one CD\nsixty-two CD\nsizable JJ\nsize NN\nsizeable JJ\nsized VBD\nsizenine JJ\nsizes NNS\nsizing NN\nsizzle NN\nsizzled VBD\nsizzles VBZ\nsizzling JJ\nskate VB\nskateboards NNS\nskates NNS\nskating VBG\nskeet NN\nskein NN\nskeletal JJ\nskeleton NN\nskeletons NNS\nskeptic NN\nskeptical JJ\nskeptically RB\nskepticism NN\nskeptics NNS\nsketch NN\nsketchbook NN\nsketched VBN\nsketches NNS\nsketchiest JJS\nsketching VBG\nsketchy JJ\nskew VB\nskewed VBN\nskewer NN\nski NN\nski-industry NN\nski-joring NN\nskid NN\nskid-row NN\nskidded VBD\nskidding VBG\nskiddy JJ\nskids NNS\nskier NN\nskiers NNS\nskies NNS\nskiff NN\nskiffs NNS\nskiing NN\nskiis NNS\nskilful JJ\nskilfully RB\nskill NN\nskill-dilution JJ\nskilled JJ\nskilled-nursing JJ\nskillet NN\nskillful JJ\nskillfully RB\nskillfulness NN\nskills NNS\nskim VB\nskim-milk NN\nskimmed VBD\nskimmers NNS\nskimming VBG\nskimp VB\nskimpy JJ\nskims VBZ\nskin NN\nskin-care JJ\nskin-perceptiveness NN\nskindive VB\nskindiving VBG\nskinfolds NNS\nskinhead NN\nskinheads NNS\nskinless JJ\nskinnin NN\nskinning NN\nskinny JJ\nskins NNS\nskip VB\nskip-a-month JJ\nskipped VBD\nskipper NN\nskippering VBG\nskippers NNS\nskipping VBG\nskips VBZ\nskirmish NN\nskirmished VBD\nskirmishers NNS\nskirmishes NNS\nskirmishing NN\nskirt NN\nskirted VBN\nskirting VBG\nskirts NNS\nskis NNS\nskit NN\nskits NNS\nskittish JJ\nskittishness NN\nskivvies NNS\nskouting VBG\nskulk VB\nskull NN\nskull-bashings NNS\nskullcap NN\nskulls NNS\nskunk NN\nskunks NNS\nsky NN\nsky-carving JJ\nsky-high JJ\nsky-reaching JJ\nsky-tapping JJ\nskyjacked VBN\nskyjackers NNS\nskylarking VBG\nskylight NN\nskylights NNS\nskyline NN\nskyrocket VB\nskyrocketed VBD\nskyrocketing VBG\nskyscraper NN\nskyscrapers NNS\nskyward RB\nskywave NN\nsl UH\nslab NN\nslabs NNS\nslack JJ\nslacken VB\nslackened VBD\nslackening VBG\nslacking VBG\nslackjawed VBN\nslacks NNS\nsladang NN\nslag NN\nslain VBN\nslaked VBN\nslam NN\nslam-dunk NN\nslammed VBD\nslammer NN\nslamming VBG\nslams VBZ\nslander NN\nslanderer NN\nslanderous JJ\nslanders NNS\nslang NN\nslangy-confidential JJ\nslant NN\nslant-wise JJ\nslanted VBN\nslanting VBG\nslants VBZ\nslap VB\nslapped VBD\nslapping VBG\nslaps VBZ\nslapstick NN\nslash VB\nslash-mouthed JJ\nslashed VBD\nslasher NN\nslashes NNS\nslashing VBG\nslat NN\nslate NN\nslated VBN\nslats NNS\nslatted JJ\nslaughter NN\nslaughtered VBN\nslaughterhouse NN\nslaughtering VBG\nslaughters VBZ\nslave NN\nslave-laborers NNS\nslave-owners NNS\nslavered VBD\nslavery NN\nslaves NNS\nslavish JJ\nslavishly RB\nslaw NN\nslaying NN\nslayings NNS\nsleaze NN\nsleazebag NN\nsleazy JJ\nsledding NN\nsleek JJ\nsleek-headed JJ\nsleep VB\nsleep-deprived JJ\nsleep-disorder JJ\nsleep-wakefulness NN\nsleeper NN\nsleepily RB\nsleeping VBG\nsleepless JJ\nsleeplessly RB\nsleeplessness NN\nsleeps VBZ\nsleepwalk NN\nsleepwalked VBD\nsleepwalker NN\nsleepwalkers NNS\nsleepwalking VBG\nsleepy JJ\nsleet NN\nsleeve NN\nsleeves NNS\nsleighs NNS\nsleight NN\nslender JJ\nslender-waisted JJ\nslenderer JJR\nslept VBD\nsleuth NN\nsleuthing NN\nslew NN\nslice NN\nsliced VBN\nslices NNS\nslicing VBG\nslick JJ\nslick-headed JJ\nslick-talking JJ\nslicker NN\nslickers NNS\nslickly RB\nslid VBD\nslide NN\nslide-lock NN\nslide-packs NNS\nslides NNS\nsliding VBG\nsliding-rate JJ\nslight JJ\nslighted JJ\nslighter JJR\nslightest JJS\nslighting VBG\nslightly RB\nslightly-smoking JJ\nslights NNS\nslighty NN\nsligthly RB\nslim JJ\nslim-waisted JJ\nslime NN\nslimed VBN\nslimly RB\nslimmed VBN\nslimmed-down JJ\nslimmer JJR\nslimmer-than-expected JJ\nslimming VBG\nslimy JJ\nsling NN\nslingers NNS\nslinging VBG\nslings NNS\nslingshot NN\nslinky JJ\nslip VB\nslippage NN\nslipped VBD\nslipper NN\nslippers NNS\nslippery JJ\nslipping VBG\nslips NNS\nslipshod JJ\nslipstream NN\nslit NN\nslithered VBD\nslithering VBG\nslithers VBZ\nslits NNS\nslitter NN\nslitters NNS\nsliver NN\nsliver-like JJ\nslivered VBN\nslivers NNS\nslivery NN\nslo-mo JJ\nslob NN\nsloe NN\nsloe-eyed JJ\nslog VB\nslogan NN\nsloganeering VBG\nslogans NNS\nslogging VBG\nslogs VBZ\nsloop NN\nslop NN\nslop-bucket NN\nslope NN\nslopes NNS\nsloping VBG\nslopped VBD\nsloppily RB\nsloppiness NN\nslopping VBG\nsloppy JJ\nslosh VB\nsloshed VBD\nsloshing VBG\nslot NN\nslothful JJ\nslots NNS\nslotted VBN\nslouch NN\nslouches VBZ\nslouchy JJ\nslough VB\nslovenliness NN\nslovenly JJ\nslow JJ\nslow-acting JJ\nslow-baked JJ\nslow-bouncing JJ\nslow-building JJ\nslow-firing JJ\nslow-growing JJ\nslow-growth NN\nslow-motion JJ\nslow-moving JJ\nslow-scrambling JJ\nslow-selling JJ\nslow-spending JJ\nslow-startup JJ\nslowball NN\nslowdown NN\nslowdowns NNS\nslowed VBD\nslower JJR\nslower-than-anticipated JJ\nslower-than-expected JJ\nslowest JJS\nslowing VBG\nslowly RB\nslowly-mending JJ\nslowness NN\nslows VBZ\nsludge NN\nsludge-covered JJ\nslug NN\nslug-kebab NN\nslugfest NN\nslugged VBD\nslugger NN\nsluggers NNS\nslugging VBG\nsluggish JJ\nsluggishly RB\nsluggishness NN\nslugs NNS\nsluice NN\nsluiced VBD\nsluicehouse NN\nsluices NNS\nsluicing VBG\nslum NN\nslumber NN\nslumbered VBD\nslumbering VBG\nslumlord NN\nslump NN\nslumped VBD\nslumping VBG\nslumps VBZ\nslums NNS\nslung VBD\nslurped VBD\nslurries NNS\nslurry NN\nslurs NNS\nslush NN\nsly JJ\nslyly RB\nslyness NN\nsmack RB\nsmacked VBD\nsmacking VBG\nsmacks VBZ\nsmall JJ\nsmall-appearing JJ\nsmall-arms JJ\nsmall-boat NN\nsmall-business NN\nsmall-cap JJ\nsmall-capitalization JJ\nsmall-car NN\nsmall-city NN\nsmall-company NN\nsmall-company-stock NN\nsmall-denomination NN\nsmall-diameter JJ\nsmall-employer NN\nsmall-equipment NN\nsmall-fry JJ\nsmall-game JJ\nsmall-incision NN\nsmall-investor NN\nsmall-lot JJ\nsmall-office JJ\nsmall-scale JJ\nsmall-screen JJ\nsmall-stock NN\nsmall-time JJ\nsmall-to-medium-sized JJ\nsmall-town JJ\nsmall... :\nsmaller JJR\nsmaller-capital JJ\nsmaller-size JJ\nsmaller-than-average JJ\nsmaller-than-expected JJ\nsmallest JJS\nsmallish JJ\nsmallness NN\nsmallpox NN\nsmalltime JJ\nsmarmy JJ\nsmart JJ\nsmarted VBD\nsmarter RBR\nsmartest JJS\nsmarting VBG\nsmartly RB\nsmarts VBZ\nsmash NN\nsmash-'em-down JJ\nsmashed VBD\nsmashed-out JJ\nsmasher NN\nsmashing JJ\nsmattering NN\nsmatterings NNS\nsmear NN\nsmeared VBN\nsmell NN\nsmelled VBD\nsmelling VBG\nsmells VBZ\nsmelly JJ\nsmelt VBD\nsmelter NN\nsmelters NNS\nsmelts NNS\nsmidgen NN\nsmidgins NNS\nsmile NN\nsmiled VBD\nsmiles NNS\nsmiling VBG\nsmilingly RB\nsmirk NN\nsmirked VBD\nsmithereens NNS\nsmithy NN\nsmitten VBN\nsmock NN\nsmocks NNS\nsmog NN\nsmog-ridden JJ\nsmoggiest JJS\nsmoggy JJ\nsmokable JJ\nsmoke NN\nsmoke-choked JJ\nsmoke-filled JJ\nsmoke-stained JJ\nsmoked VBD\nsmoked-ham NN\nsmokehouse NN\nsmokeless JJ\nsmoker NN\nsmokers NNS\nsmokes VBZ\nsmokescreen NN\nsmokescreens NNS\nsmokestack NN\nsmoking NN\nsmoking-cessation NN\nsmoking-related JJ\nsmoky JJ\nsmolder VBP\nsmoldered VBD\nsmoldering VBG\nsmolderingly RB\nsmolders VBZ\nsmooching VBG\nsmooth JJ\nsmooth-speaking JJ\nsmoothbore NN\nsmoothed VBD\nsmoothed-muscled JJ\nsmoother JJ\nsmoothest JJS\nsmoothing VBG\nsmoothly RB\nsmoothness NN\nsmorgasbord NN\nsmother VB\nsmothered VBD\nsmothering VBG\nsmudge NN\nsmudged JJ\nsmug JJ\nsmuggle VB\nsmuggled VBN\nsmuggler NN\nsmugglers NNS\nsmuggling VBG\nsnack NN\nsnack-food NN\nsnacked VBD\nsnacks NNS\nsnafu NN\nsnafus NNS\nsnag NN\nsnag'em NN\nsnagged VBN\nsnagging VBG\nsnags NNS\nsnail NN\nsnail-like JJ\nsnails NNS\nsnake NN\nsnake-charmer NN\nsnake-like JJ\nsnake-oil JJ\nsnake-rail JJ\nsnaked VBD\nsnakes NNS\nsnakestrike NN\nsnaking VBG\nsnap VB\nsnap-in JJ\nsnap-on JJ\nsnapback NN\nsnapdragons NNS\nsnapped VBD\nsnapper NN\nsnapping VBG\nsnappy JJ\nsnaps VBZ\nsnapshot NN\nsnapshots NNS\nsnare VB\nsnared VBN\nsnaring VBG\nsnarl NN\nsnarled VBD\nsnarling VBG\nsnarls NNS\nsnatch VB\nsnatched VBD\nsnatches NNS\nsnatching VBG\nsnazzier JJR\nsnazzy JJ\nsneak VB\nsneaked VBD\nsneaker NN\nsneakers NNS\nsneaking VBG\nsneaks VBZ\nsneaky JJ\nsneer NN\nsneered VBD\nsneering VBG\nsneers VBZ\nsneezed VBD\nsneezing VBG\nsnick NN\nsnickered VBD\nsnickers NNS\nsnidely RB\nsniff VB\nsniffed VBD\nsniffers NNS\nsniffing VBG\nsniffs VBZ\nsniffy JJ\nsniggered VBD\nsniggeringly RB\nsnipe VB\nsniped VBD\nsniper NN\nsnipes VBZ\nsniping NN\nsnippets NNS\nsnippy JJ\nsnips NNS\nsnitched VBN\nsniveling VBG\nsnivelings NNS\nsnob NN\nsnob-clannish JJ\nsnobbery NN\nsnobbish JJ\nsnobbishly RB\nsnobs NNS\nsnooker NN\nsnoop VB\nsnooping VBG\nsnooty JJ\nsnoozing VBG\nsnoring VBG\nsnorkle NN\nsnort VB\nsnorted VBD\nsnorting NN\nsnorts VBZ\nsnotty JJ\nsnout NN\nsnouts NNS\nsnow NN\nsnow-covered JJ\nsnow-fence NN\nsnow-white JJ\nsnowball NN\nsnowballed VBD\nsnowballs NNS\nsnowbirds NNS\nsnowdrift NN\nsnowed VBD\nsnowfall NN\nsnowflakes NNS\nsnowing VBG\nsnowman NN\nsnowplow NN\nsnows NNS\nsnowstorm NN\nsnowsuit NN\nsnowy JJ\nsnub VB\nsnubbed VBN\nsnubbing VBG\nsnuck VBD\nsnuff VB\nsnuffboxes NNS\nsnuffed VBN\nsnuffer NN\nsnug JJ\nsnug-fitting JJ\nsnuggled VBD\nsnugly RB\nso RB\nso-called JJ\nso-far JJ\nso-so JJ\nsoak VB\nsoak-the-rich JJ\nsoaked VBN\nsoaking VBG\nsoap NN\nsoapbox NN\nsoaps NNS\nsoapsuds NNS\nsoapy JJ\nsoar VB\nsoared VBD\nsoaring VBG\nsoars NNS\nsob VB\nsob-wallow NN\nsobbed VBD\nsobbing VBG\nsobbingly RB\nsober JJ\nsober-faced JJ\nsobered VBN\nsobering VBG\nsoberly RB\nsobriety NN\nsobriquet NN\nsobs NNS\nsocal JJ\nsocalled JJ\nsoccer NN\nsociability NN\nsociable JJ\nsocial JJ\nsocial-action NN\nsocial-affairs NNS\nsocial-class JJ\nsocial-climbing JJ\nsocial-economic JJ\nsocial-issue JJ\nsocial-political-economical JJ\nsocial-register JJ\nsocial-role NN\nsocial-security NN\nsocial-services JJ\nsocial-studies NN\nsocial-welfare JJ\nsocialism NN\nsocialist JJ\nsocialistic JJ\nsocialists NNS\nsocialite NN\nsocialites NNS\nsociality NN\nsocialization NN\nsocialize VB\nsocialized VBN\nsocializes VBZ\nsocializing VBG\nsocially RB\nsocially-oriented JJ\nsocietal JJ\nsocieties NNS\nsociety NN\nsociety-measured VBN\nsocietyonly RB\nsocio-archaeological JJ\nsocio-economic JJ\nsocio-political JJ\nsocio-structural JJ\nsocioeconomic JJ\nsocioeconomically RB\nsociological JJ\nsociologically RB\nsociologist NN\nsociologists NNS\nsociology NN\nsociopath NN\nsock NN\nsockdologizing VBG\nsocked VBD\nsocket NN\nsockets NNS\nsocking VBG\nsocks NNS\nsod NN\nsoda NN\nsodas NNS\nsodden JJ\nsoddenly RB\nsoddies NNS\nsodium NN\nsodomy NN\nsods NNS\nsoe NN\nsofa NN\nsofar RB\nsofas NNS\nsoft JJ\nsoft-cookie NN\nsoft-currency JJ\nsoft-drink NN\nsoft-drinks NNS\nsoft-headed JJ\nsoft-hearted JJ\nsoft-heartedness NN\nsoft-landing JJ\nsoft-looking JJ\nsoft-rock JJ\nsoft-shell JJ\nsoft-shoe JJ\nsoft-spoken JJ\nsoftball NN\nsoftdrink NN\nsoften VB\nsoftened VBD\nsoftener NN\nsoftening VBG\nsoftens VBZ\nsofter JJR\nsoftest JJS\nsofties NNS\nsoftly RB\nsoftness NN\nsoftware NN\nsoftware-development NN\nsoftware-industry JJ\nsoftware-installation NN\nsoftwood JJ\nsofty NN\nsoggier NN\nsoggy JJ\nsogo-shosha NN\nsoil NN\nsoil-bearing JJ\nsoil-nutrients NNS\nsoil-removal JJ\nsoiled VBN\nsoils NNS\nsoirees NNS\nsojourn NN\nsojourner NN\nsojourners NNS\nsolace NN\nsolaced VBN\nsolar JJ\nsolar-cell JJ\nsolar-corpuscular-radiation NN\nsolar-electromagnetic NN\nsolar-power JJ\nsolar-radiation NN\nsolar-wind NN\nsolarheated JJ\nsold VBN\nsold-out JJ\nsolder JJ\nsoldered VBN\nsoldering JJ\nsoldier NN\nsoldier-masters NNS\nsoldiering NN\nsoldierly RB\nsoldiers NNS\nsoldiery NN\nsoldout NN\nsole JJ\nsolecism NN\nsolely RB\nsolemn JJ\nsolemnity NN\nsolemnly RB\nsolenoid NN\nsoles NNS\nsolicit VB\nsolicitation NN\nsolicitations NNS\nsolicited VBD\nsoliciting VBG\nsolicitor NN\nsolicitors NNS\nsolicitous JJ\nsolicitousness NN\nsolicits VBZ\nsolicitude NN\nsolid JJ\nsolid-fueled JJ\nsolid-gold JJ\nsolid-muscle JJ\nsolid-state JJ\nsolid-waste NN\nsolidarity NN\nsolidified VBD\nsolidifies VBZ\nsolidify VB\nsolidifying VBG\nsolidity NN\nsolidly RB\nsolids NNS\nsolipsism NN\nsolitary JJ\nsoliticitations NNS\nsolitude NN\nsolitudes NNS\nsolo NN\nsoloist NN\nsoloists NNS\nsolos NNS\nsolstice NN\nsoluble JJ\nsolution NN\nsolution-type JJ\nsolutions NNS\nsolvable JJ\nsolvating VBG\nsolve VB\nsolved VBN\nsolvency NN\nsolvent JJ\nsolvents NNS\nsolves VBZ\nsolving VBG\nsoma NN\nsomatic JJ\nsomatostatin NN\nsomber JJ\nsomberly RB\nsombre JJ\nsome DT\nsome... :\nsomebody NN\nsomeday RB\nsomehow RB\nsomeone NN\nsomeplace RB\nsomersault NN\nsomersaulting JJ\nsomersaults NNS\nsomethin NN\nsomething NN\nsomething... :\nsometime RB\nsometimes RB\nsometimes-aggressive JJ\nsometimes-exhausting JJ\nsometimes-necessary JJ\nsometimes-tawdry JJ\nsomewhat RB\nsomewhat-ambiguous JJ\nsomewhere RB\nsomewheres RB\nsommelier FW\nsomnambulates VBZ\nsomnambulism NN\nsomnolence NN\nsomnolent JJ\nsompin NN\nson NN\nson-in-law NN\nson-of-a-bitch NN\nson-of-exchange JJ\nsonar NN\nsonata NN\nsonatas NNS\nsong NN\nsong-writing NN\nsongbirds NNS\nsongbook NN\nsongful JJ\nsongs NNS\nsongwriters NNS\nsonic JJ\nsonnet NN\nsonnets NNS\nsonny NN\nsonny-boy NN\nsonobuoy NN\nsonofabitch NN\nsonogram NN\nsonorities NNS\nsonority NN\nsonorous JJ\nsons NNS\nsons-in-law NNS\nsoo IN\nsoon RB\nsoon-to-be JJ\nsoon-to-be-sold JJ\nsoon-to-expire JJ\nsooner RBR\nsoonest JJS\nsooo RB\nsoot NN\nsoot-stained JJ\nsoothe VB\nsoothed VBD\nsoothing VBG\nsoothingly RB\nsoothsayers NNS\nsooty JJ\nsop NN\nsophisticate NN\nsophisticated JJ\nsophisticates NNS\nsophistication NN\nsophists NNS\nsophomore NN\nsophomores NNS\nsophomoric JJ\nsoporific JJ\nsopping JJ\nsoprano NN\nsopranos NNS\nsops NNS\nsor'l NN\nsorbed VBN\nsorcery NN\nsordid JJ\nsore JJ\nsore-ridden JJ\nsoreheads NNS\nsorely RB\nsorely-needed JJ\nsoreness NN\nsores NNS\nsorest JJS\nsorghum NN\nsororities NNS\nsorority NN\nsorption NN\nsorption-desorption NN\nsorrel JJ\nsorrier JJR\nsorriest JJS\nsorrow NN\nsorrowful JJ\nsorrows NNS\nsorry JJ\nsort NN\nsorted VBN\nsortie NN\nsorting VBG\nsorting-out NN\nsorts NNS\nsou FW\nsoubriquet FW\nsouffle NN\nsought VBD\nsouk NN\nsoul NN\nsoul-searching NN\nsouled JJ\nsoulful JJ\nsoulfully RB\nsoulless JJ\nsoulmates NNS\nsouls NNS\nsound NN\nsound-alike JJ\nsound-truck JJ\nsound\\ JJ\nsounded VBD\nsounder JJR\nsounding VBG\nsoundings NNS\nsoundly RB\nsoundness NN\nsoundproof JJ\nsounds VBZ\nsoundtrack NN\nsoup NN\nsoup-to-nuts JJ\nsouped-up JJ\nsoups NNS\nsoupy JJ\nsour JJ\nsource NN\nsources NNS\nsourcing NN\nsourdough JJ\nsoured VBD\nsouring NN\nsourly RB\nsours VBZ\nsoutane NN\nsouth RB\nsouth-central JJ\nsouth-eastern JJ\nsouth-of-the-border JJ\nsouthbound JJ\nsoutheast RB\nsoutheastern JJ\nsoutherly JJ\nsouthern JJ\nsouthern-central JJ\nsouthernisms NNS\nsouthernmost JJ\nsouthpaw NN\nsouthward RB\nsouthwest RB\nsouthwestern JJ\nsouvenir NN\nsouvenirs NNS\nsovereign JJ\nsovereigns NNS\nsovereignty NN\nsoviet JJ\nsoviets NNS\nsow VBP\nsowbelly NN\nsowed VBD\nsowered VBD\nsowing NN\nsown VBN\nsows VBZ\nsoy NN\nsoyaburgers NNS\nsoybean NN\nsoybean-meal NN\nsoybeans NNS\nsp NN\nspa NN\nspace NN\nspace-age JJ\nspace-based JJ\nspace-buying NN\nspace-defense JJ\nspace-rocket NN\nspace-science NN\nspace-shuttle NN\nspace-station NN\nspace-systems NNS\nspace-time JJ\nspace-weapons NNS\nspaceborn JJ\nspacecraft NN\nspaced VBN\nspacer NN\nspacers NNS\nspaces NNS\nspaceship NN\nspaceships NNS\nspacesuit NN\nspacesuits NNS\nspacing NN\nspacings NNS\nspacious JJ\nspaciousness NN\nspackle VB\nspade NN\nspades NNS\nspaghetti NNS\nspan NN\nspandex NN\nspandrels NNS\nspangle NN\nspaniel NN\nspaniel-like JJ\nspanking JJ\nspanned VBN\nspanner NN\nspanning VBG\nspans VBZ\nspare JJ\nspare-parts JJ\nspared VBN\nspares NNS\nsparing VBG\nsparingly RB\nspark VB\nsparked VBN\nsparking VBG\nsparkle NN\nsparkled VBD\nsparkles VBZ\nsparkling JJ\nsparkplugs NNS\nsparks VBZ\nsparred VBD\nsparring VBG\nsparrow NN\nsparrows NNS\nsparse JJ\nsparsely RB\nspas NNS\nspasm NN\nspasms NNS\nspat VBD\nspate NN\nspatial JJ\nspatially RB\nspats NNS\nspatter NN\nspattered VBN\nspatula NN\nspavined JJ\nspawn VB\nspawned VBD\nspawning VBG\nspawns VBZ\nspeak VB\nspeak-easy NN\nspeaker NN\nspeakers NNS\nspeakin VBG\nspeaking VBG\nspeaks VBZ\nspear NN\nspear-throwing JJ\nspeared VBD\nspearhead VB\nspearheaded VBD\nspearheading VBG\nspecial JJ\nspecial-edition JJ\nspecial-interest JJ\nspecial-projects JJ\nspecial-purpose JJ\nspecial-service JJ\nspecial-technology NN\nspecialist NN\nspecialist-credit JJ\nspecialist-firm JJ\nspecialists NNS\nspeciality NN\nspecialization NN\nspecialize VB\nspecialized JJ\nspecialized-engineering JJ\nspecializes VBZ\nspecializing VBG\nspecially RB\nspecially-designated JJ\nspecially-designed JJ\nspecially-trained JJ\nspecials NNS\nspecialties NNS\nspecialty NN\nspecialty-cheese JJ\nspecialty-chemical NN\nspecialty-chemicals NNS\nspecialty-machinery NN\nspecialty-material JJ\nspecialty-metals NNS\nspecialty-printing JJ\nspecialty-retail JJ\nspecialty-store NN\nspecie FW\nspecies NN\nspecies-dependent JJ\nspecific JJ\nspecifically RB\nspecification NN\nspecifications NNS\nspecificity NN\nspecifics NNS\nspecified VBN\nspecifies VBZ\nspecify VB\nspecifying VBG\nspecimen NN\nspecimens NNS\nspecimentalia NN\nspecious JJ\nspeck NN\nspeckled JJ\nspeckles NNS\nspecks NNS\nspecs NNS\nspectacle NN\nspectacles NNS\nspectacular JJ\nspectacularly RB\nspectator NN\nspectator-type JJ\nspectators NNS\nspecter NN\nspecters NNS\nspectra NNS\nspectral JJ\nspectrally RB\nspectre NN\nspectrometer NN\nspectrometric JJ\nspectrophotometer NN\nspectrophotometric JJ\nspectroscopy NN\nspectrum NN\nspeculate VB\nspeculated VBD\nspeculates VBZ\nspeculating VBG\nspeculation NN\nspeculations NNS\nspeculative JJ\nspeculative-grade JJ\nspeculatively RB\nspeculator NN\nspeculators NNS\nsped VBD\nspeech NN\nspeech-making NN\nspeeches NNS\nspeechless JJ\nspeechlessness NN\nspeechwriters NNS\nspeechwriting NN\nspeed NN\nspeed-up JJ\nspeedboat NN\nspeeded VBD\nspeeded-up JJ\nspeedier JJR\nspeedily RB\nspeeding VBG\nspeedometer NN\nspeeds NNS\nspeedup NN\nspeedway NN\nspeedy JJ\nspell VB\nspell-binding JJ\nspellbound VBN\nspelled VBN\nspellers NNS\nspelling NN\nspelling-only JJ\nspells VBZ\nspend VB\nspend-now JJ\nspender NN\nspenders NNS\nspending NN\nspends VBZ\nspendthrifts NNS\nspent VBD\nsperm NN\nspew VBP\nspewed VBD\nspewing VBG\nspewings NNS\nsphere NN\nspheres NNS\nspherical JJ\nspherules NNS\nsphynxes NNS\nspic NN\nspice NN\nspice-laden JJ\nspiced JJ\nspices NNS\nspicing VBG\nspicy JJ\nspider NN\nspider-leg JJ\nspiders NNS\nspidery JJ\nspied VBD\nspiel NN\nspies NNS\nspiffing JJ\nspiffy JJ\nspigots NNS\nspike NN\nspike-haired JJ\nspiked JJ\nspikes NNS\nspill NN\nspill-cleanup NN\nspill-related JJ\nspilled VBD\nspilling VBG\nspillover NN\nspills NNS\nspin VB\nspin-off NN\nspinach NN\nspinal JJ\nspindle NN\nspindled VBD\nspine NN\nspine-chilling JJ\nspineless JJ\nspinnability NN\nspinneret NN\nspinning VBG\nspinoff NN\nspinoffs NNS\nspins VBZ\nspinster NN\nspiral NN\nspiraled VBD\nspiraling VBG\nspiralis NNS\nspiralled VBD\nspirals NNS\nspire NN\nspires NNS\nspirit NN\nspirit-gum NN\nspirited JJ\nspiritless JJ\nspirits NNS\nspiritual JJ\nspirituality NN\nspiritually RB\nspirituals NNS\nspit VB\nspite NN\nspitfire NN\nspits VBZ\nspitting VBG\nspittle NN\nsplash NN\nsplashed VBD\nsplashes VBZ\nsplashing VBG\nsplashy JJ\nsplattered VBN\nsplayed VBD\nspleen NN\nspleen-crushing JJ\nsplendid JJ\nsplendidly RB\nsplendor NN\nsplenetic JJ\nsplice NN\nspliced VBN\nsplices VBZ\nsplicing VBG\nsplinter NN\nsplintered JJ\nsplinters NNS\nsplintery NN\nsplints NNS\nsplit NN\nsplit-bamboo JJ\nsplit-finger NN\nsplit-fingered JJ\nsplit-level JJ\nsplit-up NN\nsplits NNS\nsplitting NN\nsplotch NN\nsplotched JJ\nsplotches NNS\nsplurge NN\nspoil VB\nspoilables NNS\nspoilage NN\nspoiled VBN\nspoiler NN\nspoiling VBG\nspoils NNS\nspoke VBD\nspokeman NN\nspoken VBN\nspokes NNS\nspokesman NN\nspokesmen NNS\nspokesperson NN\nspokespersons NNS\nspokeswoman NN\nspokewoman NN\nsponge NN\nsponged VBD\nsponges NNS\nsponging NN\nspongy JJ\nsponsor NN\nsponsored VBN\nsponsoring VBG\nsponsors NNS\nsponsorship NN\nsponsorships NNS\nspontaneity NN\nspontaneous JJ\nspontaneously RB\nspoof NN\nspook VBP\nspooked VBN\nspookiest JJS\nspooks NNS\nspooky JJ\nspoon NN\nspoon-fed JJ\nspoon-feed VB\nspoonbills NNS\nspooned VBD\nspoonful NN\nspoonfuls NNS\nspoons NNS\nsporadic JJ\nsporadically RB\nspores NNS\nsport NN\nsport-utility JJ\nsported VBD\nsportiest JJS\nsportif FW\nsportin VBG\nsporting VBG\nsporting-goods NNS\nsports NNS\nsports-and-entertainment JJ\nsports-apparel JJ\nsports-functions NNS\nsports-oriented JJ\nsports-related JJ\nsportsman NN\nsportsmanship NN\nsportsmen NNS\nsportswear NN\nsportswriter NN\nsporty JJ\nsposed JJ\nspot NN\nspot-checking NN\nspot-market JJ\nspot-news NNS\nspot-promoted NN\nspot-television JJ\nspotchecks NNS\nspotless JJ\nspotlight NN\nspotlighted VBN\nspotlighting VBG\nspotlights VBZ\nspots NNS\nspots... :\nspotted VBD\nspotting VBG\nspotty JJ\nspousal JJ\nspousal-notification NN\nspouse NN\nspouses NNS\nspout NN\nspouted VBD\nspouting VBG\nsprained VBN\nspraining VBG\nsprains NNS\nsprang VBD\nsprawl NN\nsprawled VBN\nsprawling VBG\nspray NN\nspray-dried JJ\nsprayed VBN\nspraying NN\nsprays NNS\nspread NN\nspread-eagled VBN\nspread-out JJ\nspread-sensitive JJ\nspreader NN\nspreading VBG\nspreads VBZ\nspreadsheet NN\nspreadsheets NNS\nspree NN\nsprig NN\nsprightly JJ\nspring NN\nspring-back JJ\nspring-brake NN\nspring-early JJ\nspring-joints NN\nspring-training NN\nspringboard NN\nspringing VBG\nsprings NNS\nspringtime NN\nsprinkle VB\nsprinkled VBD\nsprinkler NN\nsprinklers NNS\nsprinkles VBZ\nsprinkling NN\nsprint NN\nsprinted VBD\nsprinting VBG\nspritzers NNS\nsprout VBP\nsprouted VBD\nsprouting VBG\nsprouts NNS\nspruce NN\nspruced VBN\nsprue NN\nsprung VBN\nspuds NNS\nspume NN\nspun VBN\nspun-off JJ\nspunky NN\nspur VB\nspur-of-the-moment JJ\nspurious JJ\nspurn VBP\nspurned VBN\nspurning VBG\nspurns VBZ\nspurred VBN\nspurring VBG\nspurs NNS\nspurt NN\nspurted VBD\nspurting VBG\nspurts NNS\nsputnik NN\nsputniks NNS\nsputter VB\nsputtered VBD\nsputtering JJ\nsputters VBZ\nspy NN\nspy-chaser NN\nspy-chasing NN\nspy-in-training NN\nspy-plane NN\nspyglass NN\nspying VBG\nsq JJ\nsq. JJ\nsquabble NN\nsquabbled VBD\nsquabbles NNS\nsquabbling NN\nsquad NN\nsquadron NN\nsquadrons NNS\nsquadroom NN\nsquads NNS\nsqualid JJ\nsquall NN\nsqualls NNS\nsqualor NN\nsquamous JJ\nsquander VB\nsquandered VBN\nsquandering VBG\nsquare NN\nsquare-built JJ\nsquare-foot JJ\nsquare-mile JJ\nsquared JJ\nsquarefoot JJ\nsquarely RB\nsquares NNS\nsquaring VBG\nsquash NN\nsquashed JJ\nsquashed-looking JJ\nsquashing VBG\nsquashy JJ\nsquat JJ\nsquatted VBD\nsquatter NN\nsquatters NNS\nsquatting VBG\nsquaw NN\nsquawk VB\nsqueak NN\nsqueaked VBD\nsqueaking NN\nsqueaks VBZ\nsqueaky JJ\nsqueaky-clean JJ\nsqueal VB\nsquealed VBD\nsquealing VBG\nsqueals NNS\nsqueamish JJ\nsqueamishness NN\nsqueegee VBP\nsqueeze NN\nsqueeze-out NN\nsqueezed VBN\nsqueezes VBZ\nsqueezing VBG\nsquelch VBP\nsquelched VBN\nsquibs NNS\nsquid NN\nsquiggly RB\nsquint VBP\nsquinted VBD\nsquinting VBG\nsquire NN\nsquires NNS\nsquirmed VBD\nsquirming VBG\nsquirms VBZ\nsquirmy JJ\nsquirrel NN\nsquirreled VBN\nsquirreling VBG\nsquirt NN\nsquirted VBD\nsquirting VBG\nsquished VBN\nst NN\nstab NN\nstabbed VBD\nstabbing VBG\nstabilities NNS\nstability NN\nstabilization NN\nstabilize VB\nstabilized VBN\nstabilizer NN\nstabilizers NNS\nstabilizes VBZ\nstabilizing VBG\nstabilizing-conserving JJ\nstable JJ\nstable-garage NN\nstabled VBD\nstableman NN\nstables NNS\nstabs NNS\nstaccato NN\nstaccatos NNS\nstack NN\nstacked VBN\nstacker NN\nstackers NNS\nstacking VBG\nstacks NNS\nstadium NN\nstadiums NNS\nstaf NN\nstaff NN\nstaff-cutting VBG\nstaff-reduction NN\nstaff-written JJ\nstaff... :\nstaffed VBN\nstaffer NN\nstaffers NNS\nstaffing VBG\nstaffs NNS\nstag NN\nstage NN\nstage-managing NN\nstage-plays NNS\nstagecoach NN\nstagecoaches NNS\nstaged VBD\nstagemate NN\nstager NN\nstages NNS\nstagewhispers VBZ\nstagflation NN\nstagger VB\nstaggered VBD\nstaggering JJ\nstaggeringly RB\nstaginess NN\nstaging VBG\nstagnant JJ\nstagnated VBD\nstagnating VBG\nstagnation NN\nstags NNS\nstaid JJ\nstain NN\nstain-resistant JJ\nstained VBN\nstained-glass NN\nstaining NN\nstainless JJ\nstainless-steel JJ\nstains NNS\nstair NN\nstair-step JJ\nstair-well NN\nstaircase NN\nstaircases NNS\nstairs NNS\nstairway NN\nstairways NNS\nstairwells NNS\nstake NN\nstake-building VBG\nstake-holding JJ\nstake-out NN\nstakebuilding VBG\nstaked VBN\nstakes NNS\nstale JJ\nstale-cigarette NN\nstalemate NN\nstalk VBP\nstalked VBD\nstalking VBG\nstalks NNS\nstall NN\nstalled VBN\nstalling VBG\nstallion NN\nstalls NNS\nstalwart JJ\nstalwarts NNS\nstamens NNS\nstamina NN\nstaminate JJ\nstammered VBD\nstamp NN\nstamped VBN\nstampede NN\nstampeded VBN\nstamping VBG\nstampings NNS\nstamps NNS\nstance NN\nstances NNS\nstanch VB\nstanchest JJS\nstand VB\nstand-alone JJ\nstand-by JJ\nstand-in NN\nstand-ins NNS\nstand-off JJ\nstand-still JJ\nstand-up JJ\nstand-ups NNS\nstandard JJ\nstandard-bearer NN\nstandard-issue JJ\nstandard-setting JJ\nstandard-weight JJ\nstandardize VB\nstandardized JJ\nstandardizing VBG\nstandards NNS\nstandby JJ\nstandbys NNS\nstandeth VBP\nstandin NN\nstanding VBG\nstanding-room NN\nstanding-room-only JJ\nstandoff NN\nstandout NN\nstandpoint NN\nstands VBZ\nstandstill JJ\nstandup JJ\nstanza-form NN\nstaph NN\nstaphylococcal JJ\nstaphylococcus NN\nstaple NN\nstaples NNS\nstapling NN\nstar NN\nstarboard VB\nstarch NN\nstarched VBN\nstarches NNS\nstarchiness NN\nstarchy JJ\nstardom NN\nstare VB\nstared VBD\nstares NNS\nstaring VBG\nstark JJ\nstarker JJR\nstarkly RB\nstarlet NN\nstarlight NN\nstarre NN\nstarred VBD\nstarring VBG\nstarry-eyed JJ\nstars NNS\nstarstruck JJ\nstart VB\nstart-up JJ\nstart-ups NNS\nstarted VBD\nstarter NN\nstarters NNS\nstartin VBG\nstarting VBG\nstartle VB\nstartled VBN\nstartled-horse JJ\nstartling JJ\nstartlingly RB\nstarts VBZ\nstartup NN\nstartups NNS\nstarvation NN\nstarve VB\nstarved VBN\nstarving VBG\nstash VB\nstashed VBN\nstasis NN\nstat NN\nstate NN\nstate's-responsibility JJ\nstate-administered JJ\nstate-appointed JJ\nstate-approved JJ\nstate-building NN\nstate-centered JJ\nstate-chartered JJ\nstate-controlled JJ\nstate-court NN\nstate-directed JJ\nstate-dominated JJ\nstate-federal JJ\nstate-funded JJ\nstate-law NN\nstate-level JJ\nstate-local JJ\nstate-mandated JJ\nstate-of-the-art JJ\nstate-of-the-market JJ\nstate-owned JJ\nstate-plan JJ\nstate-private JJ\nstate-produced JJ\nstate-provided JJ\nstate-registered JJ\nstate-run JJ\nstate-sector JJ\nstate-sponsored JJ\nstate-subsidized JJ\nstate-supervised JJ\nstate-supported JJ\nstate-trading JJ\nstated VBN\nstatehood NN\nstatehooders NNS\nstateless JJ\nstately JJ\nstatement NN\nstatements NNS\nstateroom NN\nstates NNS\nstatesman NN\nstatesmanlike JJ\nstatesmanship NN\nstatesmen NNS\nstatewide JJ\nstatic JJ\nstating VBG\nstation NN\nstationary JJ\nstationed VBN\nstationery NN\nstationing VBG\nstationmaster NN\nstations NNS\nstatism NN\nstatist JJ\nstatistic NN\nstatistical JJ\nstatistically RB\nstatistician NN\nstatisticians NNS\nstatistics NNS\nstatistics-keepers NNS\nstator NN\nstats NNS\nstatu FW\nstatuary NN\nstatue NN\nstatues NNS\nstatuette NN\nstature NN\nstatus NN\nstatus-conscious JJ\nstatus-dropout NN\nstatus-roles NNS\nstatus. NN\nstatuses NNS\nstatute NN\nstatutes NNS\nstatutorily RB\nstatutory JJ\nstaunch JJ\nstaunchest JJS\nstaunchly RB\nstave VB\nstaved VBN\nstaves VBZ\nstay VB\nstay-at-home JJ\nstayed VBD\nstaying VBG\nstays VBZ\nstead NN\nsteadfast JJ\nsteadfastly RB\nsteadfastness NN\nsteadied VBD\nsteadier JJR\nsteadily RB\nsteadiness NN\nsteady JJ\nsteady-Eddies NNS\nsteady-state JJ\nsteadying JJ\nsteak NN\nsteakhouse NN\nsteaks NNS\nsteal VB\nstealer NN\nstealin VBG\nstealing VBG\nsteals VBZ\nstealth NN\nstealthily RB\nstealthy JJ\nsteam NN\nsteam-baths NNS\nsteam-generating NN\nsteam-generation JJ\nsteamboat NN\nsteamed VBN\nsteamer NN\nsteamers NNS\nsteamier JJR\nsteamily RB\nsteaming VBG\nsteamroller NN\nsteams VBZ\nsteamship NN\nsteamships NNS\nsteed NN\nsteel NN\nsteel-casting JJ\nsteel-edged JJ\nsteel-exporting JJ\nsteel-flanged JJ\nsteel-gray JJ\nsteel-hulled JJ\nsteel-hungry JJ\nsteel-import JJ\nsteel-ingot NN\nsteel-making JJ\nsteel-quota NN\nsteel-recycling JJ\nsteel-reinforced JJ\nsteel-related JJ\nsteel-rod NN\nsteel-service-center NN\nsteel-stock NN\nsteel-toothed JJ\nsteeled VBN\nsteelmaker NN\nsteelmakers NNS\nsteelmaking NN\nsteels NNS\nsteelworkers NNS\nsteely JJ\nsteep JJ\nsteeped VBN\nsteeper JJR\nsteepest JJS\nsteeple NN\nsteeples NNS\nsteeply RB\nsteepness NN\nsteer VB\nsteered VBD\nsteering NN\nsteers VBZ\nstein NN\nstellar JJ\nstem VB\nstemmed VBD\nstemming VBG\nstems VBZ\nstench NN\nstenography NN\nstentorian JJ\nsteoreotyped JJ\nstep NN\nstep-by-step JJ\nstep-father NN\nstep-up NN\nstepchild NN\nstepchildren NN\nstepgrandmother NN\nstephanotis NN\nstepladders NNS\nstepmother NN\nstepmothers NNS\nstepped VBD\nstepped-up JJ\nsteppes NNS\nstepping VBG\nsteppingstone NN\nsteprelationship NN\nsteps NNS\nstepson NN\nstepwise RB\nstereo NN\nstereo-sound JJ\nstereophonic JJ\nstereos NNS\nstereotype NN\nstereotyped JJ\nstereotypes NNS\nstereotypical JJ\nstereotypically RB\nsterile JJ\nsteriles NNS\nsterility NN\nsterility-assurance NN\nsterilization NN\nsterilize VB\nsterilized VBN\nsterilizer NN\nsterilizing VBG\nsterios NNS\nsterling NN\nstern JJ\nstern-to RB\nsternal JJ\nsternly RB\nsterno-cleido NN\nsterns NNS\nsternum NN\nsteroid JJ\nsteroid-induced JJ\nsteroids NNS\nstethoscope NN\nstevedore NN\nstew NN\nsteward NN\nstewardess NN\nstewardesses NNS\nstewards NNS\nstewardship NN\nstewed JJ\nstews NNS\nstfu UH\nstick VB\nstick-and-carrot NN\nsticker NN\nsticker-shock NN\nstickers NNS\nstickier JJR\nstickiness NN\nsticking VBG\nstickler NN\nsticklike JJ\nstickman NN\nstickpin NN\nsticks NNS\nsticky JJ\nsticky-fingered JJ\nsticle VB\nstiff JJ\nstiff-backed JJ\nstiffed VBD\nstiffen VB\nstiffened VBD\nstiffening NN\nstiffens VBZ\nstiffer JJR\nstiffest JJS\nstiffing VBG\nstiffly RB\nstiffnecked JJ\nstiffness NN\nstiffs NNS\nstifle VB\nstifled VBD\nstifles VBZ\nstifling VBG\nstigma NN\nstigmatizes VBZ\nstiletto NN\nstill RB\nstill-building JJ\nstill-commanding JJ\nstill-continuing JJ\nstill-dark JJ\nstill-daylighted JJ\nstill-healthy JJ\nstill-limited JJ\nstill-mammoth JJ\nstill-new JJ\nstill-outstanding JJ\nstill-punishing JJ\nstill-raging VBG\nstill-ravaged JJ\nstill-secret JJ\nstill-ticking JJ\nstill-to-be-named JJ\nstill-uncalculated JJ\nstill-undeveloped JJ\nstill... :\nstillbirths NNS\nstillness NN\nstills NNS\nstilted JJ\nstilts NNS\nstimulant NN\nstimulants NNS\nstimulate VB\nstimulated VBN\nstimulates VBZ\nstimulating VBG\nstimulation NN\nstimulations NNS\nstimulative JJ\nstimulator NN\nstimulators NNS\nstimulatory JJ\nstimuli NNS\nstimulus NN\nsting NN\nstingier JJR\nstinging JJ\nstingrays NNS\nstings NNS\nstingy JJ\nstink NN\nstinkin JJ\nstinking VBG\nstinkpotters NNS\nstinks VBZ\nstint NN\nstints NNS\nstipends NNS\nstippled JJ\nstipulate VBP\nstipulated VBD\nstipulates VBZ\nstipulation NN\nstipulations NNS\nstir VB\nstirke NN\nstirling JJ\nstirred VBD\nstirrin VBG\nstirring VBG\nstirringly RB\nstirrings NNS\nstirrup NN\nstirrup-guard NN\nstirrups NNS\nstirs VBZ\nstirups NNS\nstitch NN\nstitched VBN\nstitches NNS\nstitching NN\nstochastic JJ\nstock NN\nstock-appreciation NN\nstock-appreciation-based JJ\nstock-basket NN\nstock-conspiracy NN\nstock-exchange NN\nstock-for-debt JJ\nstock-fraud NN\nstock-fund JJ\nstock-holding JJ\nstock-in-trade NN\nstock-index NN\nstock-index-futures NNS\nstock-investing JJ\nstock-loan NN\nstock-manipulation NN\nstock-margin JJ\nstock-market NN\nstock-option NN\nstock-optioned JJ\nstock-options NNS\nstock-ownership JJ\nstock-pickers NNS\nstock-picking JJ\nstock-price JJ\nstock-purchase JJ\nstock-quote JJ\nstock-registration NN\nstock-related JJ\nstock-repurchase JJ\nstock-selection JJ\nstock-specialist JJ\nstock-swap JJ\nstock-taking NN\nstock-trader NN\nstock-trading NN\nstock-warrant NN\nstock-watch JJ\nstockade NN\nstockbroker NN\nstockbrokerage NN\nstockbrokers NNS\nstockbuilding VBG\nstocked VBN\nstockholder NN\nstockholder-owned JJ\nstockholders NNS\nstockholders... :\nstockholding VBG\nstockholdings NNS\nstocking VBG\nstockings NNS\nstockmarket NN\nstockpickers NNS\nstockpile NN\nstockpiled VBN\nstockpiles NNS\nstockpiling NN\nstockroom NN\nstocks NNS\nstocks-boosted NN\nstocks-index JJ\nstocky JJ\nstockyards NNS\nstockynges NNS\nstodgy JJ\nstoicaly RB\nstoicism NN\nstoke VB\nstoked VBN\nstoker NN\nstoking VBG\nstole VBD\nstolen VBN\nstolid JJ\nstolid-looking JJ\nstolidly RB\nstomach NN\nstomach-belly NN\nstomach-churning JJ\nstomachs NNS\nstomachwise RB\nstomack NN\nstomped VBD\nstomping VBG\nstone NN\nstone-age JJ\nstone-blind JJ\nstone-gray JJ\nstone-still JJ\nstoned VBN\nstonelike JJ\nstonemason NN\nstones NNS\nstonewalled VBD\nstoneware NN\nstonework NN\nstonily RB\nstony JJ\nstony-meteorite JJ\nstood VBD\nstooges NNS\nstool NN\nstools NNS\nstooooomp VB\nstoop VB\nstooped VBD\nstooping VBG\nstop VB\nstop-and-start JJ\nstop-gap JJ\nstop-limit JJ\nstop-loss NN\nstop-motion JJ\nstop-overs NNS\nstop-payment NN\nstop-shipment JJ\nstop-work JJ\nstopgap NN\nstopover NN\nstopovers NNS\nstoppage NN\nstoppages NNS\nstopped VBD\nstopper NN\nstopping VBG\nstopping-point NN\nstops VBZ\nstopwatch NN\nstorability NN\nstorage NN\nstorage-case NN\nstore NN\nstore-brand JJ\nstore-front JJ\nstore-name JJ\nstore-sales NN\nstored VBN\nstored-up JJ\nstorefront NN\nstorefronts NNS\nstorehouse NN\nstorehouses NNS\nstorekeepers NNS\nstoreroom NN\nstores NNS\nstores. NN\nstoried JJ\nstories NNS\nstoring VBG\nstorm NN\nstorm-damaged JJ\nstormbound JJ\nstormed VBD\nstormier JJR\nstorming VBG\nstorms NNS\nstormy JJ\nstory NN\nstory-book NN\nstoryline NN\nstorylines NNS\nstoryteller NN\nstorytellers NNS\nstorytelling NN\nstout JJ\nstout-hearted JJ\nstoutly RB\nstove NN\nstoves NNS\nstowaway NN\nstowed VBN\nstraddle VB\nstraddled VBD\nstraddles VBZ\nstraddling VBG\nstrafe FW\nstrafing VBG\nstraggle VBP\nstraggled VBD\nstragglers NNS\nstraggling VBG\nstraight JJ\nstraight-A JJ\nstraight-armed VBD\nstraight-backed JJ\nstraight-from-the-shoulder JJ\nstraight-haired JJ\nstraight-line JJ\nstraight-out JJ\nstraight-talking JJ\nstraightaway NN\nstraighten VB\nstraightened VBD\nstraighteners NNS\nstraightening VBG\nstraightens VBZ\nstraighter JJR\nstraightforward JJ\nstraights NNS\nstraightway RB\nstrain NN\nstrained VBD\nstrainers NNS\nstrainin VBG\nstraining VBG\nstrains NNS\nstrait NN\nstrait-laced JJ\nstraitjacket NN\nstraitjacketed JJ\nstraits NNS\nstramonium NN\nstrand NN\nstranded VBN\nstranding VBG\nstrands NNS\nstrange JJ\nstrange-sounding JJ\nstrangely RB\nstrangeness NN\nstranger NN\nstrangers NNS\nstrangest JJS\nstrangled VBN\nstranglehold NN\nstrangles VBZ\nstrangulation NN\nstrap VB\nstrapped VBN\nstrapping JJ\nstraps NNS\nstrata NNS\nstratagem NN\nstratagems NNS\nstrategic JJ\nstrategic-arms JJ\nstrategic-planning JJ\nstrategic-weapons JJ\nstrategically RB\nstrategicarms NNS\nstrategies NNS\nstrategist NN\nstrategists NNS\nstrategy NN\nstratification NN\nstratified JJ\nstratify VB\nstratosphere NN\nstratospheric JJ\nstratum NN\nstraw NN\nstraw-and-mud JJ\nstraw-colored JJ\nstraw-hat JJ\nstraw-man NN\nstrawberries NNS\nstrawberry NN\nstraws NNS\nstray JJ\nstrayed VBD\nstraying VBG\nstrays NNS\nstreak NN\nstreaked VBD\nstreaking VBG\nstreaks NNS\nstream NN\nstream-of-consciousness NN\nstreamed VBD\nstreamer NN\nstreamers NNS\nstreaming VBG\nstreamline VB\nstreamlined JJ\nstreamliner NN\nstreamlining VBG\nstreams NNS\nstreamside NN\nstreet NN\nstreet-corner JJ\nstreet... :\nstreetcar NN\nstreetcars NNS\nstreetfighter NN\nstreetlight NN\nstreets NNS\nstrenghtening VBG\nstrengtened VBN\nstrength NN\nstrengthen VB\nstrengthened VBN\nstrengthening VBG\nstrengthens VBZ\nstrengths NNS\nstrenuous JJ\nstrenuously RB\nstreptokinase NNP\nstress NN\nstress-producing JJ\nstress-provoking JJ\nstress-related JJ\nstress-temperature JJ\nstressed VBD\nstressed-out JJ\nstresses NNS\nstressful JJ\nstressing VBG\nstressors NNS\nstretch NN\nstretched VBD\nstretcher NN\nstretchers NNS\nstretches NNS\nstretching VBG\nstrewn VBN\nstricken VBN\nstrict JJ\nstricter JJR\nstrictest JJS\nstrictly RB\nstrictures NNS\nstride NN\nstrident JJ\nstridently RB\nstrides NNS\nstriding VBG\nstrife NN\nstrife-free JJ\nstrike NN\nstrike-bound JJ\nstrike-force NN\nstrike-outs NNS\nstrikebreakers NNS\nstrikeout NN\nstrikers NNS\nstrikes NNS\nstriking JJ\nstrikingly RB\nstring NN\nstring-of-pearls JJ\nstringed JJ\nstringent JJ\nstringently RB\nstringing VBG\nstrings NNS\nstringy JJ\nstrip NN\nstripe NN\nstriped JJ\nstripes NNS\nstripped VBN\nstripped-down JJ\nstripper NN\nstrippers NNS\nstripping VBG\nstrips NNS\nstriptease NN\nstrive VB\nstrived VBD\nstriven VBN\nstrivers NNS\nstrives VBZ\nstriving VBG\nstrivings NNS\nstrobe NN\nstrode VBD\nstroke NN\nstroked VBD\nstrokes NNS\nstroking NN\nstroll NN\nstrolled VBD\nstrollers NNS\nstrolling VBG\nstrolls VBZ\nstrong JJ\nstrong-arm JJ\nstrong-jawed JJ\nstrong-made JJ\nstrong-willed JJ\nstronger JJR\nstronger-than-expected JJ\nstrongest JJS\nstronghold NN\nstrongholds NNS\nstrongly RB\nstrongman NN\nstrongrooms NNS\nstrophe NN\nstropped VBD\nstropping VBG\nstrove VBD\nstrt VB\nstruck VBD\nstructively RB\nstructural JJ\nstructural-adjustment JJ\nstructurally RB\nstructure NN\nstructured VBN\nstructures NNS\nstructuring VBG\nstruggle NN\nstruggled VBD\nstruggles NNS\nstruggling VBG\nstrumming VBG\nstrung VBN\nstrut NN\nstrutted VBD\nstrutting VBG\nstrychnine NN\nstub NN\nstubbed VBN\nstubble JJ\nstubborn JJ\nstubbornly RB\nstubbornness NN\nstubby JJ\nstubs NNS\nstucco NN\nstuck VBN\nstuck-up JJ\nstud NN\nstudded VBN\nstudent NN\nstudent-athlete NN\nstudent-athletes NNS\nstudent-directed JJ\nstudent-led JJ\nstudent-loan JJ\nstudent-physicists NNS\nstudent-test JJ\nstudentled VBN\nstudents NNS\nstudied VBN\nstudies NNS\nstudio NN\nstudio-quality JJ\nstudio\\ JJ\nstudios NNS\nstudious JJ\nstudiously RB\nstudiousness NN\nstuds NNS\nstudy NN\nstudy-plan NN\nstudying VBG\nstuff NN\nstuffed VBN\nstuffing VBG\nstuffy JJ\nstuggles VBZ\nstultifying JJ\nstumble VB\nstumbled VBD\nstumbles VBZ\nstumbling VBG\nstumbling-block NN\nstump NN\nstumpage NN\nstumped VBN\nstumping NN\nstumps NNS\nstumpy JJ\nstung VBN\nstunk VBD\nstunned VBD\nstunning JJ\nstunningly RB\nstunt NN\nstunted VBN\nstunts NNS\nstupefying JJ\nstupefyingly RB\nstupendous JJ\nstupendously RB\nstupid JJ\nstupidest JJS\nstupidities NNS\nstupidity NN\nstupidly RB\nstupor NN\nsturdiest JJS\nsturdily RB\nsturdy JJ\nsturgeon NN\nstutter NN\nstyle NN\nstyle-cramper NN\nstyled VBN\nstylemark NN\nstyles NNS\nstyling NN\nstylish JJ\nstylishly RB\nstylist NN\nstylistic JJ\nstylistically RB\nstylization NN\nstylized JJ\nstymie VB\nstymied VBN\nstyrene NN\nstyrenes NNS\nstyryl-lithium NN\nsuability NN\nsuable JJ\nsuave JJ\nsuavity NN\nsub NN\nsub-Christian JJ\nsub-Saharan JJ\nsub-assemblies NNS\nsub-assembly NN\nsub-chiefdom NN\nsub-chiefs NN\nsub-conscious-level NN\nsub-freezing JJ\nsub-group NN\nsub-headlines NNS\nsub-human JJ\nsub-interval NN\nsub-markets NNS\nsub-minimum JJ\nsub-segments NNS\nsub-station JJ\nsub-surface NN\nsub-tests NNS\nsub-therapeutic JJ\nsub-underwriters NNS\nsub-underwriting VBG\nsub-zero JJ\nsubaltern NN\nsubatomic JJ\nsubbing VBG\nsubcommitee NN\nsubcommittee NN\nsubcommittees NNS\nsubcompact NN\nsubcompacts NNS\nsubconferences NNS\nsubconscious JJ\nsubconsciously RB\nsubcontinent NN\nsubcontract VB\nsubcontracting NN\nsubcontractor NN\nsubcontractors NNS\nsubcontracts NNS\nsubdirector NN\nsubdivision NN\nsubdivisions NNS\nsubdue VB\nsubdued VBN\nsubdues VBZ\nsubduing VBG\nsubfigures NNS\nsubgross JJ\nsubgroups NNS\nsubhumanity NN\nsubindustry NN\nsubject NN\nsubjected VBN\nsubjecting VBG\nsubjective JJ\nsubjectively RB\nsubjectivist NN\nsubjectivists NNS\nsubjectivity NN\nsubjects NNS\nsubjugate VB\nsubjugated JJ\nsubjugating VBG\nsubjugation NN\nsublease NN\nsublet VB\nsublicense NN\nsublimate NN\nsublime JJ\nsublimed VBN\nsubliminal JJ\nsubliterary JJ\nsublunary JJ\nsubmachine JJ\nsubmarine NN\nsubmarine-ball NN\nsubmarine-based JJ\nsubmarine-launched JJ\nsubmariners NNS\nsubmarines NNS\nsubmerge VB\nsubmerged VBN\nsubmerging VBG\nsubminimum JJ\nsubmission NN\nsubmissions NNS\nsubmissive JJ\nsubmit VB\nsubmits VBZ\nsubmitted VBN\nsubmitting VBG\nsubmucosa NN\nsubnational JJ\nsubnormal JJ\nsuborbital JJ\nsubordinate JJ\nsubordinated VBN\nsubordinates NNS\nsubordinator NN\nsubpar JJ\nsubparagraph NN\nsubparts NNS\nsubpenaed VBN\nsubpenas NNS\nsubplots NNS\nsubpoena NN\nsubpoenaed VBN\nsubpoenas NNS\nsubrogation NN\nsubroutine NN\nsubroutines NNS\nsubs NNS\nsubscribe VB\nsubscribed VBN\nsubscriber NN\nsubscribers NNS\nsubscribes VBZ\nsubscribing VBG\nsubscription NN\nsubscriptions NNS\nsubscripts NNS\nsubsection NN\nsubsections NNS\nsubsedies NNS\nsubsequent JJ\nsubsequently RB\nsubservience NN\nsubservient JJ\nsubset NN\nsubsidary JJ\nsubside VB\nsubsided VBD\nsubsidence NN\nsubsides VBZ\nsubsidiaries NNS\nsubsidiarity NN\nsubsidiary NN\nsubsidies NNS\nsubsiding VBG\nsubsidization NN\nsubsidize VB\nsubsidized JJ\nsubsidizes VBZ\nsubsidizing VBG\nsubsidy NN\nsubsist VB\nsubsistence NN\nsubsistent JJ\nsubskill NN\nsubskills NNS\nsubsoil NN\nsubspace NN\nsubspaces NNS\nsubspecies NNS\nsubstance NN\nsubstance-abusing JJ\nsubstances NNS\nsubstandard JJ\nsubstantial JJ\nsubstantially RB\nsubstantiate VB\nsubstantiated JJ\nsubstantiates VBZ\nsubstantiation NN\nsubstantive JJ\nsubstantively RB\nsubstations NNS\nsubsterilization NN\nsubstitute NN\nsubstituted VBN\nsubstitutes NNS\nsubstituting VBG\nsubstitution NN\nsubstitutionary JJ\nsubstitutions NNS\nsubstracting VBG\nsubstrate NN\nsubstrates NNS\nsubstratum NN\nsubstructure NN\nsubsumed VBN\nsubsurface JJ\nsubsystem NN\nsubsystems NNS\nsubtended JJ\nsubtends VBZ\nsubterfuge NN\nsubterfuges NNS\nsubterranean JJ\nsubtilis NNS\nsubtitle NN\nsubtitled VBN\nsubtitles NNS\nsubtle JJ\nsubtler JJR\nsubtleties NNS\nsubtlety NN\nsubtly RB\nsubtract VB\nsubtracted VBN\nsubtracting VBG\nsubtraction NN\nsubtype NN\nsubtypes NNS\nsuburb NN\nsuburban JJ\nsuburbanite JJ\nsuburbanites NNS\nsuburbanized VBN\nsuburbia NN\nsuburbs NNS\nsubversion NN\nsubversive JJ\nsubversives NNS\nsubvert VB\nsubverted VBN\nsubverting VBG\nsubverts VBZ\nsubway NN\nsubways NNS\nsubzero JJ\nsucceed VB\nsucceeded VBN\nsucceeding VBG\nsucceeds VBZ\nsuccesful JJ\nsuccess NN\nsuccess-oriented JJ\nsuccess... :\nsuccesses NNS\nsuccessful JJ\nsuccessfully RB\nsuccession NN\nsuccessive JJ\nsuccessively RB\nsuccessor NN\nsuccessor-designate JJ\nsuccessors NNS\nsuccessors-in-spirit NNS\nsuccessorship NN\nsuccinct JJ\nsuccinctly RB\nsuccor NN\nsucculent JJ\nsuccumb VB\nsuccumbed VBN\nsuccumbing VBG\nsuccumbs VBZ\nsucess NN\nsuch JJ\nsuck VB\nsucked VBD\nsucker NN\nsucker-rolling JJ\nsuckered VBN\nsuckers NNS\nsucking VBG\nsucks VBZ\nsuction NN\nsudden JJ\nsudden-end JJ\nsuddenly RB\nsuddenness NN\nsuds NNS\nsudsing NN\nsue VB\nsued VBD\nsuede NN\nsues VBZ\nsuey NN\nsuffer VB\nsufferd VBN\nsuffered VBD\nsufferer NN\nsufferers NNS\nsuffering VBG\nsufferings NNS\nsuffers VBZ\nsuffice VB\nsufficed VBD\nsufficent JJ\nsufficiency NN\nsufficient JJ\nsufficiently RB\nsuffix NN\nsuffixand NN\nsuffixes NNS\nsuffocate VB\nsuffocated VBN\nsuffocating VBG\nsuffocation NN\nsuffrage NN\nsuffragettes NNS\nsuffuse VB\nsuffused VBD\nsugar NN\nsugar-cane JJ\nsugar-coated JJ\nsugar-growing JJ\nsugar-producing JJ\nsugar-subsidy NN\nsugar-using JJ\nsugarcane NN\nsugared JJ\nsugars NNS\nsugary JJ\nsuggest VBP\nsuggested VBD\nsuggestibility NN\nsuggesting VBG\nsuggestion NN\nsuggestions NNS\nsuggestions... :\nsuggestive JJ\nsuggests VBZ\nsuhthuhn JJ\nsuicidal JJ\nsuicide NN\nsuicides NNS\nsuing VBG\nsuit NN\nsuit-and-tie JJ\nsuitability NN\nsuitable JJ\nsuitably RB\nsuitably-loaded JJ\nsuitcase NN\nsuitcase-sized JJ\nsuitcases NNS\nsuite NN\nsuited VBN\nsuites NNS\nsuitor NN\nsuitors NNS\nsuits NNS\nsuject JJ\nsulfide NN\nsulfur NN\nsulfur-dioxide NN\nsulfuric JJ\nsulfurous JJ\nsulked VBD\nsulkily RB\nsulking VBG\nsulks NNS\nsulky JJ\nsullen JJ\nsullenly RB\nsullying VBG\nsulphur NN\nsulphured VBN\nsulphurous JJ\nsultan NN\nsultans NNS\nsultry JJ\nsum NN\nsumac NN\nsummaries NNS\nsummarily RB\nsummarization NN\nsummarize VB\nsummarized VBN\nsummarizes VBZ\nsummarizing VBG\nsummary NN\nsummate NN\nsummation NN\nsummed VBD\nsummer NN\nsummer-holiday JJ\nsummer-long JJ\nsummer-winter JJ\nsummer\\ JJ\nsummers NNS\nsummertime NN\nsumming VBG\nsummit NN\nsummiteers NNS\nsummitry NN\nsummits NNS\nsummon VB\nsummoned VBN\nsummoning VBG\nsummons NN\nsummonses NNS\nsumptuous JJ\nsums NNS\nsun NN\nsun-baked JJ\nsun-bleached JJ\nsun-browned JJ\nsun-burned JJ\nsun-drenched JJ\nsun-inflamed JJ\nsun-kissed JJ\nsun-parched JJ\nsun-suit NN\nsun-tan JJ\nsun-tanned JJ\nsun-warmed JJ\nsunbaked JJ\nsunbleached VBN\nsunbonnet NN\nsunbonnets NNS\nsunburn NN\nsunburnt JJ\nsunder VB\nsundials NNS\nsundown NN\nsundry JJ\nsunflower NN\nsunflowers NNS\nsung VBN\nsunglasses NN\nsunk VBN\nsunken JJ\nsunlight NN\nsunnier JJR\nsunning VBG\nsunny JJ\nsunrise NN\nsunroof NN\nsuns NNS\nsunset NN\nsunsets NNS\nsunshades NNS\nsunshield NN\nsunshine NN\nsunshiny JJ\nsunspot NN\nsunt FW\nsuntan NN\nsup VB\nsuper JJ\nsuper-Herculean JJ\nsuper-absorbent JJ\nsuper-charged JJ\nsuper-charger NN\nsuper-city NN\nsuper-condamine NN\nsuper-empirical JJ\nsuper-exciting JJ\nsuper-expensive JJ\nsuper-experiment NN\nsuper-fast JJ\nsuper-headache NN\nsuper-high JJ\nsuper-imposed VBN\nsuper-majority JJ\nsuper-regional JJ\nsuper-regionals NNS\nsuper-regulator NN\nsuper-rich JJ\nsuper-secret JJ\nsuper-spy NN\nsuper-status JJ\nsuper-strict JJ\nsuper-string JJ\nsuper-user NN\nsuperagent NN\nsuperb JJ\nsuperbly RB\nsupercede VBP\nsuperceded VBD\nsupercharged JJ\nsupercharger NN\nsupercilious JJ\nsupercollider NN\nsupercolliding VBG\nsupercomputer NN\nsupercomputers NNS\nsuperconcentrated JJ\nsuperconcentrates NNS\nsuperconductivity NN\nsuperconductor NN\nsuperconductors NNS\nsupercritical JJ\nsuperefficient JJ\nsuperego NN\nsuperfast JJ\nsuperficial JJ\nsuperficiality NN\nsuperficially RB\nsuperfluous JJ\nsupergiants NNS\nsuperhighway NN\nsuperhighways NNS\nsuperhuman JJ\nsuperieure NN\nsuperimpose VB\nsuperimposed VBN\nsuperimposes VBZ\nsuperimposing VBG\nsuperintend VB\nsuperintendent NN\nsuperintendents NNS\nsuperior JJ\nsuperiority NN\nsuperiors NNS\nsuperlative JJ\nsuperlatives NNS\nsuperlunary JJ\nsupermachine NN\nsupermainframe NN\nsupermarket NN\nsupermarket-refrigeration NN\nsupermarkets NNS\nsupernatant JJ\nsupernatural JJ\nsupernaturalism NN\nsupernormal JJ\nsuperposition NN\nsuperpower NN\nsuperpowers NNS\nsuperpremiums NNS\nsuperregional JJ\nsupersafe NN\nsupersede VB\nsuperseded VBN\nsupersedes VBZ\nsupersensitive JJ\nsupersonic JJ\nsuperstar NN\nsuperstars NNS\nsuperstate NN\nsuperstition NN\nsuperstitions NNS\nsuperstitious JJ\nsuperstores NNS\nsuperstrong JJ\nsuperstructure NN\nsupertanker NN\nsupertankers NNS\nsupertitles NNS\nsupervened VBN\nsupervise VB\nsupervised VBD\nsupervises VBZ\nsupervising VBG\nsupervision NN\nsupervisor NN\nsupervisors NNS\nsupervisory JJ\nsupervote NN\nsupervoting JJ\nsupine NN\nsupinely RB\nsupper NN\nsuppers NNS\nsupplant VB\nsupplanted VBN\nsupplanting VBG\nsupple JJ\nsupplement NN\nsupplemental JJ\nsupplementary JJ\nsupplemented VBN\nsupplementing VBG\nsupplements NNS\nsuppleness NN\nsupplicating VBG\nsupplied VBN\nsupplier NN\nsuppliers NNS\nsupplies NNS\nsupply NN\nsupply-and-demand NN\nsupply-demand JJ\nsupply-driven JJ\nsupply-side JJ\nsupply-sider NN\nsupply\\/demand NN\nsupplying VBG\nsupport NN\nsupportable JJ\nsupported VBN\nsupporter NN\nsupporters NNS\nsupporting VBG\nsupportive JJ\nsupports VBZ\nsuppose VBP\nsupposed VBN\nsupposedly RB\nsupposes VBZ\nsupposing VBG\nsuppositions NNS\nsuppository NN\nsuppress VB\nsuppressant NN\nsuppressants NNS\nsuppressed VBN\nsuppresses VBZ\nsuppressing VBG\nsuppression NN\nsuppressor NN\nsuppressors NNS\nsupra RB\nsupra-personal JJ\nsupranational JJ\nsupranationalism NN\nsupraventricular JJ\nsupremacy NN\nsupreme NN\nsupremely RB\nsupression NN\nsupressor NN\nsuprise NN\nsur FW\nsurcease NN\nsurcharge NN\nsurcharges NNS\nsure JJ\nsure-enough JJ\nsure-fire JJ\nsure-sure NN\nsurefire JJ\nsurely RB\nsurest JJS\nsurf NN\nsurface NN\nsurface-active JJ\nsurface-analyzer NN\nsurface-declaring JJ\nsurface-to-air JJ\nsurfaced VBD\nsurfaceness NN\nsurfaces NNS\nsurfacing VBG\nsurfactant NN\nsurfactants NNS\nsurfboard NN\nsurfeit NN\nsurfeited VBN\nsurfers NNS\nsurfing NN\nsurge NN\nsurged VBD\nsurgeon NN\nsurgeons NNS\nsurgeries NNS\nsurgery NN\nsurges NNS\nsurgical JJ\nsurgical-abortion JJ\nsurgically RB\nsurgicenters NNS\nsurging VBG\nsurimi FW\nsurly JJ\nsurmise VB\nsurmised VBD\nsurmises NNS\nsurmount VB\nsurmounted VBD\nsurmounting VBG\nsurname NN\nsurpass VB\nsurpassed VBN\nsurpasses VBZ\nsurpassing VBG\nsurplus NN\nsurpluses NNS\nsurprise NN\nsurprise-filled JJ\nsurprise... :\nsurprised VBN\nsurprises NNS\nsurprising JJ\nsurprisingly RB\nsurreal JJ\nsurrealism NN\nsurrealist JJ\nsurrealistic JJ\nsurrealists NNS\nsurrender NN\nsurrendered VBD\nsurrendering VBG\nsurreptitious JJ\nsurreptitiously RB\nsurreys NNS\nsurrogacy NN\nsurrogate JJ\nsurrogates NNS\nsurround VBP\nsurrounded VBN\nsurrounding VBG\nsurroundings NNS\nsurrounds VBZ\nsurtax NN\nsurtaxes NNS\nsurtout NN\nsurveillance NN\nsurvey NN\nsurvey-type JJ\nsurveyed VBN\nsurveying VBG\nsurveyor NN\nsurveys NNS\nsurvivability NN\nsurvivable JJ\nsurvival NN\nsurvivalist NN\nsurvivalists NNS\nsurvivals NNS\nsurvive VB\nsurvived VBD\nsurvives VBZ\nsurviving VBG\nsurvivor NN\nsurvivors NNS\nsusceptibilities NNS\nsusceptibility NN\nsusceptible JJ\nsusceptors NNS\nsushi NN\nsuspect VBP\nsuspected VBN\nsuspecting VBG\nsuspects VBZ\nsuspend VB\nsuspended VBN\nsuspender NN\nsuspender-clad JJ\nsuspenders NNS\nsuspending VBG\nsuspends VBZ\nsuspense NN\nsuspenseful JJ\nsuspension NN\nsuspensions NNS\nsuspensor NN\nsuspicion NN\nsuspicions NNS\nsuspicions... :\nsuspicious JJ\nsuspiciously RB\nsustain VB\nsustainability NN\nsustainable JJ\nsustained VBN\nsustaining VBG\nsustains VBZ\nsustenance NN\nsuttee NN\nsuture NN\nsutures NNS\nsuvivors NNS\nsuzerain NN\nsuzerainty NN\nsvelte JJ\nsvelte-looking JJ\nswab VB\nswabbed VBD\nswagger NN\nswaggered VBD\nswaggering VBG\nswallow VB\nswallowed VBN\nswallowing VBG\nswallows NNS\nswam VBD\nswami NNS\nswamp NN\nswamped VBN\nswamping VBG\nswamps NNS\nswampy JJ\nswan NN\nswank JJ\nswankier JJR\nswanky JJ\nswanlike JJ\nswans NNS\nswap NN\nswapped VBN\nswapping VBG\nswaps NNS\nswarm NN\nswarmed VBD\nswarming VBG\nswarms NNS\nswart JJ\nswarthy JJ\nswashbuckling JJ\nswastika NN\nswat NN\nswatches NNS\nswath NN\nswathe NN\nswathed VBN\nswathings NNS\nsway VB\nsway-backed JJ\nswayed VBD\nswaying VBG\nswear VB\nswearing NN\nswearing-in NN\nswearinge VBG\nswears VBZ\nsweat NN\nsweat-saturated JJ\nsweat-soaked JJ\nsweat-suits NNS\nsweatband NN\nsweated VBD\nsweater NN\nsweaters NNS\nsweathruna FW\nsweating VBG\nsweats NNS\nsweatshirt NN\nsweatshirts NNS\nsweatshop NN\nsweatshops NNS\nsweatsuit NN\nsweaty JJ\nsweep NN\nsweepers NNS\nsweeping VBG\nsweepingly RB\nsweepings NNS\nsweeps NNS\nsweepstakes NN\nsweet JJ\nsweet-clover NN\nsweet-faced JJ\nsweet-natured JJ\nsweet-shrub NN\nsweet-smelling JJ\nsweet-sounding JJ\nsweet-sour JJ\nsweet-throated JJ\nsweet-tongued JJ\nsweeten VB\nsweetened VBN\nsweetener NN\nsweeteners NNS\nsweetening NN\nsweetens VBZ\nsweeter JJR\nsweetest JJS\nsweetest-tasting JJ\nsweetheart NN\nsweetheart-secretary NN\nsweethearts NNS\nsweetish JJ\nsweetly RB\nsweetness NN\nsweetpeas NNS\nsweets NNS\nswell VB\nswelled VBD\nswelling VBG\nswellings NNS\nswells NNS\nsweltering JJ\nswept VBD\nswerve VBP\nswerved VBD\nswerving VBG\nswift JJ\nswift-footed JJ\nswift-striding JJ\nswiftest JJS\nswiftly RB\nswiftness NN\nswig NN\nswim VB\nswimmer NN\nswimmers NNS\nswimming VBG\nswims VBZ\nswimsuit NN\nswimsuits NNS\nswindled VBN\nswindlers NNS\nswindling VBG\nswine NNS\nswing NN\nswinger NN\nswingin NN\nswinging VBG\nswings NNS\nswingy JJ\nswipe NN\nswiped VBD\nswipes VBZ\nswiping VBG\nswirl NN\nswirled VBD\nswirling VBG\nswirls NNS\nswished VBD\nswitch NN\nswitch-hitter NN\nswitchblade NN\nswitchboard NN\nswitched VBD\nswitchers NNS\nswitches NNS\nswitchgear NN\nswitching VBG\nswivel JJ\nswiveling VBG\nswollen JJ\nswollen-looking JJ\nswoon NN\nswooning NN\nswoons NNS\nswoop NN\nswooped VBD\nswooping VBG\nswoops NN\nsword NN\nsworde NN\nswordfish NN\nswords NNS\nswore VBD\nsworn VBN\nswum VBN\nswung VBD\nsycamore NN\nsycophantic JJ\nsycophantically RB\nsycophantishness NN\nsycophants NNS\nsyllabicity NN\nsyllable NN\nsyllables NNS\nsylvan JJ\nsymbiotic JJ\nsymbol NN\nsymbolic JJ\nsymbolic-sounding JJ\nsymbolical JJ\nsymbolically RB\nsymbolism NN\nsymbolists NNS\nsymbolize VB\nsymbolized VBD\nsymbolizes VBZ\nsymbolizing VBG\nsymbols NNS\nsymmetric JJ\nsymmetrical JJ\nsymmetrically RB\nsymmetry NN\nsympathetic JJ\nsympathetically RB\nsympathies NNS\nsympathique FW\nsympathize VBP\nsympathized VBD\nsympathizers NNS\nsympathizing VBG\nsympathy NN\nsympathy... :\nsymphonic JJ\nsymphonies NNS\nsymphony NN\nsymposium NN\nsymposiums NNS\nsymptom NN\nsymptom-free JJ\nsymptomatic JJ\nsymptomless JJ\nsymptoms NNS\nsynagogue NN\nsynagogues NNS\nsynapses NNS\nsync NN\nsynce IN\nsynchotron JJ\nsynchronism NN\nsynchronize VBP\nsynchronized VBN\nsynchronizers NNS\nsynchronous JJ\nsynchrony NN\nsyndciated VBN\nsyndicate NN\nsyndicated VBN\nsyndicates NNS\nsyndicating VBG\nsyndication NN\nsyndications NNS\nsyndicator NN\nsyndicators NNS\nsyndrome NN\nsynergies NNS\nsynergism NN\nsynergistic JJ\nsynergy NN\nsyngeries NNS\nsynonym NN\nsynonymous JJ\nsynonyms NNS\nsynonymy NN\nsynopsis NN\nsyntactic JJ\nsyntactical JJ\nsyntactically RB\nsyntax NN\nsynthesis NN\nsynthesised VBN\nsynthesize VB\nsynthesized VBN\nsynthesizer NN\nsynthesizers NNS\nsynthesizes VBZ\nsynthesizine NN\nsynthetic JJ\nsynthetic-diamond NN\nsynthetic-leather JJ\nsynthetical JJ\nsynthetics NNS\nsyringa NN\nsyringe NN\nsyringes NNS\nsyrup NN\nsyrups NNS\nsyrupy JJ\nsystem NN\nsystem-management NN\nsystem-specific JJ\nsystematic JJ\nsystematically RB\nsystematically-simple JJ\nsystematization NN\nsystematized VBN\nsystematizing VBG\nsystemic JJ\nsystemization NN\nsystems NNS\nsystems-integration NN\nsystems-strategies NNS\nsystemwide JJ\nt NN\nt'aint VB\nt'gethuh RB\nt'hi-im PRP\nt'jawn VB\nt'lah VB\nt-tau NN\ntab NN\ntab-lifter NN\ntabac NN\ntabacs NNS\ntabbed VBD\ntabby JJ\ntabernacles NNS\ntable NN\ntable-tennis NN\ntable-top JJ\ntableau NN\ntablecloths NNS\ntabled VBN\ntableland NN\ntablemodel NN\ntables NNS\ntablespoon NN\ntablespoonful NN\ntablespoonfuls NNS\ntablespoons NNS\ntablet NN\ntablet-shattering JJ\ntablets NNS\ntableware NN\ntabling VBG\ntabloid NN\ntabloid-style JJ\ntabloids NNS\ntaboo JJ\ntaboos NNS\ntabs NNS\ntabula NN\ntabulate VB\ntabulated VBN\ntabulation NN\ntabulations NNS\ntachyarrhythmia NN\ntachycardia NN\ntacit JJ\ntacitly RB\ntack NN\ntack-solder VB\ntacked VBD\ntacked-down JJ\ntackiest JJS\ntacking VBG\ntackle VB\ntackled VBN\ntackles VBZ\ntackling VBG\ntacks NNS\ntacky JJ\ntacos NNS\ntact NN\ntactful JJ\ntactic NN\ntactical JJ\ntactically RB\ntacticians NNS\ntactics NNS\ntactile JJ\ntactlessness NN\ntactual JJ\ntactually RB\ntad NN\ntadpoles NNS\ntae FW\ntaffeta NN\ntaffy JJ\ntaffycolored VBN\ntag NN\ntag'em NN\ntag-team JJ\ntagged VBN\ntagging VBG\ntagline NN\ntags NNS\ntagua NN\ntail NN\ntailback NN\ntailgate NN\ntailin NN\ntailing VBG\ntailor VB\ntailor-made JJ\ntailor-make VB\ntailored VBN\ntailoring VBG\ntailpipe NN\ntailpipe-emission JJ\ntailpipe-emissions NNS\ntails NNS\ntailspin NN\ntaint NN\ntainted VBN\ntainted-meat NN\ntake VB\ntake-away JJ\ntake-home JJ\ntake-it-or-leave JJ\ntake-off NN\ntake-or-pay JJ\ntake-out NN\ntake-up JJ\ntakeaways NNS\ntakeing VBG\ntaken VBN\ntakeoff NN\ntakeoff-warning JJ\ntakeoffs NNS\ntakeout NN\ntakeover NN\ntakeover-defense JJ\ntakeover-driven JJ\ntakeover-proof JJ\ntakeover-related JJ\ntakeover-stock JJ\ntakeover-threat NN\ntakeovers NNS\ntaker NN\ntakers NNS\ntakes VBZ\ntaketh VB\ntakin VBG\ntaking VBG\ntakings NNS\ntakover NN\ntale NN\ntalent NN\ntalented JJ\ntalents NNS\ntales NNS\ntalismanic JJ\ntalk VB\ntalk-aboutiveness NN\ntalk-format NN\ntalk-show NN\ntalkative JJ\ntalked VBD\ntalker NN\ntalkfest NN\ntalkin VBG\ntalking VBG\ntalks NNS\ntalks-including JJ\ntalky JJ\ntall JJ\ntall-growing JJ\ntall-masted JJ\ntall-oil JJ\ntall-tale NN\ntaller JJR\ntallest JJS\ntallied VBN\ntallies NNS\ntallow NN\ntally NN\ntallyho NN\ntallying VBG\ntalons NNS\ntam FW\ntam-o'-shanter NN\ntamale NN\ntambourine NN\ntame JJ\ntamer JJR\ntaming VBG\ntamp VB\ntamper VB\ntamper-proof JJ\ntamper-resistant JJ\ntampered VBD\ntampering VBG\ntampers NNS\ntampons NNS\ntan JJ\ntandem NN\ntandem-seat JJ\ntandem-trainer NN\ntang NN\ntangency NN\ntangent JJ\ntangential JJ\ntangents NNS\ntangere JJ\ntangible JJ\ntangibly RB\ntangle NN\ntangled JJ\ntango NN\ntangoed VBD\ntangos NNS\ntangy JJ\ntank NN\ntank-related JJ\ntanked VBN\ntanker NN\ntankers NNS\ntanking VBG\ntanks NNS\ntanned JJ\ntannin NN\ntanning NN\ntans NNS\ntansy NN\ntantalized VBN\ntantalizing VBG\ntantalizingly RB\ntantamount JJ\ntantrum NN\ntantrums NNS\ntap VB\ntap-tap NN\ntapdance NN\ntape NN\ntape-delay NN\ntape-product NN\ntape-recorded VBD\ntaped VBN\ntaper VB\ntapered JJ\ntapering VBG\ntapers VBZ\ntapes NNS\ntapestries NNS\ntapestry NN\ntaping NN\ntapings NNS\ntapioca NN\ntapis NN\ntapped VBD\ntappet NN\ntappets NNS\ntapping VBG\ntaps NNS\ntar NN\ntar-soaked JJ\ntaragon NN\ntarantara NN\ntardiness NN\ntardy JJ\ntarget NN\ntarget-hunting JJ\ntarget-language NN\ntargeted VBN\ntargeting VBG\ntargets NNS\ntariff NN\ntariff-cutting NN\ntariff-free JJ\ntariff-reduction NN\ntariffs NNS\ntarmac NN\ntarnish VB\ntarnished VBN\ntarpapered JJ\ntarpaulin NN\ntarpaulins NNS\ntarpon NN\ntarred VBN\ntarry VB\ntart JJ\ntartan NN\ntartan-patterned JJ\ntartans NNS\ntartare NN\ntartly RB\ntask NN\ntask-force NN\ntaskmaster NN\ntasks NNS\ntassel NN\ntassels NNS\ntaste NN\ntasted VBD\ntasteful JJ\ntastefully RB\ntasteless JJ\ntastes NNS\ntastier JJR\ntasting VBG\ntasty JJ\ntat VB\ntattered JJ\ntatters NNS\ntattle-tale NN\ntattoo NN\ntattooed VBN\ntaught VBN\ntaunt NN\ntaunted VBD\ntaunting VBG\ntauntingly RB\ntaunts NNS\ntaut JJ\ntaut-nerved JJ\ntavern NN\ntaverns NNS\ntawdry JJ\ntawny JJ\ntax NN\ntax-accounting NN\ntax-advantaged JJ\ntax-aided JJ\ntax-and-budget JJ\ntax-and-spend JJ\ntax-and-spending JJ\ntax-anticipation JJ\ntax-avoidance JJ\ntax-backed JJ\ntax-based JJ\ntax-collecting JJ\ntax-collection JJ\ntax-compliance NN\ntax-credit NN\ntax-cut JJ\ntax-deductible JJ\ntax-deductions NNS\ntax-deferred JJ\ntax-department JJ\ntax-driven JJ\ntax-evasion NN\ntax-exempt JJ\ntax-exemption NN\ntax-exempts NNS\ntax-fraud NN\ntax-free JJ\ntax-free. JJ\ntax-freedom NN\ntax-give-away JJ\ntax-haven JJ\ntax-law NN\ntax-loss NN\ntax-overhaul JJ\ntax-paying JJ\ntax-payment NN\ntax-policy NN\ntax-preparation NN\ntax-rate JJ\ntax-reducing VBG\ntax-reduction NN\ntax-reform JJ\ntax-revenue NN\ntax-revision JJ\ntax-shelter JJ\ntax-sheltered JJ\ntax-software NN\ntax-supported JJ\ntax-understatement JJ\ntax-uniformity NN\ntax-writers NNS\ntax-writing JJ\ntaxable JJ\ntaxable-equivalent JJ\ntaxable-fund JJ\ntaxation NN\ntaxed VBN\ntaxes NNS\ntaxfree JJ\ntaxi NN\ntaxi-ways NNS\ntaxicab NN\ntaxidermist NN\ntaxied VBD\ntaxiing VBG\ntaxing VBG\ntaxis NNS\ntaxlow NN\ntaxpayer NN\ntaxpayer-related JJ\ntaxpayers NNS\ntaxpaying JJ\ntea NN\ntea-drinking NN\ntea-leaf NN\nteabag NN\nteacart NN\nteach VB\nteacher NN\nteacher-cadet JJ\nteacher-employee NN\nteachers NNS\nteaches VBZ\nteaching NN\nteachings NNS\nteahouse NN\nteahouses NNS\nteakettle NN\nteakwood NN\nteam NN\nteam-management NN\nteam-mate NN\nteamed VBD\nteaming VBG\nteammate NN\nteammates NNS\nteams NNS\nteamster NN\nteamsters NNS\nteamwork NN\nteapot NN\ntear VB\ntear-filled JJ\ntear-jerkers NNS\ntear-jerking JJ\ntear-soaked JJ\nteardrop NN\ntearfully RB\ntearing VBG\ntears NNS\nteary-eyed JJ\nteas NNS\ntease VB\nteased VBN\nteaser NN\nteasers NNS\nteasing JJ\nteaspoon NN\nteaspoonful JJ\nteaspoonfuls NNS\nteaspoons NNS\nteats NNS\ntebuthiuron NN\ntech NN\ntechnical JJ\ntechnical-ladder JJ\ntechnical-services NNS\ntechnicalities NNS\ntechnicality NN\ntechnically RB\ntechnician NN\ntechnicians NNS\ntechnique NN\ntechniques NNS\ntechno-managerial JJ\ntechnocratic JJ\ntechnocrats NNS\ntechnological JJ\ntechnologically RB\ntechnologically-improved JJ\ntechnologies NNS\ntechnologies\\ JJ\ntechnologist NN\ntechnology NN\ntechnology-based JJ\ntechnology-licensing JJ\ntechnology-related JJ\ntechnology-transfer NN\ntechnolology NN\ntechnophiliac JJ\ntecum FW\nteddy NN\nteddy-bear NN\ntedious JJ\ntediously RB\ntedium NN\ntee NN\nteed VBD\nteemed VBD\nteeming VBG\nteems VBZ\nteen JJ\nteen-age JJ\nteen-ager NN\nteen-agers NNS\nteenage JJ\nteenager NN\nteenagers NNS\nteens NNS\nteensy JJ\nteetered VBD\nteetering VBG\nteeth NNS\nteething VBG\nteetotaler NN\ntektite NN\ntektites NNS\ntele-processing JJ\ntelecast NN\ntelecines NNS\ntelecom NN\ntelecommunication NN\ntelecommunications NNS\nteleconferences NNS\ntelecopier NN\ntelefax NN\ntelegram NN\ntelegrams NNS\ntelegraph NN\ntelegraphed VBD\ntelegrapher NN\ntelegraphers NNS\ntelegraphic JJ\ntelegraphic-transfer JJ\ntelegraphing VBG\ntelegraphy NN\ntelemarketers NNS\ntelemarketing NN\nteleological JJ\nteleology NN\ntelepathic JJ\ntelepathically RB\ntelepathy NN\ntelephone NN\ntelephone-access JJ\ntelephone-booth NN\ntelephone-call NN\ntelephone-company NN\ntelephone-information NN\ntelephone-marketing JJ\ntelephone-network JJ\ntelephoned VBD\ntelephones NNS\ntelephoning VBG\ntelescope NN\ntelescoped VBN\ntelescopes NNS\ntelescopic JJ\ntelescoping NN\ntelesystems NNS\nteletype NN\ntelevangelism NN\ntelevised VBN\ntelevising NN\ntelevision NN\ntelevision-related JJ\ntelevision-viewing NN\ntelevisions NNS\ntelevison NN\ntelevison-record NN\ntelex NN\ntelexes NNS\ntell VB\ntell-all JJ\ntell-tale JJ\ntell... :\nteller NN\ntellers NNS\ntelling VBG\ntellingly RB\ntells VBZ\ntelltale JJ\ntelomeric JJ\ntemblor NN\ntemblor-prone JJ\ntemblors NNS\ntemerity NN\ntempeh NN\ntemper NN\ntempera NN\ntemperament NN\ntemperamental JJ\ntemperaments NNS\ntemperance NN\ntemperate JJ\ntemperately RB\ntemperature NN\ntemperatures NNS\ntempered VBN\ntempering VBG\ntempers NNS\ntempest NN\ntempestuous JJ\ntemplate NN\ntemple NN\ntemples NNS\ntempo NN\ntemporal JJ\ntemporally RB\ntemporarily RB\ntemporary JJ\ntemporary-help JJ\ntempore NN\ntemporize VB\ntemporized VBD\ntemporizing VBG\ntempos NNS\ntemps NNS\ntempt VB\ntemptation NN\ntemptations NNS\ntempted VBN\ntempting JJ\ntemptingly RB\ntempts VBZ\nten CD\nten-by-ten-mile JJ\nten-concert JJ\nten-day JJ\nten-fifty-five CD\nten-foot JJ\nten-gallon JJ\nten-hour JJ\nten-minute JJ\nten-month JJ\nten-twelve CD\nten-year JJ\ntenable JJ\ntenacious JJ\ntenaciously RB\ntenacity NN\ntenancy NN\ntenant NN\ntenants NNS\ntend VBP\ntended VBD\ntendencies NNS\ntendency NN\ntendentious JJ\ntender NN\ntender-offer JJ\ntendered VBN\ntenderfoot NN\ntendering VBG\ntenderly RB\ntenderness NN\ntenders NNS\ntending VBG\ntendons NNS\ntends VBZ\ntenebrous JJ\ntenement NN\ntenements NNS\ntenet NN\ntenets NNS\ntenfold RB\ntennis NN\ntenor NN\ntenors NNS\ntens NNS\ntense JJ\ntensed VBD\ntensely RB\ntenses NNS\ntensile JJ\ntension NN\ntensional JJ\ntensioning VBG\ntensionless JJ\ntensions NNS\ntenspot NN\ntent NN\ntentacle NN\ntentacles NNS\ntentative JJ\ntentatively RB\ntenterhooks NNS\ntenth JJ\ntenths NNS\ntenting NN\ntents NNS\ntenuous JJ\ntenuously RB\ntenure NN\ntepees NNS\ntepid JJ\ntequila NN\nteratologies NNS\nterm NN\nterm'nonfat JJ\nterm-end JJ\ntermed VBD\nterminal NN\nterminals NNS\nterminate VB\nterminated VBN\nterminates VBZ\nterminating VBG\ntermination NN\nterminations NNS\nterming VBG\ntermini NNS\nterminology NN\nterminus NN\ntermites NNS\nterms NNS\nternational JJ\nterra FW\nterra-cotta-colored JJ\nterrace NN\nterraced VBN\nterraces NNS\nterrain NN\nterrain-marring JJ\nterrains NNS\nterram FW\nterrazzo NN\nterrestial JJ\nterrestrial JJ\nterrestrially RB\nterrible JJ\nterribly RB\nterrier NN\nterriers NNS\nterrific JJ\nterrified VBN\nterrifies VBZ\nterrify VB\nterrifying JJ\nterrine NN\nterritoire FW\nterritorial JJ\nterritories NNS\nterritory NN\nterror NN\nterror-filled JJ\nterror-stricken JJ\nterrorism NN\nterrorist JJ\nterroristic JJ\nterrorists NNS\nterrorize VB\nterrorized VBN\nterrorizing VBG\nterrors NNS\nterry NN\nterry-cloth NN\nters NNS\nterse JJ\ntersely RB\ntertian JJ\ntertiary JJ\ntest NN\ntest-coaching JJ\ntest-drive VB\ntest-fired VBN\ntest-like JJ\ntest-market NN\ntest-marketed VBD\ntest-marketing VBG\ntest-practice JJ\ntest-prep JJ\ntest-preparation JJ\ntest-run NN\ntest-tube NN\ntestament NN\ntestaments NNS\ntested VBN\ntester NN\ntesters NNS\ntesticle NN\ntestified VBD\ntestifies VBZ\ntestify VB\ntestifying VBG\ntestily RB\ntestimonial JJ\ntestimonials NNS\ntestimony NN\ntesting NN\ntestings NNS\ntestosterone NN\ntests NNS\ntesty JJ\ntetanus NN\ntete-a-tete NN\ntethered VBN\ntethers NNS\ntetrachloride NN\ntetragonal JJ\ntetrahalides NNS\ntetrasodium NN\nteutonic JJ\ntexas NNP\ntext NN\ntext-form NN\ntext-lookup NN\ntext-ordered JJ\ntextbook NN\ntextbooks NNS\ntextile NN\ntextile-exporting JJ\ntextile-importing NN\ntextile-producing JJ\ntextile-related JJ\ntextile-trade JJ\ntextiles NNS\ntexts NNS\ntextual JJ\ntexture NN\ntextured JJ\ntextures NNS\nth DT\ntha DT\nthallium NN\nthan IN\nthan... :\nthank VB\nthanked VBD\nthankful JJ\nthankfully RB\nthankfulness NN\nthanking VBG\nthankless JJ\nthanks NNS\nthanksgiving NN\nthanx NN\nthar RB\nthat IN\nthat's VBZ\nthat'ugly JJ\nthat... :\nthatched-roof JJ\nthatches NNS\nthats VBZ\nthatt IN\nthaw NN\nthaw'em VB\nthawed VBN\nthawing VBG\nthaws NNS\nthe DT\nthe'breakup NN\nthe'called JJ\nthe'federales FW\nthe'first JJ\nthe'golden JJ\nthe'individuals NNS\nthe'magic JJ\nthe'soft JJ\nthe... :\ntheaf NN\ntheare NN\nthease NN\ntheater NN\ntheater-exhibition NN\ntheater-going NN\ntheatergoer NN\ntheatergoers NNS\ntheatergoing JJ\ntheaters NNS\ntheatre NN\ntheatregoer NN\ntheatres NNS\ntheatrical JJ\ntheatricality NN\ntheatrically RB\ntheatricals NNS\nthee PRP\nthees DT\nthefin VBG\ntheft NN\nthefts NNS\nthei PRP\ntheir PRP$\ntheircompany NN\ntheirs PRP\ntheistic JJ\nthem PRP\nthematic JJ\ntheme NN\ntheme-park NN\nthemed VBN\nthemes NNS\nthemselves PRP\nthemselves'pro-choice JJ\nthen RB\nthen-21 JJ\nthen-52 JJ\nthen-Air JJ|NP\nthen-City JJ\nthen-GOP NNP\nthen-Minister JJ\nthen-Secretary NNP\nthen-Socialist JJ\nthen-Speaker JJ\nthen-Treasury JJ\nthen-Vice NNP\nthen-biggest JJ\nthen-chairman NN\nthen-client NN\nthen-current JJ\nthen-dress JJ\nthen-husband NN\nthen-market JJ\nthen-minister NN\nthen-moribund JJ\nthen-owner JJ\nthen-pending JJ\nthen-president JJ\nthen-prevailing JJ\nthen-rampant JJ\nthen-senior JJ\nthence RB\nthenceforth CC\ntheocracy NN\ntheologian NN\ntheologian-philosophers NN\ntheologians NNS\ntheological JJ\ntheology NN\ntheophylline NN\ntheopylline NN\ntheorem NN\ntheoretical JJ\ntheoretically RB\ntheoreticians NNS\ntheories NNS\ntheories... :\ntheorist NN\ntheorists NNS\ntheoriticians NNS\ntheorize VBP\ntheorized VBD\ntheorizing NN\ntheory NN\ntheory-and NN\ntheory-teaching VBG\nther RB\ntherapeutic JJ\ntherapies NNS\ntherapist NN\ntherapists NNS\ntherapy NN\nthere EX\nthere's EX\nthereabouts RB\nthereafter RB\nthereby RB\ntherefor RB\ntherefore RB\ntherefores NNS\ntherefrom RB\ntherein RB\nthereof RB\nthereon RB\nthereto RB\ntheretofore RB\nthereunder RB\nthereupon RB\ntherewith RB\nthermal JJ\nthermally RB\nthermistor NN\nthermocouple NN\nthermocouples NNS\nthermodynamic JJ\nthermodynamically RB\nthermodynamics NNS\nthermoelectric JJ\nthermoformed VBN\nthermoforming JJ\nthermometer NN\nthermometers NNS\nthermometric JJ\nthermometry NN\nthermonuclear JJ\nthermopile NN\nthermoplastic JJ\nthermos NN\nthermostat NN\nthermostated VBN\nthermostatics NNS\nthermostats NNS\nthesaurus NN\nthese DT\ntheses NNS\nthesis NN\nthespian JJ\nthespians NNS\nthet DT\nthey PRP\nthey'll MD\nthiamin NN\nthick JJ\nthick-skulled JJ\nthick-walled JJ\nthicken VB\nthickened VBN\nthickeners NNS\nthickening VBG\nthickens VBZ\nthicker JJR\nthickest JJS\nthicket NN\nthickets NNS\nthickly RB\nthickness NN\nthicknesses NNS\nthief NN\nthieves NNS\nthievin VBG\nthieving VBG\nthigh NN\nthigh-bone NN\nthighs NNS\nthiihng NN\nthills NNS\nthimble NN\nthimble-sized JJ\nthin JJ\nthin-lipped JJ\nthin-margin JJ\nthin-slab JJ\nthin-soled JJ\nthin-tired JJ\nthin-walled JJ\nthine JJ\nthing NN\nthings NNS\nthink VBP\nthink-alike JJ\nthink-tank NN\nthink-tanks JJ\nthinke VBZ\nthinker NN\nthinkers NNS\nthinkin VBG\nthinking VBG\nthinks VBZ\nthinly RB\nthinned VBN\nthinner JJR\nthinners NNS\nthinness NN\nthinnest JJS\nthinning VBG\nthiocyanate-perchlorate-fluoro NN\nthiouracil NN\nthird JJ\nthird* JJS\nthird-biggest JJ\nthird-class JJ\nthird-consecutive JJ\nthird-dimensional JJ\nthird-dimensionality NN\nthird-floor JJ\nthird-generation JJ\nthird-grade NN\nthird-highest JJ\nthird-inning NN\nthird-largest JJ\nthird-leading JJ\nthird-party JJ\nthird-period JJ\nthird-place JJ\nthird-quarter JJ\nthird-ranked JJ\nthird-ranking JJ\nthird-rate JJ\nthird-round JJ\nthird-selling JJ\nthird-shift JJ\nthird-story JJ\nthird-straight JJ\nthird-tier JJ\nthird-worst JJ\nthird-year JJ\nthirdquarter JJ\nthirds NNS\nthirst NN\nthirsted VBN\nthirsty JJ\nthirteen CD\nthirteen-year-old JJ\nthirteenth JJ\nthirteenth-century JJ\nthirties NNS\nthirtieth JJ\nthirty CD\nthirty-caliber JJ\nthirty-eight CD\nthirty-eighth JJ\nthirty-five CD\nthirty-foot JJ\nthirty-four CD\nthirty-fourth JJ\nthirty-mile JJ\nthirty-nine CD\nthirty-one CD\nthirty-seven CD\nthirty-six CD\nthirty-sixth JJ\nthirty-three CD\nthirty-two CD\nthirty-year JJ\nthirtysomething NN\nthis DT\nthis.... :\nthis.`` ``\nthistles NNS\nthither RB\ntho NN\ntholins NNS\nthomp NN\nthong NN\nthoriated VBN\nthorn NN\nthorns NNS\nthorny JJ\nthorough JJ\nthoroughbred JJ\nthoroughbreds NNS\nthoroughfare NN\nthoroughfares NNS\nthoroughgoing JJ\nthoroughly RB\nthoroughness NN\nthose DT\nthou PRP\nthough IN\nthought VBD\nthought-out JJ\nthoughtful JJ\nthoughtfully RB\nthoughtfulness NN\nthoughtless JJ\nthoughtlessly RB\nthoughtprovoking JJ\nthoughts NNS\nthousand CD\nthousand-fold JJ\nthousand-legged JJ\nthousand-person JJ\nthousands NNS\nthousandth JJ\nthousandths NNS\nthout VBD\nthrall NN\nthrash VB\nthrashed VBD\nthrashing NN\nthread NN\nthreadbare JJ\nthreaded VBN\nthreading VBG\nthreads NNS\nthreat NN\nthreaten VB\nthreatened VBN\nthreatening VBG\nthreateningly RB\nthreatens VBZ\nthreats NNS\nthree CD\nthree-and-a-half JJ\nthree-axis JJ\nthree-bedroom JJ\nthree-body JJ\nthree-boiler JJ\nthree-building JJ\nthree-button JJ\nthree-cornered JJ\nthree-day JJ\nthree-day-old JJ\nthree-dice JJ\nthree-digit JJ\nthree-dimensional JJ\nthree-dimensionality NN\nthree-dimentional JJ\nthree-door JJ\nthree-family JJ\nthree-fifths JJ\nthree-fold JJ\nthree-foot JJ\nthree-foot-wide JJ\nthree-fourths JJ\nthree-front JJ\nthree-game JJ\nthree-hour JJ\nthree-hour-long JJ\nthree-hour-show NN\nthree-hundred-foot JJ\nthree-inch JJ\nthree-inch-long JJ\nthree-inch-wide JJ\nthree-inning JJ\nthree-judge JJ\nthree-lawyer JJ\nthree-man JJ\nthree-masted JJ\nthree-member JJ\nthree-men-and-a-helper JJ\nthree-meter-high JJ\nthree-mile JJ\nthree-minute JJ\nthree-month JJ\nthree-month-old JJ\nthree-night JJ\nthree-page JJ\nthree-panel JJ\nthree-part JJ\nthree-party JJ\nthree-piece JJ\nthree-point JJ\nthree-power JJ\nthree-quarter JJ\nthree-quarters NNS\nthree-room JJ\nthree-round JJ\nthree-row JJ\nthree-run JJ\nthree-second JJ\nthree-sectioned JJ\nthree-sentence JJ\nthree-sevenths NNS\nthree-snake JJ\nthree-spoked JJ\nthree-stage JJ\nthree-step JJ\nthree-story JJ\nthree-times JJ\nthree-to-five JJ\nthree-to-five-page JJ\nthree-to-five-year JJ\nthree-to-five-year-olds NNS\nthree-ton JJ\nthree-way JJ\nthree-week JJ\nthree-week-old JJ\nthree-wood JJ\nthree-year JJ\nthree-year-old JJ\nthreefold JJ\nthreehour JJ\nthreemonth JJ\nthrees NNS\nthrees-fulfilled NN\nthreesome NN\nthreetranche JJ\nthreshed VBD\nthreshhold NN\nthreshing NN\nthreshold NN\nthresholds NNS\nthrew VBD\nthrice RB\nthrice-monthly JJ\nthrift NN\nthrift-accounting NN\nthrift-bailout JJ\nthrift-fraud JJ\nthrift-holding JJ\nthrift-industry NN\nthrift-institution NN\nthrift-insurance NN\nthrift-like JJ\nthrift-overhaul NN\nthrift-related JJ\nthrift-rescue JJ\nthrift-resolution NN\nthriftiness NN\nthrifts NNS\nthrifty JJ\nthrill NN\nthrilled VBN\nthriller NN\nthrillers NNS\nthrilling JJ\nthrills NNS\nthrips NN\nthrive VB\nthrived VBD\nthrives VBZ\nthriving VBG\nthroat NN\nthroats NNS\nthroaty JJ\nthrobbed VBD\nthrobbing VBG\nthroes NNS\nthrombi NNS\nthrombosed VBN\nthrombosis NN\nthrone NN\nthrones NNS\nthrong NN\nthrongs NNS\nthrottle NN\nthrottled VBN\nthrottling VBG\nthrough IN\nthroughout IN\nthroughput NN\nthrow VB\nthrow-away JJ\nthrow-rug NN\nthrowaway JJ\nthrowback NN\nthrowed VBD\nthrower NN\nthrowers NNS\nthrowin VBG\nthrowing VBG\nthrown VBN\nthrows VBZ\nthru NN\nthrumming VBG\nthrust NN\nthrust-to-weight JJ\nthrusting VBG\nthrusts NNS\nthruway NN\nthruways RB\ntht PRP\nthud NN\nthudding VBG\nthuds NNS\nthug NN\nthugs NNS\nthum PRP\nthumb NN\nthumb-sucking NN\nthumbed VBD\nthumbing VBG\nthumbnail NN\nthumbs NNS\nthumbs-down NN\nthump NN\nthump-thump NN\nthumped VBD\nthumping VBG\nthunder NN\nthunder-purple JJ\nthunderclaps NNS\nthundered VBD\nthundering VBG\nthunderous JJ\nthunders VBZ\nthunderstorm NN\nthunderstorms NNS\nthunderstruck JJ\nthunk NN\nthuringiensis FW\nthus RB\nthwack NN\nthwart VB\nthwarted VBN\nthwarting VBG\nthwump NN\nthx NN\nthy JJ\nthynke VBP\nthyratron NN\nthyroglobulin NN\nthyroid NN\nthyroid-stimulating JJ\nthyroidal JJ\nthyroids NNS\nthyronine NN\nthyrotoxic JJ\nthyrotrophic JJ\nthyrotrophin NN\nthyroxine NN\nthyroxine-binding JJ\ntibialis NNS\ntick VB\nticked VBD\nticker NN\ntickertape NN\nticket NN\nticket'til NN\nticket-transfer NN\nticket-writing NN\nticketed VBN\nticketing VBG\ntickets NNS\nticking VBG\nticklebrush NN\ntickled VBD\nticklish JJ\nticks NNS\ntidal JJ\ntidbit NN\ntidbits NNS\ntide NN\ntidelands NNS\ntides NNS\ntidewater NN\ntidied VBD\ntidily RB\ntidiness NN\ntidings NNS\ntidy JJ\ntidying VBG\ntie NN\ntie-breaker NN\ntie-breaking JJ\ntie-in NN\ntie-ins NNS\ntie-up NN\ntie-ups NNS\ntied VBN\ntiefes FW\ntier NN\ntiered JJ\ntiering NN\ntiers NNS\nties NNS\ntiff NN\ntiffs NNS\ntiger NN\ntiger-paw NN\ntigers NNS\ntight JJ\ntight-fisted JJ\ntight-fistedness NN\ntight-lipped JJ\ntight-turn JJ\ntighten VB\ntightened VBD\ntightener NN\ntightening VBG\ntightens VBZ\ntighter JJR\ntightest JJS\ntightest-fitting JJS\ntightfisted JJ\ntightly RB\ntightness NN\ntightrope NN\ntigress NN\ntil IN\ntile NN\ntile-roofed JJ\ntiled JJ\ntiles NNS\ntill IN\ntilled JJ\ntiller NN\ntilling VBG\ntilt NN\ntilt-rotor JJ\ntilt-top JJ\ntilted VBD\ntilth NN\ntilting VBG\ntilts VBZ\ntimber NN\ntimber-dependent JJ\ntimber-state JJ\ntimbered JJ\ntimberland NN\ntimberlands NNS\ntimbers NNS\ntimbre NN\ntime NN\ntime-&-motion JJ\ntime-cast JJ\ntime-consuming JJ\ntime-delay JJ\ntime-honored JJ\ntime-hotels NNS\ntime-limited JJ\ntime-line NN\ntime-on-the-job JJ\ntime-poor JJ\ntime-proven JJ\ntime-sensitive JJ\ntime-servers NNS\ntime-share JJ\ntime-shares NNS\ntime-span NN\ntime-strapped JJ\ntime-table NN\ntime-temperature JJ\ntime-tested JJ\ntime-zone JJ\ntimed VBN\ntimeless JJ\ntimelier JJR\ntimeliness NN\ntimely JJ\ntimeout NN\ntimeouts NNS\ntimepiece NN\ntimer NN\ntimers NNS\ntimes NNS\ntimetable NN\ntimetables NNS\ntimeworn JJ\ntimid JJ\ntimidity NN\ntimidly RB\ntiming NN\ntimorous JJ\ntimpani NNS\ntin NN\ntin-roofed JJ\ntincture NN\ntinder NN\ntines NNS\ntinged VBN\ntinges NNS\ntingling VBG\ntinier NN\ntiniest JJS\ntinker VB\ntinkered VBN\ntinkering NN\ntinkers NNS\ntinkled VBD\ntinkling VBG\ntinning VBG\ntinny JJ\ntinplated VBN\ntins NNS\ntinsel NN\ntint VBP\ntintable JJ\ntinted VBN\ntinting NN\ntinting-film NN\ntints NNS\ntintype NN\ntiny JJ\ntip NN\ntip-off NN\ntip-toe NN\ntipoff NN\ntipped VBD\ntippee NN\ntipper NN\ntipping VBG\ntipple VBP\ntippling JJ\ntips NNS\ntipsters NNS\ntipsy JJ\ntiptoe VB\ntiptoed VBD\ntiptoeing VBG\ntirade NN\ntirades NNS\ntire NN\ntire-industry NN\ntire-kickers NNS\ntire-maker NN\ntire-makers NNS\ntire-making JJ\ntire-patching JJ\ntired VBN\ntiredly RB\ntiredness NN\ntireless JJ\ntirelessly RB\ntiremaker NN\ntires NNS\ntiresome JJ\ntiring VBG\ntissue NN\ntissue-transplant JJ\ntissue. NN\ntissues NNS\ntitanate NN\ntitanic JJ\ntitanium NN\ntitans NNS\ntiter NN\ntiters NNS\ntithes NNS\ntitian-haired JJ\ntitillating VBG\ntitle NN\ntitle,'first NN\ntitle-holder NN\ntitle-insurance JJ\ntitled VBN\ntitles NNS\ntitration NN\ntitre FW\ntits NNS\ntitter NN\ntitters NNS\ntitties NNS\ntitular JJ\nto TO\nto'life NN\nto'women's NNS\nto-and-fro RB\nto-day NN\nto-do NN\nto-morrow RB\nto-the-death NN\nto... :\ntoad NN\ntoadies NNS\ntoady NN\ntoadying JJ\ntoadyism NN\ntoast NN\ntoasted VBD\ntoasted-nut NN\ntoaster NN\ntoasting VBG\ntobacco NN\ntobacco-ad JJ\ntobacco-growing JJ\ntobacco-industry NN\ntobacco-juice NN\ntobacco-product JJ\ntoccata NN\ntoconsolidated VBN\ntoday NN\ntoddler NN\ntoddlers NNS\ntode VBN\ntoe NN\ntoe-tips NNS\ntoehold NN\ntoeholds NNS\ntoenails NNS\ntoes NNS\ntoffee NN\ntofu NN\ntoga NN\ntogether RB\ntogetherness NN\ntogs NNS\ntoil VBP\ntoiled VBD\ntoilet NN\ntoiletries NNS\ntoilets NNS\ntoiling VBG\ntoilsome JJ\ntoken JJ\ntokenish JJ\ntokens NNS\ntold VBD\ntole NN\ntolerable JJ\ntolerance NN\ntolerant JJ\ntolerate VB\ntolerated VBN\ntolerates VBZ\ntolerating VBG\ntoleration NN\ntoll NN\ntoll-free JJ\ntoll-rate JJ\ntoll-road NN\ntoll-tele-phone JJ\ntolled VBN\ntollgate NN\ntollhouse NN\ntolls NNS\ntollways RB\ntolylene NN\ntomato NN\ntomato-red NN\ntomatoes NNS\ntomb NN\ntomblike JJ\ntombs NNS\ntombstone NN\ntombstones NNS\ntomes NNS\ntomography NN\ntomorrow NN\ntomorrow,will NN\nton NN\nton-mile JJ\nton-per-year JJ\ntonal JJ\ntonalities NNS\ntonally RB\ntone NN\ntone-generating JJ\ntoned VBN\ntoned-down JJ\ntoneless JJ\ntoner NN\ntones NNS\ntongs NNS\ntongue NN\ntongue-in-cheek JJ\ntongue-lashing NN\ntongue-thrusting NN\ntongue-tied JJ\ntongue-twister NN\ntongued VBD\ntongues NNS\ntonic NN\ntonics NNS\ntoniest JJS\ntonight RB\ntonite NN\ntonnage NN\ntonnages NNS\ntons NNS\ntonsil NN\ntonsils NNS\ntony JJ\ntoo RB\ntoo-expensive JJ\ntoo-hearty JJ\ntoo-large JJ\ntoo-naked JJ\ntoo-rapid JJ\ntoo-shiny JJ\ntoo-simple-to-be-true JJ\ntook VBD\ntooke VBD\ntool NN\ntool-and-die JJ\ntool-kit NN\ntooling VBG\ntoolmaker NN\ntools NNS\ntooted VBD\ntooth NN\ntooth-paste NN\ntooth-straightening NN\ntoothbrush NN\ntoothbrushes NNS\ntoothless JJ\ntoothpaste NN\ntoothpastes NNS\ntootles VBZ\ntootley-toot-tootled VBN\ntop JJ\ntop-10 JJ\ntop-drawer NN\ntop-flight JJ\ntop-four JJ\ntop-grade JJ\ntop-heavy JJ\ntop-level JJ\ntop-loaders NNS\ntop-management JJ\ntop-notch JJ\ntop-of-the-line JJ\ntop-performing JJ\ntop-priority JJ\ntop-quality JJ\ntop-ranked JJ\ntop-ranking JJ\ntop-rated JJ\ntop-secret JJ\ntop-selling JJ\ntop-tang JJ\ntop-tier JJ\ntop-to-bottom JJ\ntop-yielding JJ\ntop... :\ntopaz NN\ntopcoat NN\ntopcoats NNS\ntopgallant NN\ntopgrade JJ\ntopiary JJ\ntopic NN\ntopical JJ\ntopicality NN\ntopics NNS\ntopless JJ\ntopmost JJ\ntopnotch JJ\ntopof-the-line JJ\ntopographic JJ\ntopography NN\ntopped VBD\ntopper NN\ntopping VBG\ntoppings NNS\ntopple VB\ntoppled VBN\ntoppling VBG\ntops NNS\ntopsoil NN\ntopsy-turvy JJ\ntorch NN\ntorch-lit JJ\ntorchbearer NN\ntorched VBD\ntorches NNS\ntore VBD\ntorment NN\ntormented VBN\ntormenters NNS\ntormenting VBG\ntormentors NNS\ntorments VBZ\ntorn VBN\ntornado NN\ntornadoes NNS\ntoronto NNP\ntorpedo VB\ntorpedoed VBN\ntorpedoes NNS\ntorpedoing VBG\ntorpid JJ\ntorpor NN\ntorque NN\ntorquer NN\ntorquers NNS\ntorrent NN\ntorrents NNS\ntorrid JJ\ntorsion NN\ntorso NN\ntorso-defining JJ\ntorsos NNS\ntort NN\ntortillas NNS\ntortoise NN\ntortoises NNS\ntorts NNS\ntortuous JJ\ntorture NN\ntortured VBN\ntortures NNS\ntos NNS\ntoss VB\ntossed VBD\ntossers NNS\ntosses NNS\ntossing VBG\ntot NN\ntotal JJ\ntotal-ban NN\ntotal-cost JJ\ntotaled VBD\ntotaling VBG\ntotalistic JJ\ntotalitarian JJ\ntotalitarianism NN\ntotality NN\ntotalled VBD\ntotalling VBG\ntotally RB\ntotals VBZ\ntote VB\ntoted VBN\ntotem NN\ntotemic JJ\ntoting VBG\ntoto FW\ntotted VBN\ntotter VB\ntottering JJ\ntouch NN\ntouch-screen JJ\ntouch-starved JJ\ntouch-tone JJ\ntouchdown NN\ntouchdowns NNS\ntouched VBD\ntouches NNS\ntouching VBG\ntouchstone NN\ntouchstones NNS\ntouchy JJ\ntough JJ\ntough-looking JJ\ntough-minded JJ\ntough-talking NN\ntoughen VB\ntoughened VBD\ntoughening VBG\ntoughens VBZ\ntougher JJR\ntoughest JJS\ntoughest-ever JJS\ntoughest-guy-in-the-old-days JJ\ntoughing VBG\ntoughness NN\ntoughs NNS\ntour NN\ntour\\/theme NN\ntoured VBD\ntouring VBG\ntourism NN\ntourist NN\ntourist-advertising NN\ntourist-delivery JJ\ntourists NNS\ntournament NN\ntournaments NNS\ntourney NN\ntours NNS\ntoursists NNS\ntousled VBN\ntout VB\ntouted VBN\ntouting VBG\ntouts VBZ\ntow NN\ntoward IN\ntowardes IN\ntowards IN\ntowboats NNS\ntowed VBD\ntowel NN\ntoweling NN\ntowels NNS\ntower NN\ntowering JJ\ntowers NNS\ntown NN\ntown-house JJ\ntown-watching JJ\ntowne NN\ntownhouse NN\ntownhouses NNS\ntowns NNS\ntownship NN\ntownships NNS\ntownsman NN\ntownsmen NNS\ntownspeople NN\ntows NNS\ntoxic JJ\ntoxic-waste NN\ntoxic-waste-dump JJ\ntoxicant NN\ntoxicity NN\ntoxicologist NN\ntoxicologists NNS\ntoxicology NN\ntoxics NNS\ntoxin NN\ntoxins NNS\ntoy NN\ntoy-making JJ\ntoy-market NN\ntoy-store NN\ntoying VBG\ntoymakers NNS\ntoys NNS\ntrace NN\ntraceable JJ\ntraced VBN\ntracers NNS\ntracery NN\ntraces NNS\ntrachea NN\ntracing VBG\ntracings NNS\ntrack NN\ntrack-signal JJ\ntrackage NN\ntracked VBN\ntracking VBG\ntrackless JJ\ntracks VBZ\ntract NN\ntractor NN\ntractor-semitrailer NN\ntractor-trailer NN\ntractors NNS\ntracts NNS\ntrade NN\ntrade-ad NN\ntrade-allocating NN\ntrade-clearing JJ\ntrade-deficit NN\ntrade-distorting JJ\ntrade-ethnic JJ\ntrade-group NN\ntrade-in NN\ntrade-liberalizing JJ\ntrade-magazine JJ\ntrade-mark NN\ntrade-off NN\ntrade-offs NNS\ntrade-preparatory NN\ntrade-processing NN\ntrade-school NN\ntrade-union NN\ntrade-up JJ\ntradeable JJ\ntraded VBN\ntradedistorting JJ\ntrademark NN\ntrademarks NNS\ntradeoff NN\ntradeoffs NNS\ntrader NN\ntraders NNS\ntrades NNS\ntradesmen NNS\ntrading NN\ntrading-a NN\ntrading-account JJ\ntrading-company NN\ntrading-fraud NN\ntrading-house JJ\ntrading-oriented JJ\ntrading-related JJ\ntrading-room NN\ntradition NN\ntradition-bound JJ\ntradition-minded JJ\ntraditional JJ\ntraditionalism NN\ntraditionalist NN\ntraditionalistic JJ\ntraditionalists NNS\ntraditionalized VBN\ntraditionally RB\ntraditionnel FW\ntraditions NNS\ntraduce VB\ntraduced VBN\ntraffic NN\ntraffic-control NN\ntraffic-safety NN\ntraffic-systems NNS\ntrafficked VBD\ntrafficker NN\ntraffickers NNS\ntrafficking NN\ntragedians NNS\ntragedies NNS\ntragedy NN\ntragi-comic JJ\ntragic JJ\ntragically RB\ntragicomic JJ\ntrail NN\ntrail-blazing JJ\ntrail-setters NNS\ntrail-worn JJ\ntrailblazing VBG\ntrailed VBD\ntrailer NN\ntrailers NNS\ntrailing VBG\ntrails NNS\ntrain NN\ntrained VBN\ntraineeships NNS\ntrainer NN\ntrainers NNS\ntraining NN\ntraining-wage JJ\ntraining. NN\ntrainman NN\ntrains NNS\ntraipse VB\ntraipsing VBG\ntrait NN\ntraitor NN\ntraitorous JJ\ntraitors NNS\ntraits NNS\ntrajectory NN\ntrammel VB\ntramp JJ\ntramped VBD\ntramping VBG\ntrample VB\ntrampled VBN\ntramples VBZ\ntrampling VBG\ntramps VBZ\ntramway NN\ntrance NN\ntrances NNS\ntranche NN\ntranquil JJ\ntranquility NN\ntranquilizer NN\ntranquilizers NNS\ntranquilizing JJ\ntranquillity NN\ntrans-Atlantic JJ\ntrans-Canadian JJ\ntrans-Pacific JJ\ntrans-Panama JJ\ntrans-illuminated JJ\ntrans-illumination NN\ntrans-lingually RB\ntrans-political JJ\ntransact VB\ntransacted VBN\ntransacting VBG\ntransaction NN\ntransaction-entry NN\ntransactions NNS\ntransactionstructuring NN\ntransaminase NN\ntransatlantic JJ\ntransbay JJ\ntransborder JJ\ntranscend VBP\ntranscendant JJ\ntranscended VBD\ntranscendence NN\ntranscendent JJ\ntranscendental JJ\ntranscending VBG\ntranscends VBZ\ntranscontinental JJ\ntranscribe VB\ntranscribed VBN\ntranscript NN\ntranscription NN\ntranscripts NNS\ntranscultural JJ\ntransducer NN\ntransducers NNS\ntransduction NN\ntransfer NN\ntransfer-pricing JJ\ntransfer-tax NN\ntransferable JJ\ntransfered VBN\ntransferee NN\ntransference NN\ntransfering VBG\ntransferor NN\ntransferors NNS\ntransferrable JJ\ntransferral JJ\ntransferred VBN\ntransferring VBG\ntransfers NNS\ntransfixing VBG\ntransform VB\ntransformation NN\ntransformed VBN\ntransformer NN\ntransformers NNS\ntransforming VBG\ntransforms VBZ\ntransfused VBN\ntransfusion NN\ntransfusions NNS\ntransgenic JJ\ntransgressed VBD\ntransgression NN\ntransience NN\ntransient JJ\ntransients NNS\ntransistor NN\ntransistor-radio-sized JJ\ntransistors NNS\ntransit NN\ntransit-association NN\ntransition NN\ntransitional JJ\ntransitions NNS\ntransitory JJ\ntranslate VB\ntranslated VBN\ntranslates VBZ\ntranslating VBG\ntranslation NN\ntranslations NNS\ntranslator NN\ntranslatorfor NN|IN\ntranslators NNS\ntranslucence NN\ntranslucency NN\ntranslucent JJ\ntransluscent JJ\ntransmissible JJ\ntransmission NN\ntransmission-product NN\ntransmissions NNS\ntransmit VB\ntransmits VBZ\ntransmittable JJ\ntransmitted VBN\ntransmitter NN\ntransmitters NNS\ntransmitting VBG\ntransmogrified VBD\ntransmutation NN\ntransmuted VBN\ntransnational JJ\ntransoceanic JJ\ntransom NN\ntransoms NNS\ntransparencies NNS\ntransparency NN\ntransparent JJ\ntransparent... :\ntransparently RB\ntranspirating VBG\ntranspiration NN\ntranspired VBN\ntranspiring VBG\ntransplant NN\ntransplantable JJ\ntransplantation NN\ntransplanted VBN\ntransplanting VBG\ntransplants NNS\ntransponder NN\ntransport NN\ntransportable JJ\ntransportation NN\ntransportation-cost JJ\ntransportation-equipment NN\ntransportation-services JJ\ntransportation-where NN|WRB\ntransported VBN\ntransporter NN\ntransporters NNS\ntransporting VBG\ntransports NNS\ntransposed VBN\ntransposition NN\ntransshipment NN\ntransversally RB\ntransverse JJ\ntransversely RB\ntransversus NN\ntransvestites NNS\ntransvestitism NN\ntrap NN\ntrapdoor NN\ntrapdoors NNS\ntrapeze NN\ntrapezoid NN\ntrapped VBN\ntrapper NN\ntrapping VBG\ntrappings NNS\ntraps NNS\ntrash NN\ntrash-bag NN\ntrashed VBN\ntrashing NN\ntrauma NN\ntraumas NNS\ntraumatic JJ\ntraumatized VBD\ntravail NN\ntravails NNS\ntravel NN\ntravel-agency NN\ntravel-leisure JJ\ntravel-management NN\ntravel-related JJ\ntravel-service NN\ntravel-services NNS\ntraveled VBD\ntraveler NN\ntravelers NNS\ntravelin VBG\ntraveling VBG\ntravelled JJ\ntraveller NN\ntravellers NNS\ntravelling VBG\ntravelogue NN\ntravelogue-like JJ\ntravelogues NNS\ntravelrestrictions NNS\ntravels VBZ\ntraverse VB\ntraversed VBN\ntraversing VBG\ntravesty NN\ntrawl NN\ntrawler NN\ntray NN\ntrays NNS\ntrazadone NN\ntreacheries NNS\ntreacherous JJ\ntreachery NN\ntread VB\ntreading VBG\ntreadmill NN\ntreadmills NNS\ntreads VBZ\ntreament NN\ntreason NN\ntreasonous JJ\ntreasure NN\ntreasure-trove NN\ntreasured VBN\ntreasurer NN\ntreasurers NNS\ntreasures NNS\ntreasuries NNS\ntreasury NN\ntreasury-management NN\ntreat VB\ntreatable JJ\ntreated VBN\ntreaties NNS\ntreating VBG\ntreatise NN\ntreatises NNS\ntreatment NN\ntreatments NNS\ntreats VBZ\ntreaty NN\ntreaty-making NN\ntreaty-negotiating JJ\ntreble JJ\ntrebled VBN\ntree NN\ntree-clumps NNS\ntree-farming JJ\ntree-huggers NNS\ntree-lined JJ\ntree-planting NN\ntree-shaded JJ\ntreehouse NN\ntreeless JJ\ntreelike JJ\ntrees NNS\ntreetops NNS\ntrek NN\ntrekked VBD\ntreks VBZ\ntrellises NNS\ntremble VB\ntrembled VBD\ntrembles VBZ\ntrembling VBG\ntremblor NN\ntremendous JJ\ntremendously RB\ntremolo NN\ntremor NN\ntremors NNS\ntremulous JJ\ntremulously RB\ntrench NN\ntrenchant JJ\ntrenchermen NNS\ntrenches NNS\ntrend NN\ntrend-followers NNS\ntrend-following JJ\ntrend-setter NN\ntrend-setters NNS\ntrend-setting JJ\ntrend-spotter NN\ntrended VBN\ntrendier JJR\ntrendiest JJS\ntrending VBG\ntrends NNS\ntrendsetter NN\ntrendy JJ\ntrepidation NN\ntrespass NN\ntrespassed VBN\ntrespasses NNS\ntrespassing NN\ntresses NNS\ntrestle NN\ntrestles NNS\ntri-colored JJ\ntri-iodothyronine NN\ntri-jet NN\ntri-motor NN\ntri-state JJ\ntriable JJ\ntriad NN\ntriage NN\ntrial NN\ntrial-book JJ\ntrials NNS\ntriamcinolone NN\ntriangle NN\ntriangles NNS\ntriangular JJ\ntribal JJ\ntribe NN\ntribes NNS\ntribesmen NNS\ntribulation NN\ntribunal NN\ntribunals NNS\ntribute NN\ntributes NNS\ntrichloroacetic JJ\ntrichloroethylene NN\ntrick NN\ntrick... :\ntricked VBN\ntrickery NN\ntrickier JJR\ntrickiest JJS\ntrickle NN\ntrickled VBN\ntrickling VBG\ntricks NNS\ntrickster NN\ntricky JJ\ntricolor JJ\ntried VBD\ntriennial NN\ntries VBZ\ntrifle NN\ntrifled VBN\ntrifling JJ\ntrigger VB\ntrigger-happy JJ\ntriggered VBN\ntriggering VBG\ntriggers NNS\ntriglycerides NNS\ntrigonal JJ\ntrijets NNS\ntrilateral JJ\ntrill NN\ntrilled VBD\ntrillion CD\ntrillion-dollar JJ\ntrillion-plus NN\ntrillions NNS\ntrills NNS\ntrilogy NN\ntrim VB\ntrimester NN\ntrimesters NNS\ntrimmed VBN\ntrimmer JJR\ntrimming VBG\ntrimmings NNS\ntrims VBZ\ntrinket NN\ntrinkets NNS\ntrio NN\ntriol NN\ntrip NN\ntrip-hammer NN\ntripartite JJ\ntripe NN\ntriphenylarsine NN\ntriphenylphosphine NN\ntriphenylstibine NN\ntriphosphopyridine JJ\ntriphosphorous JJ\ntriple JJ\ntriple-A JJ\ntriple-A-rated JJ\ntriple-A\\ JJ\ntriple-B JJ\ntriple-B-minus NNP\ntriple-B-plus JJ\ntriple-C JJ\ntriple-Crated JJ\ntriple-a JJ\ntriple-checked VBD\ntriple-crown JJ\ntriple-digit JJ\ntriple-sealed JJ\ntriple-tank JJ\ntriple-witching JJ\ntripled VBN\ntriples NNS\ntriplet NN\ntriplets NNS\ntriplication NN\ntripling VBG\ntripod NN\ntripods NNS\ntripolyphosphate NN\ntripped VBD\ntrippin NN\ntripping VBG\ntrips NNS\ntriptych NN\ntris NNS\ntriservice NN\ntriskaidekaphobia NN\ntrisodium NN\ntristate JJ\ntrite JJ\ntritium NN\ntriumph NN\ntriumphant JJ\ntriumphantly RB\ntriumphed VBD\ntriumphs NNS\ntriumvirate NN\ntrivia NNS\ntrivial JJ\ntriviality NN\ntrivialize VB\ntrivializing VBG\ntrobles NNS\ntrod VBN\ntrodden JJ\ntrodding VBG\ntroika NN\ntrolley NN\ntrollop NN\ntrolls NNS\ntrombone NN\ntrombones NNS\ntrombonist NN\ntrompe-l'oeil NN\ntroop NN\ntrooper NN\ntroopers NNS\ntrooping VBG\ntroops NNS\ntroopship NN\ntroopships NNS\ntrop FW\ntrophies NNS\ntropho JJ\ntrophy NN\ntropical JJ\ntropical-fruit NN\ntropics NNS\ntropocollagen NN\ntrot NN\ntrotted VBD\ntrotter NN\ntroubie NN\ntrouble NN\ntrouble-free JJ\ntrouble-shooter NN\ntrouble-shooting NN\ntroubled JJ\ntroublemakers NNS\ntroubles NNS\ntroubleshooter NN\ntroublesome JJ\ntroubling JJ\ntrough NN\ntroughed VBD\ntroughs NNS\ntrounced VBD\ntrouncing NN\ntroup NN\ntroupe NN\ntroupes NNS\ntrouser NN\ntrousers NNS\ntrousers-pockets NNS\ntrout NN\ntrove NN\ntrowel NN\ntru JJ\ntruant JJ\ntruce NN\ntruck NN\ntruck-bed NN\ntruck-building JJ\ntruck-fleet JJ\ntruck-maker NN\ntruck-manufacturing JJ\ntruck-parts NNS\ntruck-refrigeration NN\ntruck-rental JJ\ntruck-sales NNS\ntruckdriver NN\ntrucked VBN\ntrucker NN\ntruckers NNS\ntrucking NN\ntruckloads NNS\ntrucks NNS\ntruculence NN\ntruculent JJ\ntrudge NN\ntrudged VBD\ntrudging VBG\ntrue JJ\ntrue-false JJ\ntruer JJR\ntruest JJS\ntruism NN\ntruley RB\ntruly RB\ntrump NN\ntrumped-up JJ\ntrumpet NN\ntrumpeted VBD\ntrumpeter NN\ntrumpeting VBG\ntrumpets NNS\ntrumps NNS\ntruncated VBN\ntruncheons NNS\ntrundle NN\ntrundled VBD\ntrundles VBZ\ntrundling VBG\ntrunk NN\ntrunks NNS\ntrussed-up JJ\ntrusses NNS\ntrust NN\ntrust.. NN\ntrusted VBN\ntrustee NN\ntrustees NNS\ntrusteeship NN\ntrusteth VBP\ntrustfully RB\ntrusting JJ\ntrustingly RB\ntrusts NNS\ntrustworthy JJ\ntruth NN\ntruth-in-lending NN\ntruth-packed NN\ntruth-revealing JJ\ntruthful JJ\ntruthfully RB\ntruthfulness NN\ntruths NNS\ntry VB\ntryin NN\ntrying VBG\ntryna VBG\ntryouts NNS\ntryst NN\ntsh NN\ntsk UH\ntsunami NN\ntsunami-warning JJ\ntt NN\ntub NN\ntuba NN\ntube NN\ntube-nosed JJ\ntubercular JJ\ntuberculosis NN\ntubers NNS\ntubes NNS\ntubing NN\ntubs NNS\ntubular JJ\ntubules NNS\ntuck VBP\ntucked VBN\ntucking VBG\ntufts NNS\ntug NN\ntug-o'-war NN\ntug-of-war NN\ntugboat NN\ntugged VBD\ntugging VBG\ntuition NN\ntuitions NNS\ntularemia NN\ntulip NN\ntulip-shaped JJ\ntulips NNS\ntulle NN\ntultul FW\ntumble NN\ntumbled VBD\ntumbledown JJ\ntumbler NN\ntumbles VBZ\ntumbleweed NN\ntumbling VBG\ntumbrels NNS\ntumefaciens NN\ntummy NN\ntumor NN\ntumor-necrosis JJ\ntumor-suppressing JJ\ntumor-suppressor JJ\ntumor-suppressors NNS\ntumors NNS\ntumours NNS\ntumult NN\ntumultuous JJ\ntuna NN\ntundra NN\ntune NN\ntune-belly NN\ntune-in JJ\ntuned VBN\ntuneful JJ\ntunefulness NN\ntunelessly RB\ntunes NNS\ntung NN\ntungsten NN\ntunic NN\ntuning VBG\ntunnel NN\ntunneled VBD\ntunnels NNS\nturban NN\nturban10 NN|CD\nturbans NNS\nturbinates NNS\nturbine NN\nturbine-engine JJ\nturbine-generators NNS\nturbines NNS\nturbo NN\nturbo-charged JJ\nturbofan NN\nturbogenerator NN\nturboprop NN\nturboprops NNS\nturbulence NN\nturbulent JJ\nturf NN\nturf-care JJ\nturf-hungry JJ\nturgid JJ\nturkey NN\nturkeys NNS\nturmoil NN\nturmoils NNS\nturn VB\nturn-of-the-century JJ\nturn-ons NNS\nturn-out JJ\nturnabout NN\nturnaround NN\nturnaround\\/takeover JJR\nturnarounds NNS\nturne VB\nturned VBD\nturned-up JJ\nturnery NN\nturning VBG\nturnings NNS\nturnips NNS\nturnkey NN\nturnoff NN\nturnout NN\nturnouts NNS\nturnover NN\nturnpike NN\nturnpikes NNS\nturns VBZ\nturntable NN\nturpentine NN\nturquoise JJ\nturret NN\nturrets NNS\nturtle NN\nturtle-neck JJ\nturtlebacks NNS\nturtleneck NN\nturtles NNS\ntusk NN\ntusks NNS\ntussle NN\ntussled VBD\ntutelage NN\ntutor NN\ntutored VBN\ntutorials NNS\ntutoring VBG\ntutors NNS\ntuxedo NN\ntuxedo-rental JJ\ntuxedoed JJ\ntuxedos NNS\ntv NN\ntva NN\ntwaddle NN\ntwang NN\ntwangy JJ\ntweaked VBD\ntweaking VBG\ntweed NN\ntweeds NNS\ntweedy JJ\ntweet NN\ntweeted VBD\ntweety-bird JJ\ntweezed VBN\ntweezers NNS\ntwelfth JJ\ntwelve CD\ntwelve-hour JJ\ntwelve-year JJ\ntwelve-year-old JJ\ntwelvefold JJ\ntwenties NNS\ntwentieth JJ\ntwentieth-century JJ\ntwenty CD\ntwenty-dollar JJ\ntwenty-eight JJ\ntwenty-eighth JJ\ntwenty-fifth JJ\ntwenty-first JJ\ntwenty-first-century JJ\ntwenty-five CD\ntwenty-five-dollar JJ\ntwenty-five-year-old JJ\ntwenty-four CD\ntwenty-mile JJ\ntwenty-nine CD\ntwenty-nine-foot-wide JJ\ntwenty-one CD\ntwenty-page JJ\ntwenty-seven CD\ntwenty-six CD\ntwenty-three CD\ntwenty-two CD\ntwenty-year JJ\ntwice RB\ntwice-a-day JJ\ntwice-a-year JJ\ntwice-around JJ\ntwice-daily JJ\ntwice-extended JJ\ntwice-monthly JJ\ntwice-yearly JJ\ntwiddled VBD\ntwiddling VBG\ntwigged VBD\ntwiggy-looking JJ\ntwigs NNS\ntwilight NN\ntwin JJ\ntwin-blade JJ\ntwin-deficit NN\ntwin-engine JJ\ntwin-engined JJ\ntwin-jet NN\ntwin-jets NN\ntwin-line JJ\ntwin-rotor JJ\ntwindam NN\ntwine NN\ntwined VBD\ntwinge NN\ntwinges NNS\ntwinjets NNS\ntwinkle NN\ntwinkling VBG\ntwinned VBN\ntwins NNS\ntwirled JJ\ntwirler NN\ntwirling VBG\ntwirlingly RB\ntwirls VBZ\ntwirly JJ\ntwise RB\ntwist NN\ntwisted VBN\ntwister NN\ntwister-coners NNS\ntwisting VBG\ntwists NNS\ntwisty JJ\ntwitch NN\ntwitched VBD\ntwitching VBG\ntwitter NNP\ntwittered VBD\ntwittering VBG\ntwo CD\ntwo-and-a-half JJ\ntwo-and-a-half-mile JJ\ntwo-bedroom JJ\ntwo-billion-Australian-dollar JJ\ntwo-bit JJ\ntwo-bits NNS\ntwo-burner JJ\ntwo-button JJ\ntwo-by-four NN\ntwo-by-fours NNS\ntwo-career JJ\ntwo-class JJ\ntwo-color JJ\ntwo-colored JJ\ntwo-component JJ\ntwo-day JJ\ntwo-day-old JJ\ntwo-digit JJ\ntwo-dimensional JJ\ntwo-disc JJ\ntwo-door JJ\ntwo-dozen JJ\ntwo-drug JJ\ntwo-edged JJ\ntwo-engine JJ\ntwo-evening JJ\ntwo-family JJ\ntwo-fisted JJ\ntwo-floor JJ\ntwo-fold JJ\ntwo-foot JJ\ntwo-for-one JJ\ntwo-game NN\ntwo-hit JJ\ntwo-hour JJ\ntwo-hundredths NNS\ntwo-inch JJ\ntwo-inch-square JJ\ntwo-inches NNS\ntwo-income JJ\ntwo-lane JJ\ntwo-letter JJ\ntwo-line JJ\ntwo-mark JJ\ntwo-mile JJ\ntwo-minute JJ\ntwo-month JJ\ntwo-nosed JJ\ntwo-note JJ\ntwo-page JJ\ntwo-parent JJ\ntwo-part JJ\ntwo-party JJ\ntwo-percentage-point JJ\ntwo-product JJ\ntwo-pronged JJ\ntwo-record JJ\ntwo-room JJ\ntwo-round JJ\ntwo-run JJ\ntwo-season JJ\ntwo-seat JJ\ntwo-seater JJ\ntwo-seaters JJ\ntwo-sevenths NNS\ntwo-step JJ\ntwo-story JJ\ntwo-stroke JJ\ntwo-syllable JJ\ntwo-system JJ\ntwo-tail JJ\ntwo-term JJ\ntwo-thirds NNS\ntwo-tier JJ\ntwo-tiered JJ\ntwo-time JJ\ntwo-time-losers JJ\ntwo-timed VBN\ntwo-timing JJ\ntwo-to-three JJ\ntwo-tone JJ\ntwo-track JJ\ntwo-valued JJ\ntwo-way JJ\ntwo-week JJ\ntwo-weeks JJ\ntwo-wheel JJ\ntwo-wheel-drive JJ\ntwo-year JJ\ntwo-year-long JJ\ntwo-year-old JJ\ntwo... :\ntwofold JJ\ntwopoint NN\ntwos NNS\ntwosome NN\ntwothirds NNS\ntwotiered JJ\ntwotiming VBG\ntycoon NN\ntycoons NNS\ntying VBG\ntyke NN\ntyme NN\ntype NN\ntypecast VB\ntypecasting VBG\ntyped VBN\ntypefaces NNS\ntypes NNS\ntypescript NN\ntypesetters NNS\ntypesetting NN\ntypewriter NN\ntypewriters NNS\ntypewriting NN\ntypewritten JJ\ntyphoid NN\ntyphoon NN\ntyphoons NNS\ntyphus NN\ntypical JJ\ntypicality NN\ntypically RB\ntypically... :\ntypified VBN\ntypifies VBZ\ntypify VBP\ntypifying VBG\ntyping NN\ntypist NN\ntypists NNS\ntypographic JJ\ntypographical JJ\ntypography NN\ntypology NN\ntyrannical JJ\ntyrannis FW\ntyrannize VB\ntyranny NN\ntyrant NN\ntyrants NNS\ntyrosine NN\nu PRP\nu. NN\nubiquitous JJ\nubiquitousness NN\nubiquity NN\nudders NNS\nudon FW\nugh UH\nuglier JJR\nugliness NN\nugly JJ\nuh UH\nuh-huh UH\nuh-uh UH\nuhhu UH\nulcer NN\nulcerated JJ\nulcerations NNS\nulcerative JJ\nulcers NNS\nultimate JJ\nultimately RB\nultimatum NN\nultimatums NNS\nultra JJ\nultra-efficient JJ\nultra-fast JJ\nultra-high-speed JJ\nultra-liberal JJ\nultra-low-tar JJ\nultra-modern JJ\nultra-pasteurized JJ\nultra-right JJ\nultra-safe JJ\nultra-thin JJ\nultra-violet JJ\nultracentrifugally RB\nultracentrifugation NN\nultracentrifuge NN\nultramarine NN\nultramodern JJ\nultrasonic JJ\nultrasonically RB\nultrasonics NNS\nultrasound NN\nultravehement JJ\nultraviolet JJ\num FW\number JJ\numbrage NN\numbrella NN\numbrellas NNS\numpire NN\numpteenth JJ\nun FW\nun-American JJ\nun-Christian JJ\nun-English NNP\nun-Swiss JJ\nun-Westernizable JJ\nun-advertisers NNS\nun-advertising NN\nun-aided JJ\nunMcGuanean JJ\nunabashed JJ\nunabated JJ\nunabatingly RB\nunable JJ\nunable-to-locate JJ\nunabridged JJ\nunabsorbed JJ\nunacceptable JJ\nunacceptably RB\nunaccommodating JJ\nunaccompanied JJ\nunaccountable JJ\nunaccountably RB\nunaccounted JJ\nunaccustomed JJ\nunachievable JJ\nunachieved VBN\nunacknowledged JJ\nunacquainted VBN\nunaddressed JJ\nunadited JJ\nunadjusted JJ\nunadorned JJ\nunadulterated JJ\nunaffected JJ\nunaffiliated JJ\nunaffordable JJ\nunafraid JJ\nunaggressive JJ\nunagi FW\nunaided JJ\nunalienable JJ\nunallocable JJ\nunalloyed JJ\nunalluring JJ\nunalterable JJ\nunaltered JJ\nunambiguity NN\nunambiguous JJ\nunambiguously RB\nunamended JJ\nunamortized JJ\nunamused VBN\nunamusing JJ\nunanalyzed JJ\nunanimity NN\nunanimous JJ\nunanimously RB\nunannounced JJ\nunanswerable JJ\nunanswered JJ\nunanticipated JJ\nunapologetic JJ\nunappealing VBG\nunappeasable JJ\nunappeasably RB\nunappreciated JJ\nunapproved JJ\nunarmed JJ\nunashamedly RB\nunasked JJ\nunassailable JJ\nunassisted JJ\nunassuming JJ\nunasterisked JJ\nunattached JJ\nunattainable JJ\nunattended JJ\nunattractive JJ\nunaudited JJ\nunauthentic JJ\nunauthorized JJ\nunavailability NN\nunavailable JJ\nunavailing JJ\nunavoidable JJ\nunavoidably RB\nunaware JJ\nunawareness NN\nunawares RB\nunbalance NN\nunbalanced JJ\nunbanning VBG\nunbearable JJ\nunbearably RB\nunbeknownst JJ\nunbelievable JJ\nunbelievably RB\nunbelieving JJ\nunbent JJ\nunbiased JJ\nunbidden JJ\nunbleached JJ\nunblemished JJ\nunblinking JJ\nunblinkingly RB\nunblock VB\nunblushing JJ\nunborn JJ\nunbound JJ\nunbounded JJ\nunbreakable JJ\nunbridled JJ\nunbroken JJ\nunbundle VB\nunbundled VBN\nunburdened JJ\nunburned JJ\nuncalled JJ\nuncannily RB\nuncanny JJ\nuncap VB\nuncaring JJ\nuncataloged VBN\nuncaused JJ\nunceasing JJ\nunceasingly RB\nuncensored JJ\nunceremoniously RB\nuncertain JJ\nuncertainly RB\nuncertainties NNS\nuncertainty NN\nuncertified JJ\nunchallenged JJ\nunchangeable JJ\nunchanged JJ\nunchangedat JJ\nunchanging JJ\nuncharacteristic JJ\nuncharacteristically RB\nuncharged JJ\nuncharted JJ\nunchecked JJ\nunchlorinated VBN\nunchristian JJ\nuncircumcision NN\nuncivil JJ\nunclaimed JJ\nunclasping VBG\nunclassified JJ\nuncle NN\nunclean JJ\nunclear JJ\nunclenched VBN\nuncles NNS\nunclothed JJ\nunclouded JJ\nuncluttered JJ\nunco-operative JJ\nuncoached JJ\nuncoated JJ\nuncoiling VBG\nuncollaborated JJ\nuncollectable JJ\nuncolored JJ\nuncombable JJ\nuncombed VBN\nuncomfortable JJ\nuncomfortably RB\nuncomforted JJ\nuncommitted JJ\nuncommon JJ\nuncommonly RB\nuncommunicative JJ\nuncompensated JJ\nuncompetitive JJ\nuncomplaining JJ\nuncomplainingly RB\nuncomplicated JJ\nuncompromising JJ\nunconcealed VBN\nunconcern NN\nunconcerned JJ\nunconcernedly RB\nunconditional JJ\nunconditionally RB\nunconditioned JJ\nunconfirmed JJ\nuncongenial JJ\nunconnected JJ\nunconquerable JJ\nunconscionable JJ\nunconscious JJ\nunconsciously RB\nunconsolidated JJ\nunconstitutional JJ\nunconstitutionally RB\nuncontested JJ\nuncontrollable JJ\nuncontrollably RB\nuncontrolled JJ\nunconventional JJ\nunconvinced JJ\nunconvincing JJ\nuncooperative JJ\nuncorked VBD\nuncorrected JJ\nuncounted JJ\nuncountered JJ\nuncourageous JJ\nuncousinly JJ\nuncouth JJ\nuncover VB\nuncovered VBN\nuncovering VBG\nuncreative JJ\nuncritical JJ\nuncritically RB\nunction NN\nuncurled VBD\nuncut JJ\nund FW\nundamaged JJ\nundated JJ\nundaunted JJ\nundecided JJ\nundecideds NNS\nundeclared JJ\nundecorated JJ\nundedicated VBN\nundefeated JJ\nundefined JJ\nundelivered JJ\nundemocratic JJ\nundeniable JJ\nundeniably RB\nundependable JJ\nundepicted JJ\nunder IN\nunder-35 JJ\nunder-50 JJ\nunder-50s NNS\nunder-achievement NN\nunder-achievers NNS\nunder-depreciated NN\nunder-developed JJ\nunder-funded JJ\nunder-inclusion NN\nunder-owned JJ\nunder-performing JJ\nunder-reported JJ\nunder-represented JJ\nunder-researched JJ\nunder-secretary NN\nunder-serviced JJ\nunder-the-table JJ\nunder-three-years JJ\nunderachiever NN\nunderachievers NNS\nunderage JJ\nunderappreciated JJ\nunderarm NN\nunderbedding NN\nunderbelly NN\nunderbracing NN\nunderbrush NN\nundercapitalization NN\nundercapitalized JJ\nunderclass NNS\nunderclassman NN\nunderclothes NNS\nundercover JJ\nundercurrent NN\nundercut VB\nundercuts VBZ\nundercutting VBG\nunderdeveloped JJ\nunderdog NN\nunderdressed JJ\nundereducated JJ\nunderemployed JJ\nunderemployment NN\nunderenforces VBZ\nunderestimate VB\nunderestimated VBN\nunderestimates VBZ\nunderestimation NN\nunderfoot RB\nunderfunded VBN\nundergarment NN\nundergirded VBD\nundergirding NN\nundergo VB\nundergoes VBZ\nundergoing VBG\nundergone VBN\nundergrads NNS\nundergraduate JJ\nundergraduates NNS\nunderground JJ\nunderground-storage NN\nundergrowth NN\nunderhanded JJ\nunderhandedness NN\nunderinvestigated JJ\nunderlay VBP\nunderlie VBP\nunderlies VBZ\nunderline VB\nunderlined VBD\nunderlines VBZ\nunderling NN\nunderlings NNS\nunderlining VBG\nunderlying VBG\nundermine VB\nundermined VBN\nundermines VBZ\nundermining VBG\nunderneath IN\nunderpaid JJ\nunderperform VB\nunderperformance NN\nunderperformed VBN\nunderperformers NNS\nunderperforming VBG\nunderperforms VBZ\nunderpin VB\nunderpinned VBN\nunderpinning NN\nunderpinnings NNS\nunderpins VBZ\nunderplayed VBN\nunderprepared JJ\nunderpriced JJ\nunderpricing VBG\nunderprivileged JJ\nunderrate VB\nunderrated VBN\nunderreacting VBG\nunderreported VBN\nunderrepresented VBN\nunderscore VBP\nunderscored VBD\nunderscores VBZ\nunderscoring VBG\nundersea JJ\nundersecretary NN\nunderselling VBG\nunderserved JJ\nundershirt NN\nunderside NN\nundersize JJ\nundersized VBN\nundersold NN\nunderstaffs VBZ\nunderstand VB\nunderstand\\/adopt VB\nunderstandable JJ\nunderstandably RB\nunderstanded VBN\nunderstanding NN\nunderstandingly RB\nunderstandings NNS\nunderstands VBZ\nunderstate VBP\nunderstated VBN\nunderstatement NN\nunderstates VBZ\nunderstating VBG\nunderstood VBN\nunderstructure NN\nunderstudied VBD\nundersubscription NN\nundertake VB\nundertaken VBN\nundertaker NN\nundertakes VBZ\nundertaking NN\nundertakings NNS\nundertone NN\nundertones NNS\nundertook VBD\nundertow NN\nunderused VBN\nunderutilization NN\nunderutilized VBN\nundervalued VBN\nundervaluing VBG\nunderwater JJ\nunderway RB\nunderwear NN\nunderweighted VBN\nunderwent VBD\nunderwhelmed VBN\nunderwiters NNS\nunderworked JJ\nunderworld NN\nunderwrite VB\nunderwriter NN\nunderwriters NNS\nunderwrites VBZ\nunderwriting NN\nunderwritings NNS\nunderwritten VBN\nunderwrote VBD\nundeserved JJ\nundesirable JJ\nundesirably RB\nundetectable JJ\nundetected JJ\nundetermined JJ\nundeveloped JJ\nundid VBD\nundifferentiated JJ\nundigested JJ\nundiluted JJ\nundiminished JJ\nundimmed VBN\nundiplomatic JJ\nundisciplined JJ\nundisclosed JJ\nundisguised JJ\nundisputed JJ\nundisrupted JJ\nundistinguished JJ\nundisturbed JJ\nundiversifiable JJ\nundiversified JJ\nundivided JJ\nundo VB\nundoing NN\nundone VBN\nundoubtedly RB\nundrawn NN\nundreamed VBN\nundreamt VBN\nundress NN\nundressed VBD\nundressing VBG\nundrinkable JJ\nundue JJ\nundulate VB\nundulated VBD\nundulating JJ\nunduly RB\nundying JJ\nune FW\nunearned JJ\nunearth VB\nunearthed VBN\nunearthing VBG\nunearthly JJ\nunease NN\nuneasily RB\nuneasiness NN\nuneasy JJ\nuneconomic JJ\nuneconomical JJ\nunedifying JJ\nuneducated JJ\nunelected JJ\nunemotional JJ\nunemployed JJ\nunemployment NN\nunencumbered JJ\nunending JJ\nunendurable JJ\nunenforceable JJ\nunenforcible JJ\nunenlightened JJ\nunenthusiastic JJ\nunenticing JJ\nunenunciated JJ\nunenviable JJ\nunenvied JJ\nunequal JJ\nunequaled JJ\nunequalled JJ\nunequally RB\nunequivocal JJ\nunequivocally RB\nunerring JJ\nunerringly RB\nunescorted JJ\nunethical JJ\nunethically RB\nuneven JJ\nunevenly RB\nuneventful JJ\nuneventfully RB\nunexamined JJ\nunexciting JJ\nunexecuted VBN\nunexercised JJ\nunexpected JJ\nunexpectedly RB\nunexpended VBN\nunexplainable JJ\nunexplained JJ\nunexplored JJ\nunfailing JJ\nunfailingly RB\nunfair JJ\nunfair-trade JJ\nunfairly RB\nunfairness NN\nunfaithful JJ\nunfaltering VBG\nunfalteringly RB\nunfamiliar JJ\nunfamiliarity NN\nunfashionable JJ\nunfastened VBD\nunfathomable JJ\nunfavorable JJ\nunfavorably RB\nunfazed VBN\nunfeasible JJ\nunfelt JJ\nunfenced JJ\nunfertile JJ\nunfertilized VBN\nunfetter VB\nunfettered JJ\nunfilled JJ\nunfinished JJ\nunfired VBN\nunfit JJ\nunfitting JJ\nunfixed JJ\nunflagging JJ\nunflaggingly RB\nunflaky JJ\nunflappable JJ\nunflattering JJ\nunflatteringly RB\nunfleshed VBN\nunflinching JJ\nunfocused JJ\nunfocussed VBN\nunfold VB\nunfolded VBD\nunfolding VBG\nunfoldment NN\nunfolds VBZ\nunforeseen JJ\nunforethought JJ\nunforgettable JJ\nunforgivable JJ\nunforgiving JJ\nunformed JJ\nunforseen JJ\nunfortunate JJ\nunfortunately RB\nunfortunates NNS\nunfounded JJ\nunfree JJ\nunfriendly JJ\nunfrocking NN\nunfrosted VBN\nunfrozen JJ\nunfulfilled JJ\nunfunded JJ\nunfunnily RB\nunfunny JJ\nunfurled VBN\nungainly JJ\nungallant JJ\nungentlemanly JJ\nunglamorous JJ\nunglued JJ\nungodly JJ\nungovernable JJ\nungoverned JJ\nungracious JJ\nungrateful JJ\nungratified JJ\nunguaranteed JJ\nunguided JJ\nunhappiest JJS\nunhappily RB\nunhappiness NN\nunhappy JJ\nunharmed JJ\nunharmonious JJ\nunhealed JJ\nunhealthily RB\nunhealthy JJ\nunheard JJ\nunheard-of JJ\nunheated JJ\nunhedged VBN\nunheeded JJ\nunheeding VBG\nunhelpful JJ\nunhelpfully RB\nunheralded JJ\nunheroic JJ\nunhesitant JJ\nunhesitatingly RB\nunhindered JJ\nunhinged VBN\nunhip JJ\nunhitched VBD\nunhocked VBN\nunholy JJ\nunhook VB\nunhurried JJ\nunhurriedly RB\nunhurt JJ\nunhusked VBN\nuni-directional JJ\nunicorns NNS\nunicycle NN\nunidentifiable JJ\nunidentified JJ\nunidirectional JJ\nunification NN\nunificationists NNS\nunifications NNS\nunified JJ\nunifier NN\nunifies VBZ\nuniform NN\nuniformed JJ\nuniformity NN\nuniformly RB\nuniforms NNS\nunify VB\nunifying VBG\nunilateral JJ\nunilateralism NN\nunilateralist JJ\nunilateralists NNS\nunilaterally RB\nunimaginable JJ\nunimaginative JJ\nunimpaired JJ\nunimpassioned JJ\nunimpeachable JJ\nunimpeachably RB\nunimpeded JJ\nunimportant JJ\nunimposing JJ\nunimpressed JJ\nunimpressive JJ\nunimproved JJ\nunincorporated JJ\nunindicted JJ\nuninfected JJ\nuninfluenced VBN\nuninformative JJ\nuninformed JJ\nuninhabitable JJ\nuninhabited JJ\nuninhibited JJ\nuninitiate NN\nuninitiated JJ\nuninjectable JJ\nuninjured JJ\nuninominal JJ\nuninspected JJ\nuninspired JJ\nuninsurable JJ\nuninsured JJ\nunintelligible JJ\nunintended JJ\nunintentional JJ\nunintentionally RB\nuninterested JJ\nuninteresting JJ\nuninterruptable JJ\nuninterrupted JJ\nuninterruptedly RB\nuninterruptible JJ\nuninvited JJ\nuninviting JJ\nuninvolved JJ\nunion NN\nunion-bidder NN\nunion-busting JJ\nunion-company JJ\nunion-industry NN\nunion-management JJ\nunion-owned JJ\nunion-represented JJ\nunion-sponsored JJ\nunionist NN\nunionists NNS\nunionized JJ\nunions NNS\nunique JJ\nunique-ingrown-screwedup JJ\nuniquely RB\nuniqueness NN\nuniramous JJ\nunison NN\nunissued JJ\nunit NN\nunit-labor JJ\nunit-making VBG\nunit-price NN\nunitary JJ\nunite VB\nunited VBN\nunites VBZ\nunitholders NNS\nunities NNS\nuniting VBG\nunitized VBN\nunits NNS\nunits-Texas NNP\nunity NN\nunivalent JJ\nuniversal JJ\nuniversalistic JJ\nuniversality NN\nuniversalization NN\nuniversalize VBP\nuniversally RB\nuniversals NNS\nuniverse NN\nuniverse-shaking JJ\nuniversities NNS\nuniversity NN\nuniversity-based JJ\nuniversity-educated JJ\nuniversity-funded JJ\nuniversity-trained JJ\nuniversity-wide JJ\nunjacketed JJ\nunjust JJ\nunjustifiable JJ\nunjustifiably RB\nunjustified JJ\nunjustly RB\nunk-unks NNS\nunkempt JJ\nunkind JJ\nunknowable JJ\nunknowing JJ\nunknowingly RB\nunknown JJ\nunknowns NNS\nunlabeled JJ\nunlaced VBD\nunlacing VBG\nunlamented JJ\nunlashed VBD\nunlatch VB\nunlaundered VBN\nunlawful JJ\nunlawfully RB\nunleaded JJ\nunleash VB\nunleashed VBN\nunleashes VBZ\nunleashing VBG\nunleavened JJ\nunless IN\nunleveled VBN\nunlicensed JJ\nunlike IN\nunlikely JJ\nunlimited JJ\nunlined JJ\nunlinked JJ\nunlisted JJ\nunlit NN\nunliterary JJ\nunload VB\nunloaded VBN\nunloading VBG\nunloads VBZ\nunlock VB\nunlocked VBD\nunlocking VBG\nunlocks VBZ\nunlovable JJ\nunlovely JJ\nunluckily RB\nunlucky JJ\nunmagnified JJ\nunmalicious JJ\nunmanageable JJ\nunmanageably RB\nunmanaged JJ\nunmanned JJ\nunmarked JJ\nunmarketable JJ\nunmarried JJ\nunmasculine JJ\nunmask VB\nunmasked VBN\nunmasks VBZ\nunmatched JJ\nunmated VBN\nunmaterialized VBN\nunmeasurable JJ\nunmelodic JJ\nunmentioned VBN\nunmeritorious JJ\nunmeshed JJ\nunmet JJ\nunmethodical JJ\nunmiked VBN\nunmindful JJ\nunmistakable JJ\nunmistakably RB\nunmixed VBN\nunmodified JJ\nunmolested JJ\nunmotivated JJ\nunmoved JJ\nunmurmuring JJ\nunnameable JJ\nunnamed JJ\nunnatural JJ\nunnaturally RB\nunnaturalness NN\nunnavigable JJ\nunnecessarily RB\nunnecessary JJ\nunneeded JJ\nunnerved VBD\nunnerving VBG\nunnnt NN\nunnoticed JJ\nunnourished JJ\nunnumbered JJ\nunobserved JJ\nunobtainable JJ\nunobtrusive JJ\nunobtrusively RB\nunobvious JJ\nunoccupied JJ\nunofficial JJ\nunofficially RB\nunopened JJ\nunopposable JJ\nunopposed JJ\nunorganized JJ\nunoriginal JJ\nunoriginals NNS\nunorthodox JJ\nunpack VB\nunpacked JJ\nunpacking VBG\nunpadded JJ\nunpaid JJ\nunpaintable JJ\nunpaired VBN\nunpalatable JJ\nunparalleled JJ\nunpartisan JJ\nunpatriotic JJ\nunpatronizing VBG\nunpaved JJ\nunpeace NN\nunpegged JJ\nunperceived VBN\nunperformed JJ\nunperturbed JJ\nunphysical JJ\nunpicturesque JJ\nunplagued VBN\nunplanned JJ\nunpleasant JJ\nunpleasantly RB\nunpleasantness NN\nunpleased VBN\nunplowed JJ\nunplug VB\nunplumbed JJ\nunpolarizing VBG\nunpolished JJ\nunpolitical JJ\nunpopular JJ\nunpopularity NN\nunprecedented JJ\nunprecedentedly RB\nunpredictability NN\nunpredictable JJ\nunpredictably RB\nunpremeditated JJ\nunprepared JJ\nunpretentious JJ\nunproblematic JJ\nunprocurable JJ\nunproductive JJ\nunprofessional JJ\nunprofitable JJ\nunpromising JJ\nunprotected JJ\nunprovable JJ\nunproved JJ\nunproven JJ\nunprovocative JJ\nunpublicized JJ\nunpublishable JJ\nunpublished JJ\nunpunctured JJ\nunpunished JJ\nunqualified JJ\nunqualifiedly RB\nunquenched VBN\nunquestionable JJ\nunquestionably RB\nunquestioned JJ\nunquestioningly RB\nunquiet JJ\nunravel VB\nunraveled VBN\nunraveling NN\nunread JJ\nunreadable JJ\nunready JJ\nunreal JJ\nunrealism NN\nunrealistic JJ\nunrealistically RB\nunreality NN\nunrealized JJ\nunreason NN\nunreasonable JJ\nunreasonably RB\nunreasoning JJ\nunreassuringly RB\nunrecognizable JJ\nunrecognized JJ\nunreconstructed JJ\nunrecoverable JJ\nunredeemed JJ\nunreeling VBG\nunreflective JJ\nunrefrigerated JJ\nunregisterd JJ\nunregistered JJ\nunregulated JJ\nunrehearsed JJ\nunreimbursed VBN\nunreinforced JJ\nunrelated JJ\nunreleasable JJ\nunreleased JJ\nunrelenting JJ\nunreliability NN\nunreliable JJ\nunrelieved JJ\nunremarkable JJ\nunremitting JJ\nunremittingly RB\nunrepentant JJ\nunreported JJ\nunrequited JJ\nunreservedly RB\nunresolved JJ\nunresponsive JJ\nunrest NN\nunrestrained JJ\nunrestricted JJ\nunrestrictedly RB\nunretouched JJ\nunrevealing VBG\nunrewarding JJ\nunrifled JJ\nunripe JJ\nunrivaled JJ\nunroll VBP\nunrolled JJ\nunrolls VBZ\nunromantic JJ\nunruffled JJ\nunruly JJ\nunsaddling VBG\nunsafe JJ\nunsaid JJ\nunsaleable JJ\nunsalted JJ\nunsanctioned JJ\nunsatisfactorily RB\nunsatisfactory JJ\nunsatisfied JJ\nunsatisfying JJ\nunsaturated JJ\nunsavory JJ\nunscathed JJ\nunscented VBN\nunscheduled JJ\nunscientific JJ\nunscramble VB\nunscrew VB\nunscrewed VBD\nunscripted JJ\nunscrupulous JJ\nunseal VB\nunsealed VBN\nunsealing NN\nunseasonable JJ\nunseat VB\nunseated JJ\nunseating VBG\nunsecured JJ\nunsee VBN\nunseemly JJ\nunseen JJ\nunself-conscious JJ\nunselfconsciousness NN\nunselfish JJ\nunselfishly RB\nunsentimental JJ\nunserious JJ\nunserviceable JJ\nunservile JJ\nunsettled JJ\nunsettlement NN\nunsettling JJ\nunshackled JJ\nunshakable JJ\nunshakeable JJ\nunsharpened VBN\nunshaved JJ\nunshaven JJ\nunsheathe VB\nunsheathing VBG\nunshed JJ\nunshelled VBN\nunsheltered JJ\nunshielded VBN\nunshirted JJ\nunsightly JJ\nunsigned JJ\nunskilled JJ\nunsloped JJ\nunsmiling JJ\nunsmilingly RB\nunsold JJ\nunsolder VB\nunsolicited JJ\nunsolved JJ\nunsophisticated JJ\nunsound JJ\nunspeakable JJ\nunspecified JJ\nunspectacular JJ\nunspent JJ\nunspoiled JJ\nunspoken JJ\nunsprayed VBN\nunstable JJ\nunstained JJ\nunstanched VBN\nunstapled JJ\nunstaring VBG\nunstated JJ\nunsteadily RB\nunsteadiness NN\nunsteady JJ\nunstilted JJ\nunstimulated JJ\nunstinting VBG\nunstoppable JJ\nunstressed JJ\nunstructured JJ\nunstrung JJ\nunstuck JJ\nunstuffy VB\nunstylish JJ\nunsubordinated JJ\nunsubsidized JJ\nunsubstantiated JJ\nunsubtle JJ\nunsuccessful JJ\nunsuccessfully RB\nunsuitability NN\nunsuitable JJ\nunsuitably RB\nunsuited VBN\nunsung JJ\nunsupportable JJ\nunsupported JJ\nunsure JJ\nunsurmountable JJ\nunsurpassed JJ\nunsurprised JJ\nunsurprising VBG\nunsuspected JJ\nunsuspecting JJ\nunsustainable JJ\nunswagged JJ\nunswaggering JJ\nunswerving JJ\nunsympathetic JJ\nuntamed JJ\nuntapped JJ\nuntarnished JJ\nunteach VB\nuntellable JJ\nuntenable JJ\nuntenanted JJ\nuntenured VBN\nuntested JJ\nunthaw VB\nunthematic JJ\nunthinkable JJ\nunthinking JJ\nunthinkingly RB\nunthreatening JJ\nuntidiness NN\nuntidy JJ\nuntie VB\nuntied VBD\nuntil IN\nuntil... :\nuntimely JJ\nunto IN\nuntold JJ\nuntouchable JJ\nuntouched JJ\nuntoward JJ\nuntracked JJ\nuntradeable JJ\nuntraditional JJ\nuntrained JJ\nuntrammeled VBN\nuntreated JJ\nuntried JJ\nuntrue JJ\nuntrue... :\nuntrustworthiness NN\nuntrustworthy JJ\nuntruth NN\nunturned JJ\nunusable JJ\nunusally RB\nunused JJ\nunusual JJ\nunusually RB\nunutterably RB\nunuttered JJ\nunvarying VBG\nunvaryingly RB\nunveil VB\nunveiled VBD\nunveiling VBG\nunveils VBZ\nunventilated VBN\nunverifiable JJ\nunviable JJ\nunvisited VBN\nunwaivering VBG\nunwanted JJ\nunwarrantable JJ\nunwarranted JJ\nunwary JJ\nunwashed JJ\nunwavering VBG\nunwaveringly RB\nunwed JJ\nunwelcome JJ\nunwholesome JJ\nunwieldy JJ\nunwilling JJ\nunwillingly RB\nunwillingness NN\nunwind VB\nunwinding NN\nunwire VB\nunwired VBD\nunwise JJ\nunwisely RB\nunwitting JJ\nunwittingly RB\nunwomanly RB\nunworkable JJ\nunworn JJ\nunworthy JJ\nunwounded JJ\nunwraps VBZ\nunwrinkled JJ\nunwritten JJ\nunyielding JJ\nup IN\nup-and-coming JJ\nup-front JJ\nup-jutting JJ\nup-market JJ\nup-or-down JJ\nup-pp RP\nup-scale JJ\nup-tight JJ\nup-to-date JJ\nup. RB\nup... :\nupbeat JJ\nupbringing NN\nupcoming JJ\nupcountry JJ\nupdate VB\nupdated VBN\nupdates NNS\nupdating VBG\nupended JJ\nupfield RB\nupgrade VB\nupgraded VBN\nupgrades NNS\nupgrading VBG\nupgradings NNS\nupheaval NN\nupheavals NNS\nupheld VBD\nuphill JJ\nuphold VB\nupholders NNS\nupholding VBG\nupholds VBZ\nupholstered VBN\nupholstery NN\nupkeep NN\nupland JJ\nuplands NNS\nuplift NN\nuplifting JJ\nuploaded VBD\nupmarket JJ\nupon IN\nupped VBD\nupper JJ\nupper-class JJ\nupper-crust JJ\nupper-deck JJ\nupper-echelon JJ\nupper-house NN\nupper-income JJ\nupper-level JJ\nupper-lower JJ\nupper-management NN\nupper-medium JJ\nupper-middle JJ\nupper-middle-class JJ\nupper-middle-income JJ\nupperclassmen NNS\nuppercut NN\nuppermost JJS\nuppon IN\nupraised VBN\nupright RB\nuprising NN\nuprisings NNS\nupriver JJ\nuproar NN\nuproariously RB\nuproot VB\nuprooted VBN\nups NNS\nups-and-downs NNS\nupscale JJ\nupset VBN\nupsets NNS\nupsetting VBG\nupshot NN\nupshots NNS\nupside RB\nupstaged VBN\nupstairs NN\nupstanding JJ\nupstart NN\nupstarts NNS\nupstate JJ\nupstream RB\nupsurge NN\nupswing NN\nuptake NN\nuptempo JJ\nuptick NN\nuptight JJ\nuptown NN\nuptrend NN\nupturn NN\nupturned JJ\nupturns NNS\nupward RB\nupward-mobile JJ\nupwardly RB\nupwards RB\nur DT\nuranium NN\nuranium-mining NN\nuranium-recovery JJ\nuranium-waste JJ\nuranyl NN\nurban JJ\nurban-development NN\nurban-fringe JJ\nurbane JJ\nurbanism NN\nurbanization NN\nurbanized VBN\nurea NN\nuremia NN\nurethane NN\nurethanes NNS\nurethra NN\nurge VB\nurged VBD\nurgencies NNS\nurgency NN\nurgent JJ\nurgently RB\nurges VBZ\nurging VBG\nurgings NNS\nurinals NNS\nurinary JJ\nurinary-tract NN\nurine NN\nurn NN\nurns NNS\nus PRP\nus... :\nusability NN\nusable JJ\nusage NN\nusages NNS\nuse NN\nuseable JJ\nused VBN\nused'em NN\nused-car NN\nused-equipment NN\nuseful JJ\nusefully RB\nusefulness NN\nuseless JJ\nuselessly RB\nuselessness NN\nuser NN\nuser-inviting JJ\nuserfriendly JJ\nusers NNS\nuses VBZ\nusher NN\nushered VBD\nushering VBG\nushers VBZ\nusing VBG\nussr NN\nusual JJ\nusually RB\nusurious JJ\nusurp VB\nusurpation NN\nusurped VBN\nusurping VBG\nususal JJ\nutensils NNS\nutero NN\nuterus NN\nutilitarian JJ\nutilities NNS\nutility NN\nutility-cost NN\nutilization NN\nutilize VB\nutilized VBN\nutilizes VBZ\nutilizing VBG\nutmost JJ\nutmosts NNS\nutopia NN\nutopian JJ\nutopianism NN\nutopians NNS\nutopias NNS\nutter JJ\nutterance NN\nutterances NNS\nuttered VBD\nuttering VBG\nutterly RB\nuttermost JJ\nuttuh VB\nv-senv5 NNP\nv. CC\nv.B. NNP\nv.d NNP\nv.w. NN\nvacancies NNS\nvacancy NN\nvacanices NNS\nvacant JJ\nvacate VB\nvacated VBN\nvacating VBG\nvacation NN\nvacationed VBD\nvacationer NN\nvacationers NNS\nvacationing VBG\nvacationland NN\nvacations NNS\nvaccinating VBG\nvaccination NN\nvaccine NN\nvaccine-related JJ\nvaccine-vendor JJ\nvaccines NNS\nvaccinia NN\nvacillate VB\nvacillated VBD\nvacillation NN\nvacuolated VBN\nvacuolization NN\nvacuous JJ\nvacuum NN\nvacuum-formed JJ\nvacuum-packed JJ\nvacuum-tube JJ\nvacuumed VBD\nvacuuming VBG\nvade FW\nvagabond NN\nvagabondage NN\nvagabonds NNS\nvagaries NNS\nvagina NN\nvaginal JJ\nvagrant JJ\nvague JJ\nvaguely RB\nvaguely-imagined JJ\nvagueness NN\nvaguer JJR\nvaguest JJS\nvain JJ\nvainly RB\nvalet NN\nvaleur FW\nvalewe NN\nvaliant JJ\nvaliantly RB\nvalid JJ\nvalidate VB\nvalidated VBN\nvalidating VBG\nvalidation NN\nvalidity NN\nvalidly RB\nvalley NN\nvalleys NNS\nvalor NN\nvaluable JJ\nvaluation NN\nvaluations NNS\nvalue NN\nvalue-added JJ\nvalue-assessment NN\nvalue-boosting JJ\nvalue-investing JJ\nvalue-judgments NNS\nvalue-orientations NNS\nvalue-oriented JJ\nvalue-problems NNS\nvalue-story JJ\nvalue-system NN\nvalued VBN\nvalueless JJ\nvalues NNS\nvaluing VBG\nvalve NN\nvalves NNS\nvampire NN\nvampires NNS\nvampirism NN\nvan NNP\nvandalism NN\nvandalized VBD\nvandals NNS\nvane NN\nvanguard NN\nvanilla NN\nvanish VBP\nvanished VBD\nvanishes VBZ\nvanishing VBG\nvanities NNS\nvanity NN\nvanquish VB\nvans NNS\nvantage NN\nvantage-points NNS\nvapor NN\nvapor-pressure NN\nvaporization NN\nvapors NNS\nvaquero NN\nvar. NN\nvariability NN\nvariable JJ\nvariable-rate JJ\nvariable-speed JJ\nvariables NNS\nvariance NN\nvariances NNS\nvariant NN\nvariants NNS\nvariation NN\nvariations NNS\nvaricolored JJ\nvaried VBN\nvariegated JJ\nvaries VBZ\nvarieties NNS\nvariety NN\nvarious JJ\nvarious-sized JJ\nvariously RB\nvaritinted JJ\nvarityping NN\nvarmint NN\nvarnish NN\nvarnishes NNS\nvary VBP\nvarying VBG\nvasa NN\nvascular JJ\nvascular-lesion NN\nvase NN\nvases NNS\nvasodilator NN\nvasorum NN\nvassal NN\nvassals NNS\nvast JJ\nvaster JJR\nvastly RB\nvats NNS\nvaudeville NN\nvault NN\nvaulted VBD\nvaulting JJ\nvaults NNS\nvaunted JJ\nveal NN\nvector NN\nvectors NNS\nveer VB\nveered VBD\nveering VBG\nveers VBZ\nvegetable NN\nvegetable-protein NN\nvegetables NNS\nvegetarian JJ\nvegetarians NNS\nvegetation NN\nvegetative JJ\nvehemence NN\nvehement JJ\nvehemently RB\nvehicle NN\nvehicle-loan JJ\nvehicle-making JJ\nvehicle-marketing JJ\nvehicle-production JJ\nvehicle-suspension NN\nvehicles NNS\nvehicular JJ\nveil NN\nveiled VBN\nveiling NN\nveils NNS\nvein NN\nveined JJ\nveining NN\nveins NNS\nveldt NN\nvellum JJ\nvelociter FW\nvelocities NNS\nvelocity NN\nvelour NN\nvelours NN\nvelvet NN\nvelveteen NN\nvelvety JJ\nvenal JJ\nvendetta NN\nvending NN\nvendor NN\nvendors NNS\nveneer NN\nvenerable JJ\nvenerable-but-much-derided JJ\nvenerated VBN\nveneration NN\nvenereal JJ\nvengeance NN\nvenison NN\nvenom NN\nvenomous JJ\nvent NN\nvented VBD\nventilated VBD\nventilates VBZ\nventilating NN\nventilation NN\nventilator NN\nventricle NN\nventricles NNS\nventricular JJ\nvents NNS\nventure NN\nventure-capital JJ\nventured VBD\nventurers NNS\nventures NNS\nventuresome JJ\nventuring VBG\nvenue NN\nvenues NNS\nveracious JJ\nveracity NN\nveranda NN\nverandah NN\nverandas NNS\nverb NN\nverbal JJ\nverbally RB\nverbatim RB\nverbenas NNS\nverbiage NN\nverboten FW\nverbs NNS\nverdant JJ\nverdict NN\nverdicts NNS\nverge NN\nverged VBD\nveridical JJ\nverie RB\nverifiable JJ\nverifiably RB\nverification NN\nverified VBN\nverifier NN\nverifiers NNS\nverify VB\nverifying VBG\nverisimilitude NN\nveritable JJ\nverities NNS\nverity NN\nvermeil JJ\nvermilion JJ\nvernacular NN\nvernal JJ\nvernier NN\nversa RB\nversatile JJ\nversatility NN\nverse NN\nversed VBN\nverses NNS\nversion NN\nversions NNS\nverso NN\nverstrichen FW\nversus IN\nvertebrae NNS\nvertebral JJ\nvertebrate JJ\nvertebrates NNS\nvertex NN\nvertical JJ\nvertical-restraint JJ\nvertical-restraints NNS\nvertical-takeoff-and-landing JJ\nvertically RB\nvertigo NN\nverve NN\nvery RB\nvery-highly JJ\nvesicular JJ\nvessel NN\nvessels NNS\nvest NN\nvested VBN\nvestibule NN\nvestibules NNS\nvestige NN\nvestiges NNS\nvesting VBG\nvestments NNS\nvests NNS\nvet NN\nveteran NN\nveterans NNS\nveterinarian NN\nveterinarians NNS\nveterinary JJ\nveto NN\nveto-proof JJ\nvetoed VBD\nvetoes NNS\nvetoing VBG\nvetted VBN\nvex VBP\nvexatious JJ\nvexed VBN\nvexes VBZ\nvexing JJ\nvia IN\nviability NN\nviable JJ\nviaduct NN\nviaducts NNS\nvial NN\nvibes NNS\nvibrancy NN\nvibrant JJ\nvibrate VB\nvibrated VBD\nvibrating VBG\nvibration NN\nvibration-control JJ\nvibrations NNS\nvibrato NN\nvibratory JJ\nvibrionic JJ\nvicar NN\nvicarious JJ\nvicariously RB\nvicars NNS\nvice NN\nvice-chairman NN\nvice-chancellor NN\nvice-president NN\nvice-presidents NNS\nvice-regent JJ\nvicelike JJ\nvices NNS\nvicinity NN\nvicious JJ\nviciously RB\nviciousness NN\nvicissitudes NNS\nvicitims NNS\nvictim NN\nvictimize VBP\nvictimized VBN\nvictimizes VBZ\nvictimless JJ\nvictims NNS\nvictor NN\nvictories NNS\nvictorious JJ\nvictoriously RB\nvictory NN\nvictuals NNS\nvide FW\nvideo NN\nvideo-cassette JJ\nvideo-distribution NN\nvideo-game NN\nvideo-rental JJ\nvideo-store NN\nvideo-viewing JJ\nvideocam NN\nvideocameras NNS\nvideocasette NN\nvideocassette NN\nvideocassettes NNS\nvideoconferencing NN\nvideodiscs NNS\nvideodisk NN\nvideodisks NNS\nvideos NNS\nvideotape NN\nvideotaped VBN\nvideotapes NNS\nvideotex NN\nvideotext NN\nvie VBP\nvied VBD\nvielleicht FW\nvies VBZ\nview NN\nviewed VBN\nviewer NN\nviewers NNS\nviewership NN\nviewing VBG\nviewings NNS\nviewless JJ\nviewpoint NN\nviewpoints NNS\nviews NNS\nvigil NN\nvigilance NN\nvigilant JJ\nvigilantism NN\nvignette NN\nvignettes NNS\nvigor NN\nvigorous JJ\nvigorously RB\nvile JJ\nvilification NN\nvilified VBN\nvilifies VBZ\nvilifying VBG\nvilla NN\nvillage NN\nvillager NN\nvillagers NNS\nvillages NNS\nvillain NN\nvillainous JJ\nvillains NNS\nvillas NNS\nvincit FW\nvindicate VB\nvindicated VBN\nvindication NN\nvindictive JJ\nvine NN\nvine-crisscrossed JJ\nvine-embowered JJ\nvine-shaded JJ\nvinegar NN\nvines NNS\nvineyard NN\nvineyards NNS\nvintage JJ\nvintages NNS\nvintner NN\nvintners NNS\nvinyl NN\nvinyl-laminated JJ\nvinyl-products NNS\nvioiln NN\nviolate VB\nviolated VBD\nviolates VBZ\nviolating VBG\nviolation NN\nviolations NNS\nviolator NN\nviolators NNS\nviolence NN\nviolent JJ\nviolently RB\nviolet NN\nviolets NNS\nviolin NN\nviolinist NN\nviolinists NNS\nviolins NNS\nvipers NNS\nviral JJ\nvirgin JJ\nvirginity NN\nvirgins NNS\nvirile JJ\nvirility NN\nvirologist NN\nvirtual JJ\nvirtually RB\nvirtue NN\nvirtues NNS\nvirtuosi NNS\nvirtuosity NN\nvirtuoso JJ\nvirtuosos NNS\nvirtuous JJ\nvirulence NN\nvirulent JJ\nvirus NN\nvirus-boosting JJ\nvirus-free JJ\nviruses NNS\nvirutally RB\nvis FW\nvis-a-vis FW\nvisa NN\nvisa-free JJ\nvisage NN\nvisages NNS\nvisas NNS\nviscera NNS\nvisceral JJ\nviscoelastic JJ\nviscoelasticity NN\nviscometer NN\nviscosity NN\nviscous JJ\nvise NN\nviselike JJ\nvisibility NN\nvisible JJ\nvisibly RB\nvision NN\nvisionaries NNS\nvisionary JJ\nvisions NNS\nvisit NN\nvisitation NN\nvisitations NNS\nvisited VBD\nvisiting VBG\nvisitor NN\nvisitors NNS\nvisits NNS\nvisrhanik FW\nvista NN\nvistas NNS\nvistors NNS\nvisual JJ\nvisualization NN\nvisualizations NNS\nvisualize VB\nvisualized VBD\nvisualizes VBZ\nvisually RB\nvisuals NNS\nvitae NN\nvital JJ\nvitality NN\nvitally RB\nvitals NNS\nvitamin NN\nvitamin-and-iron JJ\nvitamins NNS\nvitiate VB\nvitiated VBN\nvitiates VBZ\nvitreous-china NN\nvitriol NN\nvitriolic JJ\nvitro FW\nviva FW\nvivacious JJ\nvivacity NN\nvivid JJ\nvividly RB\nvividness NN\nvivified VBN\nvivify VB\nvivo NN\nvivre FW\nviz. NN\nvocabularies NNS\nvocabulary NN\nvocal JJ\nvocal\\ JJ\nvocalic JJ\nvocalism NN\nvocalist NN\nvocalists NNS\nvocalization NN\nvocalize VB\nvocally RB\nvocals NNS\nvocation NN\nvocational JJ\nvocational-advancement JJ\nvocationally RB\nvoce NN\nvociferous JJ\nvociferously RB\nvociferousness NN\nvodka NN\nvodkas NNS\nvogue NN\nvoice NN\nvoice-activated JJ\nvoice-altering JJ\nvoice-mail NN\nvoice-over JJ\nvoice-processing JJ\nvoice-recognition NN\nvoice-response NN\nvoiced VBD\nvoiceless JJ\nvoices NNS\nvoicing VBG\nvoid NN\nvoided VBD\nvoids VBZ\nvoir FW\nvolatile JJ\nvolatility NN\nvolatilization NN\nvolcanic JJ\nvolcano NN\nvolcanoes NNS\nvolcanos NNS\nvolens FW\nvolition NN\nvolley NN\nvolley-ball NN\nvolleyball NN\nvoltage NN\nvoltages NNS\nvoltaic JJ\nvoltmeter NN\nvolts NNS\nvoluble JJ\nvolubly RB\nvolume NN\nvolume-based JJ\nvolume-decliner JJ\nvolume-wine JJ\nvolumes NNS\nvolumetric JJ\nvolumetrically RB\nvoluminous JJ\nvoluntarily RB\nvoluntarism NN\nvoluntary JJ\nvoluntary-control JJ\nvolunteer NN\nvolunteered VBD\nvolunteering VBG\nvolunteerism NN\nvolunteers NNS\nvoluptuous JJ\nvomica NN\nvomit VBP\nvomited VBD\nvomiting VBG\nvon NNP\nvoodoo NN\nvopos FW\nvoracious JJ\nvoraciously RB\nvortex NN\nvos FW\nvote NN\nvote-begging NN\nvote-diluting JJ\nvote-getter NN\nvote-getters NNS\nvote-loser NN\nvoted VBD\nvoter NN\nvoter-approved JJ\nvoter-registration JJ\nvoters NNS\nvotes NNS\nvoting NN\nvotive JJ\nvoucher NN\nvouchers NNS\nvouching VBG\nvouchsafes VBZ\nvoulez FW\nvoume NN\nvous FW\nvow NN\nvowed VBD\nvowel NN\nvowels NNS\nvowing VBG\nvows VBZ\nvoyage NN\nvoyager NN\nvoyages NNS\nvoyageurs NNS\nvoyeurism NN\nvp NN\nvrai FW\nvs NNP\nvs. IN\nvu NN\nvue FW\nvuhranduh NN\nvulcanized VBN\nvulgar JJ\nvulnerabilities NNS\nvulnerability NN\nvulnerable JJ\nvulpine JJ\nvulture NN\nvulture-like JJ\nvultures NNS\nvying VBG\nw IN\nw-i-d-e NN\nw. JJ\nw/ IN\nw8 VB\nwacky JJ\nwad NN\nwad-working NN\nwadded VBD\nwaddlers NNS\nwaddles VBZ\nwade VB\nwaded VBD\nwads NNS\nwafer NN\nwafers NNS\nwaffle NN\nwaffle-pattern NN\nwaffled VBD\nwaffles NNS\nwaffling VBG\nwaft VB\nwafting VBG\nwag NN\nwage NN\nwage-discrimination NN\nwage-earning JJ\nwage-floor JJ\nwage-price JJ\nwage-rate JJ\nwage-rates NNS\nwage-setter NN\nwaged VBN\nwager NN\nwagering NN\nwagers NNS\nwages NNS\nwagged VBD\nwagging VBG\nwaggishly RB\nwaggled VBD\nwaggling VBG\nwaging VBG\nwagon NN\nwagons NNS\nwags NNS\nwahtahm NN\nwaif NN\nwail NN\nwailed VBD\nwailing VBG\nwails NNS\nwainscoted JJ\nwaist NN\nwaist-length JJ\nwaistcoat NN\nwaists NNS\nwait VB\nwait-and-see JJ\nwaited VBD\nwaiter NN\nwaiters NNS\nwaitin VBG\nwaiting VBG\nwaitress NN\nwaitresses NNS\nwaits VBZ\nwaive VB\nwaived VBN\nwaiver NN\nwaivered VBN\nwaivers NNS\nwaives VBZ\nwaiving VBG\nwake NN\nwaked VBD\nwakeful JJ\nwakefulness NN\nwakened VBN\nwakening VBG\nwakes VBZ\nwaking VBG\nwales NNS\nwalk VB\nwalk-in JJ\nwalk-on NN\nwalk-through JJ\nwalk-to JJ\nwalk-up NN\nwalk-way NN\nwalked VBD\nwalker NN\nwalkers NNS\nwalkie-talkie NN\nwalkie-talkies NNS\nwalkin VBG\nwalking VBG\nwalkout NN\nwalkouts NNS\nwalkover NN\nwalks VBZ\nwalkway NN\nwalkways NNS\nwall NN\nwall-flowers NNS\nwall-paneling JJ\nwall-stabilized JJ\nwall-switch NN\nwall-to-wall JJ\nwallboard NN\nwallcoverings NNS\nwalled JJ\nwallet NN\nwallets NNS\nwallflower NN\nwallop NN\nwalloped VBD\nwalloping JJ\nwallops VBZ\nwallow VB\nwallowed VBD\nwallowing VBG\nwallpaper NN\nwallpapers NNS\nwalls NNS\nwalnut NN\nwalnuts NNS\nwalrus NN\nwalruses NNS\nwaltz NN\nwaltzing VBG\nwan JJ\nwan't VB\nwand NN\nwander VB\nwandered VBD\nwanderer NN\nwanderers NNS\nwandering VBG\nwanderings NNS\nwanders VBZ\nwane VB\nwaned VBD\nwanes VBZ\nwangled VBD\nwaning VBG\nwanna VB\nwant VBP\nwanta VB\nwanted VBD\nwanting VBG\nwanting-to-be-alone JJ\nwanton JJ\nwants VBZ\nwar NN\nwar-damaged JJ\nwar-dirty JJ\nwar-like JJ\nwar-rationed JJ\nwar-ridden JJ\nwar-time JJ\nwar-torn JJ\nwarbler NN\nwarbling VBG\nwarchest NN\nward NN\nward-heelers NNS\nward-personnel NNS\nwarded VBN\nwarden NN\nwardens NNS\nwardrobe NN\nwardrobes NNS\nwardroom NN\nwards NNS\nware NN\nwarehouse NN\nwarehouse-club NN\nwarehouse-management NN\nwarehouse-type NN\nwarehouseman NN\nwarehouses NNS\nwarehousing NN\nwares NNS\nwarfare NN\nwarfront NN\nwarhead NN\nwarheads NNS\nwarily RB\nwariness NN\nwarless JJ\nwarlike JJ\nwarlords NNS\nwarm JJ\nwarm-blooded JJ\nwarm-hearted JJ\nwarm-red JJ\nwarm-toned JJ\nwarm-up NN\nwarm-ups NNS\nwarm-weather JJ\nwarmed VBD\nwarmed-over IN\nwarmer JJR\nwarmhearted JJ\nwarmheartedness NN\nwarming NN\nwarmish JJ\nwarmly RB\nwarms VBZ\nwarmth NN\nwarmup NN\nwarn VB\nwarn-your-enemy JJ\nwarned VBD\nwarning NN\nwarning-signals NN\nwarningly RB\nwarnings NNS\nwarns VBZ\nwarp NN\nwarped VBN\nwarping VBG\nwarrant NN\nwarranted VBN\nwarranties NNS\nwarrantless JJ\nwarrants NNS\nwarranty NN\nwarred VBD\nwarren NN\nwarrent JJ\nwarring VBG\nwarrior NN\nwarriors NNS\nwars NNS\nwarship NN\nwarships NNS\nwart NN\nwart-hog NN\nwartime NN\nwartorn NN\nwarts NNS\nwarty JJ\nwary JJ\nwarys NNS\nwas VBD\nwas'give VBD\nwash NN\nwash-outs NNS\nwash-up JJ\nwashable JJ\nwashbasin NN\nwashboard NN\nwashbowl NN\nwashed VBN\nwashed-out JJ\nwasher NN\nwashes NNS\nwashing VBG\nwashings NNS\nwashload NN\nwashouts NNS\nwasn't NN\nwasnt VBD\nwasp NN\nwaspish JJ\nwaspishly RB\nwassail NN\nwaste NN\nwaste-disposal JJ\nwaste-energy NN\nwaste-management JJ\nwaste-storage NN\nwaste-to-energy JJ\nwaste-treatment NN\nwaste-water NN\nwastebasket NN\nwasted VBN\nwasteful JJ\nwasteful-racist-savagery NN\nwasteland NN\nwastepaper NN\nwastes NNS\nwastewater NN\nwasting VBG\nwastrel NN\nwat PRP\nwatch VB\nwatch-spring JJ\nwatchdog NN\nwatchdogs NNS\nwatched VBD\nwatcher NN\nwatchers NNS\nwatches NNS\nwatchful JJ\nwatching VBG\nwatchings NNS\nwatchmaker NN\nwatchman NN\nwatchmen NNS\nwatchtowers NNS\nwatchword NN\nwater NN\nwater-authority NN\nwater-balance NN\nwater-borne JJ\nwater-cooled JJ\nwater-deficient JJ\nwater-filled JJ\nwater-holding JJ\nwater-line NN\nwater-pollution NN\nwater-proof JJ\nwater-purification NN\nwater-purity NN\nwater-reactor JJ\nwater-ski NN\nwater-soluble JJ\nwater-submersion JJ\nwater-tank NN\nwater-treatment NN\nwater-use NN\nwater-washed VBN\nwatercolor NN\nwatercolorist NN\nwatercolorists NNS\nwatercolors NNS\nwatered VBN\nwatered-down JJ\nwaterfall NN\nwaterfalls NNS\nwaterflows NNS\nwaterfront NN\nwatering VBG\nwaterline NN\nwaterlogged JJ\nwatermelon NN\nwaterproof NN\nwaterproofing NN\nwaters NNS\nwatershed NN\nwatersheds NNS\nwaterside NN\nwaterskiing NN\nwaterway NN\nwaterways NNS\nwaterworks NN\nwatery JJ\nwatt NN\nwattles NNS\nwatts NNS\nwave NN\nwave-length NN\nwave-particle NN\nwave-setting JJ\nwave-travel JJ\nwaved VBD\nwavelength NN\nwavelengths NNS\nwaver VBP\nwavered VBD\nwavering VBG\nwavers NNS\nwaves NNS\nwaving VBG\nwavy JJ\nwavy-haired JJ\nwax NN\nwaxed VBD\nwaxen JJ\nwaxing NN\nwaxy JJ\nway NN\nway-out JJ\nwaylaid VBN\nwaypoint NN\nways NNS\nwayside NN\nwayward JJ\nwayward-looking JJ\nwe PRP\nwe'll MD\nwe're VB\nwe're-all-in-this-together JJ\nwe'uns NNS\nwe-Japanese JJ\nweak JJ\nweak-kneed JJ\nweak... :\nweaken VB\nweakened VBN\nweakening VBG\nweakens VBZ\nweaker JJR\nweaker-performing JJ\nweaker-than-expected JJ\nweakest JJS\nweakling NN\nweakly RB\nweakness NN\nweaknesses NNS\nweakwilled JJ\nwealth NN\nwealthier JJR\nwealthiest JJS\nwealthy JJ\nwean VB\nweaned VBN\nweaning VBG\nweapon NN\nweaponry NN\nweapons NNS\nweapons-acquisition NN\nweapons-control JJ\nweapons-grade JJ\nweapons-modernization JJ\nweapons-plant JJ\nweapons-systems NNS\nweaponsmaking NN\nwear VB\nwearied VBD\nwearily RB\nwearin VBG\nweariness NN\nwearing VBG\nwearing'kick VB\nwearisome JJ\nwears VBZ\nweary JJ\nwearying VBG\nweasel NN\nweasel-worded JJ\nweasling VBG\nweather NN\nweather-related JJ\nweather-resistant JJ\nweather-royal JJ\nweatherbeaten JJ\nweathering NN\nweatherman NN\nweatherproof JJ\nweatherstrip VB\nweave VB\nweavers NNS\nweaves NNS\nweaving VBG\nweb NN\nweb-printing JJ\nwebs NNS\nwed VBN\nwedded VBN\nwedding NN\nweddings NNS\nwedge NN\nwedge-nosed JJ\nwedge-shaped JJ\nwedged VBN\nwedging VBG\nwedlock NN\nweds VBZ\nwee JJ\nweed NN\nweed-killing JJ\nweeded VBN\nweeding VBG\nweeds NNS\nweek NN\nweek-end NN\nweek-ends NNS\nweek-long JJ\nweek-old JJ\nweek-one JJ\nweek-to-week JJ\nweekday NN\nweekdays NNS\nweeked NN\nweekend NN\nweekends NNS\nweeklies NNS\nweeklong JJ\nweekly JJ\nweekly-average JJ\nweeknight NN\nweeknights NNS\nweeks NNS\nweep VB\nweepers NNS\nweeping VBG\nweevil NN\nweevils NNS\nwei NNS\nweigh VB\nweighed VBD\nweighing VBG\nweighs VBZ\nweight NN\nweight-control JJ\nweight-height NN\nweight-training NN\nweighted JJ\nweighting NN\nweightings NNS\nweightlessness NN\nweights NNS\nweighty JJ\nweir NN\nweird JJ\nweirdest JJS\nweirdly RB\nweirdo NN\nweirdy NN\nweirs NNS\nwelcome JJ\nwelcomed VBD\nwelcomes VBZ\nwelcoming VBG\nweld VB\nwelded VBN\nwelding NN\nwelfare NN\nwelfare-state JJ\nwell RB\nwell-adjusted JJ\nwell-administered JJ\nwell-advised JJ\nwell-armed JJ\nwell-baby JJ\nwell-balanced JJ\nwell-behaved JJ\nwell-being NN\nwell-born JJ\nwell-bound JJ\nwell-braced JJ\nwell-bred JJ\nwell-brushed JJ\nwell-capitalized JJ\nwell-cared JJ\nwell-cared-for JJ\nwell-cemented JJ\nwell-chronicled JJ\nwell-connected JJ\nwell-cut JJ\nwell-defined JJ\nwell-deserved JJ\nwell-designed JJ\nwell-developed JJ\nwell-diversified JJ\nwell-documented JJ\nwell-dressed JJ\nwell-drilled JJ\nwell-educated JJ\nwell-endowed JJ\nwell-entrenched JJ\nwell-equipped JJ\nwell-established JJ\nwell-experienced JJ\nwell-fed JJ\nwell-financed JJ\nwell-fitted JJ\nwell-fleshed JJ\nwell-fortified JJ\nwell-founded JJ\nwell-grooved JJ\nwell-guarded JJ\nwell-heeled JJ\nwell-hit JJ\nwell-house JJ\nwell-illustrated JJ\nwell-informed JJ\nwell-intended JJ\nwell-intentioned JJ\nwell-kept JJ\nwell-known JJ\nwell-lighted JJ\nwell-made JJ\nwell-managed JJ\nwell-mannered JJ\nwell-meaning JJ\nwell-modulated JJ\nwell-molded JJ\nwell-nigh RB\nwell-off JJ\nwell-operated JJ\nwell-organized JJ\nwell-oriented JJ\nwell-paid JJ\nwell-paying JJ\nwell-placed JJ\nwell-planned JJ\nwell-played JJ\nwell-polished JJ\nwell-populated JJ\nwell-positioned JJ\nwell-prepared JJ\nwell-publicized JJ\nwell-read JJ\nwell-received JJ\nwell-regarded JJ\nwell-regulated JJ\nwell-rehearsed JJ\nwell-respected JJ\nwell-rounded JJ\nwell-ruled JJ\nwell-run JJ\nwell-served JJ\nwell-servicing JJ\nwell-set JJ\nwell-springs JJ\nwell-stated JJ\nwell-stocked JJ\nwell-structured JJ\nwell-stuffed JJ\nwell-suited JJ\nwell-tailored JJ\nwell-to-do JJ\nwell-trained JJ\nwell-trampled JJ\nwell-traveled JJ\nwell-turned-out JJ\nwell-understood JJ\nwell-versed JJ\nwell-wedged JJ\nwell-wishers NNS\nwell-wishing NN\nwell-worn JJ\nwell-written JJ\nwellbeing NN\nwelled VBD\nwellhead NN\nwelling VBG\nwellknown JJ\nwellness NN\nwellplaced JJ\nwellrun JJ\nwells NNS\nwellspring NN\nwelter NN\nwelts NNS\nwen RB\nwent VBD\nwept VBD\nwere VBD\nwere't VBD\nwerewolves NNS\nwest NN\nwest-central JJ\nwest-to-east RB\nwestbound JJ\nwesterly JJ\nwestern JJ\nwestern-style JJ\nwestward RB\nwestwards NNS\nwet JJ\nwetlands NNS\nwetly RB\nwetness NN\nwets NNS\nwetting VBG\nwhack VB\nwhacked VBD\nwhacker NN\nwhacking VBG\nwhacky JJ\nwhaddya WP\nwhale NN\nwhales NNS\nwhalesized JJ\nwhaling NN\nwhammo UH\nwhammy NN\nwharf NN\nwharves NNS\nwhat WP\nwhat's VBZ\nwhat's-his-name NN\nwhat-nots NNS\nwhat-will-T WP|MD|NP\nwhatever WDT\nwhats VB\nwhatsoever RB\nwheare WRB\nwheat NN\nwheat-germ NN\nwheat-growing JJ\nwheedled VBN\nwheel NN\nwheel-loader JJ\nwheel-making JJ\nwheelbase NN\nwheelbases NNS\nwheelchair NN\nwheeled VBD\nwheeler-dealers NNS\nwheeling NN\nwheellike JJ\nwheels NNS\nwheezed VBD\nwheezes NNS\nwheezing VBG\nwhelk NN\nwhen WRB\nwhen-issued JJ\nwhence WRB\nwhenever WRB\nwher WRB\nwhere WRB\nwhereabouts NN\nwhereas IN\nwhereby WRB\nwhereever WRB\nwherefores NNS\nwherein WRB\nwhereof RB\nwhereon NN\nwhereupon IN\nwherever WRB\nwherewith VB\nwherewithal NN\nwhether IN\nwhetted VBN\nwhich WDT\nwhich... :\nwhichever WDT\nwhichever-the-hell JJ\nwhiff NN\nwhile IN\nwhim NN\nwhimper NN\nwhimpering VBG\nwhimpers NNS\nwhims NNS\nwhimsical JJ\nwhimsically RB\nwhimsy NN\nwhine NN\nwhined VBD\nwhiner NN\nwhiners NNS\nwhining VBG\nwhinnied VBD\nwhinny NN\nwhip NN\nwhipcracking NN\nwhiplash NN\nwhiplashes NNS\nwhipped VBD\nwhipping VBG\nwhipping-boys NNS\nwhippings NNS\nwhips NNS\nwhipsaw JJ\nwhipsawed VBN\nwhipsawing NN\nwhir NN\nwhirl NN\nwhirled VBD\nwhirling VBG\nwhirlpool NN\nwhirlwind NN\nwhirlwinds NNS\nwhirred VBD\nwhirring VBG\nwhisked VBN\nwhiskered JJ\nwhiskers NNS\nwhiskery JJ\nwhiskey NN\nwhiskey-baritoned JJ\nwhiskeys`` ``\nwhiskies NNS\nwhisking VBG\nwhisks VBZ\nwhisky NN\nwhisky-on-the-rocks NN\nwhisper NN\nwhispered VBD\nwhispering VBG\nwhisperings NNS\nwhispers NNS\nwhistle NN\nwhistle-blower NN\nwhistle-blowers NNS\nwhistle-stop JJ\nwhistleblower NN\nwhistled VBD\nwhistles NNS\nwhistling VBG\nwhit NN\nwhite JJ\nwhite'suits NN\nwhite-bearded JJ\nwhite-clad JJ\nwhite-coated JJ\nwhite-collar JJ\nwhite-collar-defense JJ\nwhite-columned JJ\nwhite-dominated JJ\nwhite-haired JJ\nwhite-knight NN\nwhite-majority JJ\nwhite-minority JJ\nwhite-shoe JJ\nwhite-spirit NN\nwhite-spirits JJ\nwhite-squire NN\nwhite-stucco JJ\nwhite-suited JJ\nwhite-topped JJ\nwhite-walled JJ\nwhite-washed JJ\nwhite-water NN\nwhitecollar JJ\nwhiteface JJ\nwhitehaired JJ\nwhitely RB\nwhitened JJ\nwhiteness NN\nwhitening VBG\nwhitens VBZ\nwhites NNS\nwhitetail NN\nwhitewalled JJ\nwhitewash NN\nwhitewashed VBN\nwhitewashing VBG\nwhitish JJ\nwhittle VBP\nwhittled VBN\nwhittling VBG\nwhiz NN\nwhiz-bang UH\nwhizzed VBD\nwhizzes NNS\nwhizzing VBG\nwho WP\nwho's VBP\nwho... :\nwhodunnit UH\nwhodunnit-style JJ\nwhoe WP\nwhoever WP\nwhole JJ\nwhole-bank JJ\nwhole-egg JJ\nwhole-heartedly RB\nwhole-house JJ\nwhole-milk NN\nwhole-wheat JJ\nwhole-word JJ\nwholehearted JJ\nwholeheartedly RB\nwholeness NN\nwholes NNS\nwholesale JJ\nwholesale-price JJ\nwholesale-sized JJ\nwholesale-store JJ\nwholesaler NN\nwholesalers NNS\nwholesaling VBG\nwholesome JJ\nwholewheat JJ\nwholly RB\nwholly-owned JJ\nwhom WP\nwhooosh JJ\nwhoop NN\nwhooped VBD\nwhooper NN\nwhooping JJ\nwhoops VBZ\nwhoosh VBP\nwhoppers NNS\nwhopping JJ\nwhore NN\nwhores NNS\nwhoring NN\nwhorls NNS\nwhose WP$\nwhosoever WP\nwhupped VBD\nwhy WRB\nwhyfores NNS\nwick NN\nwicked JJ\nwickedly RB\nwickedness NN\nwicker NN\nwicket NN\nwickets NNS\nwide JJ\nwide-awake JJ\nwide-body JJ\nwide-cut JJ\nwide-door JJ\nwide-eyed JJ\nwide-grip JJ\nwide-open JJ\nwide-ranging JJ\nwide-scale JJ\nwide-shouldered JJ\nwide-sweeping JJ\nwide-winged JJ\nwidegrip JJ\nwidely RB\nwiden VB\nwidened VBD\nwidening VBG\nwidens VBZ\nwider JJR\nwider-body JJR\nwider-than-expected JJ\nwider-than-normal JJ\nwidespread JJ\nwidest JJS\nwidget NN\nwidgets NNS\nwidow NN\nwidowed VBN\nwidower NN\nwidowers NNS\nwidowhood NN\nwidows NNS\nwidth NN\nwidths NNS\nwidthwise RB\nwiederum FW\nwield VB\nwielded VBN\nwielder NN\nwielding VBG\nwields VBZ\nwieners NNS\nwife NN\nwife-to-be NN\nwife\\/mother NN\nwifely JJ\nwifi NN\nwig NN\nwiggier JJR\nwiggle NN\nwiggled VBD\nwiggling VBG\nwigmaker NN\nwigmakers NNS\nwignapping NN\nwigs NNS\nwil MD\nwild JJ\nwild-eyed JJ\nwild-sounding JJ\nwildcat NN\nwildcatter NN\nwilderness NN\nwildest JJS\nwildflowers NNS\nwildlife NN\nwildlife-related JJ\nwildly RB\nwildness NN\nwiles NNS\nwilfully RB\nwill MD\nwill-to-power NN\nwilled VBD\nwillful JJ\nwillfully RB\nwilliam NN\nwillies NNS\nwilling JJ\nwillinge JJ\nwillingess NN\nwillingly RB\nwillingness NN\nwillling VBG\nwillow NN\nwillow-lined JJ\nwillowy JJ\nwillpower NN\nwills NNS\nwilly RB\nwilly-nilly JJ\nwillya MD\nwilt MD\nwilted JJ\nwilting VBG\nwily JJ\nwimp NN\nwimping VBG\nwin VB\nwin-win NN\nwince NN\nwinced VBD\nwinches NNS\nwincing VBG\nwind NN\nwind-and-water JJ\nwind-blown JJ\nwind-driven JJ\nwind-swept JJ\nwind-velocity NN\nwindbag NN\nwindbreaks NNS\nwinded JJ\nwinder NN\nwinders NNS\nwindfall NN\nwindfalls NNS\nwinding VBG\nwinding-clothes NNS\nwindless JJ\nwindmill NN\nwindow NN\nwindow-film NN\nwindow-shopping NN\nwindow-washing NN\nwindowless JJ\nwindowpane NN\nwindowpanes NNS\nwindows NNS\nwinds NNS\nwindshield NN\nwindshields NNS\nwindstorm NN\nwindswept JJ\nwindup NN\nwindy JJ\nwine NN\nwine-buying JJ\nwine-dark JJ\nwine-making NN\nwined VBD\nwinehead NN\nwineries NNS\nwinery NN\nwines NNS\nwing NN\nwing-shooting NN\nwing-tip JJ\nwingbeat NN\nwinged VBD\nwinger NN\nwinging VBG\nwingman NN\nwings NNS\nwink NN\nwinked VBD\nwinking VBG\nwinless JJ\nwinner NN\nwinners NNS\nwinning VBG\nwinningest JJS\nwinnings NNS\nwinnow VB\nwinnowing NN\nwinos NNS\nwins VBZ\nwinsome JJ\nwinter NN\nwintered VBN\nwintering VBG\nwinters NNS\nwintertime NN\nwintry JJ\nwipe VB\nwiped VBD\nwipeout NN\nwipes VBZ\nwiping VBG\nwire NN\nwire-fraud NN\nwire-haired JJ\nwire-tapping NN\nwired VBN\nwireless JJ\nwireline JJ\nwires NNS\nwiretap NN\nwiretapping NN\nwiretaps NNS\nwiring NN\nwiry JJ\nwisdom NN\nwise JJ\nwisecrack NN\nwisecracked VBD\nwisecracks NNS\nwisely RB\nwisenheimer NN\nwiser JJR\nwisest JJS\nwish VBP\nwish-list NN\nwish-lists NNS\nwished VBD\nwisher NN\nwishes VBZ\nwishes.. NN\nwishful JJ\nwishing VBG\nwishy-washy JJ\nwishywashy NN\nwisp NN\nwisps NNS\nwispy JJ\nwistful JJ\nwistfully RB\nwit NN\nwitch NN\nwitchcraft NN\nwitches NNS\nwitching JJ\nwitchy JJ\nwith IN\nwith-but-after JJ\nwith-it JJ\nwitha NN\nwithal IN\nwithdraw VB\nwithdrawal NN\nwithdrawals NNS\nwithdrawing VBG\nwithdrawn VBN\nwithdraws VBZ\nwithdrew VBD\nwither VB\nwithered JJ\nwithering VBG\nwithes NNS\nwithheld VBN\nwithhold VB\nwithholding NN\nwithholding-tax JJ\nwithholdings NNS\nwithholds VBZ\nwithin IN\nwithing IN\nwithout IN\nwithout,`` ``\nwithstand VB\nwithstanding VBG\nwithstands VBZ\nwithstood VBD\nwitness NN\nwitnessed VBN\nwitnesses NNS\nwitnessing VBG\nwits NNS\nwittily RB\nwittiness NN\nwittingly RB\nwitty JJ\nwive NNS\nwives NNS\nwizard NN\nwizards NNS\nwo MD\nwobble VB\nwobbled VBD\nwobbling VBG\nwobbly JJ\nwod MD\nwoe NN\nwoebegone JJ\nwoeful JJ\nwoefully RB\nwoes NNS\nwohaw NN\nwohaws NNS\nwohd NN\nwoke VBD\nwoken VBN\nwold MD\nwolde MD\nwolf NN\nwolfishly RB\nwolves NNS\nwoman NN\nwomanhood NN\nwomanizing VBG\nwomanly JJ\nwomb NN\nwomb-leasing NN\nwomb-to-tomb JJ\nwombs NNS\nwomen NNS\nwomen's-rights JJ\nwomen-owned JJ\nwomen-trodden JJ\nwon VBD\nwon't MD\nwon-lost JJ\nwonder NN\nwonder-working JJ\nwonderbars NNS\nwondered VBD\nwonderful JJ\nwonderfully RB\nwonderfulness NN\nwondering VBG\nwonderingly RB\nwonderland NN\nwonderment NN\nwonders NNS\nwondrous JJ\nwondrously RB\nwonduh VB\nwont JJ\nwoo VB\nwood NN\nwood-and-brass NN\nwood-burning JJ\nwood-chip NN\nwood-encased JJ\nwood-grain JJ\nwood-grained JJ\nwood-oil NN\nwood-paneled JJ\nwood-processing JJ\nwood-product NN\nwood-products NNS\nwood-treating JJ\nwoodcarver NN\nwoodchucks NNS\nwoodcutters NNS\nwooded JJ\nwooden JJ\nwooden-leg NN\nwoodgraining NN\nwoodland JJ\nwoodlots NNS\nwoodpecker NN\nwoods NNS\nwoodshed NN\nwoodsmoke NN\nwoodsy JJ\nwoodwind NN\nwoodwork NN\nwoodworking NN\nwoodworm NN\nwoodworms NNS\nwooed VBN\nwoof NN\nwooing VBG\nwool NN\nwoolen JJ\nwoolens NNS\nwoolgather VB\nwoolly JJ\nwoolly-headed JJ\nwoolly-minded JJ\nwoolworkers NNS\nwoomera NN\nwooo UH\nwooooosh NN\nwoos VBZ\nwoozy JJ\nwop VB\nwops VBZ\nword NN\nword'boom NN\nword-for-word JJ\nword-games NNS\nword-of-mouth NN\nword-processing NN\nword-weary JJ\nworded VBN\nwording NN\nwordlessly RB\nwordplay NN\nwords NNS\nwordy JJ\nwore VBD\nwork NN\nwork'em NN\nwork-a-day JJ\nwork-force NN\nwork-in-progress NN\nwork-out JJ\nwork-paralysis NN\nwork-release NN\nwork-rule JJ\nwork-satisfaction NN\nwork-space NN\nwork-station NN\nwork-study JJ\nwork-success NN\nwork-weary JJ\nworkability NN\nworkable JJ\nworkaholic NN\nworkbench NN\nworkbenches NNS\nworkbooks NNS\nworkday NN\nworkdays NNS\nworked VBD\nworked-out JJ\nworker NN\nworker-compensation NN\nworker-owned JJ\nworker-safety NN\nworker-years NNS\nworkers NNS\nworkforce NN\nworkhorse NN\nworkin VBG\nworking VBG\nworking-capital JJ\nworking-class JJ\nworking-day JJ\nworking-girl NN\nworkingmen NNS\nworkings NNS\nworkload NN\nworkman NN\nworkmanlike JJ\nworkmanship NN\nworkmen NNS\nworkout NN\nworkouts NNS\nworkplace NN\nworkplaces NNS\nworkroom NN\nworks NNS\nworksheet NN\nworksheets NNS\nworkshop NN\nworkshops NNS\nworkstation NN\nworkstations NNS\nworktable NN\nworkweek NN\nworkweeks NNS\nworld NN\nworld-affairs NNS\nworld-amid IN\nworld-at-large NN\nworld-class JJ\nworld-commerce JJ\nworld-currency NN\nworld-famous JJ\nworld-freight NN\nworld-ignoring JJ\nworld-leading JJ\nworld-oriented JJ\nworld-renowned JJ\nworld-scale JJ\nworld-shaking JJ\nworld-shattering JJ\nworld-view NN\nworld-weary JJ\nworld-wide JJ\nworldly JJ\nworlds NNS\nworldwide JJ\nworm NN\nworms NNS\nwormwood NN\nwormy JJ\nworn VBN\nworn-faced JJ\nworn-out JJ\nwornout NN\nworried VBN\nworriedly RB\nworriers NNS\nworries NNS\nworrisome JJ\nworry VB\nworry-free JJ\nworryin VBG\nworrying VBG\nworse JJR\nworse-than-expected JJ\nworsen VB\nworsened VBD\nworsening VBG\nworsens VBZ\nworship NN\nworshiped VBN\nworshipful JJ\nworshiping VBG\nworshipped NN\nworshipper NN\nworshippers NNS\nworshipping VBG\nworst JJS\nworst-case JJ\nworst-hit JJ\nworst-marked JJ\nworst-performing JJ\nworsted JJ\nwort NN\nworth JJ\nworth-waiting-for JJ\nworth-while JJ\nworthier JJR\nworthiest JJS\nworthiness NN\nworthless JJ\nworthlessness NN\nworthwhile JJ\nworthwile VB\nworthy JJ\nwould MD\nwould-be JJ\nwoulda MD\nwouldbe JJ\nwouldn't ND\nwound NN\nwounded VBN\nwounding VBG\nwounds NNS\nwove VBD\nwoven VBN\nwoven-root JJ\nwow UH\nwowed VBD\nwows VBZ\nwrack NN\nwracked VBN\nwracking VBG\nwraith-like JJ\nwrangled VBD\nwrangler NN\nwranglers NNS\nwrangling VBG\nwrap VB\nwrap-around JJ\nwrap-up JJ\nwrapped VBN\nwrapper NN\nwrappers NNS\nwrappin VBG\nwrapping VBG\nwraps VBZ\nwrath NN\nwrathful JJ\nwreak VB\nwreaked VBD\nwreaking VBG\nwreath NN\nwreathed VBN\nwreaths NNS\nwreck NN\nwreckage NN\nwrecked VBD\nwrecker NN\nwrecking VBG\nwrecks NNS\nwree NN\nwrench VB\nwrenched VBD\nwrenches NNS\nwrenching JJ\nwrest VB\nwrested VBD\nwrestle VB\nwrestler NN\nwrestlers NNS\nwrestles VBZ\nwrestling VBG\nwrestlings NNS\nwretch NN\nwretched JJ\nwretchedness NN\nwriggled VBD\nwriggling VBG\nwring VB\nwringing VBG\nwrings VBZ\nwrinkle NN\nwrinkle-fighting JJ\nwrinkled JJ\nwrinkles NNS\nwrinkling VBG\nwrist NN\nwrists NNS\nwristwatch NN\nwristwatches NNS\nwrit NN\nwrite VB\nwrite-down NN\nwrite-downs NNS\nwrite-in NN\nwrite-off NN\nwrite-offs NNS\nwritedown NN\nwritedowns NNS\nwriteoff NN\nwriteoffs NNS\nwriter NN\nwriter-turned-painter NN\nwriter\\/producers NNS\nwriters NNS\nwrites VBZ\nwrithe NN\nwrithed VBD\nwrithing VBG\nwriting VBG\nwriting-instruments JJ\nwriting-like JJ\nwritings NNS\nwrits NNS\nwritten VBN\nwrondgoing NN\nwrong JJ\nwrong-headed JJ\nwrong-o NN\nwrong-way JJ\nwrongdoer NN\nwrongdoers NNS\nwrongdoing NN\nwronged VBN\nwrongful JJ\nwrongfully RB\nwrongly RB\nwrongness NN\nwrongs NNS\nwrote VBD\nwrought VBN\nwrought-iron JJ\nwrung VB\nwry JJ\nwry-faced JJ\nwryly RB\nwryness NN\nwt NN\nwtf UH\nwth IN\nwtih NN\nwud MD\nwuh VBP\nwus RB\nwynne VB\nx NN\nx-Includes VBZ\nx-There EX\nx-Year-to-date JJ\nx-ray NN\nx-rays NN\nxD SYM\nxenon NN\nxenophobia NN\nxenophobic JJ\nxxxx NN\nxylem NN\nxylene NN\nxylophones NNS\ny NNP\ny'all PRP\ny'know VB\nya NN\nya'll PRP\nyacht NN\nyachtel NN\nyachtels NNS\nyachters NNS\nyachting NN\nyachts NNS\nyachtsman NN\nyachtsmen NNS\nyahoos NNS\nyakking VBG\nyaks NNS\nyall PRP\nyank VB\nyanked VBD\nyanking VBG\nyapping VBG\nyard NN\nyard-line NN\nyardage NN\nyards NNS\nyardstick NN\nyardwork NN\nyarn NN\nyarns NNS\nyassuhs UH\nyawl NN\nyawn NN\nyawning VBG\nyawns NNS\nyaws NNS\nyay UH\nyb NN\nyc NN\nyd. NN\nye PRP\nyea NN\nyeah UH\nyear NN\nyear-'round JJ\nyear-ago JJ\nyear-before JJ\nyear-earlier JJ\nyear-end NN\nyear-long JJ\nyear-old JJ\nyear-on-year JJ\nyear-over-year JJ\nyear-round JJ\nyear-to-date JJ\nyear-to-year JJ\nyear... :\nyearago JJ\nyearall NN\nyearbook NN\nyearbooks NNS\nyeard VBN\nyearearlier JJ\nyearend NN\nyearling JJ\nyearlings NNS\nyearlong JJ\nyearly JJ\nyearn VB\nyearned VBD\nyearning NN\nyearningly RB\nyearnings NNS\nyears NNS\nyears... :\nyearthat NN\nyeast NN\nyeasts NNS\nyell NN\nyelled VBD\nyeller JJ\nyellerish JJ\nyellin NN\nyelling VBG\nyellow JJ\nyellow-bellied JJ\nyellow-brown JJ\nyellow-dwarf JJ\nyellow-gray JJ\nyellow-green JJ\nyellowed VBN\nyellowing VBG\nyellowish JJ\nyellows NNS\nyells VBZ\nyelp NN\nyelped VBD\nyelping VBG\nyelps NNS\nyen NNS\nyen-bond JJ\nyen-denominated JJ\nyen-support JJ\nyenta NN\nyes UH\nyess UH\nyesteday NN\nyesterday NN\nyesteryear NN\nyet RB\nyet-another JJ\nyet-to-be-formed JJ\nyet-unnamed JJ\nyet... :\nyeterday NN\nyf NN\nyff IN\nyg NN\nyg-globulin NN\nyield VB\nyield-hungry JJ\nyield-maintenance NN\nyield-management NN\nyielded VBD\nyielding VBG\nyielding-Mediterranian-woman JJ\nyields NNS\nyip NN\nyj NN\nyl NN\nym NN\nymg NN\nyo UH\nyo-yo NN\nyodel NN\nyodeling VBG\nyoga NN\nyogurt NN\nyogurts NNS\nyoke NN\nyokel NN\nyokels NNS\nyolk NN\nyon RB\nyonder NN\nyongst JJS\nyore PRP$\nyori FW\nyou PRP\nyou'll MD\nyou're VBP\nyou'uns NNS\nyou've VBP\nyou-know NN\nyou-know-what NN\nyoung JJ\nyoung-skewing JJ\nyounger JJR\nyoungest JJS\nyoungish JJ\nyoungster NN\nyoungsters NNS\nyounguh JJR\nyour PRP$\nyour... :\nyours PRP\nyourself PRP\nyourselves PRP\nyouth NN\nyouthful JJ\nyouths NNS\nyoutube NNP\nyow NN\nyp NN\nyr NN\nyrs NNS\nyrs. NNS\nys VBZ\nyt NN\nyttrium-containing JJ\nyu PRP\nyuan NN\nyucca NN\nyuh PRP\nyuk NN\nyukked VBD\nyuletide NN\nyummy JJ\nyuppie NN\nyuppies NNS\nyuse NN\nyyyy NN\nz-Not RB\nzaiteku FW\nzany JJ\nzap VB\nzapped VBD\nzappers NNS\nzapping VBG\nzeal NN\nzealot NN\nzealous JJ\nzealously RB\nzebra NN\nzenith NN\nzero CD\nzero-coupon JJ\nzero-gravity JJ\nzero-inflation NN\nzero-magnitude NN\nzero-sum JJ\nzeroed VBN\nzeroing VBG\nzeros NNS\nzest NN\nzestfully RB\nzg NN\nzig-zag VBP\nzigzagging VBG\nzigzags NNS\nzilch NN|JJ\nzillion NN|CD\nzillions NNS\nzim UH\nzinc NN\nzinc-consuming JJ\nzinc-strip JJ\nzinc-sulphide NN\nzing NNP\nzip NN\nzip-code NN\nzipped VBD\nzipper NN\nzippers NNS\nzippo NN\nzirconate NN\nzitless JJ\nzlotys NNS\nzodiacal JJ\nzombie NN\nzombies NNS\nzone NN\nzoned VBN\nzones NNS\nzoning NN\nzoo NN\nzookeeper NN\nzoologist NN\nzoology NN\nzoom VB\nzoomed VBD\nzooming VBG\nzooms VBZ\nzoooop NN\nzoot NN\nzorrillas NNS\nzotl NN\nzotls NNS\nzounds UH\nzq NN\nzu FW\nzur FW\n{ (\n} )\n}... :\n£ £\n– ,\n“ \"\n” \"\n♥ SYM"
  },
  {
    "path": "src/textblob/en/en-morphology.txt",
    "content": ";;;   \n;;;   The morphological rules are based on Brill's rule based tagger v1.14,\n;;;   trained on Brown corpus and Penn Treebank.\n;;;   \nNN s fhassuf 1 NNS x\nNN . fchar CD x\nNN - fchar JJ x\nNN ed fhassuf 2 VBN x\nNN ing fhassuf 3 VBG x\nly hassuf 2 RB x\nly addsuf 2 JJ x\nNN $ fgoodright CD x\nNN al fhassuf 2 JJ x\nNN would fgoodright VB x\nNN 0 fchar CD x\nNN be fgoodright JJ x\nNNS us fhassuf 2 JJ x\nNNS it fgoodright VBZ x\nNN ble fhassuf 3 JJ x\nNN ic fhassuf 2 JJ x\nNN 1 fchar CD x\nNNS ss fhassuf 2 NN x\nun deletepref 2 JJ x\nNN ive fhassuf 3 JJ x\nNNP ed fhassuf 2 JJ x\nNN n't fgoodright VB x\nVB the fgoodright NN x\nNNS he fgoodright VBZ x\nVBN he fgoodright VBD x\nNN are fgoodright JJ x\nJJ was fgoodleft NN x\nNN est fhassuf 3 JJS x\nVBZ The fgoodright NNS x\nNNP ts fhassuf 2 NNS x\nNN 4 fchar CD x\nNN ize fhassuf 3 VB x\n.. hassuf 2 : x\nful hassuf 3 JJ x\nNN ate fhassuf 3 VB x\nNNP ing fhassuf 3 VBG x\nVBG is fgoodleft NN x\nNN less fhassuf 4 JJ x\nNN ary fhassuf 3 JJ x\nCo. goodleft NNP x\nNN ant fhassuf 3 JJ x\nmillion goodleft CD x\nJJ their fgoodleft IN x\nNN he fgoodright VBD x\nMr. goodright NNP x\nJJ of fgoodleft NN x\nNN so fgoodright JJ x\nNN y fdeletesuf 1 JJ x\nVBN which fgoodright VBD x\nVBD been fgoodright VBN x\nVB a fgoodright NN x\nNN economic fgoodleft JJ x\n9 char CD x\nCD t fchar JJ x\nNN can fgoodright VB x\nVB the fgoodright NN x\nJJ S-T-A-R-T fgoodright VBN x\nVBN - fchar JJ x\nNN lar fhassuf 3 JJ x\nNNP ans fhassuf 3 NNPS x\nNN men fhassuf 3 NNS x\nCD d fchar JJ x\nJJ n fdeletesuf 1 VBN x\nJJ 's fgoodleft NN x\nNNS is fhassuf 2 NN x\nES hassuf 2 NNS x\nJJ er fdeletesuf 2 JJR x\nInc. goodleft NNP x\nNN 2 fchar CD x\nVBD be fgoodleft MD x\nons hassuf 3 NNS x\nRB - fchar JJ x\nNN very fgoodright JJ x\nous hassuf 3 JJ x\nNN a fdeletepref 1 RB x\nNNP people fgoodleft JJ x\nVB have fgoodleft RB x\nNNS It fgoodright VBZ x\nNN id fhassuf 2 JJ x\nJJ may fgoodleft NN x\nVBN but fgoodright VBD x\nRS hassuf 2 NNS x\nJJ stry fhassuf 4 NN x\nNNS them fgoodleft VBZ x\nVBZ were fgoodleft NNS x\nNN ing faddsuf 3 VB x\nJJ s faddsuf 1 NN x\nNN 7 fchar CD x\nNN d faddsuf 1 VB x\nVB but fgoodleft NN x\nNN 3 fchar CD x\nNN est faddsuf 3 JJ x\nNN en fhassuf 2 VBN x\nNN costs fgoodright IN x\nNN 8 fchar CD x\nVB b fhaspref 1 NN x\nzes hassuf 3 VBZ x\nVBN s faddsuf 1 NN x\nsome hassuf 4 JJ x\nNN ic fhassuf 2 JJ x\nly addsuf 2 JJ x\nness addsuf 4 JJ x\nJJS s faddsuf 1 NN x\nNN ier fhassuf 3 JJR x\nNN ky fhassuf 2 JJ x\ntyle hassuf 4 JJ x\nNNS ates fhassuf 4 VBZ x\nfy hassuf 2 VB x\nbody addsuf 4 DT x\nNN ways fgoodleft JJ x\nNNP ies fhassuf 3 NNPS x\nVB negative fgoodright NN x\nders hassuf 4 NNS x\nds hassuf 2 NNS x\n-day addsuf 4 CD x\nnian hassuf 4 JJ x\nJJR s faddsuf 1 NN x\nppy hassuf 3 JJ x\nNN ish fhassuf 3 JJ x\ntors hassuf 4 NNS x\noses hassuf 4 VBZ x\nNNS oves fhassuf 4 VBZ x\nVBN un fhaspref 2 JJ x\nlent hassuf 4 JJ x\nNN ward fdeletesuf 4 RB x\nVB k fchar NN x\nVB r fhassuf 1 NN x\nVB e fdeletesuf 1 NN x\nNNS Engelken fgoodright VBZ x\nNN ient fhassuf 4 JJ x\nED hassuf 2 VBD x\nVBG B fchar NNP x\nVB le fhassuf 2 NN x\nment addsuf 4 VB x\nING hassuf 3 NN x\nJJ ery fhassuf 3 NN x\nJJ tus fhassuf 3 NN x\nJJ car fhassuf 3 NN x\nNN 6 fchar CD x\nNNS 0 fchar CD x\nJJ ing fdeletesuf 3 VBG x\nhere hassuf 4 RB x\nVBN scr fhaspref 3 VBD x\nuces hassuf 4 VBZ x\nfies hassuf 4 VBZ x\nself deletesuf 4 PRP x\nNNP $ fchar $ x\nVBN wa fhaspref 2 VBD x"
  },
  {
    "path": "src/textblob/en/en-sentiment.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- \nSUBJECTIVITY LEXICON FOR ENGLISH ADJECTIVES.\nAdjectives have a polarity (negative/positive, -1.0 to +1.0) and a subjectivity (objective/subjective, +0.0 to +1.0).\nThe reliability specifies if an adjective was hand-tagged (1.0) or inferred (0.7).\nWords are tagged per sense, e.g., ridiculous (pitiful) = negative, ridiculous (humorous) = positive.\nThe Cornetto id (lexical unit id) and Cornetto synset id refer to the Cornetto lexical database for Dutch.\nThe WordNet id refers to the WordNet3 lexical database for English.\nThe part-of-speech tags (pos) use the Penn Treebank || tag set: NN = noun, JJ = adjective, ...\nFor English movie reviews (Pang & Lee polarity dataset v2.0), the accuracy is 75% (P 0.76, R 0.75, F1 0.75).\n-->\n<sentiment language=\"en\" version=\"1.3\" author=\"Tom De Smedt, Walter Daelemans\" license=\"PDDL\">\n<word form=\"13th\" wordnet_id=\"a-02203763\" pos=\"JJ\" sense=\"coming next after the twelfth in position\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"20th\" cornetto_synset_id=\"n_a-531612\" wordnet_id=\"a-02204716\" pos=\"JJ\" sense=\"coming next after the nineteenth in position\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"21st\" wordnet_id=\"a-02204823\" pos=\"JJ\" sense=\"coming next after the twentieth in position\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"2nd\" wordnet_id=\"a-02202146\" pos=\"JJ\" sense=\"coming next after the first in position in space or time or degree or magnitude\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"3rd\" cornetto_synset_id=\"n_a-530634\" wordnet_id=\"a-02202307\" pos=\"JJ\" sense=\"coming next after the second and just before the fourth in position\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"abhorrent\" wordnet_id=\"a-1625063\" pos=\"JJ\" sense=\"offensive to the mind\" polarity=\"-0.7\" subjectivity=\"0.8\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"able\" cornetto_synset_id=\"n_a-534450\" wordnet_id=\"a-01017439\" pos=\"JJ\" sense=\"having a strong healthy body\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"able\" wordnet_id=\"a-00001740\" pos=\"JJ\" sense=\"(usually followed by 'to') having the necessary means or skill or know-how or authority to do something\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"able\" wordnet_id=\"a-00306663\" pos=\"JJ\" sense=\"having inherent physical or mental ability or capacity\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"able\" wordnet_id=\"a-00510348\" pos=\"JJ\" sense=\"have the skills and qualifications to do things well\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"above\" cornetto_synset_id=\"n_a-504850\" wordnet_id=\"a-00125993\" pos=\"JJ\" sense=\"appearing earlier in the same text\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"abridged\" cornetto_synset_id=\"d_a-9176\" wordnet_id=\"a-00004413\" pos=\"JJ\" sense=\"(used of texts) shortened by condensing or rewriting\" polarity=\"0.1\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"abrupt\" cornetto_synset_id=\"n_a-505100\" wordnet_id=\"a-00640520\" pos=\"JJ\" sense=\"surprisingly and unceremoniously brusque in manner\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"abrupt\" cornetto_synset_id=\"n_a-529169\" wordnet_id=\"a-01145151\" pos=\"JJ\" sense=\"extremely steep\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"abrupt\" wordnet_id=\"a-01143585\" pos=\"JJ\" sense=\"exceedingly sudden and unexpected\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"abrupt\" wordnet_id=\"a-02294122\" pos=\"JJ\" sense=\"marked by sudden changes in subject and sharp transitions\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"absence\" wordnet_id=\"n-1234345\" pos=\"NN\" sense=\"failure to be present\" polarity=\"-0.05\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"absence\" wordnet_id=\"n-13960974\" pos=\"NN\" sense=\"the state of being absent\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"absence\" wordnet_id=\"n-14088412\" pos=\"NN\" sense=\"the occurrence of an abrupt, transient loss or impairment of consciousness (which is not subsequently remembered), sometimes with light twitching, fluttering eyelids, etc.\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"absence\" wordnet_id=\"n-15270862\" pos=\"NN\" sense=\"the time interval during which something or somebody is away\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"absolute\" cornetto_synset_id=\"n_a-524815\" wordnet_id=\"a-00005205\" pos=\"JJ\" sense=\"perfect or complete or pure\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"absolute\" cornetto_synset_id=\"n_a-525079\" wordnet_id=\"a-00520892\" pos=\"JJ\" sense=\"complete and without restriction or qualification\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"absolute\" wordnet_id=\"a-00094069\" pos=\"JJ\" sense=\"not capable of being violated or infringed\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"absolute\" wordnet_id=\"a-00719328\" pos=\"JJ\" sense=\"not limited by law\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"absolute\" wordnet_id=\"a-00897015\" pos=\"JJ\" sense=\"expressing finality with no implication of possible change\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"absorbed\" cornetto_synset_id=\"n_a-507609\" wordnet_id=\"a-02009166\" pos=\"JJ\" sense=\"retained without reflection\" polarity=\"0.3\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"absorbing\" cornetto_synset_id=\"n_a-501243\" wordnet_id=\"a-01344171\" pos=\"JJ\" sense=\"capable of arousing and holding the attention\" polarity=\"0.4\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"absorbing\" cornetto_synset_id=\"n_a-528398\" wordnet_id=\"a-01344171\" pos=\"JJ\" sense=\"capable of arousing and holding the attention\" polarity=\"0.0\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"absurd\" cornetto_synset_id=\"n_a-513518\" wordnet_id=\"a-01431112\" pos=\"JJ\" sense=\"inconsistent with reason or logic or common sense\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"absurd\" wordnet_id=\"a-02570643\" pos=\"JJ\" sense=\"incongruous\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"abundant\" cornetto_synset_id=\"n_a-522421\" wordnet_id=\"a-00013887\" pos=\"JJ\" sense=\"present in great quantity\" polarity=\"0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"abundant\" cornetto_synset_id=\"n_a-525828\" wordnet_id=\"a-00013887\" pos=\"JJ\" sense=\"present in great quantity\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"academic\" cornetto_synset_id=\"n_a-531845\" wordnet_id=\"a-02599939\" pos=\"JJ\" sense=\"associated with academia or an academy\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"accessible\" cornetto_synset_id=\"n_a-514227\" wordnet_id=\"a-00134251\" pos=\"JJ\" sense=\"easy to get along with or talk to\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"accessible\" cornetto_synset_id=\"n_a-534604\" wordnet_id=\"a-00019131\" pos=\"JJ\" sense=\"capable of being reached\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"accessible\" wordnet_id=\"a-00183675\" pos=\"JJ\" sense=\"easily obtained\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"accessible\" wordnet_id=\"a-00533221\" pos=\"JJ\" sense=\"capable of being read with comprehension\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"accomplished\" cornetto_synset_id=\"d_a-9365\" wordnet_id=\"a-00521329\" pos=\"JJ\" sense=\"successfully completed or brought to an end\" polarity=\"0.2\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"accurate\" cornetto_synset_id=\"n_a-519716\" wordnet_id=\"a-00021766\" pos=\"JJ\" sense=\"conforming exactly or almost exactly to fact or to a standard or performing with total accuracy\" polarity=\"0.4\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"accurate\" cornetto_synset_id=\"n_a-526930\" wordnet_id=\"a-00631798\" pos=\"JJ\" sense=\"(of ideas, images, representations, expressions) characterized by perfect conformity to fact or truth \" polarity=\"0.4\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"accurate\" cornetto_synset_id=\"n_a-535946\" wordnet_id=\"a-00021766\" pos=\"JJ\" sense=\"conforming exactly or almost exactly to fact or to a standard or performing with total accuracy\" polarity=\"0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"acquainted\" cornetto_synset_id=\"n_a-532775\" wordnet_id=\"a-00965894\" pos=\"JJ\" sense=\"having fair knowledge of\" polarity=\"0.5\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"across-the-board\" cornetto_synset_id=\"n_a-513689\" wordnet_id=\"a-00526062\" pos=\"JJ\" sense=\"broad in scope or content\" polarity=\"0.1\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"acting\" wordnet_id=\"a-01756166\" pos=\"JJ\" sense=\"serving temporarily especially as a substitute\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"action\" wordnet_id=\"n-4835950\" pos=\"NN\" sense=\"the trait of being active and energetic and forceful\" polarity=\"0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"action\" wordnet_id=\"n-576451\" pos=\"NN\" sense=\"the most important or interesting work or activity in a specific area or field\" polarity=\"0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"active\" cornetto_synset_id=\"c_384\" wordnet_id=\"a-00031974\" pos=\"JJ\" sense=\"characterized by energetic activity\" polarity=\"-0.2\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"active\" cornetto_synset_id=\"n_a-506270\" wordnet_id=\"a-00031974\" pos=\"JJ\" sense=\"characterized by energetic activity\" polarity=\"0.2\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"active\" cornetto_synset_id=\"n_a-526012\" wordnet_id=\"a-00031974\" pos=\"JJ\" sense=\"characterized by energetic activity\" polarity=\"-0.4\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"actual\" wordnet_id=\"a-00043765\" pos=\"JJ\" sense=\"presently existing in fact and not merely potential or possible\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"actual\" wordnet_id=\"a-00666610\" pos=\"JJ\" sense=\"being or existing at the present moment\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"actual\" wordnet_id=\"a-01933520\" pos=\"JJ\" sense=\"taking place in reality\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"actual\" wordnet_id=\"a-01933731\" pos=\"JJ\" sense=\"existing in act or fact\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"actual\" wordnet_id=\"a-02460964\" pos=\"JJ\" sense=\"being or reflecting the essential or genuine character of something\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"acuate\" cornetto_synset_id=\"n_a-526924\" wordnet_id=\"a-01810189\" pos=\"JJ\" sense=\"ending in a sharp point\" polarity=\"0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"acute\" cornetto_synset_id=\"n_a-506895\" wordnet_id=\"a-01744515\" pos=\"JJ\" sense=\"having or demonstrating ability to recognize or draw fine distinctions\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"adamant\" cornetto_synset_id=\"n_a-514712\" wordnet_id=\"a-01024812\" pos=\"JJ\" sense=\"impervious to pleas, persuasion, requests, reason\" polarity=\"0.1\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"addicted\" cornetto_synset_id=\"d_a-9575\" wordnet_id=\"a-00047029\" pos=\"JJ\" sense=\"compulsively or physiologically dependent on something habit-forming\" polarity=\"-0.4\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"addictive\" cornetto_synset_id=\"n_a-532698\" wordnet_id=\"a-00047786\" pos=\"JJ\" sense=\"causing or characterized by addiction\" polarity=\"0.0\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"addled\" cornetto_synset_id=\"d_a-9578\" wordnet_id=\"a-00436115\" pos=\"JJ\" sense=\"confused and vague\" polarity=\"-0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"addled\" cornetto_synset_id=\"n_a-520958\" wordnet_id=\"a-00436115\" pos=\"JJ\" sense=\"confused and vague\" polarity=\"-0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"addled\" cornetto_synset_id=\"n_a-521393\" wordnet_id=\"a-00436115\" pos=\"JJ\" sense=\"confused and vague\" polarity=\"-0.5\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"adept\" cornetto_synset_id=\"d_a-9172\" wordnet_id=\"a-02226162\" pos=\"JJ\" sense=\"having or showing knowledge and skill and aptitude\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"adequate to\" cornetto_synset_id=\"n_a-532098\" wordnet_id=\"a-00051373\" pos=\"JJ\" sense=\"having the requisite qualities for\" polarity=\"-0.4\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"adequate\" wordnet_id=\"a-00051045\" pos=\"JJ\" sense=\"having the requisite qualities or resources to meet a task\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"adequate\" wordnet_id=\"a-02080937\" pos=\"JJ\" sense=\"about average\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"adequate\" wordnet_id=\"a-02336109\" pos=\"JJ\" sense=\"sufficient for the purpose\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"adjectival\" cornetto_synset_id=\"n_a-504141\" wordnet_id=\"a-02936020\" pos=\"JJ\" sense=\"of or relating to or functioning as an adjective\" polarity=\"0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"administrable\" cornetto_synset_id=\"n_a-530916\" wordnet_id=\"a-01474806\" pos=\"JJ\" sense=\"capable of being administered or managed\" polarity=\"0.0\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"adorable\" wordnet_id=\"a-01459755\" pos=\"JJ\" sense=\"lovable especially in a childlike or naive way\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"adoring\" cornetto_synset_id=\"n_a-509996\" wordnet_id=\"a-01464433\" pos=\"JJ\" sense=\"extravagantly or foolishly loving and indulgent\" polarity=\"0.2\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"adult\" cornetto_synset_id=\"d_a-9590\" wordnet_id=\"a-01488616\" pos=\"JJ\" sense=\"(of animals) fully developed\" polarity=\"0.1\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"advanced\" cornetto_synset_id=\"n_a-510789\" wordnet_id=\"a-01840121\" pos=\"JJ\" sense=\"farther along in physical or mental development\" polarity=\"0.4\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"adventurous\" cornetto_synset_id=\"n_a-502846\" wordnet_id=\"a-00065791\" pos=\"JJ\" sense=\"willing to undertake or seeking out new and daring enterprises\" polarity=\"0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"adversative\" cornetto_synset_id=\"n_a-530430\" wordnet_id=\"a-00564504\" pos=\"JJ\" sense=\"expressing antithesis or opposition\" polarity=\"-0.1\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"advertent\" cornetto_synset_id=\"n_a-501199\" wordnet_id=\"a-00164308\" pos=\"JJ\" sense=\"giving attention\" polarity=\"0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"aeriform\" cornetto_synset_id=\"n_a-521709\" wordnet_id=\"a-00626136\" pos=\"JJ\" sense=\"characterized by lightness and insubstantiality\" polarity=\"-0.1\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"aeriform\" cornetto_synset_id=\"n_a-521709\" wordnet_id=\"a-00626136\" pos=\"JJ\" sense=\"characterized by lightness and insubstantiality\" polarity=\"-0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"affable\" cornetto_synset_id=\"d_a-9326\" wordnet_id=\"a-01075178\" pos=\"JJ\" sense=\"diffusing warmth and friendliness\" polarity=\"0.7\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"affable\" cornetto_synset_id=\"d_a-9326\" wordnet_id=\"a-01075178\" pos=\"JJ\" sense=\"diffusing warmth and friendliness\" polarity=\"0.9\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"affirmative\" cornetto_synset_id=\"n_a-522062\" wordnet_id=\"a-01817908\" pos=\"JJ\" sense=\"expecting the best\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"affluent\" cornetto_synset_id=\"n_a-526762\" wordnet_id=\"a-02022167\" pos=\"JJ\" sense=\"having an abundant supply of money or possessions of value\" polarity=\"0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"affluent\" cornetto_synset_id=\"n_a-534597\" wordnet_id=\"a-02022167\" pos=\"JJ\" sense=\"having an abundant supply of money or possessions of value\" polarity=\"0.7\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"afloat\" cornetto_synset_id=\"n_a-533320\" wordnet_id=\"a-00076921\" pos=\"JJ\" sense=\"borne on the water\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"aforementioned\" wordnet_id=\"a-02068730\" pos=\"JJ\" sense=\"being the one previously mentioned or spoken of\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"afraid\" cornetto_synset_id=\"d_a-9168\" wordnet_id=\"a-00077645\" pos=\"JJ\" sense=\"filled with fear or apprehension\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"african\" cornetto_synset_id=\"n_a-500177\" wordnet_id=\"a-02941790\" pos=\"JJ\" sense=\"of or relating to the nations of Africa or their peoples\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"aged\" cornetto_synset_id=\"d_a-9481\" wordnet_id=\"a-01644225\" pos=\"JJ\" sense=\"advanced in years\" polarity=\"-0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"aghast\" cornetto_synset_id=\"d_a-9411\" wordnet_id=\"a-00078576\" pos=\"JJ\" sense=\"struck with fear, dread, or consternation\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"agile\" cornetto_synset_id=\"n_a-532723\" wordnet_id=\"a-00032733\" pos=\"JJ\" sense=\"moving quickly and lightly\" polarity=\"0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"agile\" cornetto_synset_id=\"n_a-534143\" wordnet_id=\"a-00032733\" pos=\"JJ\" sense=\"moving quickly and lightly\" polarity=\"0.5\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"agitative\" cornetto_synset_id=\"c_179\" wordnet_id=\"a-01896925\" pos=\"JJ\" sense=\"causing or tending to cause anger or resentment\" polarity=\"-0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"aglow\" cornetto_synset_id=\"n_a-507358\" wordnet_id=\"a-00279332\" pos=\"JJ\" sense=\"softly bright or radiant\" polarity=\"0.0\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"aired\" cornetto_synset_id=\"c_597\" wordnet_id=\"a-02508917\" pos=\"JJ\" sense=\"open to or abounding in fresh air\" polarity=\"0.1\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"airheaded\" cornetto_synset_id=\"n_a-507793\" wordnet_id=\"a-02120828\" pos=\"JJ\" sense=\"lacking seriousness\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"alarming\" cornetto_synset_id=\"n_a-527099\" wordnet_id=\"a-00193015\" pos=\"JJ\" sense=\"frightening because of an awareness of danger\" polarity=\"-0.1\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"alas\" wordnet_id=\"\" pos=\"UH\" polarity=\"-0.4\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"alcoholic\" cornetto_synset_id=\"n_a-501989\" wordnet_id=\"a-00047243\" pos=\"JJ\" sense=\"addicted to alcohol\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"alcoholic\" wordnet_id=\"a-01158596\" pos=\"JJ\" sense=\"characteristic of or containing alcohol\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"algid\" cornetto_synset_id=\"d_a-9370\" wordnet_id=\"a-01251958\" pos=\"JJ\" sense=\"chilly\" polarity=\"-0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"alien\" wordnet_id=\"a-01035007\" pos=\"JJ\" sense=\"being or from or characteristic of another place or part of the world\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"alien\" wordnet_id=\"a-01349927\" pos=\"JJ\" sense=\"not contained in or deriving from the essential nature of something\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"alienating\" wordnet_id=\"a-760783\" pos=\"JJ\" sense=\"causing hostility or loss of friendliness\" polarity=\"-0.3\" subjectivity=\"0.3\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"alive\" cornetto_synset_id=\"d_a-9145\" wordnet_id=\"a-00805115\" pos=\"JJ\" sense=\"(often followed by 'with') full of life and spirit\" polarity=\"0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"all-around\" cornetto_synset_id=\"n_a-532152\" wordnet_id=\"a-00526541\" pos=\"JJ\" sense=\"many-sided\" polarity=\"0.2\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"alleged\" cornetto_synset_id=\"n_a-535847\" wordnet_id=\"a-01916555\" pos=\"JJ\" sense=\"doubtful or suspect\" polarity=\"-0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"alleviated\" cornetto_synset_id=\"n_a-521937\" wordnet_id=\"a-01519465\" pos=\"JJ\" sense=\"(of pain or sorrow) made easier to bear\" polarity=\"0.5\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"allusions\" wordnet_id=\"\" pos=\"NNS\" sense=\"\" polarity=\"-0.1\" subjectivity=\"0.1\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"alternate\" wordnet_id=\"a-00675928\" pos=\"JJ\" sense=\"occurring by turns\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"alternate\" wordnet_id=\"a-00676093\" pos=\"JJ\" sense=\"every second one of a series\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"alternate\" wordnet_id=\"a-01663359\" pos=\"JJ\" sense=\"of leaves and branches etc\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"alternate\" wordnet_id=\"a-01853934\" pos=\"JJ\" sense=\"serving or used in place of another\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"amateur\" cornetto_synset_id=\"n_a-502167\" wordnet_id=\"a-01870636\" pos=\"JJ\" sense=\"lacking professional skill or expertise\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"amateur\" cornetto_synset_id=\"n_a-525291\" wordnet_id=\"a-01869634\" pos=\"JJ\" sense=\"engaged in as a pastime\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"amateurish\" cornetto_synset_id=\"n_a-502167\" wordnet_id=\"a-01870636\" pos=\"JJ\" sense=\"lacking professional skill or expertise\" polarity=\"-0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"amatory\" cornetto_synset_id=\"n_a-526107\" wordnet_id=\"a-01465214\" pos=\"JJ\" sense=\"expressive of or exciting sexual love or romance\" polarity=\"0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"amazing\" wordnet_id=\"a-01282510\" pos=\"JJ\" sense=\"inspiring awe or admiration or wonder\" polarity=\"0.8\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"amazing\" wordnet_id=\"a-02359789\" pos=\"JJ\" sense=\"surprising greatly\" polarity=\"0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"ambitious\" cornetto_synset_id=\"n_a-502179\" wordnet_id=\"a-00104051\" pos=\"JJ\" sense=\"having a strong desire for success or achievement\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"ambitious\" wordnet_id=\"a-00745642\" pos=\"JJ\" sense=\"requiring full use of your abilities or resources\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"amenable\" cornetto_synset_id=\"n_a-503633\" wordnet_id=\"a-00696828\" pos=\"JJ\" sense=\"disposed or willing to comply\" polarity=\"0.2\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"american\" wordnet_id=\"a-02927303\" pos=\"JJ\" sense=\"of or relating to or characteristic of the continents and islands of the Americas\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"american\" wordnet_id=\"a-02927512\" pos=\"JJ\" sense=\"of or relating to the United States of America or its people or language or culture\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"amusing\" cornetto_synset_id=\"n_a-515488\" wordnet_id=\"a-01265308\" pos=\"JJ\" sense=\"arousing or provoking laughter\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"amusing\" wordnet_id=\"a-01344485\" pos=\"JJ\" sense=\"providing enjoyment\" polarity=\"0.7\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"anger\" wordnet_id=\"v-1785971\" pos=\"VB\" sense=\"make angry\" polarity=\"-0.7\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"anger\" wordnet_id=\"v-1787106\" pos=\"VB\" sense=\"become angry\" polarity=\"-0.7\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"angered\" cornetto_synset_id=\"c_255\" wordnet_id=\"a-00114454\" pos=\"JJ\" sense=\"marked by extreme anger\" polarity=\"-0.6\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"angered\" cornetto_synset_id=\"d_a-9618\" wordnet_id=\"a-00114454\" pos=\"JJ\" sense=\"marked by extreme anger\" polarity=\"-0.9\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"angry\" cornetto_synset_id=\"n_a-507482\" wordnet_id=\"a-00113818\" pos=\"JJ\" sense=\"feeling or showing anger\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"angry\" wordnet_id=\"a-00304144\" pos=\"JJ\" sense=\"(of the elements) as if showing violent anger\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"angry\" wordnet_id=\"a-01173697\" pos=\"JJ\" sense=\"severely inflamed and painful\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"annoyed\" wordnet_id=\"a-1806106\" pos=\"JJ\" sense=\"aroused to impatience or anger\" polarity=\"-0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"annoyed\" wordnet_id=\"a-2455845\" pos=\"JJ\" sense=\"troubled persistently especially with petty annoyances\" polarity=\"-0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"annoying\" cornetto_synset_id=\"n_a-508461\" wordnet_id=\"a-00089550\" pos=\"JJ\" sense=\"causing irritation or annoyance\" polarity=\"-0.8\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"annoying\" cornetto_synset_id=\"n_a-514040\" wordnet_id=\"a-00089550\" pos=\"JJ\" sense=\"causing irritation or annoyance\" polarity=\"-0.8\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"anxious\" wordnet_id=\"a-00811248\" pos=\"JJ\" sense=\"eagerly desirous\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"anxious\" wordnet_id=\"a-02456157\" pos=\"JJ\" sense=\"causing or fraught with or showing anxiety\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"aphonic\" cornetto_synset_id=\"n_a-529437\" wordnet_id=\"a-00151661\" pos=\"JJ\" sense=\"being without sound through injury or illness and thus incapable of all but whispered speech\" polarity=\"-0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"appalled\" wordnet_id=\"\" pos=\"JJ\" polarity=\"-0.8\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"appalling\" cornetto_synset_id=\"c_268\" wordnet_id=\"a-00193367\" pos=\"JJ\" sense=\"causing consternation\" polarity=\"-0.1\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"appalling\" cornetto_synset_id=\"n_a-513370\" wordnet_id=\"a-00193367\" pos=\"JJ\" sense=\"causing consternation\" polarity=\"-0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"apparent\" cornetto_synset_id=\"d_a-9626\" wordnet_id=\"a-01618376\" pos=\"JJ\" sense=\"clearly revealed to the mind or the senses or judgment\" polarity=\"0.0\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"apparent\" cornetto_synset_id=\"n_a-505886\" wordnet_id=\"a-01618376\" pos=\"JJ\" sense=\"clearly revealed to the mind or the senses or judgment\" polarity=\"0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"appealing\" wordnet_id=\"a-00170358\" pos=\"JJ\" sense=\"able to attract interest or draw favorable attention\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"appealing\" wordnet_id=\"a-02376277\" pos=\"JJ\" sense=\"(of characters in literature or drama) evoking empathic or sympathetic feelings\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"appetizing\" cornetto_synset_id=\"n_a-528088\" wordnet_id=\"a-00133417\" pos=\"JJ\" sense=\"appealing to or stimulating the appetite especially in appearance or aroma\" polarity=\"0.2\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"applaudable\" cornetto_synset_id=\"n_a-524336\" wordnet_id=\"a-02585545\" pos=\"JJ\" sense=\"worthy of high praise\" polarity=\"0.7\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"applicative\" cornetto_synset_id=\"n_a-530918\" wordnet_id=\"a-01834812\" pos=\"JJ\" sense=\"readily applicable or practical\" polarity=\"0.4\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"apportioned\" cornetto_synset_id=\"n_a-524178\" wordnet_id=\"a-00540236\" pos=\"JJ\" sense=\"given out in portions\" polarity=\"0.3\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"apposite\" cornetto_synset_id=\"n_a-530917\" wordnet_id=\"a-00138314\" pos=\"JJ\" sense=\"being of striking appropriateness and pertinence\" polarity=\"0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"apposite\" cornetto_synset_id=\"n_a-531221\" wordnet_id=\"a-00138314\" pos=\"JJ\" sense=\"being of striking appropriateness and pertinence\" polarity=\"0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"appreciated\" wordnet_id=\"a-1378429\" pos=\"JJ\" sense=\"fully understood or grasped\" polarity=\"0.2\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"appreciative\" cornetto_synset_id=\"n_a-506396\" wordnet_id=\"a-00774676\" pos=\"JJ\" sense=\"having or showing appreciation or a favorable critical judgment or opinion\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"approaching\" cornetto_synset_id=\"n_a-501802\" wordnet_id=\"a-01732601\" pos=\"JJ\" sense=\"of the relatively near future\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"appropriate\" cornetto_synset_id=\"n_a-510404\" wordnet_id=\"a-00134701\" pos=\"JJ\" sense=\"suitable for a particular person or place or condition etc\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"approximate\" cornetto_synset_id=\"n_a-511092\" wordnet_id=\"a-00915976\" pos=\"JJ\" sense=\"not quite exact or correct\" polarity=\"-0.4\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"apt\" cornetto_synset_id=\"n_a-516334\" wordnet_id=\"a-01334958\" pos=\"JJ\" sense=\"mentally quick and resourceful\" polarity=\"0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"arbitrary\" cornetto_synset_id=\"n_a-534901\" wordnet_id=\"a-00718924\" pos=\"JJ\" sense=\"based on or subject to individual discretion or preference or sometimes impulse or caprice\" polarity=\"-0.1\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"archaeological\" cornetto_synset_id=\"n_a-502503\" wordnet_id=\"a-02638392\" pos=\"JJ\" sense=\"related to or dealing with or devoted to archaeology\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"arduous\" cornetto_synset_id=\"n_a-513802\" wordnet_id=\"a-00836544\" pos=\"JJ\" sense=\"characterized by effort to the point of exhaustion\" polarity=\"-0.3\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"arduous\" cornetto_synset_id=\"n_a-532593\" wordnet_id=\"a-00836544\" pos=\"JJ\" sense=\"characterized by effort to the point of exhaustion\" polarity=\"-0.4\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"aroused\" cornetto_synset_id=\"n_a-509978\" wordnet_id=\"a-02131668\" pos=\"JJ\" sense=\"feeling great sexual desire\" polarity=\"0.1\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"arrest\" wordnet_id=\"n-14010927\" pos=\"NN\" sense=\"the state of inactivity following an interruption\" polarity=\"-0.05\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"artesian\" cornetto_synset_id=\"n_a-533297\" wordnet_id=\"a-00098933\" pos=\"JJ\" sense=\"(of water) rising to the surface under internal hydrostatic pressure\" polarity=\"0.9\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"artificial\" cornetto_synset_id=\"n_a-504613\" wordnet_id=\"a-00073465\" pos=\"JJ\" sense=\"artificially formal\" polarity=\"-0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"artistic\" cornetto_synset_id=\"n_a-502593\" wordnet_id=\"a-02991122\" pos=\"JJ\" sense=\"relating to or characteristic of art or artists\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"artistic\" wordnet_id=\"a-00069948\" pos=\"JJ\" sense=\"satisfying aesthetic standards and sensibilities\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"artistic\" wordnet_id=\"a-02393086\" pos=\"JJ\" sense=\"aesthetically pleasing\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"ascetic\" cornetto_synset_id=\"n_a-529697\" wordnet_id=\"a-00009618\" pos=\"JJ\" sense=\"practicing great self-denial\" polarity=\"-0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"ashen\" cornetto_synset_id=\"d_a-9194\" wordnet_id=\"a-00404568\" pos=\"JJ\" sense=\"anemic looking from illness or emotion\" polarity=\"-0.5\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"asian\" wordnet_id=\"a-02968525\" pos=\"JJ\" sense=\"of or relating to or characteristic of Asia or the peoples of Asia or their languages or culture\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"askew\" cornetto_synset_id=\"n_a-508016\" wordnet_id=\"a-02312450\" pos=\"JJ\" sense=\"turned or twisted toward one side\" polarity=\"-0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"assumptive\" cornetto_synset_id=\"n_a-502571\" wordnet_id=\"a-00205696\" pos=\"JJ\" sense=\"excessively forward\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"astonishing\" wordnet_id=\"a-01283155\" pos=\"JJ\" sense=\"so surprisingly impressive as to stun or overwhelm\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"astonishing\" wordnet_id=\"a-02359789\" pos=\"JJ\" sense=\"surprising greatly\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"astounding\" cornetto_synset_id=\"n_a-532288\" wordnet_id=\"a-00645856\" pos=\"JJ\" sense=\"bewildering or striking dumb with wonder\" polarity=\"0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"astute\" cornetto_synset_id=\"c_235\" wordnet_id=\"a-00438909\" pos=\"JJ\" sense=\"marked by practical hardheaded intelligence\" polarity=\"0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"astute\" cornetto_synset_id=\"c_235\" wordnet_id=\"a-00438909\" pos=\"JJ\" sense=\"marked by practical hardheaded intelligence\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"atmospheric\" cornetto_synset_id=\"n_a-502696\" wordnet_id=\"a-02831736\" pos=\"JJ\" sense=\"relating to or located in the atmosphere\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"atrocious\" cornetto_synset_id=\"d_a-9431\" wordnet_id=\"a-00193480\" pos=\"JJ\" sense=\"provoking horror\" polarity=\"-0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"atrocious\" cornetto_synset_id=\"n_a-531138\" wordnet_id=\"a-01126291\" pos=\"JJ\" sense=\"exceptionally bad or displeasing\" polarity=\"-0.8\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"attendant\" cornetto_synset_id=\"n_a-504086\" wordnet_id=\"a-00122844\" pos=\"JJ\" sense=\"following or accompanying as a consequence\" polarity=\"0.2\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"attention-getting\" cornetto_synset_id=\"n_a-522067\" wordnet_id=\"a-00579498\" pos=\"JJ\" sense=\"seizing the attention\" polarity=\"0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"attentive\" cornetto_synset_id=\"d_a-9277\" wordnet_id=\"a-00163592\" pos=\"JJ\" sense=\"(often followed by 'to') giving care or attention\" polarity=\"0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"attractive\" cornetto_synset_id=\"n_a-501309\" wordnet_id=\"a-00166146\" pos=\"JJ\" sense=\"pleasing to the eye or mind especially through beauty or charm\" polarity=\"0.8\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"attractive\" cornetto_synset_id=\"n_a-510897\" wordnet_id=\"a-00166146\" pos=\"JJ\" sense=\"pleasing to the eye or mind especially through beauty or charm\" polarity=\"0.8\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"atypical\" cornetto_synset_id=\"n_a-501908\" wordnet_id=\"a-02469928\" pos=\"JJ\" sense=\"not representative of a group, class, or type\" polarity=\"0.0\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"aureate\" cornetto_synset_id=\"n_a-511289\" wordnet_id=\"a-00369941\" pos=\"JJ\" sense=\"having the deep slightly brownish color of gold\" polarity=\"0.2\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"australian\" wordnet_id=\"a-03045750\" pos=\"JJ\" sense=\"of or relating to or characteristic of Australia or its inhabitants or its languages\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"authentic\" wordnet_id=\"a-01115635\" pos=\"JJ\" sense=\"not counterfeit or copied\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"authentic\" wordnet_id=\"a-02465115\" pos=\"JJ\" sense=\"conforming to fact and therefore worthy of belief\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"authoritative\" cornetto_synset_id=\"d_a-9178\" wordnet_id=\"a-01830403\" pos=\"JJ\" sense=\"having authority or ascendancy or influence\" polarity=\"0.3\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"autistic\" cornetto_synset_id=\"n_a-502750\" wordnet_id=\"a-02542878\" pos=\"JJ\" sense=\"characteristic of or affected with autism\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"autobiographical\" cornetto_synset_id=\"n_a-502755\" wordnet_id=\"a-02651244\" pos=\"JJ\" sense=\"relating to or in the style of an autobiography\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"autonomous\" cornetto_synset_id=\"n_a-535528\" wordnet_id=\"a-00728225\" pos=\"JJ\" sense=\"(of persons) free from external control and constraint in e.g. action and judgment\" polarity=\"0.4\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"available\" cornetto_synset_id=\"d_a-9181\" wordnet_id=\"a-00183053\" pos=\"JJ\" sense=\"obtainable or accessible and ready for use or service\" polarity=\"0.4\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"average\" cornetto_synset_id=\"n_a-518792\" wordnet_id=\"a-00486290\" pos=\"JJ\" sense=\"lacking special distinction, rank, or status\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"average\" cornetto_synset_id=\"n_a-518805\" wordnet_id=\"a-00486290\" pos=\"JJ\" sense=\"lacking special distinction, rank, or status\" polarity=\"-0.3\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"avid\" cornetto_synset_id=\"n_a-518159\" wordnet_id=\"a-00886253\" pos=\"JJ\" sense=\"marked by active interest and enthusiasm\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"avid\" wordnet_id=\"a-00888477\" pos=\"JJ\" sense=\"(often followed by 'for') ardently or excessively desirous\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"aware\" cornetto_synset_id=\"n_a-505816\" wordnet_id=\"a-00190115\" pos=\"JJ\" sense=\"(sometimes followed by 'of') having or showing knowledge or understanding or realization or perception\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"aware\" cornetto_synset_id=\"n_a-509796\" wordnet_id=\"a-01977155\" pos=\"JJ\" sense=\"bearing in mind\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"aweary\" cornetto_synset_id=\"d_a-9410\" wordnet_id=\"a-02432428\" pos=\"JJ\" sense=\"physically and mentally fatigued\" polarity=\"-0.5\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"awesome\" wordnet_id=\"a-01282510\" pos=\"JJ\" sense=\"inspiring awe or admiration or wonder\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"awful\" cornetto_synset_id=\"n_a-511467\" wordnet_id=\"a-00193799\" pos=\"JJ\" sense=\"causing fear or dread or terror\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"awkward\" cornetto_synset_id=\"n_a-521742\" wordnet_id=\"a-01001180\" pos=\"JJ\" sense=\"not elegant or graceful in expression\" polarity=\"-0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"awkward\" cornetto_synset_id=\"n_a-523336\" wordnet_id=\"a-00605406\" pos=\"JJ\" sense=\"causing inconvenience\" polarity=\"-0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"ahw\" wordnet_id=\"\" pos=\"UH\" sense=\"\" polarity=\"0.3\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"aww\" wordnet_id=\"\" pos=\"UH\" sense=\"\" polarity=\"0.3\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"awww\" wordnet_id=\"\" pos=\"UH\" sense=\"\" polarity=\"0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"awwww\" wordnet_id=\"\" pos=\"UH\" sense=\"\" polarity=\"0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"axiomatic\" cornetto_synset_id=\"n_a-506530\" wordnet_id=\"a-01618895\" pos=\"JJ\" sense=\"evident without proof or argument\" polarity=\"0.0\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"back\" cornetto_synset_id=\"n_a-501573\" wordnet_id=\"a-00131692\" pos=\"JJ\" sense=\"located at or near the back of an animal\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"back\" wordnet_id=\"a-00197576\" pos=\"JJ\" sense=\"related to or located at the back\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"back\" wordnet_id=\"a-00668816\" pos=\"JJ\" sense=\"of an earlier date\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"bad\" cornetto_synset_id=\"c_174\" wordnet_id=\"a-01125429\" pos=\"JJ\" sense=\"having undesirable or negative qualities\" polarity=\"-0.7\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"bad\" cornetto_synset_id=\"c_386\" wordnet_id=\"a-01125429\" pos=\"JJ\" sense=\"having undesirable or negative qualities\" polarity=\"-0.7\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"bad\" cornetto_synset_id=\"d_a-9561\" wordnet_id=\"a-01117226\" pos=\"JJ\" sense=\"reproduced fraudulently\" polarity=\"-0.7\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"badness\" wordnet_id=\"n-5036715\" pos=\"NN\" sense=\"used of the degree of something undesirable e.g. pain or weather\" polarity=\"-0.3\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"balmy\" cornetto_synset_id=\"n_a-501466\" wordnet_id=\"a-02074929\" pos=\"JJ\" sense=\"informal or slang terms for mentally irregular\" polarity=\"-0.2\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"balmy\" cornetto_synset_id=\"n_a-535263\" wordnet_id=\"a-00438332\" pos=\"JJ\" sense=\"mild and pleasant\" polarity=\"0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"banal\" wordnet_id=\"a-1688757\" pos=\"JJ\" sense=\"repeated too often\" polarity=\"-0.3\" subjectivity=\"0.5\" intensity=\"1.0\" reliability=\"0.9\" />>\n<word form=\"banded\" cornetto_synset_id=\"n_a-510658\" wordnet_id=\"a-00222969\" pos=\"JJ\" sense=\"identified with a band especially around a leg\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"bang-up\" cornetto_synset_id=\"n_a-511955\" wordnet_id=\"a-01123879\" pos=\"JJ\" sense=\"very good\" polarity=\"0.4\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"barbarian\" cornetto_synset_id=\"d_a-9493\" wordnet_id=\"a-00412788\" pos=\"JJ\" sense=\"without civilizing influences\" polarity=\"-0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"barbarian\" cornetto_synset_id=\"d_a-9619\" wordnet_id=\"a-00412788\" pos=\"JJ\" sense=\"without civilizing influences\" polarity=\"-0.9\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"barbarous\" cornetto_synset_id=\"c_182\" wordnet_id=\"a-01263013\" pos=\"JJ\" sense=\"(of persons or their actions) able or disposed to inflict pain or suffering\" polarity=\"0.0\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"bare\" cornetto_synset_id=\"d_a-9414\" wordnet_id=\"a-00457998\" pos=\"JJ\" sense=\"completely unclothed\" polarity=\"0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"bare\" cornetto_synset_id=\"n_a-520639\" wordnet_id=\"a-00106821\" pos=\"JJ\" sense=\"lacking in amplitude or quantity\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"base\" cornetto_synset_id=\"c_177\" wordnet_id=\"a-01589650\" pos=\"JJ\" sense=\"having or showing an ignoble lack of honor or morality\" polarity=\"-0.9\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"base\" cornetto_synset_id=\"c_540\" wordnet_id=\"a-01589650\" pos=\"JJ\" sense=\"having or showing an ignoble lack of honor or morality\" polarity=\"-0.7\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"basic\" wordnet_id=\"a-00026168\" pos=\"JJ\" sense=\"of or denoting or of the nature of or containing a base\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"basic\" wordnet_id=\"a-01011753\" pos=\"JJ\" sense=\"serving as a base or starting point\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"basic\" wordnet_id=\"a-01855764\" pos=\"JJ\" sense=\"pertaining to or constituting a base or basis\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"basic\" wordnet_id=\"a-02295298\" pos=\"JJ\" sense=\"reduced to the simplest and most significant form possible without loss of generality\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"bass\" cornetto_synset_id=\"n_a-536057\" wordnet_id=\"a-01215935\" pos=\"JJ\" sense=\"having or denoting a low vocal or instrumental range\" polarity=\"-0.1\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"bass\" cornetto_synset_id=\"n_a-536057\" wordnet_id=\"a-01215935\" pos=\"JJ\" sense=\"having or denoting a low vocal or instrumental range\" polarity=\"-0.2\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"battleful\" cornetto_synset_id=\"n_a-501941\" wordnet_id=\"a-00082766\" pos=\"JJ\" sense=\"having or showing a ready disposition to fight\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"beautiful\" cornetto_synset_id=\"d_a-9413\" wordnet_id=\"a-00217728\" pos=\"JJ\" sense=\"delighting the senses or exciting intellectual or emotional admiration\" polarity=\"0.7\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"beautiful\" cornetto_synset_id=\"n_a-524142\" wordnet_id=\"a-00217728\" pos=\"JJ\" sense=\"delighting the senses or exciting intellectual or emotional admiration\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"becoming\" cornetto_synset_id=\"c_568\" wordnet_id=\"a-01878870\" pos=\"JJ\" sense=\"according with custom or propriety\" polarity=\"0.3\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"becoming\" cornetto_synset_id=\"n_a-508843\" wordnet_id=\"a-01878870\" pos=\"JJ\" sense=\"according with custom or propriety\" polarity=\"0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"becoming\" cornetto_synset_id=\"n_a-508843\" wordnet_id=\"a-01878870\" pos=\"JJ\" sense=\"according with custom or propriety\" polarity=\"0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"becoming\" cornetto_synset_id=\"n_a-510405\" wordnet_id=\"a-01878870\" pos=\"JJ\" sense=\"according with custom or propriety\" polarity=\"0.5\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"beefy\" cornetto_synset_id=\"d_a-9272\" wordnet_id=\"a-02038126\" pos=\"JJ\" sense=\"muscular and heavily built\" polarity=\"0.1\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"beefy\" cornetto_synset_id=\"n_a-529394\" wordnet_id=\"a-02038126\" pos=\"JJ\" sense=\"muscular and heavily built\" polarity=\"0.3\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"behind\" cornetto_synset_id=\"n_a-514476\" wordnet_id=\"a-02492383\" pos=\"JJ\" sense=\"having the lower score or lagging position in a contest\" polarity=\"-0.4\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"believable\" cornetto_synset_id=\"n_a-502749\" wordnet_id=\"a-00644839\" pos=\"JJ\" sense=\"capable of being believed\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"beloved\" cornetto_synset_id=\"n_a-510141\" wordnet_id=\"a-01462324\" pos=\"JJ\" sense=\"dearly loved\" polarity=\"0.7\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"best\" wordnet_id=\"a-00067379\" pos=\"JJ\" sense=\"(comparative and superlative of 'well') wiser or more advantageous and hence advisable\" polarity=\"1.0\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"best\" wordnet_id=\"a-00227507\" pos=\"JJ\" sense=\"(superlative of 'good') having the most positive qualities\" polarity=\"1.0\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"better\" cornetto_synset_id=\"n_a-503853\" wordnet_id=\"a-01471260\" pos=\"JJ\" sense=\"more than half\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"better\" wordnet_id=\"a-00067379\" pos=\"JJ\" sense=\"(comparative and superlative of 'well') wiser or more advantageous and hence advisable\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"better\" wordnet_id=\"a-00230335\" pos=\"JJ\" sense=\"(comparative of 'good') superior to another (of the same class or set or kind) in excellence or quality or desirability or suitability\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"better\" wordnet_id=\"a-00231761\" pos=\"JJ\" sense=\"(comparative of 'good') changed for the better in health or fitness\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"bewitching\" cornetto_synset_id=\"n_a-512118\" wordnet_id=\"a-00166753\" pos=\"JJ\" sense=\"capturing interest as if by a spell\" polarity=\"0.4\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"bewitching\" cornetto_synset_id=\"n_a-513883\" wordnet_id=\"a-00166753\" pos=\"JJ\" sense=\"capturing interest as if by a spell\" polarity=\"0.9\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"bewitching\" cornetto_synset_id=\"n_a-521695\" wordnet_id=\"a-00166753\" pos=\"JJ\" sense=\"capturing interest as if by a spell\" polarity=\"0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"bewitching\" cornetto_synset_id=\"n_a-528807\" wordnet_id=\"a-00166753\" pos=\"JJ\" sense=\"capturing interest as if by a spell\" polarity=\"0.7\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"bewitching\" cornetto_synset_id=\"n_a-532666\" wordnet_id=\"a-00166753\" pos=\"JJ\" sense=\"capturing interest as if by a spell\" polarity=\"0.9\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"big\" cornetto_synset_id=\"d_a-9639\" wordnet_id=\"a-00173391\" pos=\"JJ\" sense=\"in an advanced stage of pregnancy\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"bigger\" wordnet_id=\"a-01383756\" pos=\"JJ\" sense=\"large or big relative to something else\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"biographic\" cornetto_synset_id=\"n_a-504218\" wordnet_id=\"a-03048680\" pos=\"JJ\" sense=\"of or relating to or being biography\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"bitter\" cornetto_synset_id=\"d_a-9192\" wordnet_id=\"a-02396098\" pos=\"JJ\" sense=\"causing a sharp and acrid taste experience\" polarity=\"-0.1\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"bizarre\" cornetto_synset_id=\"n_a-531732\" wordnet_id=\"a-00608791\" pos=\"JJ\" sense=\"conspicuously or grossly unconventional or unusual\" polarity=\"0.4\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"black\" cornetto_synset_id=\"c_387\" wordnet_id=\"a-00241952\" pos=\"JJ\" sense=\"of or belonging to a racial group having dark skin especially of sub-Saharan African origin\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"black\" cornetto_synset_id=\"n_a-536067\" wordnet_id=\"a-00274068\" pos=\"JJ\" sense=\"extremely dark\" polarity=\"-0.4\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"black\" cornetto_synset_id=\"n_a-536093\" wordnet_id=\"a-00392812\" pos=\"JJ\" sense=\"being of the achromatic color of maximum darkness\" polarity=\"-0.1\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"bland\" cornetto_synset_id=\"n_a-509105\" wordnet_id=\"a-02399595\" pos=\"JJ\" sense=\"lacking taste or flavor or tang\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"bland\" wordnet_id=\"a-00758800\" pos=\"JJ\" sense=\"smoothly agreeable and courteous with a degree of sophistication\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"bland\" wordnet_id=\"a-02307563\" pos=\"JJ\" sense=\"lacking stimulating characteristics\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"blank\" cornetto_synset_id=\"n_a-521250\" wordnet_id=\"a-00500889\" pos=\"JJ\" sense=\"void of expression\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"blasted\" cornetto_synset_id=\"n_a-516807\" wordnet_id=\"a-00669942\" pos=\"JJ\" sense=\"expletives used informally as intensifiers\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"blatant\" wordnet_id=\"a-01920367\" pos=\"JJ\" sense=\"conspicuously and offensively loud\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"blatant\" wordnet_id=\"a-02090567\" pos=\"JJ\" sense=\"without any attempt at concealment\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"bleak\" wordnet_id=\"a-01229561\" pos=\"JJ\" sense=\"offering little or no hope\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"bleak\" wordnet_id=\"a-01242750\" pos=\"JJ\" sense=\"providing no shelter or sustenance\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"bleak\" wordnet_id=\"a-01252399\" pos=\"JJ\" sense=\"unpleasantly cold and damp\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"blech\" wordnet_id=\"\" pos=\"UH\" sense=\"\" polarity=\"-0.8\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"blind\" cornetto_synset_id=\"n_a-504348\" wordnet_id=\"a-02158826\" pos=\"JJ\" sense=\"unable to see\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"blind\" wordnet_id=\"a-01746292\" pos=\"JJ\" sense=\"unable or unwilling to perceive or understand\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"blind\" wordnet_id=\"a-01926654\" pos=\"JJ\" sense=\"not based on reason or evidence\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"blonde\" wordnet_id=\"a-00243606\" pos=\"JJ\" sense=\"being or having light colored skin and hair and usually blue or grey eyes\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"bloodstained\" cornetto_synset_id=\"n_a-504377\" wordnet_id=\"a-00247993\" pos=\"JJ\" sense=\"covered with blood\" polarity=\"-0.6\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"bloodthirsty\" cornetto_synset_id=\"n_a-510816\" wordnet_id=\"a-00248251\" pos=\"JJ\" sense=\"marked by eagerness to resort to violence and bloodshed\" polarity=\"-0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"bloody\" cornetto_synset_id=\"d_a-9577\" wordnet_id=\"a-00247439\" pos=\"JJ\" sense=\"having or covered with or accompanied by blood\" polarity=\"-0.8\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"blue\" cornetto_synset_id=\"d_a-9193\" wordnet_id=\"a-00370869\" pos=\"JJ\" sense=\"of the color intermediate between green and violet\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"bodily\" cornetto_synset_id=\"n_a-517174\" wordnet_id=\"a-00630329\" pos=\"JJ\" sense=\"having or relating to a physical material body\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"bogged\" wordnet_id=\"\" pos=\"VBN\" sense=\"\" polarity=\"-0.2\" subjectivity=\"0.1\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"boilerplate\" wordnet_id=\"n-2863995\" pos=\"NN\" sense=\"thick plate iron used in the production of boilers\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"boilerplate\" wordnet_id=\"n-7075006\" pos=\"NN\" sense=\"standard formulations uniformly found in certain types of legal documents or news stories\" polarity=\"-0.2\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"bold\" cornetto_synset_id=\"n_a-507342\" wordnet_id=\"a-00249721\" pos=\"JJ\" sense=\"fearless and daring\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"bold\" wordnet_id=\"a-00579881\" pos=\"JJ\" sense=\"clear and distinct\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"bold\" wordnet_id=\"a-01145422\" pos=\"JJ\" sense=\"very steep\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"bonny\" cornetto_synset_id=\"n_a-525316\" wordnet_id=\"a-00218440\" pos=\"JJ\" sense=\"very pleasing to the eye\" polarity=\"0.3\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"bootleg\" cornetto_synset_id=\"n_a-536095\" wordnet_id=\"a-01402580\" pos=\"JJ\" sense=\"distributed or sold illicitly\" polarity=\"-0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"bored\" cornetto_synset_id=\"n_a-517119\" wordnet_id=\"a-02432682\" pos=\"JJ\" sense=\"tired of the world\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"bored\" wordnet_id=\"a-01343200\" pos=\"JJ\" sense=\"uninterested because of frequent exposure or indulgence\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"boring\" cornetto_synset_id=\"n_a-520370\" wordnet_id=\"a-01345307\" pos=\"JJ\" sense=\"so lacking in interest as to cause mental weariness\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"boundless\" cornetto_synset_id=\"n_a-520379\" wordnet_id=\"a-01007657\" pos=\"JJ\" sense=\"seemingly boundless in amount, number, degree, or especially extent\" polarity=\"-0.2\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"brainsick\" cornetto_synset_id=\"n_a-516037\" wordnet_id=\"a-02075321\" pos=\"JJ\" sense=\"affected with madness or insanity\" polarity=\"-0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"brash\" cornetto_synset_id=\"n_a-508126\" wordnet_id=\"a-00204779\" pos=\"JJ\" sense=\"offensively bold\" polarity=\"-0.2\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"bravado\" wordnet_id=\"n-6889591\" pos=\"NN\" sense=\"a swaggering show of courage\" polarity=\"-0.2\" subjectivity=\"0.4\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"brave\" cornetto_synset_id=\"n_a-516007\" wordnet_id=\"a-00262792\" pos=\"JJ\" sense=\"possessing or displaying courage\" polarity=\"0.7\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"brave\" cornetto_synset_id=\"n_a-519123\" wordnet_id=\"a-00262792\" pos=\"JJ\" sense=\"possessing or displaying courage\" polarity=\"0.9\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"breathtaking\" cornetto_synset_id=\"n_a-534732\" wordnet_id=\"a-00921369\" pos=\"JJ\" sense=\"tending to cause suspension of regular breathing\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"brief\" wordnet_id=\"a-00547166\" pos=\"JJ\" sense=\"concise and succinct\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"brief\" wordnet_id=\"a-01436432\" pos=\"JJ\" sense=\"(of clothing) very short\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"brief\" wordnet_id=\"a-01442826\" pos=\"JJ\" sense=\"of short duration or distance\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"bright\" cornetto_synset_id=\"n_a-503563\" wordnet_id=\"a-00176387\" pos=\"JJ\" sense=\"full or promise\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"bright\" cornetto_synset_id=\"n_a-510334\" wordnet_id=\"a-00402855\" pos=\"JJ\" sense=\"having striking color\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"bright\" cornetto_synset_id=\"n_a-535928\" wordnet_id=\"a-01812237\" pos=\"JJ\" sense=\"made smooth and bright by or as if by rubbing\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"brilliant\" cornetto_synset_id=\"n_a-511641\" wordnet_id=\"a-01285376\" pos=\"JJ\" sense=\"characterized by grandeur\" polarity=\"0.9\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"british\" wordnet_id=\"a-03022177\" pos=\"JJ\" sense=\"of or relating to or characteristic of Great Britain or its people or culture\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"broad\" cornetto_synset_id=\"c_291\" wordnet_id=\"a-02560548\" pos=\"JJ\" sense=\"having great (or a certain) extent from one side to the other\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"broad\" cornetto_synset_id=\"n_a-502032\" wordnet_id=\"a-00526062\" pos=\"JJ\" sense=\"broad in scope or content\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"broad\" cornetto_synset_id=\"n_a-520399\" wordnet_id=\"a-00286837\" pos=\"JJ\" sense=\"showing or characterized by broad-mindedness\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"broad\" wordnet_id=\"a-00428878\" pos=\"JJ\" sense=\"lacking subtlety\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"broad\" wordnet_id=\"a-01101891\" pos=\"JJ\" sense=\"not detailed or specific\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"broad\" wordnet_id=\"a-01211531\" pos=\"JJ\" sense=\"being at a peak or culminating point\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"broad\" wordnet_id=\"a-01287160\" pos=\"JJ\" sense=\"(of speech) heavily and noticeably regional\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"broad\" wordnet_id=\"a-01384212\" pos=\"JJ\" sense=\"very large in expanse or scope\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"broad-minded\" cornetto_synset_id=\"n_a-526330\" wordnet_id=\"a-00286578\" pos=\"JJ\" sense=\"inclined to respect views and beliefs that differ from your own\" polarity=\"0.0\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"broken\" cornetto_synset_id=\"d_a-9361\" wordnet_id=\"a-00289082\" pos=\"JJ\" sense=\"physically and forcibly separated into pieces or cracked or split\" polarity=\"-0.4\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"brushed\" cornetto_synset_id=\"n_a-535097\" wordnet_id=\"a-01153141\" pos=\"JJ\" sense=\"(of fabrics) having soft nap produced by brushing\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"brutal\" cornetto_synset_id=\"c_182\" wordnet_id=\"a-01263013\" pos=\"JJ\" sense=\"(of persons or their actions) able or disposed to inflict pain or suffering\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"brutal\" cornetto_synset_id=\"d_a-9229\" wordnet_id=\"a-01263445\" pos=\"JJ\" sense=\"resembling a beast\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"brutal\" wordnet_id=\"a-00765173\" pos=\"JJ\" sense=\"disagreeably direct and precise\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"brutal\" wordnet_id=\"a-01510798\" pos=\"JJ\" sense=\"harsh\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"budding\" cornetto_synset_id=\"n_a-530897\" wordnet_id=\"a-00742620\" pos=\"JJ\" sense=\"beginning to develop\" polarity=\"0.1\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"busy\" cornetto_synset_id=\"d_a-9144\" wordnet_id=\"a-00292937\" pos=\"JJ\" sense=\"actively or fully engaged or occupied\" polarity=\"0.1\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"cacophonous\" cornetto_synset_id=\"n_a-535182\" wordnet_id=\"a-00298767\" pos=\"JJ\" sense=\"having an unpleasant sound\" polarity=\"-0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"calculable\" cornetto_synset_id=\"n_a-533699\" wordnet_id=\"a-00301187\" pos=\"JJ\" sense=\"capable of being calculated or estimated\" polarity=\"-0.5\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"calm\" cornetto_synset_id=\"c_394\" wordnet_id=\"a-00529657\" pos=\"JJ\" sense=\"not agitated\" polarity=\"0.2\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"calm\" cornetto_synset_id=\"n_a-526409\" wordnet_id=\"a-00529657\" pos=\"JJ\" sense=\"not agitated\" polarity=\"0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"can't\" wordnet_id=\"\" pos=\"VB\" polarity=\"-0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"candid\" cornetto_synset_id=\"c_184\" wordnet_id=\"a-01310273\" pos=\"JJ\" sense=\"openly straightforward and direct without reserve or secretiveness\" polarity=\"0.6\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"candid\" cornetto_synset_id=\"c_184\" wordnet_id=\"a-01310273\" pos=\"JJ\" sense=\"openly straightforward and direct without reserve or secretiveness\" polarity=\"0.6\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"capable\" cornetto_synset_id=\"n_a-503643\" wordnet_id=\"a-00051373\" pos=\"JJ\" sense=\"having the requisite qualities for\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"capable\" wordnet_id=\"a-00306314\" pos=\"JJ\" sense=\"(usually followed by 'of') having capacity or ability\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"capable\" wordnet_id=\"a-00308015\" pos=\"JJ\" sense=\"(followed by 'of') having the temperament or inclination for\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"capable\" wordnet_id=\"a-00510348\" pos=\"JJ\" sense=\"have the skills and qualifications to do things well\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"capable\" wordnet_id=\"a-02361540\" pos=\"JJ\" sense=\"possibly accepting or permitting\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"captivating\" cornetto_synset_id=\"n_a-521695\" wordnet_id=\"a-00166753\" pos=\"JJ\" sense=\"capturing interest as if by a spell\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"captive\" cornetto_synset_id=\"n_a-509723\" wordnet_id=\"a-00163948\" pos=\"JJ\" sense=\"giving or marked by complete attention to\" polarity=\"0.2\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"cardiac\" wordnet_id=\"a-2843717\" pos=\"JJ\" sense=\"of or relating to the heart\" polarity=\"-0.05\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"careful\" cornetto_synset_id=\"n_a-535947\" wordnet_id=\"a-00309021\" pos=\"JJ\" sense=\"exercising caution or showing care or attention\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"careful\" wordnet_id=\"a-01271961\" pos=\"JJ\" sense=\"unhurried and with care and dignity\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"careful\" wordnet_id=\"a-01895099\" pos=\"JJ\" sense=\"mindful of the future in spending money\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"careful\" wordnet_id=\"a-01977488\" pos=\"JJ\" sense=\"cautiously attentive\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"careful\" wordnet_id=\"a-02456698\" pos=\"JJ\" sense=\"full of cares or anxiety\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"careless\" cornetto_synset_id=\"n_a-520108\" wordnet_id=\"a-00311663\" pos=\"JJ\" sense=\"marked by lack of attention or consideration or forethought or thoroughness\" polarity=\"-0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"cast-iron\" cornetto_synset_id=\"n_a-513363\" wordnet_id=\"a-02038891\" pos=\"JJ\" sense=\"extremely robust\" polarity=\"0.9\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"casual\" cornetto_synset_id=\"n_a-520762\" wordnet_id=\"a-00545746\" pos=\"JJ\" sense=\"marked by blithe unconcern\" polarity=\"-0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"casual\" cornetto_synset_id=\"n_a-522012\" wordnet_id=\"a-00312234\" pos=\"JJ\" sense=\"hasty and without attention to detail\" polarity=\"-0.8\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"casual\" cornetto_synset_id=\"n_a-533333\" wordnet_id=\"a-00312234\" pos=\"JJ\" sense=\"hasty and without attention to detail\" polarity=\"-0.3\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"catching\" cornetto_synset_id=\"n_a-501301\" wordnet_id=\"a-01303042\" pos=\"JJ\" sense=\"(of disease) capable of being transmitted by infection\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"catholic\" cornetto_synset_id=\"n_a-514668\" wordnet_id=\"a-00287128\" pos=\"JJ\" sense=\"free from provincial prejudices or attachments\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"caustic\" cornetto_synset_id=\"n_a-504134\" wordnet_id=\"a-00587376\" pos=\"JJ\" sense=\"of a substance, especially a strong acid\" polarity=\"-0.4\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"ceaseless\" cornetto_synset_id=\"n_a-508064\" wordnet_id=\"a-00595299\" pos=\"JJ\" sense=\"uninterrupted in time and indefinitely long continuing\" polarity=\"-0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"celebrated\" cornetto_synset_id=\"n_a-503455\" wordnet_id=\"a-01375831\" pos=\"JJ\" sense=\"widely known and esteemed\" polarity=\"0.2\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"celebrated\" cornetto_synset_id=\"n_a-503694\" wordnet_id=\"a-01375831\" pos=\"JJ\" sense=\"widely known and esteemed\" polarity=\"0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"center\" cornetto_synset_id=\"n_a-511782\" wordnet_id=\"a-00330506\" pos=\"JJ\" sense=\"equally distant from the extremes\" polarity=\"-0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"central\" cornetto_synset_id=\"n_a-505454\" wordnet_id=\"a-00329831\" pos=\"JJ\" sense=\"in or near a center or constituting a center\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"central\" wordnet_id=\"a-01277097\" pos=\"JJ\" sense=\"serving as an essential component\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"centric\" cornetto_synset_id=\"n_a-505452\" wordnet_id=\"a-00330728\" pos=\"JJ\" sense=\"having or situated at or near a center\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"ceremonial\" cornetto_synset_id=\"n_a-504393\" wordnet_id=\"a-01042491\" pos=\"JJ\" sense=\"marked by pomp or ceremony or formality\" polarity=\"0.0\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"ceremonial\" cornetto_synset_id=\"n_a-509253\" wordnet_id=\"a-01042491\" pos=\"JJ\" sense=\"marked by pomp or ceremony or formality\" polarity=\"0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"certain\" wordnet_id=\"a-00309740\" pos=\"JJ\" sense=\"exercising or taking care great enough to bring assurance\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"certain\" wordnet_id=\"a-00335421\" pos=\"JJ\" sense=\"established beyond doubt or question\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"certain\" wordnet_id=\"a-00336831\" pos=\"JJ\" sense=\"having or feeling no doubt or uncertainty\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"certain\" wordnet_id=\"a-00340239\" pos=\"JJ\" sense=\"certain to occur\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"certain\" wordnet_id=\"a-00700884\" pos=\"JJ\" sense=\"definite but not specified or identified\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"certain\" wordnet_id=\"a-00724397\" pos=\"JJ\" sense=\"reliable in operation or effect\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"certain\" wordnet_id=\"a-02087342\" pos=\"JJ\" sense=\"established irrevocably\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"challenging\" wordnet_id=\"a-00745642\" pos=\"JJ\" sense=\"requiring full use of your abilities or resources\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"challenging\" wordnet_id=\"a-01897106\" pos=\"JJ\" sense=\"disturbingly provocative\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"challenging\" wordnet_id=\"a-02306598\" pos=\"JJ\" sense=\"stimulating interest or thought\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"changeless\" cornetto_synset_id=\"c_344\" wordnet_id=\"a-00347400\" pos=\"JJ\" sense=\"remaining the same for indefinitely long times\" polarity=\"-0.1\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"changeless\" cornetto_synset_id=\"n_a-521559\" wordnet_id=\"a-00347400\" pos=\"JJ\" sense=\"remaining the same for indefinitely long times\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"characteristic\" cornetto_synset_id=\"n_a-508105\" wordnet_id=\"a-00356926\" pos=\"JJ\" sense=\"typical or distinctive\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"characteristic\" cornetto_synset_id=\"n_a-514566\" wordnet_id=\"a-00356926\" pos=\"JJ\" sense=\"typical or distinctive\" polarity=\"-0.2\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"characteristic\" cornetto_synset_id=\"n_a-514566\" wordnet_id=\"a-00356926\" pos=\"JJ\" sense=\"typical or distinctive\" polarity=\"0.0\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"charismatic\" cornetto_synset_id=\"n_a-505493\" wordnet_id=\"a-00167077\" pos=\"JJ\" sense=\"possessing an extraordinary ability to attract\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"charitable\" cornetto_synset_id=\"n_a-528223\" wordnet_id=\"a-01372948\" pos=\"JJ\" sense=\"showing or motivated by sympathy and understanding and generosity\" polarity=\"0.6\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"charming\" cornetto_synset_id=\"n_a-510820\" wordnet_id=\"a-01576071\" pos=\"JJ\" sense=\"possessing or using or characteristic of or appropriate to supernatural powers\" polarity=\"0.7\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"cheap\" cornetto_synset_id=\"n_a-511207\" wordnet_id=\"a-00934199\" pos=\"JJ\" sense=\"relatively low in price or charging low prices\" polarity=\"0.4\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"cheerful\" cornetto_synset_id=\"d_a-9546\" wordnet_id=\"a-00362467\" pos=\"JJ\" sense=\"being full of or promoting cheer\" polarity=\"0.4\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"cheery\" cornetto_synset_id=\"d_a-9195\" wordnet_id=\"a-00363938\" pos=\"JJ\" sense=\"bright and pleasant\" polarity=\"0.7\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"cheesiest\" wordnet_id=\"\" pos=\"JJS\" sense=\"\" polarity=\"-0.4\" subjectivity=\"0.5\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"cheesy\" cornetto_synset_id=\"n_a-524740\" wordnet_id=\"a-02346013\" pos=\"JJ\" sense=\"of very poor quality\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"chicken\" cornetto_synset_id=\"n_a-514975\" wordnet_id=\"a-00265314\" pos=\"JJ\" sense=\"easily frightened\" polarity=\"-0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"chicken\" cornetto_synset_id=\"n_a-514975\" wordnet_id=\"a-00265314\" pos=\"JJ\" sense=\"easily frightened\" polarity=\"-0.7\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"childish\" cornetto_synset_id=\"n_a-514998\" wordnet_id=\"a-01493016\" pos=\"JJ\" sense=\"indicating a lack of maturity\" polarity=\"-0.2\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"chilling\" cornetto_synset_id=\"n_a-503573\" wordnet_id=\"a-00194924\" pos=\"JJ\" sense=\"provoking fear terror\" polarity=\"-0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"chilly\" cornetto_synset_id=\"n_a-514962\" wordnet_id=\"a-00857206\" pos=\"JJ\" sense=\"not characterized by emotion\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"chinese\" cornetto_synset_id=\"n_a-500299\" wordnet_id=\"a-02964782\" pos=\"JJ\" sense=\"of or pertaining to China or its peoples or cultures\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"chinese\" wordnet_id=\"a-03122400\" pos=\"JJ\" sense=\"of or relating to or characteristic of the island republic on Taiwan or its residents or their language\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"chitchat\" wordnet_id=\"n-7135080\" pos=\"NN\" sense=\"light informal conversation for social occasions\" polarity=\"-0.2\" subjectivity=\"0.3\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"choppy\" wordnet_id=\"a-1143750\" pos=\"JJ\" sense=\"marked by abrupt transitions\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"christian\" wordnet_id=\"a-00411009\" pos=\"JJ\" sense=\"following the teachings or manifesting the qualities or spirit of Jesus Christ\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"christian\" wordnet_id=\"a-02952275\" pos=\"JJ\" sense=\"relating to or characteristic of Christianity\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"chronological\" cornetto_synset_id=\"n_a-505581\" wordnet_id=\"a-02956880\" pos=\"JJ\" sense=\"relating to or arranged according to temporal order\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"churning\" cornetto_synset_id=\"n_a-521391\" wordnet_id=\"a-00087597\" pos=\"JJ\" sense=\"(of a liquid) agitated vigorously\" polarity=\"-0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"cinematic\" cornetto_synset_id=\"n_a-509028\" wordnet_id=\"a-02696795\" pos=\"JJ\" sense=\"of or pertaining to or characteristic of the cinema\" polarity=\"0.0\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"civilized\" cornetto_synset_id=\"n_a-503731\" wordnet_id=\"a-01947741\" pos=\"JJ\" sense=\"marked by refinement in taste and manners\" polarity=\"0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"classic\" cornetto_synset_id=\"n_a-502332\" wordnet_id=\"a-00413622\" pos=\"JJ\" sense=\"of or relating to the most highly developed stage of an earlier civilisation and its culture\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"classic\" cornetto_synset_id=\"n_a-515129\" wordnet_id=\"a-00413861\" pos=\"JJ\" sense=\"of or pertaining to or characteristic of the ancient Greek and Roman cultures\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"classic\" wordnet_id=\"a-02295098\" pos=\"JJ\" sense=\"of recognized authority or excellence\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"classical\" cornetto_synset_id=\"n_a-502332\" wordnet_id=\"a-00413622\" pos=\"JJ\" sense=\"of or relating to the most highly developed stage of an earlier civilisation and its culture\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"classy\" cornetto_synset_id=\"c_345\" wordnet_id=\"a-00975778\" pos=\"JJ\" sense=\"elegant and fashionable\" polarity=\"0.1\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"claustrophobic\" cornetto_synset_id=\"n_a-505660\" wordnet_id=\"a-00079356\" pos=\"JJ\" sense=\"suffering from claustrophobia\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"claustrophobic\" wordnet_id=\"a-00558612\" pos=\"JJ\" sense=\"uncomfortably closed or hemmed in\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"clean\" cornetto_synset_id=\"d_a-9518\" wordnet_id=\"a-00417413\" pos=\"JJ\" sense=\"free from dirt or impurities\" polarity=\"0.5\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"clean\" cornetto_synset_id=\"d_a-9518\" wordnet_id=\"a-00417413\" pos=\"JJ\" sense=\"free from dirt or impurities\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"clean\" cornetto_synset_id=\"n_a-525388\" wordnet_id=\"a-00047653\" pos=\"JJ\" sense=\"free of drugs\" polarity=\"0.0\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"cleanly\" cornetto_synset_id=\"n_a-522125\" wordnet_id=\"a-00417978\" pos=\"JJ\" sense=\"habitually clean\" polarity=\"0.3\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"clear\" cornetto_synset_id=\"c_261\" wordnet_id=\"a-00431447\" pos=\"JJ\" sense=\"allowing light to pass through\" polarity=\"0.0\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"clear\" cornetto_synset_id=\"d_a-9386\" wordnet_id=\"a-00431447\" pos=\"JJ\" sense=\"allowing light to pass through\" polarity=\"0.1\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"clear\" cornetto_synset_id=\"n_a-501282\" wordnet_id=\"a-00428404\" pos=\"JJ\" sense=\"readily apparent to the mind\" polarity=\"0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"clear\" cornetto_synset_id=\"n_a-512275\" wordnet_id=\"a-00431447\" pos=\"JJ\" sense=\"allowing light to pass through\" polarity=\"0.1\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"clear\" cornetto_synset_id=\"n_a-512276\" wordnet_id=\"a-00428404\" pos=\"JJ\" sense=\"readily apparent to the mind\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"clear\" cornetto_synset_id=\"n_a-516921\" wordnet_id=\"a-01405047\" pos=\"JJ\" sense=\"easily deciphered\" polarity=\"0.3\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"clever\" cornetto_synset_id=\"n_a-516334\" wordnet_id=\"a-01334958\" pos=\"JJ\" sense=\"mentally quick and resourceful\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"clever\" wordnet_id=\"a-00061885\" pos=\"JJ\" sense=\"showing inventiveness and skill\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"clever\" wordnet_id=\"a-00439252\" pos=\"JJ\" sense=\"showing self-interest and shrewdness in dealing with others\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"closed\" cornetto_synset_id=\"d_a-9226\" wordnet_id=\"a-01653538\" pos=\"JJ\" sense=\"not open or affording passage or access\" polarity=\"-0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"cloud-covered\" cornetto_synset_id=\"n_a-503224\" wordnet_id=\"a-00461971\" pos=\"JJ\" sense=\"filled or abounding with clouds\" polarity=\"-0.2\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"cloudless\" cornetto_synset_id=\"d_a-9329\" wordnet_id=\"a-00460946\" pos=\"JJ\" sense=\"free from clouds\" polarity=\"0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"cluelessness\" wordnet_id=\"\" pos=\"NN\" sense=\"\" polarity=\"-0.1\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"clumsy\" wordnet_id=\"\" pos=\"JJ\" sense=\"\" polarity=\"-0.3\" subjectivity=\"0.4\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"coarse\" cornetto_synset_id=\"c_473\" wordnet_id=\"a-02230990\" pos=\"JJ\" sense=\"of textures that are rough to the touch or substances consisting of relatively large particles\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"cocky\" cornetto_synset_id=\"n_a-508125\" wordnet_id=\"a-00156440\" pos=\"JJ\" sense=\"overly self-confident or self-assertive\" polarity=\"-0.2\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"coherent\" cornetto_synset_id=\"n_a-522439\" wordnet_id=\"a-00464513\" pos=\"JJ\" sense=\"marked by an orderly, logical, and aesthetically consistent relation of parts\" polarity=\"0.5\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"cold\" cornetto_synset_id=\"n_a-515500\" wordnet_id=\"a-01257612\" pos=\"JJ\" sense=\"extended meanings\" polarity=\"-0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"collectible\" cornetto_synset_id=\"n_a-527386\" wordnet_id=\"a-00136884\" pos=\"JJ\" sense=\"subject to or requiring payment especially as specified\" polarity=\"-0.5\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"colorful\" cornetto_synset_id=\"n_a-503317\" wordnet_id=\"a-00402419\" pos=\"JJ\" sense=\"having striking color\" polarity=\"0.3\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"colossal\" cornetto_synset_id=\"n_a-510819\" wordnet_id=\"a-01384730\" pos=\"JJ\" sense=\"so great in size or force or extent as to elicit awe\" polarity=\"0.3\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"coma\" wordnet_id=\"n-5680193\" pos=\"NN\" sense=\"a state of deep and often prolonged unconsciousness\" polarity=\"-0.1\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"come-at-able\" cornetto_synset_id=\"d_a-9549\" wordnet_id=\"a-00019505\" pos=\"JJ\" sense=\"capable of being reached or attained\" polarity=\"0.3\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"comfortable\" cornetto_synset_id=\"n_a-510492\" wordnet_id=\"a-00476819\" pos=\"JJ\" sense=\"providing or experiencing physical well-being or relief ('comfy' is informal)\" polarity=\"0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"comic\" cornetto_synset_id=\"n_a-515488\" wordnet_id=\"a-01265308\" pos=\"JJ\" sense=\"arousing or provoking laughter\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"comic\" wordnet_id=\"a-02973392\" pos=\"JJ\" sense=\"of or relating to or characteristic of comedy\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"comical\" cornetto_synset_id=\"n_a-515488\" wordnet_id=\"a-01265308\" pos=\"JJ\" sense=\"arousing or provoking laughter\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"commercial\" cornetto_synset_id=\"d_a-9621\" wordnet_id=\"a-00483146\" pos=\"JJ\" sense=\"connected with or engaged in or sponsored by or used in commerce or commercial enterprises\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"commercialism\" wordnet_id=\"\" pos=\"NN\" sense=\"\" polarity=\"-0.1\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"common\" cornetto_synset_id=\"n_a-510254\" wordnet_id=\"a-00492677\" pos=\"JJ\" sense=\"belonging to or participated in by a community as a whole\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"common\" cornetto_synset_id=\"n_a-522137\" wordnet_id=\"a-01593079\" pos=\"JJ\" sense=\"of or associated with the great masses of people\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"compelling\" cornetto_synset_id=\"n_a-518469\" wordnet_id=\"a-01826477\" pos=\"JJ\" sense=\"driving or forcing\" polarity=\"0.3\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"competent\" wordnet_id=\"a-00051571\" pos=\"JJ\" sense=\"adequate for the purpose\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"competent\" wordnet_id=\"a-00510050\" pos=\"JJ\" sense=\"properly or sufficiently qualified or capable or efficient\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"competent\" wordnet_id=\"a-00512130\" pos=\"JJ\" sense=\"legally qualified or sufficient\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"complained\" wordnet_id=\"\" pos=\"VB\" polarity=\"-0.3\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"complaint\" wordnet_id=\"n-7208708\" pos=\"NN\" sense=\"an expression of grievance or resentment\" polarity=\"-0.3\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"complete\" cornetto_synset_id=\"n_a-533538\" wordnet_id=\"a-00520214\" pos=\"JJ\" sense=\"having every necessary or normal part or component or step\" polarity=\"0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"complex\" cornetto_synset_id=\"d_a-9348\" wordnet_id=\"a-02176178\" pos=\"JJ\" sense=\"complicated in structure\" polarity=\"-0.3\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"complicated\" wordnet_id=\"a-02177584\" pos=\"JJ\" sense=\"difficult to analyze or understand\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"complimentary\" cornetto_synset_id=\"n_a-511409\" wordnet_id=\"a-01710260\" pos=\"JJ\" sense=\"costing nothing\" polarity=\"0.3\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"comprehensible\" cornetto_synset_id=\"n_a-503401\" wordnet_id=\"a-00532892\" pos=\"JJ\" sense=\"capable of being comprehended or understood\" polarity=\"0.4\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"concavo-convex\" cornetto_synset_id=\"d_a-9198\" wordnet_id=\"a-00536416\" pos=\"JJ\" sense=\"concave on one side and convex on the other with the concavity being greater than the convexity\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"conceivable\" cornetto_synset_id=\"n_a-519143\" wordnet_id=\"a-02418249\" pos=\"JJ\" sense=\"capable of being imagined\" polarity=\"0.1\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"conceptional\" cornetto_synset_id=\"n_a-532913\" wordnet_id=\"a-00012071\" pos=\"JJ\" sense=\"being of the nature of a notion or concept\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"concise\" cornetto_synset_id=\"n_a-526554\" wordnet_id=\"a-00546646\" pos=\"JJ\" sense=\"expressing much in few words\" polarity=\"0.1\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"concrete\" cornetto_synset_id=\"n_a-505885\" wordnet_id=\"a-00013160\" pos=\"JJ\" sense=\"capable of being perceived by the senses\" polarity=\"0.1\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"concrete\" cornetto_synset_id=\"n_a-533395\" wordnet_id=\"a-00013160\" pos=\"JJ\" sense=\"capable of being perceived by the senses\" polarity=\"0.2\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"confident\" cornetto_synset_id=\"n_a-535475\" wordnet_id=\"a-00306909\" pos=\"JJ\" sense=\"not liable to error in judgment or action\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"confident\" wordnet_id=\"a-00337172\" pos=\"JJ\" sense=\"persuaded of\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"confident\" wordnet_id=\"a-00338817\" pos=\"JJ\" sense=\"having or marked by confidence or assurance\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"confirmed\" cornetto_synset_id=\"n_a-522411\" wordnet_id=\"a-00347571\" pos=\"JJ\" sense=\"of persons\" polarity=\"0.4\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"confused\" cornetto_synset_id=\"n_a-521272\" wordnet_id=\"a-00465221\" pos=\"JJ\" sense=\"lacking orderly continuity\" polarity=\"-0.4\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"confusing\" wordnet_id=\"a-00430756\" pos=\"JJ\" sense=\"lacking clarity of meaning\" polarity=\"-0.3\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"confusing\" wordnet_id=\"a-01685706\" pos=\"JJ\" sense=\"causing confusion or disorientation\" polarity=\"-0.3\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"conscious\" cornetto_synset_id=\"n_a-503988\" wordnet_id=\"a-00570590\" pos=\"JJ\" sense=\"knowing and perceiving\" polarity=\"0.1\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"consecrated\" cornetto_synset_id=\"d_a-9328\" wordnet_id=\"a-02054310\" pos=\"JJ\" sense=\"made or declared or believed to be holy\" polarity=\"0.2\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"considerable\" cornetto_synset_id=\"c_645\" wordnet_id=\"a-00624026\" pos=\"JJ\" sense=\"large or relatively large in number or amount or extent or degree\" polarity=\"0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"considerable\" cornetto_synset_id=\"d_a-9321\" wordnet_id=\"a-00624026\" pos=\"JJ\" sense=\"large or relatively large in number or amount or extent or degree\" polarity=\"0.1\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"consistent\" cornetto_synset_id=\"n_a-524375\" wordnet_id=\"a-00464513\" pos=\"JJ\" sense=\"marked by an orderly, logical, and aesthetically consistent relation of parts\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"consistent\" wordnet_id=\"a-00576680\" pos=\"JJ\" sense=\"(sometimes followed by 'with') in agreement or consistent or reliable\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"consistent\" wordnet_id=\"a-01200095\" pos=\"JJ\" sense=\"the same throughout in structure or composition\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"consistent\" wordnet_id=\"a-01867996\" pos=\"JJ\" sense=\"capable of being reproduced\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"constant\" cornetto_synset_id=\"n_a-508144\" wordnet_id=\"a-00595299\" pos=\"JJ\" sense=\"uninterrupted in time and indefinitely long continuing\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"constant\" wordnet_id=\"a-00583239\" pos=\"JJ\" sense=\"steadfast in purpose or devotion or affection\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"constant\" wordnet_id=\"a-02506029\" pos=\"JJ\" sense=\"unvarying in nature\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"consummate\" cornetto_synset_id=\"n_a-518477\" wordnet_id=\"a-02226979\" pos=\"JJ\" sense=\"having or revealing supreme mastery or skill\" polarity=\"0.9\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"consummate\" cornetto_synset_id=\"n_a-533118\" wordnet_id=\"a-02226979\" pos=\"JJ\" sense=\"having or revealing supreme mastery or skill\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"contemporary\" wordnet_id=\"a-00667079\" pos=\"JJ\" sense=\"belonging to the present time\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"contemporary\" wordnet_id=\"a-01536094\" pos=\"JJ\" sense=\"characteristic of the present\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"contemporary\" wordnet_id=\"a-02378872\" pos=\"JJ\" sense=\"occurring in the same period of time\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"contestable\" cornetto_synset_id=\"n_a-531602\" wordnet_id=\"a-00590390\" pos=\"JJ\" sense=\"capable of being contested\" polarity=\"-0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"contingent\" cornetto_synset_id=\"n_a-508594\" wordnet_id=\"a-00341933\" pos=\"JJ\" sense=\"uncertain because of uncontrollable circumstances\" polarity=\"-0.1\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"contrived\" cornetto_synset_id=\"n_a-504613\" wordnet_id=\"a-00073465\" pos=\"JJ\" sense=\"artificially formal\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"contrived\" wordnet_id=\"a-01797394\" pos=\"JJ\" sense=\"showing effects of planning or manipulation\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"controversial\" cornetto_synset_id=\"n_a-522093\" wordnet_id=\"a-00601783\" pos=\"JJ\" sense=\"marked by or capable of arousing controversy\" polarity=\"0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"controversial\" cornetto_synset_id=\"n_a-522093\" wordnet_id=\"a-00601783\" pos=\"JJ\" sense=\"marked by or capable of arousing controversy\" polarity=\"0.7\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"conventional\" cornetto_synset_id=\"n_a-523636\" wordnet_id=\"a-01042703\" pos=\"JJ\" sense=\"rigidly formal or bound by convention\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"conventional\" wordnet_id=\"a-00605516\" pos=\"JJ\" sense=\"following accepted customs and proprieties\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"conventional\" wordnet_id=\"a-00607421\" pos=\"JJ\" sense=\"unimaginative and conformist\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"conventional\" wordnet_id=\"a-00610861\" pos=\"JJ\" sense=\"(weapons) using energy for propulsion or destruction that is not nuclear energy\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"conventional\" wordnet_id=\"a-00611281\" pos=\"JJ\" sense=\"in accord with or being a tradition or practice accepted from the past\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"conventional\" wordnet_id=\"a-01690606\" pos=\"JJ\" sense=\"conforming with accepted standards\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"conventional\" wordnet_id=\"a-01980796\" pos=\"JJ\" sense=\"represented in simplified or symbolic form\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"convex\" cornetto_synset_id=\"n_a-524566\" wordnet_id=\"a-00537339\" pos=\"JJ\" sense=\"curving or bulging outward\" polarity=\"0.2\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"convincing\" wordnet_id=\"a-00614990\" pos=\"JJ\" sense=\"causing one to believe the truth of something\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"cool\" cornetto_synset_id=\"d_a-9464\" wordnet_id=\"a-00971660\" pos=\"JJ\" sense=\"fashionable and attractive at the time\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"cool\" cornetto_synset_id=\"n_a-515498\" wordnet_id=\"a-02529945\" pos=\"JJ\" sense=\"neither warm nor very cold\" polarity=\"0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"coriaceous\" cornetto_synset_id=\"n_a-530127\" wordnet_id=\"a-02446070\" pos=\"JJ\" sense=\"resembling or made to resemble leather\" polarity=\"-0.3\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"corporate\" cornetto_synset_id=\"n_a-506088\" wordnet_id=\"a-01670669\" pos=\"JJ\" sense=\"organized and maintained as a legal corporation\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"corporate\" cornetto_synset_id=\"n_a-513824\" wordnet_id=\"a-02984781\" pos=\"JJ\" sense=\"of or belonging to a corporation\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"corporate\" wordnet_id=\"a-00630466\" pos=\"JJ\" sense=\"possessing or existing in bodily form\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"corporate\" wordnet_id=\"a-02112701\" pos=\"JJ\" sense=\"done by or characteristic of individuals acting together\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"corpulent\" cornetto_synset_id=\"d_a-9231\" wordnet_id=\"a-00987180\" pos=\"JJ\" sense=\"excessively fat\" polarity=\"-0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"corrupt\" cornetto_synset_id=\"d_a-9219\" wordnet_id=\"a-00620731\" pos=\"JJ\" sense=\"lacking in integrity\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"corrupt\" wordnet_id=\"a-01070716\" pos=\"JJ\" sense=\"touched by rot or decay\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"corrupt\" wordnet_id=\"a-01752792\" pos=\"JJ\" sense=\"containing errors or alterations\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"corrupt\" wordnet_id=\"a-02319129\" pos=\"JJ\" sense=\"not straight\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"corruptible\" cornetto_synset_id=\"n_a-520969\" wordnet_id=\"a-00621207\" pos=\"JJ\" sense=\"capable of being corrupted\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"cosmopolitan\" cornetto_synset_id=\"n_a-534652\" wordnet_id=\"a-00527188\" pos=\"JJ\" sense=\"of worldwide scope or applicability\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"cosmopolitan\" cornetto_synset_id=\"n_a-534652\" wordnet_id=\"a-00527188\" pos=\"JJ\" sense=\"of worldwide scope or applicability\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"countless\" cornetto_synset_id=\"n_a-521120\" wordnet_id=\"a-00301951\" pos=\"JJ\" sense=\"too numerous to be counted\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"courteous\" cornetto_synset_id=\"n_a-520837\" wordnet_id=\"a-00641460\" pos=\"JJ\" sense=\"exhibiting courtesy and politeness\" polarity=\"0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"cow\" wordnet_id=\"n-1887787\" pos=\"NN\" sense=\"mature female of mammals of which the male is called 'bull'\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"cow\" wordnet_id=\"n-2403454\" pos=\"NN\" sense=\"female of domestic cattle: 'moo-cow' is a child's term\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"cow\" wordnet_id=\"n-9972587\" pos=\"NN\" sense=\"a large unpleasant woman\" polarity=\"-0.4\" subjectivity=\"0.5\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"cozy\" cornetto_synset_id=\"d_a-9353\" wordnet_id=\"a-00477284\" pos=\"JJ\" sense=\"enjoying or affording comforting warmth and shelter especially in a small space\" polarity=\"0.2\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"cozy\" cornetto_synset_id=\"n_a-527962\" wordnet_id=\"a-00477284\" pos=\"JJ\" sense=\"enjoying or affording comforting warmth and shelter especially in a small space\" polarity=\"-0.6\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"crafty\" cornetto_synset_id=\"n_a-510849\" wordnet_id=\"a-00148078\" pos=\"JJ\" sense=\"marked by skill in deception\" polarity=\"0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"crafty\" cornetto_synset_id=\"n_a-520935\" wordnet_id=\"a-00148078\" pos=\"JJ\" sense=\"marked by skill in deception\" polarity=\"0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"crap\" wordnet_id=\"n-14854581\" pos=\"NN\" sense=\"obscene terms for feces\" polarity=\"-0.8\" subjectivity=\"0.8\" intensity=\"1.0\" label=\"profanity\" confidence=\"0.9\" />\n<word form=\"crazy\" cornetto_synset_id=\"n_a-509995\" wordnet_id=\"a-01836766\" pos=\"JJ\" sense=\"foolish\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"creative\" wordnet_id=\"a-00585202\" pos=\"JJ\" sense=\"promoting construction or creation\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"creative\" wordnet_id=\"a-00643250\" pos=\"JJ\" sense=\"having the ability or power to create\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"credible\" cornetto_synset_id=\"d_a-9295\" wordnet_id=\"a-00644839\" pos=\"JJ\" sense=\"capable of being believed\" polarity=\"0.4\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"creepy\" wordnet_id=\"a-00195191\" pos=\"JJ\" sense=\"causing a sensation as of things crawling on your skin\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"creepy\" wordnet_id=\"a-01625760\" pos=\"JJ\" sense=\"annoying and unpleasant\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"criminal\" cornetto_synset_id=\"n_a-518990\" wordnet_id=\"a-01402763\" pos=\"JJ\" sense=\"involving or being or having the nature of a crime\" polarity=\"-0.6\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"criminal\" cornetto_synset_id=\"n_a-529626\" wordnet_id=\"a-01402763\" pos=\"JJ\" sense=\"involving or being or having the nature of a crime\" polarity=\"-0.2\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"crisp\" cornetto_synset_id=\"n_a-510036\" wordnet_id=\"a-01030372\" pos=\"JJ\" sense=\"(of hair) in small tight curls\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"crisp\" cornetto_synset_id=\"n_a-516585\" wordnet_id=\"a-00547641\" pos=\"JJ\" sense=\"brief and to the point\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"crisp\" cornetto_synset_id=\"n_a-526929\" wordnet_id=\"a-00780352\" pos=\"JJ\" sense=\"(of something seen or heard) clearly defined\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"crisp\" wordnet_id=\"a-01068104\" pos=\"JJ\" sense=\"pleasingly firm and fresh\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"crisp\" wordnet_id=\"a-01252714\" pos=\"JJ\" sense=\"pleasantly cold and invigorating\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"crisp\" wordnet_id=\"a-02446931\" pos=\"JJ\" sense=\"tender and brittle\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"critical\" cornetto_synset_id=\"n_a-516167\" wordnet_id=\"a-00649586\" pos=\"JJ\" sense=\"characterized by careful evaluation and judgment\" polarity=\"0.2\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"critical\" cornetto_synset_id=\"n_a-516169\" wordnet_id=\"a-00647542\" pos=\"JJ\" sense=\"marked by a tendency to find and call attention to errors and flaws\" polarity=\"-0.2\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"crooked\" cornetto_synset_id=\"n_a-516188\" wordnet_id=\"a-02311544\" pos=\"JJ\" sense=\"having or marked by bends or angles\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"cross\" cornetto_synset_id=\"n_a-507846\" wordnet_id=\"a-01445917\" pos=\"JJ\" sense=\"extending or lying across\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"crucial\" wordnet_id=\"a-00655779\" pos=\"JJ\" sense=\"of extreme importance\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"crucial\" wordnet_id=\"a-01276150\" pos=\"JJ\" sense=\"of the greatest importance\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"crucial\" wordnet_id=\"a-01487943\" pos=\"JJ\" sense=\"having crucial relevance\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"cruddy\" cornetto_synset_id=\"n_a-534008\" wordnet_id=\"a-00425313\" pos=\"JJ\" sense=\"characterized by obscenity\" polarity=\"-0.9\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"crude\" cornetto_synset_id=\"n_a-523583\" wordnet_id=\"a-00683531\" pos=\"JJ\" sense=\"conspicuously and tastelessly indecent\" polarity=\"-0.7\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"cruel\" cornetto_synset_id=\"c_182\" wordnet_id=\"a-01263013\" pos=\"JJ\" sense=\"(of persons or their actions) able or disposed to inflict pain or suffering\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"crushed\" wordnet_id=\"a-2240668\" pos=\"JJ\" sense=\"treated so as to have a permanently wrinkled appearance\" polarity=\"-0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"crushing\" cornetto_synset_id=\"n_a-522429\" wordnet_id=\"a-00587697\" pos=\"JJ\" sense=\"physically or spiritually devastating\" polarity=\"0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"crying\" cornetto_synset_id=\"n_a-511570\" wordnet_id=\"a-00580039\" pos=\"JJ\" sense=\"conspicuously and outrageously bad or reprehensible\" polarity=\"-0.2\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"culinary\" cornetto_synset_id=\"n_a-506204\" wordnet_id=\"a-02707659\" pos=\"JJ\" sense=\"of or relating to or used in cooking\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"cultural\" cornetto_synset_id=\"n_a-506208\" wordnet_id=\"a-02248693\" pos=\"JJ\" sense=\"denoting or deriving from or distinctive of the ways of living built up by a group of people\" polarity=\"0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"cunning\" cornetto_synset_id=\"n_a-530216\" wordnet_id=\"a-00167278\" pos=\"JJ\" sense=\"attractive especially by means of smallness or prettiness or quaintness\" polarity=\"0.0\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"curious\" cornetto_synset_id=\"n_a-520024\" wordnet_id=\"a-00664449\" pos=\"JJ\" sense=\"eager to investigate and learn or learn more (sometimes about others' concerns)\" polarity=\"-0.1\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"current\" cornetto_synset_id=\"n_a-510863\" wordnet_id=\"a-00666058\" pos=\"JJ\" sense=\"occurring in or belonging to the present time\" polarity=\"0.0\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"cursive\" cornetto_synset_id=\"n_a-506240\" wordnet_id=\"a-02285035\" pos=\"JJ\" sense=\"having successive letter joined together\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"cushy\" cornetto_synset_id=\"n_a-532549\" wordnet_id=\"a-00750054\" pos=\"JJ\" sense=\"not burdensome or demanding\" polarity=\"0.9\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"cute\" cornetto_synset_id=\"n_a-532620\" wordnet_id=\"a-00167278\" pos=\"JJ\" sense=\"attractive especially by means of smallness or prettiness or quaintness\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"cute\" wordnet_id=\"a-00148642\" pos=\"JJ\" sense=\"obviously contrived to charm\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"cutting\" cornetto_synset_id=\"n_a-512119\" wordnet_id=\"a-01374004\" pos=\"JJ\" sense=\"(of speech) harsh or hurtful in tone or character\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"cynical\" cornetto_synset_id=\"d_a-9220\" wordnet_id=\"a-02463582\" pos=\"JJ\" sense=\"believing the worst of human nature and motives\" polarity=\"-0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"daily\" wordnet_id=\"a-01044557\" pos=\"JJ\" sense=\"appropriate for ordinary or routine occasions\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"daily\" wordnet_id=\"a-01968165\" pos=\"JJ\" sense=\"of or belonging to or occurring every day\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"dainty\" cornetto_synset_id=\"n_a-512200\" wordnet_id=\"a-02396578\" pos=\"JJ\" sense=\"especially pleasing to the taste\" polarity=\"0.9\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"dainty\" cornetto_synset_id=\"n_a-512200\" wordnet_id=\"a-02396578\" pos=\"JJ\" sense=\"especially pleasing to the taste\" polarity=\"0.9\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"dangerous\" cornetto_synset_id=\"c_292\" wordnet_id=\"a-00651039\" pos=\"JJ\" sense=\"causing fear or anxiety by threatening great harm\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"dangerous\" cornetto_synset_id=\"n_a-510726\" wordnet_id=\"a-02058794\" pos=\"JJ\" sense=\"involving or causing danger or risk\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"dark\" cornetto_synset_id=\"d_a-9235\" wordnet_id=\"a-00273082\" pos=\"JJ\" sense=\"devoid of or deficient in light or brightness\" polarity=\"-0.3\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"dark\" cornetto_synset_id=\"n_a-507208\" wordnet_id=\"a-00409440\" pos=\"JJ\" sense=\"(used of color) having a dark hue\" polarity=\"0.0\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"dazed\" cornetto_synset_id=\"n_a-534205\" wordnet_id=\"a-00875962\" pos=\"JJ\" sense=\"stunned or confused and slow to react (as from blows or drunkenness or exhaustion)\" polarity=\"-0.5\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"dazzling\" cornetto_synset_id=\"n_a-515368\" wordnet_id=\"a-00280844\" pos=\"JJ\" sense=\"shining intensely\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"dazzling\" wordnet_id=\"a-01283787\" pos=\"JJ\" sense=\"amazingly impressive\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"dead\" cornetto_synset_id=\"d_a-9236\" wordnet_id=\"a-00095280\" pos=\"JJ\" sense=\"no longer having or seeming to have or expecting to have life\" polarity=\"-0.2\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"deadly\" cornetto_synset_id=\"n_a-507107\" wordnet_id=\"a-00993885\" pos=\"JJ\" sense=\"of an instrument of certain death\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"deadly\" cornetto_synset_id=\"n_a-527968\" wordnet_id=\"a-00045888\" pos=\"JJ\" sense=\"(of a disease) having a rapid course and violent effect\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"deadly\" cornetto_synset_id=\"n_a-529268\" wordnet_id=\"a-00993667\" pos=\"JJ\" sense=\"causing or capable of causing death\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"deadly\" wordnet_id=\"a-01611329\" pos=\"JJ\" sense=\"exceedingly harmful\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"deadly\" wordnet_id=\"a-01721691\" pos=\"JJ\" sense=\"involving loss of divine grace or spiritual death\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"deadly\" wordnet_id=\"a-02449952\" pos=\"JJ\" sense=\"extremely poisonous or injurious\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"deadpan\" cornetto_synset_id=\"n_a-516876\" wordnet_id=\"a-00501313\" pos=\"JJ\" sense=\"deliberately impassive in manner\" polarity=\"-0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"deadpan\" cornetto_synset_id=\"n_a-516876\" wordnet_id=\"a-00501313\" pos=\"JJ\" sense=\"deliberately impassive in manner\" polarity=\"-0.6\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"debauched\" cornetto_synset_id=\"n_a-523199\" wordnet_id=\"a-01549568\" pos=\"JJ\" sense=\"unrestrained by convention or morality\" polarity=\"-0.8\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"decent\" cornetto_synset_id=\"d_a-9402\" wordnet_id=\"a-01538583\" pos=\"JJ\" sense=\"decently clothed\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"decent\" cornetto_synset_id=\"n_a-510405\" wordnet_id=\"a-01878870\" pos=\"JJ\" sense=\"according with custom or propriety\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"decent\" wordnet_id=\"a-00682932\" pos=\"JJ\" sense=\"conforming to conventions of sexual behavior\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"decent\" wordnet_id=\"a-01538311\" pos=\"JJ\" sense=\"observing conventional sexual mores in speech or behavior or dress\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"decent\" wordnet_id=\"a-01993408\" pos=\"JJ\" sense=\"socially or conventionally correct\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"decent\" wordnet_id=\"a-02336109\" pos=\"JJ\" sense=\"sufficient for the purpose\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"decreased\" cornetto_synset_id=\"n_a-503624\" wordnet_id=\"a-00881735\" pos=\"JJ\" sense=\"made less in size or amount or degree\" polarity=\"-0.4\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"deep\" cornetto_synset_id=\"n_a-506859\" wordnet_id=\"a-02561391\" pos=\"JJ\" sense=\"extending relatively far inward\" polarity=\"0.0\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"defecates\" wordnet_id=\"\" pos=\"VBZ\" sense=\"\" polarity=\"-0.1\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"defenseless\" cornetto_synset_id=\"n_a-534459\" wordnet_id=\"a-00143376\" pos=\"JJ\" sense=\"lacking weapons for self-defense\" polarity=\"-0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"deficient\" cornetto_synset_id=\"n_a-502540\" wordnet_id=\"a-00052012\" pos=\"JJ\" sense=\"inadequate in amount or degree\" polarity=\"-0.4\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"deficient\" cornetto_synset_id=\"n_a-521653\" wordnet_id=\"a-02297409\" pos=\"JJ\" sense=\"falling short of some prescribed norm\" polarity=\"-0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"definite\" cornetto_synset_id=\"n_a-529077\" wordnet_id=\"a-00335768\" pos=\"JJ\" sense=\"known for certain\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"definite\" wordnet_id=\"a-00700451\" pos=\"JJ\" sense=\"precise\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"definitely\" wordnet_id=\"r-00036935\" pos=\"RB\" sense=\"without question and beyond doubt\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"2.0\" confidence=\"0.9\" />\n<word form=\"deft\" cornetto_synset_id=\"n_a-511953\" wordnet_id=\"a-00062367\" pos=\"JJ\" sense=\"skillful in physical movements\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"delicate\" cornetto_synset_id=\"c_565\" wordnet_id=\"a-00709215\" pos=\"JJ\" sense=\"easily broken or damaged or destroyed\" polarity=\"-0.1\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"delicate\" cornetto_synset_id=\"n_a-511757\" wordnet_id=\"a-00746994\" pos=\"JJ\" sense=\"difficult to handle\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"delicious\" cornetto_synset_id=\"n_a-525760\" wordnet_id=\"a-01807964\" pos=\"JJ\" sense=\"greatly pleasing or entertaining\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"delicious\" wordnet_id=\"a-02396720\" pos=\"JJ\" sense=\"extremely pleasing to the sense of taste\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"delighted\" wordnet_id=\"a-00865620\" pos=\"JJ\" sense=\"filled with wonder and delight\" polarity=\"0.7\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"delighted\" wordnet_id=\"a-01805730\" pos=\"JJ\" sense=\"greatly pleased\" polarity=\"0.7\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"delightful\" cornetto_synset_id=\"n_a-525760\" wordnet_id=\"a-01807964\" pos=\"JJ\" sense=\"greatly pleasing or entertaining\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"deluxe\" cornetto_synset_id=\"d_a-9393\" wordnet_id=\"a-00850053\" pos=\"JJ\" sense=\"elegant and sumptuous\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"denominational\" cornetto_synset_id=\"n_a-505556\" wordnet_id=\"a-02710825\" pos=\"JJ\" sense=\"relating to or characteristic of a particular religious denomination\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"deplorable\" cornetto_synset_id=\"n_a-507607\" wordnet_id=\"a-01126841\" pos=\"JJ\" sense=\"bad\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"depress\" wordnet_id=\"v-1814396\" pos=\"VB\" sense=\"lower someone's spirits\" polarity=\"-0.2\" subjectivity=\"0.1\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"depress\" wordnet_id=\"v-1973932\" pos=\"VB\" sense=\"lower (prices or markets)\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"depress\" wordnet_id=\"v-225438\" pos=\"VB\" sense=\"lessen the activity or force of\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"depressing\" cornetto_synset_id=\"n_a-528326\" wordnet_id=\"a-00364479\" pos=\"JJ\" sense=\"causing sad feelings of gloom and inadequacy\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"deserving\" cornetto_synset_id=\"n_a-534093\" wordnet_id=\"a-02586206\" pos=\"JJ\" sense=\"worthy of being treated in a particular way\" polarity=\"0.6\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"desperate\" cornetto_synset_id=\"d_a-9340\" wordnet_id=\"a-00263463\" pos=\"JJ\" sense=\"showing extreme courage\" polarity=\"-0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"destroy\" wordnet_id=\"v-1619929\" pos=\"VB\" sense=\"do away with, cause the destruction or undoing of\" polarity=\"-0.2\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"destroying\" wordnet_id=\"\" pos=\"VB\" polarity=\"-0.2\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"destructive\" cornetto_synset_id=\"n_a-520118\" wordnet_id=\"a-00586183\" pos=\"JJ\" sense=\"causing destruction or much damage\" polarity=\"-0.6\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"detailed\" cornetto_synset_id=\"d_a-9558\" wordnet_id=\"a-00310433\" pos=\"JJ\" sense=\"developed or executed with care and in minute detail\" polarity=\"0.4\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"detailed\" cornetto_synset_id=\"n_a-509831\" wordnet_id=\"a-00310433\" pos=\"JJ\" sense=\"developed or executed with care and in minute detail\" polarity=\"0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"devastating\" cornetto_synset_id=\"n_a-522429\" wordnet_id=\"a-00587697\" pos=\"JJ\" sense=\"physically or spiritually devastating\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"devastating\" wordnet_id=\"a-00586617\" pos=\"JJ\" sense=\"wreaking or capable of wreaking complete destruction\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"devastating\" wordnet_id=\"a-01995047\" pos=\"JJ\" sense=\"making light of\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"developed\" cornetto_synset_id=\"n_a-521523\" wordnet_id=\"a-00741867\" pos=\"JJ\" sense=\"being changed over time so as to be e.g. stronger or more complete or more useful\" polarity=\"0.1\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"devoid\" wordnet_id=\"\" pos=\"\" sense=\"\" polarity=\"-0.1\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"dextral\" cornetto_synset_id=\"d_a-9501\" wordnet_id=\"a-00742879\" pos=\"JJ\" sense=\"of or on the right\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"dialectal\" cornetto_synset_id=\"n_a-506784\" wordnet_id=\"a-03004561\" pos=\"JJ\" sense=\"belonging to or characteristic of a dialect\" polarity=\"-0.2\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"diaphanous\" cornetto_synset_id=\"n_a-509141\" wordnet_id=\"a-02413390\" pos=\"JJ\" sense=\"so thin as to transmit light\" polarity=\"-0.2\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"didactic\" cornetto_synset_id=\"n_a-503950\" wordnet_id=\"a-01324131\" pos=\"JJ\" sense=\"instructive (especially excessively)\" polarity=\"-0.5\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"different\" cornetto_synset_id=\"n_a-502251\" wordnet_id=\"a-00490413\" pos=\"JJ\" sense=\"differing from all others\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"different\" cornetto_synset_id=\"n_a-521072\" wordnet_id=\"a-01410363\" pos=\"JJ\" sense=\"marked by dissimilarity\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"different\" wordnet_id=\"a-02064745\" pos=\"JJ\" sense=\"unlike in nature or quality or form or degree\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"different\" wordnet_id=\"a-02070030\" pos=\"JJ\" sense=\"distinctly separate from the first\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"different\" wordnet_id=\"a-02070342\" pos=\"JJ\" sense=\"distinct or separate\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"difficult\" wordnet_id=\"a-00744916\" pos=\"JJ\" sense=\"not easy\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"difficult\" wordnet_id=\"a-01475282\" pos=\"JJ\" sense=\"hard to control\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"diffident\" cornetto_synset_id=\"n_a-532538\" wordnet_id=\"a-00339941\" pos=\"JJ\" sense=\"lacking self-confidence\" polarity=\"-0.2\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"digital\" cornetto_synset_id=\"n_a-506928\" wordnet_id=\"a-02713096\" pos=\"JJ\" sense=\"relating to or performed with the fingers\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"dim\" cornetto_synset_id=\"n_a-535267\" wordnet_id=\"a-00275290\" pos=\"JJ\" sense=\"lacking in light\" polarity=\"0.1\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"dim-witted\" cornetto_synset_id=\"c_579\" wordnet_id=\"a-01841390\" pos=\"JJ\" sense=\"lacking mental capacity and subtlety\" polarity=\"-0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"direct\" cornetto_synset_id=\"n_a-517075\" wordnet_id=\"a-00914808\" pos=\"JJ\" sense=\"in precisely the same words used by a writer or speaker\" polarity=\"0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"dirty\" cornetto_synset_id=\"d_a-9604\" wordnet_id=\"a-00419289\" pos=\"JJ\" sense=\"soiled or likely to soil with dirt or grime\" polarity=\"-0.6\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"disabled\" cornetto_synset_id=\"n_a-509936\" wordnet_id=\"a-01019283\" pos=\"JJ\" sense=\"incapable of functioning as a consequence of injury or illness\" polarity=\"-0.2\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"disappointed\" wordnet_id=\"\" pos=\"JJ\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"disappointed\" wordnet_id=\"a-02333976\" pos=\"JJ\" sense=\"disappointingly unsuccessful\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"disappointing\" cornetto_synset_id=\"n_a-520738\" wordnet_id=\"a-02082611\" pos=\"JJ\" sense=\"not up to expectations\" polarity=\"-0.6\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"disappointment\" wordnet_id=\"n-7540602\" pos=\"NN\" sense=\"a feeling of dissatisfaction that results when your expectations are not realized\" polarity=\"-0.6\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"disastrous\" wordnet_id=\"\" pos=\"JJ\" sense=\"\" polarity=\"-0.7\" subjectivity=\"0.8\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"disbelieving\" cornetto_synset_id=\"n_a-526640\" wordnet_id=\"a-00647247\" pos=\"JJ\" sense=\"denying or questioning the tenets of especially a religion\" polarity=\"-0.1\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"discourteous\" cornetto_synset_id=\"c_340\" wordnet_id=\"a-00640283\" pos=\"JJ\" sense=\"showing no courtesy\" polarity=\"-0.7\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"discourteous\" cornetto_synset_id=\"n_a-521675\" wordnet_id=\"a-00640283\" pos=\"JJ\" sense=\"showing no courtesy\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"diseased\" cornetto_synset_id=\"d_a-9627\" wordnet_id=\"a-01176246\" pos=\"JJ\" sense=\"caused by or altered by or manifesting disease or pathology\" polarity=\"-0.5\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"diseased\" cornetto_synset_id=\"n_a-535644\" wordnet_id=\"a-01176246\" pos=\"JJ\" sense=\"caused by or altered by or manifesting disease or pathology\" polarity=\"-0.7\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"disgusted\" wordnet_id=\"a-1806677\" pos=\"JJ\" sense=\"having a strong distaste from surfeit\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"disgusting\" wordnet_id=\"a-01625893\" pos=\"JJ\" sense=\"highly offensive\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"dishonest\" wordnet_id=\"a-1222884\" pos=\"JJ\" sense=\"deceptive or fraudulent\" polarity=\"-0.3\" subjectivity=\"0.5\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"disliked\" wordnet_id=\"a-1461455\" pos=\"JJ\" sense=\"regarded with aversion\" polarity=\"-0.2\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"dispossessed\" cornetto_synset_id=\"n_a-506356\" wordnet_id=\"a-01050603\" pos=\"JJ\" sense=\"physically or spiritually homeless or deprived of security\" polarity=\"-0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"distant\" cornetto_synset_id=\"n_a-532245\" wordnet_id=\"a-00442917\" pos=\"JJ\" sense=\"located far away spatially\" polarity=\"-0.2\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"distant\" cornetto_synset_id=\"n_a-532249\" wordnet_id=\"a-00450606\" pos=\"JJ\" sense=\"far apart in relevance or relationship or kinship \" polarity=\"0.0\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"distasteful\" wordnet_id=\"a-1716971\" pos=\"JJ\" sense=\"not pleasing in odor or taste\" polarity=\"-0.5\" subjectivity=\"0.7\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"distinct\" cornetto_synset_id=\"n_a-526929\" wordnet_id=\"a-00429016\" pos=\"JJ\" sense=\"clearly or sharply defined to the mind\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"distinct\" wordnet_id=\"a-00701299\" pos=\"JJ\" sense=\"recognizable\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"distinct\" wordnet_id=\"a-00779374\" pos=\"JJ\" sense=\"easy to perceive\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"distinct\" wordnet_id=\"a-02067063\" pos=\"JJ\" sense=\"(often followed by 'from') not alike\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"distinct\" wordnet_id=\"a-02110778\" pos=\"JJ\" sense=\"constituting a separate entity or part\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"distraught\" cornetto_synset_id=\"n_a-534204\" wordnet_id=\"a-00085870\" pos=\"JJ\" sense=\"deeply agitated especially from emotion\" polarity=\"-0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"disturbing\" wordnet_id=\"a-01189386\" pos=\"JJ\" sense=\"causing distress or worry or anxiety\" polarity=\"-0.5\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"diurnal\" cornetto_synset_id=\"n_a-506313\" wordnet_id=\"a-01968033\" pos=\"JJ\" sense=\"having a daily cycle or occurring every day\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"documentary\" cornetto_synset_id=\"n_a-507100\" wordnet_id=\"a-02896789\" pos=\"JJ\" sense=\"relating to or consisting of or derived from documents\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"documentary\" wordnet_id=\"a-01934026\" pos=\"JJ\" sense=\"emphasizing or expressing things as perceived without distortion of personal feelings, insertion of fictional matter, or interpretation\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"domestic\" cornetto_synset_id=\"n_a-513054\" wordnet_id=\"a-01036754\" pos=\"JJ\" sense=\"produced in a particular country\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"done with\" cornetto_synset_id=\"c_586\" wordnet_id=\"a-01003822\" pos=\"JJ\" sense=\"having no further concern with\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"double\" cornetto_synset_id=\"n_a-504166\" wordnet_id=\"a-02217452\" pos=\"JJ\" sense=\"consisting of or involving two parts or components usually in pairs\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"double\" cornetto_synset_id=\"n_a-531549\" wordnet_id=\"a-01385149\" pos=\"JJ\" sense=\"large enough for two\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"double\" wordnet_id=\"a-00896026\" pos=\"JJ\" sense=\"having two meanings with intent to deceive\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"double\" wordnet_id=\"a-01546826\" pos=\"JJ\" sense=\"used of homologous chromosomes associated in pairs in synapsis\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"double\" wordnet_id=\"a-02217241\" pos=\"JJ\" sense=\"twice as great or many\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"double\" wordnet_id=\"a-02217799\" pos=\"JJ\" sense=\"having more than one decidedly dissimilar aspects or qualities\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"double\" wordnet_id=\"a-02220308\" pos=\"JJ\" sense=\"used of flowers having more than the usual number of petals in crowded or overlapping arrangements\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"doubtful\" cornetto_synset_id=\"d_a-9434\" wordnet_id=\"a-00338013\" pos=\"JJ\" sense=\"fraught with uncertainty or doubt\" polarity=\"-0.8\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"dowdy\" cornetto_synset_id=\"n_a-531402\" wordnet_id=\"a-00974519\" pos=\"JJ\" sense=\"primly out of date\" polarity=\"-0.5\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"down\" cornetto_synset_id=\"d_a-9521\" wordnet_id=\"a-00703615\" pos=\"JJ\" sense=\"filled with melancholy and despondency \" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"down\" wordnet_id=\"a-00833737\" pos=\"JJ\" sense=\"not functioning (temporarily or permanently)\" polarity=\"-0.6\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"down\" wordnet_id=\"a-01208492\" pos=\"JJ\" sense=\"shut\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"down\" wordnet_id=\"a-01212867\" pos=\"JJ\" sense=\"lower than previously\" polarity=\"-0.1\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"down\" wordnet_id=\"a-01750617\" pos=\"JJ\" sense=\"understood perfectly\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"down\" wordnet_id=\"a-02061678\" pos=\"JJ\" sense=\"being put out by a strikeout\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"down\" wordnet_id=\"a-02486248\" pos=\"JJ\" sense=\"extending or moving from a higher to a lower place\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"down\" wordnet_id=\"a-02487414\" pos=\"JJ\" sense=\"becoming progressively lower\" polarity=\"-0.1\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"down\" wordnet_id=\"a-02491961\" pos=\"JJ\" sense=\"being or moving lower in position or less in some value\" polarity=\"-0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"drag\" wordnet_id=\"n-114871\" pos=\"NN\" sense=\"the act of dragging (pulling with force)\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"drag\" wordnet_id=\"n-11504898\" pos=\"NN\" sense=\"the phenomenon of resistance to motion through a fluid\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"drag\" wordnet_id=\"n-5206445\" pos=\"NN\" sense=\"something tedious and boring\" polarity=\"-0.3\" subjectivity=\"0.3\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"drag\" wordnet_id=\"n-5690091\" pos=\"NN\" sense=\"something that slows or delays progress\" polarity=\"-0.1\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"drag\" wordnet_id=\"v-1453433\" pos=\"VB\" sense=\"pull, as against a resistance\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"drag\" wordnet_id=\"v-2058756\" pos=\"VB\" sense=\"to lag or linger behind\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"drag\" wordnet_id=\"v-2099544\" pos=\"VB\" sense=\"move slowly and as if with great effort\" polarity=\"-0.2\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"drag\" wordnet_id=\"v-2101789\" pos=\"VB\" sense=\"use a computer mouse to move icons on the screen and select commands from a menu\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"drag\" wordnet_id=\"v-341757\" pos=\"VB\" sense=\"proceed for an extended period of time\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"drag\" wordnet_id=\"v-783689\" pos=\"VB\" sense=\"persuade to come away from something attractive or interesting\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"dramatic\" cornetto_synset_id=\"d_a-9240\" wordnet_id=\"a-00794825\" pos=\"JJ\" sense=\"suitable to or characteristic of drama\" polarity=\"-0.6\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"dramatic\" cornetto_synset_id=\"n_a-507468\" wordnet_id=\"a-02714800\" pos=\"JJ\" sense=\"pertaining to or characteristic of drama\" polarity=\"-0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"dramatic\" cornetto_synset_id=\"n_a-522888\" wordnet_id=\"a-00794825\" pos=\"JJ\" sense=\"suitable to or characteristic of drama\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"dreadful\" cornetto_synset_id=\"n_a-531138\" wordnet_id=\"a-01126291\" pos=\"JJ\" sense=\"exceptionally bad or displeasing\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"dreadful\" cornetto_synset_id=\"n_a-532685\" wordnet_id=\"a-00193799\" pos=\"JJ\" sense=\"causing fear or dread or terror\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"dreadful\" wordnet_id=\"a-01803247\" pos=\"JJ\" sense=\"very unpleasant\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"dried\" cornetto_synset_id=\"n_a-531691\" wordnet_id=\"a-01072382\" pos=\"JJ\" sense=\"preserved by removing natural moisture\" polarity=\"-0.2\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"drowned\" wordnet_id=\"\" pos=\"VBN\" sense=\"\" polarity=\"-0.1\" subjectivity=\"0.1\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"drunk\" wordnet_id=\"a-00797299\" pos=\"JJ\" sense=\"stupefied or excited by a chemical substance (especially alcohol)\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"drunk\" wordnet_id=\"a-00920260\" pos=\"JJ\" sense=\"as if under the influence of alcohol\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"dry\" cornetto_synset_id=\"c_518\" wordnet_id=\"a-02551380\" pos=\"JJ\" sense=\"free from liquid or moisture\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"dry\" cornetto_synset_id=\"c_573\" wordnet_id=\"a-02307729\" pos=\"JJ\" sense=\"lacking interest or stimulation\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"dry\" cornetto_synset_id=\"n_a-507618\" wordnet_id=\"a-01266092\" pos=\"JJ\" sense=\"humorously sarcastic or mocking\" polarity=\"0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"dudsville\" wordnet_id=\"\" pos=\"NNP\" sense=\"\" polarity=\"-0.2\" subjectivity=\"0.7\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"due\" cornetto_synset_id=\"n_a-532324\" wordnet_id=\"a-00136354\" pos=\"JJ\" sense=\"owed and payable immediately or on demand\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"due\" wordnet_id=\"a-00137725\" pos=\"JJ\" sense=\"suitable to or expected in the circumstances\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"due\" wordnet_id=\"a-00171872\" pos=\"JJ\" sense=\"capable of being assigned or credited to\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"due\" wordnet_id=\"a-00929916\" pos=\"JJ\" sense=\"scheduled to arrive\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"duh\" wordnet_id=\"\" pos=\"UH\" sense=\"\" polarity=\"-0.3\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"duhhh\" wordnet_id=\"\" pos=\"UH\" sense=\"\" polarity=\"-0.5\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"duhhhh\" wordnet_id=\"\" pos=\"UH\" sense=\"\" polarity=\"-0.5\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"duuuh\" wordnet_id=\"\" pos=\"UH\" sense=\"\" polarity=\"-0.5\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"dull\" cornetto_synset_id=\"n_a-507469\" wordnet_id=\"a-01345307\" pos=\"JJ\" sense=\"so lacking in interest as to cause mental weariness\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"dull\" cornetto_synset_id=\"n_a-509854\" wordnet_id=\"a-00036998\" pos=\"JJ\" sense=\"(of business) not active or brisk\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"dull\" cornetto_synset_id=\"n_a-509873\" wordnet_id=\"a-00800248\" pos=\"JJ\" sense=\"not having a sharp edge or point\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"dull\" cornetto_synset_id=\"n_a-516003\" wordnet_id=\"a-00806512\" pos=\"JJ\" sense=\"lacking in liveliness or animation\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"dull\" cornetto_synset_id=\"n_a-517461\" wordnet_id=\"a-00462249\" pos=\"JJ\" sense=\"darkened with overcast\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"dull\" cornetto_synset_id=\"n_a-520490\" wordnet_id=\"a-01454985\" pos=\"JJ\" sense=\"being or made softer or less loud or clear\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"dull\" cornetto_synset_id=\"n_a-531914\" wordnet_id=\"a-00283703\" pos=\"JJ\" sense=\"emitting or reflecting very little light\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"dull\" wordnet_id=\"a-00393992\" pos=\"JJ\" sense=\"(of color) very low in saturation\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"dull\" wordnet_id=\"a-00440579\" pos=\"JJ\" sense=\"slow to learn or understand\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"dull\" wordnet_id=\"a-00803971\" pos=\"JJ\" sense=\"not keenly felt\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"dull\" wordnet_id=\"a-02011622\" pos=\"JJ\" sense=\"not clear and resonant\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"dull\" wordnet_id=\"a-02107634\" pos=\"JJ\" sense=\"blunted in responsiveness or sensibility\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"dulls\" wordnet_id=\"\" pos=\"VBZ\" sense=\"\" polarity=\"-0.1\" subjectivity=\"0.1\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"dumb\" wordnet_id=\"a-00151855\" pos=\"JJ\" sense=\"unable to speak because of hereditary deafness\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"dumb\" wordnet_id=\"a-00152004\" pos=\"JJ\" sense=\"lacking the power of human speech\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"dumb\" wordnet_id=\"a-00152629\" pos=\"JJ\" sense=\"temporarily incapable of speaking\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"dumb\" wordnet_id=\"a-00440579\" pos=\"JJ\" sense=\"slow to learn or understand\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"dusty\" cornetto_synset_id=\"n_a-529401\" wordnet_id=\"a-01696346\" pos=\"JJ\" sense=\"covered with a layer of dust\" polarity=\"-0.4\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"dynamic\" cornetto_synset_id=\"n_a-507878\" wordnet_id=\"a-00808191\" pos=\"JJ\" sense=\"characterized by action or forcefulness or force of personality\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"dynamic\" wordnet_id=\"a-00041618\" pos=\"JJ\" sense=\"(used of verbs (e.g. 'to run') and participial adjectives (e.g. 'running' in 'running water')) expressing action rather than a state of being\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"dynamic\" wordnet_id=\"a-02979878\" pos=\"JJ\" sense=\"of or relating to dynamics\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"earlier\" wordnet_id=\"a-00814611\" pos=\"JJ\" sense=\"(comparative and superlative of 'early') more early than\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"early\" cornetto_synset_id=\"n_a-533928\" wordnet_id=\"a-00812952\" pos=\"JJ\" sense=\"at or near the beginning of a period of time or course of events or before the usual or expected time\" polarity=\"0.1\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"easy\" cornetto_synset_id=\"n_a-510235\" wordnet_id=\"a-00749230\" pos=\"JJ\" sense=\"posing no difficulty\" polarity=\"0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"easy\" cornetto_synset_id=\"n_a-510537\" wordnet_id=\"a-00015097\" pos=\"JJ\" sense=\"obtained with little effort or sacrifice, often obtained illegally\" polarity=\"0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"easy\" cornetto_synset_id=\"n_a-533319\" wordnet_id=\"a-00749230\" pos=\"JJ\" sense=\"posing no difficulty\" polarity=\"0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"eccentric\" cornetto_synset_id=\"n_a-508621\" wordnet_id=\"a-00543200\" pos=\"JJ\" sense=\"not having a common center\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"eccentric\" cornetto_synset_id=\"n_a-531732\" wordnet_id=\"a-00608791\" pos=\"JJ\" sense=\"conspicuously or grossly unconventional or unusual\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"ecological\" cornetto_synset_id=\"n_a-518890\" wordnet_id=\"a-02906778\" pos=\"JJ\" sense=\"characterized by the interdependence of living organisms in an environment\" polarity=\"0.4\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"economic\" cornetto_synset_id=\"n_a-507924\" wordnet_id=\"a-02716605\" pos=\"JJ\" sense=\"of or relating to the science of economics\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"economic\" wordnet_id=\"a-00840212\" pos=\"JJ\" sense=\"using the minimum of time or resources necessary for effectiveness\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"economic\" wordnet_id=\"a-01871565\" pos=\"JJ\" sense=\"financially rewarding\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"economic\" wordnet_id=\"a-02577454\" pos=\"JJ\" sense=\"concerned with worldly necessities of life (especially money)\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"economic\" wordnet_id=\"a-02716739\" pos=\"JJ\" sense=\"of or relating to an economy, the system of production and management of material wealth\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"economical\" cornetto_synset_id=\"d_a-9525\" wordnet_id=\"a-02421364\" pos=\"JJ\" sense=\"avoiding waste\" polarity=\"0.3\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"edgy\" cornetto_synset_id=\"n_a-510615\" wordnet_id=\"a-02406370\" pos=\"JJ\" sense=\"being in a tense state\" polarity=\"-0.1\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"edgy\" cornetto_synset_id=\"n_a-535556\" wordnet_id=\"a-02406370\" pos=\"JJ\" sense=\"being in a tense state\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"educational\" wordnet_id=\"a-01324565\" pos=\"JJ\" sense=\"providing knowledge\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"educational\" wordnet_id=\"a-02946221\" pos=\"JJ\" sense=\"relating to the process of education\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"eerie\" wordnet_id=\"a-00968522\" pos=\"JJ\" sense=\"inspiring a feeling of fear\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"eerie\" wordnet_id=\"a-01575299\" pos=\"JJ\" sense=\"suggestive of the supernatural\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"effective\" cornetto_synset_id=\"n_a-507125\" wordnet_id=\"a-00834198\" pos=\"JJ\" sense=\"producing or capable of producing an intended result or having a striking effect\" polarity=\"0.6\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"effing\" wordnet_id=\"\" pos=\"JJ\" polarity=\"-0.5\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"egoistic\" cornetto_synset_id=\"d_a-9625\" wordnet_id=\"a-00101800\" pos=\"JJ\" sense=\"limited to or caring only about yourself and your own needs\" polarity=\"-0.9\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"egoistic\" cornetto_synset_id=\"n_a-508087\" wordnet_id=\"a-00101800\" pos=\"JJ\" sense=\"limited to or caring only about yourself and your own needs\" polarity=\"-0.7\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"elaborate\" cornetto_synset_id=\"n_a-504945\" wordnet_id=\"a-00310433\" pos=\"JJ\" sense=\"developed or executed with care and in minute detail\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"elaborate\" wordnet_id=\"a-01795933\" pos=\"JJ\" sense=\"marked by complexity and richness of detail\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"elect\" cornetto_synset_id=\"n_a-531698\" wordnet_id=\"a-02123579\" pos=\"JJ\" sense=\"selected as the best\" polarity=\"0.8\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"elegant\" wordnet_id=\"a-00849357\" pos=\"JJ\" sense=\"refined and tasteful in appearance or behavior or style\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"elegant\" wordnet_id=\"a-01139613\" pos=\"JJ\" sense=\"displaying effortless beauty and simplicity in movement or execution\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"elegant\" wordnet_id=\"a-01142069\" pos=\"JJ\" sense=\"suggesting taste, ease, and wealth\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"elementary\" cornetto_synset_id=\"d_a-9254\" wordnet_id=\"a-00750296\" pos=\"JJ\" sense=\"easy and not involved or complicated\" polarity=\"0.3\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"emotional\" cornetto_synset_id=\"n_a-508279\" wordnet_id=\"a-00853776\" pos=\"JJ\" sense=\"of more than usual emotion\" polarity=\"0.0\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"emotional\" cornetto_synset_id=\"n_a-508280\" wordnet_id=\"a-00853776\" pos=\"JJ\" sense=\"of more than usual emotion\" polarity=\"0.0\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"empirical\" cornetto_synset_id=\"n_a-524456\" wordnet_id=\"a-00858917\" pos=\"JJ\" sense=\"derived from experiment and observation rather than theory\" polarity=\"0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"empty\" cornetto_synset_id=\"d_a-9379\" wordnet_id=\"a-01086545\" pos=\"JJ\" sense=\"holding or containing nothing\" polarity=\"-0.4\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"empty\" cornetto_synset_id=\"n_a-520215\" wordnet_id=\"a-01269319\" pos=\"JJ\" sense=\"needing nourishment\" polarity=\"0.2\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"endearing\" wordnet_id=\"a-01459755\" pos=\"JJ\" sense=\"lovable especially in a childlike or naive way\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"endless\" cornetto_synset_id=\"n_a-531862\" wordnet_id=\"a-00596211\" pos=\"JJ\" sense=\"having the ends united so as to form a continuous whole\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"endless\" wordnet_id=\"a-01007947\" pos=\"JJ\" sense=\"having no known beginning and presumably no end\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"endless\" wordnet_id=\"a-01008174\" pos=\"JJ\" sense=\"infinitely great in number\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"endless\" wordnet_id=\"a-01439784\" pos=\"JJ\" sense=\"tiresomely long\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"energetic\" wordnet_id=\"a-00873603\" pos=\"JJ\" sense=\"possessing or exerting or displaying energy\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"energetic\" wordnet_id=\"a-00885099\" pos=\"JJ\" sense=\"working hard to promote an enterprise\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"engaging\" cornetto_synset_id=\"n_a-523357\" wordnet_id=\"a-00167671\" pos=\"JJ\" sense=\"attracting or delighting\" polarity=\"0.4\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"english\" cornetto_synset_id=\"n_a-500380\" wordnet_id=\"a-03003344\" pos=\"JJ\" sense=\"of or relating to or characteristic of England or its culture or people\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"english\" wordnet_id=\"a-03003616\" pos=\"JJ\" sense=\"of or relating to the English language\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"engrossing\" wordnet_id=\"\" pos=\"JJ\" polarity=\"0.6\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"enigmatic\" cornetto_synset_id=\"d_a-9495\" wordnet_id=\"a-00102930\" pos=\"JJ\" sense=\"resembling an oracle in obscurity of thought\" polarity=\"0.1\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"enjoy\" wordnet_id=\"v-1820302\" pos=\"VB\" sense=\"derive or receive pleasure from\" polarity=\"0.4\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"enjoyable\" wordnet_id=\"a-01801029\" pos=\"JJ\" sense=\"affording satisfaction or pleasure\" polarity=\"0.5\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"enjoyed\" wordnet_id=\"\" pos=\"VB\" polarity=\"0.5\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"enjoying\" wordnet_id=\"\" pos=\"VB\" polarity=\"0.5\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"enlightening\" cornetto_synset_id=\"n_a-516919\" wordnet_id=\"a-01325777\" pos=\"JJ\" sense=\"tending to increase knowledge or dissipate ignorance\" polarity=\"0.3\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"enormous\" cornetto_synset_id=\"c_267\" wordnet_id=\"a-01385255\" pos=\"JJ\" sense=\"extraordinarily large in size or extent or amount or power or degree\" polarity=\"-0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"enormous\" cornetto_synset_id=\"c_267\" wordnet_id=\"a-01385255\" pos=\"JJ\" sense=\"extraordinarily large in size or extent or amount or power or degree\" polarity=\"0.4\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"enough\" wordnet_id=\"a-02336109\" pos=\"JJ\" sense=\"sufficient for the purpose\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"entertaining\" wordnet_id=\"a-01344344\" pos=\"JJ\" sense=\"agreeably diverting\" polarity=\"0.5\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"enthusiastic\" cornetto_synset_id=\"d_a-9262\" wordnet_id=\"a-00885695\" pos=\"JJ\" sense=\"having or showing great excitement and interest\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"entire\" cornetto_synset_id=\"n_a-502083\" wordnet_id=\"a-00515870\" pos=\"JJ\" sense=\"constituting the undiminished entirety\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"entire\" wordnet_id=\"a-00515380\" pos=\"JJ\" sense=\"constituting the full quantity or extent\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"entire\" wordnet_id=\"a-02137394\" pos=\"JJ\" sense=\"(used of domestic animals) sexually competent\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"entire\" wordnet_id=\"a-02244890\" pos=\"JJ\" sense=\"(of leaves or petals) having a smooth edge\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"epic\" cornetto_synset_id=\"n_a-508404\" wordnet_id=\"a-03015589\" pos=\"JJ\" sense=\"constituting or having to do with or suggestive of a literary epic\" polarity=\"0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"equal\" wordnet_id=\"a-00051045\" pos=\"JJ\" sense=\"having the requisite qualities or resources to meet a task\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"equal\" wordnet_id=\"a-00889831\" pos=\"JJ\" sense=\"having the same quantity, value, or measure as another\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"erotic\" cornetto_synset_id=\"d_a-9264\" wordnet_id=\"a-02132080\" pos=\"JJ\" sense=\"giving sexual pleasure\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"erotic\" cornetto_synset_id=\"n_a-522082\" wordnet_id=\"a-02132080\" pos=\"JJ\" sense=\"giving sexual pleasure\" polarity=\"0.8\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"erroneous\" cornetto_synset_id=\"n_a-509314\" wordnet_id=\"a-00632949\" pos=\"JJ\" sense=\"containing or characterized by error\" polarity=\"-0.5\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"erstwhile\" cornetto_synset_id=\"n_a-522211\" wordnet_id=\"a-01729566\" pos=\"JJ\" sense=\"belonging to some prior time\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"erudite\" cornetto_synset_id=\"n_a-510118\" wordnet_id=\"a-02084358\" pos=\"JJ\" sense=\"having or showing profound knowledge\" polarity=\"0.1\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"especially\" wordnet_id=\"r-00084223\" pos=\"RB\" sense=\"to a distinctly greater extent or degree than is common\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"2.0\" confidence=\"0.9\" />\n<word form=\"essential\" cornetto_synset_id=\"d_a-9349\" wordnet_id=\"a-00900616\" pos=\"JJ\" sense=\"basic and fundamental\" polarity=\"0.0\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"ethical\" cornetto_synset_id=\"n_a-535368\" wordnet_id=\"a-00905386\" pos=\"JJ\" sense=\"conforming to accepted standards of social or professional behavior\" polarity=\"0.2\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"european\" wordnet_id=\"a-02968325\" pos=\"JJ\" sense=\"of or relating to or characteristic of Europe or the people of Europe\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"everyday\" cornetto_synset_id=\"n_a-506314\" wordnet_id=\"a-01674242\" pos=\"JJ\" sense=\"found in the ordinary course of events\" polarity=\"-0.2\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"evident\" cornetto_synset_id=\"n_a-505886\" wordnet_id=\"a-01618376\" pos=\"JJ\" sense=\"clearly revealed to the mind or the senses or judgment\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"evident\" cornetto_synset_id=\"n_a-534100\" wordnet_id=\"a-01287486\" pos=\"JJ\" sense=\"capable of being seen or noticed\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"evil\" cornetto_synset_id=\"n_a-516402\" wordnet_id=\"a-00224515\" pos=\"JJ\" sense=\"having or exerting a malignant influence\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"evil\" wordnet_id=\"a-01131043\" pos=\"JJ\" sense=\"morally bad or wrong\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"evil\" wordnet_id=\"a-02514099\" pos=\"JJ\" sense=\"having the nature of vice\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"exact\" cornetto_synset_id=\"n_a-526930\" wordnet_id=\"a-00631798\" pos=\"JJ\" sense=\"(of ideas, images, representations, expressions) characterized by perfect conformity to fact or truth \" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"exact\" wordnet_id=\"a-00914421\" pos=\"JJ\" sense=\"marked by strict and particular and complete accordance with fact\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"exaggerated\" wordnet_id=\"a-00881177\" pos=\"JJ\" sense=\"enlarged to an abnormal degree\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"exaggerated\" wordnet_id=\"a-01533806\" pos=\"JJ\" sense=\"represented as greater than is true or reasonable\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"excellent\" cornetto_synset_id=\"n_a-513687\" wordnet_id=\"a-02343110\" pos=\"JJ\" sense=\"very good\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"exceptional\" cornetto_synset_id=\"n_a-505164\" wordnet_id=\"a-00488187\" pos=\"JJ\" sense=\"surpassing what is common or usual or expected\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"exceptional\" wordnet_id=\"a-01598859\" pos=\"JJ\" sense=\"deviating widely from a norm of physical or mental ability\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"exceptional\" wordnet_id=\"a-01676026\" pos=\"JJ\" sense=\"far beyond what is usual in magnitude or degree\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"excessive\" wordnet_id=\"a-01533974\" pos=\"JJ\" sense=\"beyond normal limits\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"excessive\" wordnet_id=\"a-02000968\" pos=\"JJ\" sense=\"unrestrained, especially with regard to feelings\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"excited\" wordnet_id=\"a-00085630\" pos=\"JJ\" sense=\"(of persons) excessively affected by emotion\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"excited\" wordnet_id=\"a-00919542\" pos=\"JJ\" sense=\"in an aroused state\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"excited\" wordnet_id=\"a-01928926\" pos=\"JJ\" sense=\"(of e.g. a molecule) made reactive or more reactive\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"excited\" wordnet_id=\"a-02390724\" pos=\"JJ\" sense=\"marked by uncontrolled excitement or emotion\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"exciting\" cornetto_synset_id=\"n_a-528399\" wordnet_id=\"a-00921014\" pos=\"JJ\" sense=\"creating or arousing excitement\" polarity=\"0.3\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"excruciatingly\" wordnet_id=\"\" pos=\"RB\" sense=\"\" polarity=\"-0.1\" subjectivity=\"0.3\" intensity=\"1.3\" reliability=\"0.9\" />\n<word form=\"excuse\" wordnet_id=\"n-6741305\" pos=\"NN\" sense=\"a defense of some offensive behavior or some failure to keep a promise etc.\" polarity=\"-0.1\" subjectivity=\"0.1\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"excuse\" wordnet_id=\"v-893167\" pos=\"VB\" sense=\"excuse, overlook, or make allowances for\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"excuse\" wordnet_id=\"v-893878\" pos=\"VB\" sense=\"grant exemption or release to\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"exhausted\" cornetto_synset_id=\"n_a-531701\" wordnet_id=\"a-02433451\" pos=\"JJ\" sense=\"drained of energy or effectiveness\" polarity=\"-0.4\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"exhausting\" wordnet_id=\"a-837249\" pos=\"JJ\" sense=\"producing exhaustion\" polarity=\"-0.4\" subjectivity=\"0.5\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"exhilarating\" wordnet_id=\"a-1357342\" pos=\"JJ\" sense=\"making lively and cheerful\" polarity=\"0.7\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"exotic\" wordnet_id=\"a-00968730\" pos=\"JJ\" sense=\"strikingly strange or unusual\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"exotic\" wordnet_id=\"a-01035007\" pos=\"JJ\" sense=\"being or from or characteristic of another place or part of the world\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"expected\" wordnet_id=\"a-929567\" pos=\"JJ\" sense=\"considered likely or probable to happen or arrive\" polarity=\"-0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"expensive\" cornetto_synset_id=\"n_a-507824\" wordnet_id=\"a-00933154\" pos=\"JJ\" sense=\"high in price or charging high prices\" polarity=\"-0.5\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"experienced\" cornetto_synset_id=\"n_a-508489\" wordnet_id=\"a-00935500\" pos=\"JJ\" sense=\"having experience\" polarity=\"0.8\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"experimental\" cornetto_synset_id=\"n_a-508670\" wordnet_id=\"a-00860127\" pos=\"JJ\" sense=\"of the nature of or undergoing an experiment\" polarity=\"0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"exploitative\" wordnet_id=\"a-1867768\" pos=\"JJ\" sense=\"tending to exploit or make use of\" polarity=\"-0.3\" subjectivity=\"0.3\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"expressive\" cornetto_synset_id=\"n_a-508691\" wordnet_id=\"a-00497148\" pos=\"JJ\" sense=\"characterized by expression\" polarity=\"0.8\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"exquisite\" cornetto_synset_id=\"n_a-503339\" wordnet_id=\"a-00218837\" pos=\"JJ\" sense=\"of extreme beauty\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"extensive\" cornetto_synset_id=\"n_a-502032\" wordnet_id=\"a-00526062\" pos=\"JJ\" sense=\"broad in scope or content\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"extensive\" wordnet_id=\"a-01386234\" pos=\"JJ\" sense=\"large in spatial extent or range or scope or quantity\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"extensive\" wordnet_id=\"a-01514598\" pos=\"JJ\" sense=\"of agriculture\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"external\" cornetto_synset_id=\"d_a-9351\" wordnet_id=\"a-01037885\" pos=\"JJ\" sense=\"from or between other countries\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"extinct\" cornetto_synset_id=\"n_a-518983\" wordnet_id=\"a-00100213\" pos=\"JJ\" sense=\"being out or having grown cold\" polarity=\"-0.4\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"extra\" cornetto_synset_id=\"n_a-502245\" wordnet_id=\"a-00048858\" pos=\"JJ\" sense=\"further or added\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"extraordinary\" wordnet_id=\"a-00490650\" pos=\"JJ\" sense=\"(of an official) serving an unusual or special function in addition to those of the regular officials\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"extraordinary\" wordnet_id=\"a-01534648\" pos=\"JJ\" sense=\"far more than usual or expected\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"extraordinary\" wordnet_id=\"a-01675190\" pos=\"JJ\" sense=\"beyond what is ordinary or usual\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"extreme\" wordnet_id=\"a-00446107\" pos=\"JJ\" sense=\"most distant in any direction\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"extreme\" wordnet_id=\"a-01511520\" pos=\"JJ\" sense=\"of the greatest possible degree or extent or intensity\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"extreme\" wordnet_id=\"a-01534858\" pos=\"JJ\" sense=\"far beyond a norm in quantity or amount or degree\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"extreme\" wordnet_id=\"a-01535082\" pos=\"JJ\" sense=\"beyond a norm in views or actions\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"exuberant\" cornetto_synset_id=\"n_a-522302\" wordnet_id=\"a-00015247\" pos=\"JJ\" sense=\"produced or growing in extreme abundance\" polarity=\"-0.3\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"exuberant\" cornetto_synset_id=\"n_a-531650\" wordnet_id=\"a-00015247\" pos=\"JJ\" sense=\"produced or growing in extreme abundance\" polarity=\"0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"fabled\" cornetto_synset_id=\"n_a-516946\" wordnet_id=\"a-01935744\" pos=\"JJ\" sense=\"celebrated in fable or legend\" polarity=\"0.7\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"fabricated\" cornetto_synset_id=\"n_a-508852\" wordnet_id=\"a-01935935\" pos=\"JJ\" sense=\"formed or conceived by the imagination\" polarity=\"0.5\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"fabricated\" cornetto_synset_id=\"n_a-532388\" wordnet_id=\"a-01935935\" pos=\"JJ\" sense=\"formed or conceived by the imagination\" polarity=\"-0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"fabulous\" cornetto_synset_id=\"n_a-516947\" wordnet_id=\"a-01936184\" pos=\"JJ\" sense=\"based on or told of in traditional stories\" polarity=\"0.4\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"facial\" wordnet_id=\"a-02725058\" pos=\"JJ\" sense=\"of or pertaining to the outside surface of an object\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"facial\" wordnet_id=\"a-02877704\" pos=\"JJ\" sense=\"of or concerning the face\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fail\" wordnet_id=\"v-172909\" pos=\"VB\" sense=\"get worse\" polarity=\"-0.5\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fail\" wordnet_id=\"v-1799235\" pos=\"VB\" sense=\"disappoint, prove undependable to\" polarity=\"-0.5\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fail\" wordnet_id=\"v-2318403\" pos=\"VB\" sense=\"become bankrupt or insolvent\" polarity=\"-0.5\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fail\" wordnet_id=\"v-2522319\" pos=\"VB\" sense=\"fall short in what is expected\" polarity=\"-0.5\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fail\" wordnet_id=\"v-2523521\" pos=\"VB\" sense=\"fail to get a passing grade\" polarity=\"-0.5\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fail\" wordnet_id=\"v-2523784\" pos=\"VB\" sense=\"judge unacceptable\" polarity=\"-0.5\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fail\" wordnet_id=\"v-2528380\" pos=\"VB\" sense=\"be unsuccessful\" polarity=\"-0.5\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fail\" wordnet_id=\"v-2529284\" pos=\"VB\" sense=\"fail to do something\" polarity=\"-0.5\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fail\" wordnet_id=\"v-2599528\" pos=\"VB\" sense=\"be unable\" polarity=\"-0.5\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fail\" wordnet_id=\"v-434374\" pos=\"VB\" sense=\"stop operating or functioning\" polarity=\"-0.5\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fail\" wordnet_id=\"v-560247\" pos=\"VB\" sense=\"prove insufficient\" polarity=\"-0.5\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"failed\" wordnet_id=\"\" pos=\"VB\" polarity=\"-0.5\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fails\" wordnet_id=\"\" pos=\"VB\" polarity=\"-0.5\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"failure\" wordnet_id=\"n-10273064\" pos=\"NN\" sense=\"a person with a record of failing\" polarity=\"-0.4\" subjectivity=\"0.3\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"failure\" wordnet_id=\"n-14059663\" pos=\"NN\" sense=\"loss of ability to function normally\" polarity=\"-0.3\" subjectivity=\"0.3\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"failure\" wordnet_id=\"n-14477877\" pos=\"NN\" sense=\"lack of success\" polarity=\"-0.3\" subjectivity=\"0.3\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"failure\" wordnet_id=\"n-66397\" pos=\"NN\" sense=\"an unexpected omission\" polarity=\"-0.3\" subjectivity=\"0.3\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"failure\" wordnet_id=\"n-66636\" pos=\"NN\" sense=\"an act that fails\" polarity=\"-0.3\" subjectivity=\"0.3\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"failure\" wordnet_id=\"n-7317764\" pos=\"NN\" sense=\"an event that does not accomplish its intended purpose\" polarity=\"-0.3\" subjectivity=\"0.3\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"faint\" cornetto_synset_id=\"c_533\" wordnet_id=\"a-02325097\" pos=\"JJ\" sense=\"lacking strength or vigor\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"fair\" cornetto_synset_id=\"n_a-525249\" wordnet_id=\"a-00956131\" pos=\"JJ\" sense=\"free from favoritism or self-interest or bias or deception\" polarity=\"0.7\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"fake\" wordnet_id=\"a-01117477\" pos=\"JJ\" sense=\"fraudulent\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fake\" wordnet_id=\"a-01573238\" pos=\"JJ\" sense=\"not genuine or real\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"false\" cornetto_synset_id=\"n_a-521254\" wordnet_id=\"a-02461723\" pos=\"JJ\" sense=\"not in accordance with the fact or reality or actuality\" polarity=\"-0.4\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"false\" cornetto_synset_id=\"n_a-521254\" wordnet_id=\"a-02461723\" pos=\"JJ\" sense=\"not in accordance with the fact or reality or actuality\" polarity=\"-0.4\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"false\" cornetto_synset_id=\"n_a-521254\" wordnet_id=\"a-02461723\" pos=\"JJ\" sense=\"not in accordance with the fact or reality or actuality\" polarity=\"-0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"familiar\" wordnet_id=\"a-00453053\" pos=\"JJ\" sense=\"having mutual interests or affections\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"familiar\" wordnet_id=\"a-00965606\" pos=\"JJ\" sense=\"well known or easily recognized\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"familiar\" wordnet_id=\"a-00970249\" pos=\"JJ\" sense=\"within normal everyday experience\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"familiar\" wordnet_id=\"a-01307067\" pos=\"JJ\" sense=\"(usually followed by 'with') well informed about or knowing thoroughly\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"famous\" cornetto_synset_id=\"n_a-512859\" wordnet_id=\"a-01375831\" pos=\"JJ\" sense=\"widely known and esteemed\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fanatic\" cornetto_synset_id=\"n_a-512728\" wordnet_id=\"a-01726859\" pos=\"JJ\" sense=\"marked by excessive enthusiasm for and intense devotion to a cause or idea\" polarity=\"-0.3\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"fanatic\" cornetto_synset_id=\"n_a-512728\" wordnet_id=\"a-01726859\" pos=\"JJ\" sense=\"marked by excessive enthusiasm for and intense devotion to a cause or idea\" polarity=\"-0.3\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"fantastic\" wordnet_id=\"a-00967646\" pos=\"JJ\" sense=\"ludicrously odd\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fantastic\" wordnet_id=\"a-01676517\" pos=\"JJ\" sense=\"extraordinarily good or great \" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fantastic\" wordnet_id=\"a-01796452\" pos=\"JJ\" sense=\"extravagantly fanciful in design, construction, appearance\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fantastic\" wordnet_id=\"a-01936778\" pos=\"JJ\" sense=\"existing in fancy only\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fantastic\" wordnet_id=\"a-01942732\" pos=\"JJ\" sense=\"fanciful and unrealistic\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"far\" cornetto_synset_id=\"n_a-508718\" wordnet_id=\"a-00442361\" pos=\"JJ\" sense=\"located at a great distance in time or space or degree\" polarity=\"0.1\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"far-out\" cornetto_synset_id=\"n_a-504364\" wordnet_id=\"a-00609564\" pos=\"JJ\" sense=\"informal terms\" polarity=\"0.4\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"farce\" wordnet_id=\"n-7016250\" pos=\"NN\" sense=\"a comedy characterized by broad satire and improbable situations\" polarity=\"-0.4\" subjectivity=\"0.5\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"farcical\" wordnet_id=\"a-1266397\" pos=\"JJ\" sense=\"broadly or extravagantly humorous\" polarity=\"-0.4\" subjectivity=\"0.4\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"farthermost\" cornetto_synset_id=\"n_a-531671\" wordnet_id=\"a-00443618\" pos=\"JJ\" sense=\"(comparatives of 'far') most remote in space or time or order\" polarity=\"0.0\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"fascinating\" cornetto_synset_id=\"n_a-501243\" wordnet_id=\"a-01344171\" pos=\"JJ\" sense=\"capable of arousing and holding the attention\" polarity=\"0.7\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fascinating\" cornetto_synset_id=\"n_a-521695\" wordnet_id=\"a-00166753\" pos=\"JJ\" sense=\"capturing interest as if by a spell\" polarity=\"0.7\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fast\" cornetto_synset_id=\"n_a-528140\" wordnet_id=\"a-00976508\" pos=\"JJ\" sense=\"acting or moving or capable of acting or moving quickly\" polarity=\"0.2\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"fatty\" cornetto_synset_id=\"n_a-532927\" wordnet_id=\"a-00991838\" pos=\"JJ\" sense=\"containing or composed of fat\" polarity=\"-0.2\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"faultless\" cornetto_synset_id=\"n_a-533543\" wordnet_id=\"a-01750847\" pos=\"JJ\" sense=\"without fault or error\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"favored\" cornetto_synset_id=\"d_a-9268\" wordnet_id=\"a-01462882\" pos=\"JJ\" sense=\"preferred above all others and treated with partiality\" polarity=\"0.8\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"favorite\" cornetto_synset_id=\"d_a-9268\" wordnet_id=\"a-01462882\" pos=\"JJ\" sense=\"preferred above all others and treated with partiality\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"favorite\" wordnet_id=\"a-01816376\" pos=\"JJ\" sense=\"appealing to the general public\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fearful\" cornetto_synset_id=\"n_a-502271\" wordnet_id=\"a-00079485\" pos=\"JJ\" sense=\"experiencing or showing fear\" polarity=\"-0.9\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"feeble\" cornetto_synset_id=\"n_a-527852\" wordnet_id=\"a-01827766\" pos=\"JJ\" sense=\"lacking strength\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"felicitous\" cornetto_synset_id=\"d_a-9296\" wordnet_id=\"a-01048406\" pos=\"JJ\" sense=\"marked by good fortune\" polarity=\"0.7\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"female\" cornetto_synset_id=\"d_a-9601\" wordnet_id=\"a-01477806\" pos=\"JJ\" sense=\"being the sex (of plant or animal) that produces fertilizable gametes (ova) from which offspring develop\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"female\" wordnet_id=\"a-01478182\" pos=\"JJ\" sense=\"for or pertaining to or composed of women or girls\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"female\" wordnet_id=\"a-01484451\" pos=\"JJ\" sense=\"characteristic of or peculiar to a woman\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"feverish\" cornetto_synset_id=\"n_a-511750\" wordnet_id=\"a-00086210\" pos=\"JJ\" sense=\"marked by intense agitation or emotion\" polarity=\"-0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"few\" wordnet_id=\"a-01552885\" pos=\"JJ\" sense=\"a quantifier that can be used with count nouns and is often preceded by 'a'\" polarity=\"-0.2\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fictional\" cornetto_synset_id=\"n_a-532388\" wordnet_id=\"a-01935935\" pos=\"JJ\" sense=\"formed or conceived by the imagination\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fictional\" wordnet_id=\"a-02727706\" pos=\"JJ\" sense=\"related to or involving literary fiction\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fiendish\" wordnet_id=\"\" pos=\"JJ\" sense=\"\" polarity=\"-0.6\" subjectivity=\"0.7\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"fiftieth\" cornetto_synset_id=\"n_a-533067\" wordnet_id=\"a-02208145\" pos=\"JJ\" sense=\"the ordinal number of fifty in counting order\" polarity=\"0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"filled\" cornetto_synset_id=\"n_a-533467\" wordnet_id=\"a-01084644\" pos=\"JJ\" sense=\"(usually followed by 'with' or used as a combining form) generously supplied with\" polarity=\"0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"filthy\" cornetto_synset_id=\"n_a-521551\" wordnet_id=\"a-00421590\" pos=\"JJ\" sense=\"disgustingly dirty\" polarity=\"-0.8\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"final\" cornetto_synset_id=\"n_a-509055\" wordnet_id=\"a-00349894\" pos=\"JJ\" sense=\"not to be altered or undone\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"final\" cornetto_synset_id=\"n_a-509641\" wordnet_id=\"a-01579128\" pos=\"JJ\" sense=\"conclusive in a process or progression\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"final\" wordnet_id=\"a-01010271\" pos=\"JJ\" sense=\"occurring at or forming an end or termination\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"financial\" cornetto_synset_id=\"n_a-509070\" wordnet_id=\"a-02847894\" pos=\"JJ\" sense=\"involving financial matters\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fine\" wordnet_id=\"a-00850183\" pos=\"JJ\" sense=\"characterized by elegance or refinement or accomplishment\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fine\" wordnet_id=\"a-01838253\" pos=\"JJ\" sense=\"minutely precise especially in differences in meaning\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fine\" wordnet_id=\"a-01906817\" pos=\"JJ\" sense=\"free from impurities\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fine\" wordnet_id=\"a-02081114\" pos=\"JJ\" sense=\"being satisfactory or in satisfactory condition\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fine\" wordnet_id=\"a-02232251\" pos=\"JJ\" sense=\"of textures that are smooth to the touch or substances consisting of relatively small particles\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fine\" wordnet_id=\"a-02414031\" pos=\"JJ\" sense=\"thin in thickness or diameter\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fine-looking\" cornetto_synset_id=\"n_a-515377\" wordnet_id=\"a-00218950\" pos=\"JJ\" sense=\"pleasing in appearance especially by reason of conformity to ideals of form and proportion\" polarity=\"0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"firm\" cornetto_synset_id=\"n_a-520774\" wordnet_id=\"a-01990653\" pos=\"JJ\" sense=\"marked by firm determination or resolution\" polarity=\"-0.2\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"first\" cornetto_synset_id=\"n_a-507410\" wordnet_id=\"a-01010862\" pos=\"JJ\" sense=\"preceding all others in time or space or degree\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"first\" cornetto_synset_id=\"n_a-513472\" wordnet_id=\"a-01009343\" pos=\"JJ\" sense=\"serving to set in motion\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"first\" wordnet_id=\"a-00228294\" pos=\"JJ\" sense=\"ranking above all others\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"first\" wordnet_id=\"a-01009206\" pos=\"JJ\" sense=\"serving to begin\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"first\" wordnet_id=\"a-01016215\" pos=\"JJ\" sense=\"highest in pitch or chief among parts or voices or instruments or orchestra sections\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"first\" wordnet_id=\"a-02202047\" pos=\"JJ\" sense=\"indicating the beginning unit in a series\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"first-string\" cornetto_synset_id=\"n_a-519872\" wordnet_id=\"a-01959711\" pos=\"JJ\" sense=\"of members of a team\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"fit\" cornetto_synset_id=\"c_709\" wordnet_id=\"a-01017161\" pos=\"JJ\" sense=\"physically and mentally sound or healthy\" polarity=\"0.4\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"fitting\" wordnet_id=\"a-01370141\" pos=\"JJ\" sense=\"being precisely fitting and right\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fitting\" wordnet_id=\"a-01879667\" pos=\"JJ\" sense=\"in harmony with the spirit of particular persons or occasion\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fixed\" cornetto_synset_id=\"d_a-9562\" wordnet_id=\"a-00740217\" pos=\"JJ\" sense=\"(of a number) having a fixed and unchanging value\" polarity=\"0.1\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"flashy\" cornetto_synset_id=\"n_a-508893\" wordnet_id=\"a-02393791\" pos=\"JJ\" sense=\"tastelessly showy\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"flashy\" cornetto_synset_id=\"n_a-521403\" wordnet_id=\"a-00407420\" pos=\"JJ\" sense=\"(used especially of clothes) marked by conspicuous display\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"flat\" cornetto_synset_id=\"c_525\" wordnet_id=\"a-00659259\" pos=\"JJ\" sense=\"having a relatively broad surface in relation to depth or thickness\" polarity=\"0.0\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"flat\" cornetto_synset_id=\"c_638\" wordnet_id=\"a-00910101\" pos=\"JJ\" sense=\"having a surface without slope, tilt in which no part is higher or lower than another\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"flat\" cornetto_synset_id=\"d_a-9489\" wordnet_id=\"a-01239040\" pos=\"JJ\" sense=\"stretched out and lying at full length along the ground\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"flat\" cornetto_synset_id=\"n_a-519240\" wordnet_id=\"a-01541828\" pos=\"JJ\" sense=\"sounded or spoken in a tone unvarying in pitch\" polarity=\"-0.1\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"flawed\" cornetto_synset_id=\"n_a-521658\" wordnet_id=\"a-01752553\" pos=\"JJ\" sense=\"having a blemish or flaw\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"flawless\" cornetto_synset_id=\"n_a-524759\" wordnet_id=\"a-01751080\" pos=\"JJ\" sense=\"without a flaw\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"flippant\" cornetto_synset_id=\"n_a-517706\" wordnet_id=\"a-02121290\" pos=\"JJ\" sense=\"showing inappropriate levity\" polarity=\"0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"fluff\" wordnet_id=\"n-14757754\" pos=\"NN\" sense=\"any light downy material\" polarity=\"-0.1\" subjectivity=\"0.3\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"fluff\" wordnet_id=\"n-76072\" pos=\"NN\" sense=\"a blunder (especially an actor's forgetting the lines)\" polarity=\"-0.1\" subjectivity=\"0.3\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"fluffy\" wordnet_id=\"\" pos=\"JJ\" sense=\"\" polarity=\"-0.2\" subjectivity=\"0.4\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"fluid\" cornetto_synset_id=\"d_a-9249\" wordnet_id=\"a-02261746\" pos=\"JJ\" sense=\"characteristic of a fluid\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"fly\" cornetto_synset_id=\"n_a-527945\" wordnet_id=\"a-00092136\" pos=\"JJ\" sense=\"(British informal) not to be deceived or hoodwinked\" polarity=\"0.8\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"following\" cornetto_synset_id=\"n_a-520887\" wordnet_id=\"a-00127948\" pos=\"JJ\" sense=\"immediately following in time or order\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"for sure\" cornetto_synset_id=\"d_a-9623\" wordnet_id=\"a-01918660\" pos=\"JJ\" sense=\"not open to doubt\" polarity=\"0.3\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"forced\" wordnet_id=\"a-2367477\" pos=\"JJ\" sense=\"made necessary by an unexpected situation or emergency\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"forced\" wordnet_id=\"a-2521890\" pos=\"JJ\" sense=\"forced or compelled\" polarity=\"-0.4\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"forcible\" cornetto_synset_id=\"n_a-513565\" wordnet_id=\"a-00842324\" pos=\"JJ\" sense=\"impelled by physical force especially against resistance\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"foreign\" cornetto_synset_id=\"n_a-517172\" wordnet_id=\"a-01034457\" pos=\"JJ\" sense=\"relating to or originating in or characteristic of another place or part of the world\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"foreign\" wordnet_id=\"a-01037540\" pos=\"JJ\" sense=\"of concern to or concerning the affairs of other nations (other than your own)\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"foreign\" wordnet_id=\"a-01349927\" pos=\"JJ\" sense=\"not contained in or deriving from the essential nature of something\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"foreign\" wordnet_id=\"a-02117464\" pos=\"JJ\" sense=\"not belonging to that in which it is contained\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"forgetful\" cornetto_synset_id=\"n_a-520753\" wordnet_id=\"a-00165943\" pos=\"JJ\" sense=\"failing to keep in mind\" polarity=\"-0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"forgettable\" wordnet_id=\"a-01040239\" pos=\"JJ\" sense=\"easily forgotten\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"former\" cornetto_synset_id=\"n_a-508044\" wordnet_id=\"a-01047301\" pos=\"JJ\" sense=\"referring to the first of two things or persons mentioned (or the earlier one or ones of several)\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"former\" cornetto_synset_id=\"n_a-522211\" wordnet_id=\"a-01729566\" pos=\"JJ\" sense=\"belonging to some prior time\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"former\" wordnet_id=\"a-01729384\" pos=\"JJ\" sense=\"belonging to the distant past\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"former\" wordnet_id=\"a-01729819\" pos=\"JJ\" sense=\"(used especially of persons) of the immediate past\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"formulaic\" cornetto_synset_id=\"n_a-509257\" wordnet_id=\"a-00606240\" pos=\"JJ\" sense=\"characterized by or in accordance with some formula\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fortunate\" cornetto_synset_id=\"n_a-532833\" wordnet_id=\"a-00176676\" pos=\"JJ\" sense=\"presaging good fortune\" polarity=\"0.4\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"fourth\" cornetto_synset_id=\"d_a-9494\" wordnet_id=\"a-02202443\" pos=\"JJ\" sense=\"coming next after the third and just before the fifth in position or time or degree or magnitude\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fragile\" cornetto_synset_id=\"c_565\" wordnet_id=\"a-00709215\" pos=\"JJ\" sense=\"easily broken or damaged or destroyed\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fragile\" cornetto_synset_id=\"n_a-530385\" wordnet_id=\"a-00706688\" pos=\"JJ\" sense=\"vulnerably delicate\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"fragile\" wordnet_id=\"a-02164913\" pos=\"JJ\" sense=\"lacking substance or significance\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"free\" cornetto_synset_id=\"n_a-533873\" wordnet_id=\"a-00916199\" pos=\"JJ\" sense=\"not literal\" polarity=\"0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"free-thinking\" cornetto_synset_id=\"n_a-521201\" wordnet_id=\"a-00287275\" pos=\"JJ\" sense=\"unwilling to accept authority or dogma (especially in religion)\" polarity=\"0.0\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"freestanding\" cornetto_synset_id=\"n_a-502386\" wordnet_id=\"a-00160768\" pos=\"JJ\" sense=\"standing apart\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"freestanding\" cornetto_synset_id=\"n_a-502386\" wordnet_id=\"a-00160768\" pos=\"JJ\" sense=\"standing apart\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"french\" cornetto_synset_id=\"d_a-9133\" wordnet_id=\"a-02958392\" pos=\"JJ\" sense=\"of or pertaining to France or the people of France\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"frequent\" cornetto_synset_id=\"n_a-525383\" wordnet_id=\"a-00486990\" pos=\"JJ\" sense=\"frequently encountered\" polarity=\"0.1\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"fresh\" cornetto_synset_id=\"n_a-522170\" wordnet_id=\"a-01687167\" pos=\"JJ\" sense=\"original and of a kind not seen before\" polarity=\"0.3\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"friendly\" wordnet_id=\"a-01074650\" pos=\"JJ\" sense=\"characteristic of or befitting a friend\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"friendly\" wordnet_id=\"a-01077638\" pos=\"JJ\" sense=\"of or belonging to your own country's forces or those of an ally\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"friendly\" wordnet_id=\"a-01077995\" pos=\"JJ\" sense=\"easy to understand or use\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"friendly\" wordnet_id=\"a-01246801\" pos=\"JJ\" sense=\"inclined to help or support\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"frightening\" cornetto_synset_id=\"n_a-532685\" wordnet_id=\"a-00193799\" pos=\"JJ\" sense=\"causing fear or dread or terror\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"frigid\" cornetto_synset_id=\"n_a-513368\" wordnet_id=\"a-01258264\" pos=\"JJ\" sense=\"devoid of warmth and cordiality\" polarity=\"-0.9\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"fringy\" cornetto_synset_id=\"c_373\" wordnet_id=\"a-00331889\" pos=\"JJ\" sense=\"at or constituting a border or edge\" polarity=\"0.3\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"frostbitten\" cornetto_synset_id=\"n_a-513334\" wordnet_id=\"a-01078673\" pos=\"JJ\" sense=\"injured by freezing or partial freezing\" polarity=\"-0.5\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"frustrated\" wordnet_id=\"\" pos=\"JJ\" polarity=\"-0.7\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"frustrating\" wordnet_id=\"a-00867758\" pos=\"JJ\" sense=\"discouraging by hindering\" polarity=\"-0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"frustrating\" wordnet_id=\"a-01764745\" pos=\"JJ\" sense=\"preventing realization or attainment of a desire\" polarity=\"-0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"frustratingly\" wordnet_id=\"\" pos=\"RB\" sense=\"\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.2\" reliability=\"0.9\" />\n<word form=\"fuck\" wordnet_id=\"n-846021\" pos=\"NN\" sense=\"slang for sexual intercourse\" polarity=\"-0.4\" subjectivity=\"0.6\" intensity=\"1.0\" label=\"profanity\" confidence=\"0.9\" />\n<word form=\"fucked\" wordnet_id=\"\" pos=\"JJ\" polarity=\"-0.6\" subjectivity=\"0.7\" intensity=\"1.0\" label=\"profanity\" confidence=\"0.9\" />\n<word form=\"fucking\" wordnet_id=\"r-32705\" pos=\"RB\" sense=\"intensifier, very colloquial\" polarity=\"-0.6\" subjectivity=\"0.8\" intensity=\"1.0\" label=\"profanity\" confidence=\"0.9\" />\n<word form=\"f*cking\" wordnet_id=\"r-32705\" pos=\"RB\" sense=\"intensifier, very colloquial\" polarity=\"-0.6\" subjectivity=\"0.8\" intensity=\"1.0\" label=\"profanity\" confidence=\"0.9\" />\n<word form=\"full of life\" cornetto_synset_id=\"c_384\" wordnet_id=\"a-00119006\" pos=\"JJ\" sense=\"full of spirit\" polarity=\"-0.2\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"full\" cornetto_synset_id=\"c_181\" wordnet_id=\"a-01456710\" pos=\"JJ\" sense=\"(of sound) having marked deepness and body\" polarity=\"0.4\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"full\" cornetto_synset_id=\"d_a-9588\" wordnet_id=\"a-01083157\" pos=\"JJ\" sense=\"containing as much or as many as is possible or normal\" polarity=\"0.3\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"full-bodied\" cornetto_synset_id=\"n_a-518021\" wordnet_id=\"a-02397234\" pos=\"JJ\" sense=\"marked by richness and fullness of flavor\" polarity=\"-0.1\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"full-fledged\" cornetto_synset_id=\"n_a-533565\" wordnet_id=\"a-00935792\" pos=\"JJ\" sense=\"(of persons, e.g.) having gained full status\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"full-length\" cornetto_synset_id=\"n_a-505819\" wordnet_id=\"a-00005107\" pos=\"JJ\" sense=\"complete\" polarity=\"0.1\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"full-length\" cornetto_synset_id=\"n_a-510885\" wordnet_id=\"a-00005107\" pos=\"JJ\" sense=\"complete\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"full-length\" cornetto_synset_id=\"n_a-533547\" wordnet_id=\"a-00005107\" pos=\"JJ\" sense=\"complete\" polarity=\"0.0\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"fun\" wordnet_id=\"n-429949\" pos=\"NN\" sense=\"activities that are enjoyable or amusing\" polarity=\"0.3\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"funny\" cornetto_synset_id=\"n_a-515488\" wordnet_id=\"a-01265308\" pos=\"JJ\" sense=\"arousing or provoking laughter\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"funny\" cornetto_synset_id=\"n_a-532303\" wordnet_id=\"a-01917594\" pos=\"JJ\" sense=\"not as expected\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"funny\" wordnet_id=\"a-00968010\" pos=\"JJ\" sense=\"beyond or deviating from the usual or expected\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"funny\" wordnet_id=\"a-02545023\" pos=\"JJ\" sense=\"experiencing odd bodily sensations\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"further\" wordnet_id=\"a-00443988\" pos=\"JJ\" sense=\"more distant in especially degree\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"furtive\" cornetto_synset_id=\"n_a-532294\" wordnet_id=\"a-02088974\" pos=\"JJ\" sense=\"marked by quiet and caution and secrecy\" polarity=\"-0.1\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"future\" wordnet_id=\"a-01294975\" pos=\"JJ\" sense=\"(of elected officers) elected but not yet serving\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"future\" wordnet_id=\"a-01732270\" pos=\"JJ\" sense=\"yet to be or coming\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"future\" wordnet_id=\"a-01884353\" pos=\"JJ\" sense=\"effective in or looking toward the future\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"future\" wordnet_id=\"a-02992914\" pos=\"JJ\" sense=\"a verb tense or other formation referring to events or states that have not yet happened\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"game\" cornetto_synset_id=\"n_a-518167\" wordnet_id=\"a-00263994\" pos=\"JJ\" sense=\"willing to face danger\" polarity=\"-0.4\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"gamechanger\" wordnet_id=\"\" pos=\"NN\" polarity=\"0.3\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"gargantuan\" wordnet_id=\"\" pos=\"JJ\" sense=\"\" polarity=\"-0.05\" subjectivity=\"0.8\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"gawky\" cornetto_synset_id=\"d_a-9390\" wordnet_id=\"a-01140896\" pos=\"JJ\" sense=\"lacking grace in movement or posture\" polarity=\"-0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"gawky\" cornetto_synset_id=\"d_a-9454\" wordnet_id=\"a-01140896\" pos=\"JJ\" sense=\"lacking grace in movement or posture\" polarity=\"-0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"gay\" cornetto_synset_id=\"d_a-9269\" wordnet_id=\"a-01367431\" pos=\"JJ\" sense=\"offering fun and gaiety\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"gay\" cornetto_synset_id=\"n_a-517250\" wordnet_id=\"a-00363938\" pos=\"JJ\" sense=\"bright and pleasant\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"gay\" wordnet_id=\"a-00407151\" pos=\"JJ\" sense=\"brightly colored and showy\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"gay\" wordnet_id=\"a-01201937\" pos=\"JJ\" sense=\"homosexual or arousing homosexual desires\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"gay\" wordnet_id=\"a-01298708\" pos=\"JJ\" sense=\"given to social pleasures often including dissipation\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"gay\" wordnet_id=\"a-01367651\" pos=\"JJ\" sense=\"full of or showing high-spirited merriment\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"general\" cornetto_synset_id=\"d_a-9152\" wordnet_id=\"a-00783840\" pos=\"JJ\" sense=\"not specialized or limited to one class of things\" polarity=\"-0.3\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"general\" cornetto_synset_id=\"d_a-9152\" wordnet_id=\"a-00783840\" pos=\"JJ\" sense=\"not specialized or limited to one class of things\" polarity=\"0.4\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"generic\" cornetto_synset_id=\"n_a-510329\" wordnet_id=\"a-01102164\" pos=\"JJ\" sense=\"applicable to an entire class or group\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"generic\" wordnet_id=\"a-01109599\" pos=\"JJ\" sense=\"(of drugs) not protected by trademark\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"generic\" wordnet_id=\"a-02734016\" pos=\"JJ\" sense=\"relating to or common to or descriptive of all members of a genus\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"gentle\" cornetto_synset_id=\"n_a-535264\" wordnet_id=\"a-01455412\" pos=\"JJ\" sense=\"quiet and soothing\" polarity=\"-0.1\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"gentle\" cornetto_synset_id=\"n_a-535265\" wordnet_id=\"a-01509066\" pos=\"JJ\" sense=\"soft and mild\" polarity=\"0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"genuine\" cornetto_synset_id=\"d_a-9251\" wordnet_id=\"a-02180277\" pos=\"JJ\" sense=\"not pretended\" polarity=\"0.4\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"german\" cornetto_synset_id=\"d_a-9129\" wordnet_id=\"a-02957469\" pos=\"JJ\" sense=\"of or pertaining to or characteristic of Germany or its people or language\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"gettable\" cornetto_synset_id=\"n_a-532527\" wordnet_id=\"a-00184363\" pos=\"JJ\" sense=\"capable of being obtained\" polarity=\"0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"giant\" wordnet_id=\"a-01385773\" pos=\"JJ\" sense=\"of great mass\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"gifted\" cornetto_synset_id=\"d_a-9174\" wordnet_id=\"a-01119192\" pos=\"JJ\" sense=\"endowed with talent or talents\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"gimmicky\" wordnet_id=\"\" pos=\"JJ\" sense=\"\" polarity=\"-0.2\" subjectivity=\"0.5\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"glad\" wordnet_id=\"a-00362892\" pos=\"JJ\" sense=\"cheerful and bright\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"glad\" wordnet_id=\"a-01146920\" pos=\"JJ\" sense=\"feeling happy appreciation\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"glad\" wordnet_id=\"a-01361414\" pos=\"JJ\" sense=\"showing or causing joy and pleasure\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"glad\" wordnet_id=\"a-02565583\" pos=\"JJ\" sense=\"eagerly disposed to act or to be of service\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"global\" cornetto_synset_id=\"n_a-511093\" wordnet_id=\"a-02041229\" pos=\"JJ\" sense=\"having the shape of a sphere or ball\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"global\" cornetto_synset_id=\"n_a-523513\" wordnet_id=\"a-01568684\" pos=\"JJ\" sense=\"involving the entire earth\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"gloom\" wordnet_id=\"n-13985462\" pos=\"NN\" sense=\"a state of partial or total darkness\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"gloom\" wordnet_id=\"n-14525365\" pos=\"NN\" sense=\"an atmosphere of depression and melancholy\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"gloom\" wordnet_id=\"n-7533257\" pos=\"NN\" sense=\"a feeling of melancholy apprehension\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"gluey\" cornetto_synset_id=\"n_a-523499\" wordnet_id=\"a-00053691\" pos=\"JJ\" sense=\"having the sticky properties of an adhesive\" polarity=\"-0.4\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"godforsaken\" cornetto_synset_id=\"n_a-503107\" wordnet_id=\"a-01243102\" pos=\"JJ\" sense=\"located in a dismal or remote area\" polarity=\"-0.5\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"godforsaken\" cornetto_synset_id=\"n_a-521234\" wordnet_id=\"a-01243102\" pos=\"JJ\" sense=\"located in a dismal or remote area\" polarity=\"-0.3\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"golden\" cornetto_synset_id=\"d_a-9196\" wordnet_id=\"a-00177547\" pos=\"JJ\" sense=\"presaging or likely to bring good luck\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"golden\" cornetto_synset_id=\"n_a-513884\" wordnet_id=\"a-00177547\" pos=\"JJ\" sense=\"presaging or likely to bring good luck\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"good\" cornetto_synset_id=\"c_168\" wordnet_id=\"a-01123148\" pos=\"JJ\" sense=\"having desirable or positive qualities especially those suitable for a thing specified\" polarity=\"0.7\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"good\" cornetto_synset_id=\"n_a-510925\" wordnet_id=\"a-01166413\" pos=\"JJ\" sense=\"tending to promote physical well-being\" polarity=\"0.7\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"goody-goody\" cornetto_synset_id=\"n_a-535834\" wordnet_id=\"a-01130614\" pos=\"JJ\" sense=\"affectedly or smugly good or self-righteous\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"goofy\" wordnet_id=\"a-02571536\" pos=\"JJ\" sense=\"ludicrous, foolish\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"gorgeous\" cornetto_synset_id=\"n_a-512199\" wordnet_id=\"a-00219705\" pos=\"JJ\" sense=\"dazzlingly beautiful\" polarity=\"0.7\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"gory\" cornetto_synset_id=\"n_a-504377\" wordnet_id=\"a-00247993\" pos=\"JJ\" sense=\"covered with blood\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"gory\" wordnet_id=\"a-00249104\" pos=\"JJ\" sense=\"accompanied by bloodshed\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"grand\" cornetto_synset_id=\"n_a-513280\" wordnet_id=\"a-01588619\" pos=\"JJ\" sense=\"of high moral or intellectual value\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"grand\" wordnet_id=\"a-00752110\" pos=\"JJ\" sense=\"used of a person's appearance or behavior\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"grand\" wordnet_id=\"a-01278251\" pos=\"JJ\" sense=\"the most important and magnificent in adornment\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"grand\" wordnet_id=\"a-01284544\" pos=\"JJ\" sense=\"of behavior that is impressive and ambitious in scale or scope\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"grand\" wordnet_id=\"a-01387149\" pos=\"JJ\" sense=\"large and impressive in physical size or extent\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"grand\" wordnet_id=\"a-01591050\" pos=\"JJ\" sense=\"of or befitting a lord\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"grand\" wordnet_id=\"a-01676517\" pos=\"JJ\" sense=\"extraordinarily good or great \" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"grand\" wordnet_id=\"a-02024928\" pos=\"JJ\" sense=\"rich and superior in quality\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"grandiloquent\" cornetto_synset_id=\"n_a-524282\" wordnet_id=\"a-01849960\" pos=\"JJ\" sense=\"puffed up with vanity\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"graphic\" cornetto_synset_id=\"n_a-511352\" wordnet_id=\"a-02736808\" pos=\"JJ\" sense=\"relating to or presented by a graph\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"graphic\" cornetto_synset_id=\"n_a-527270\" wordnet_id=\"a-02285278\" pos=\"JJ\" sense=\"written or drawn or engraved\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"graphic\" wordnet_id=\"a-00941242\" pos=\"JJ\" sense=\"describing nudity or sexual activity in graphic detail\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"graphic\" wordnet_id=\"a-01941026\" pos=\"JJ\" sense=\"evoking lifelike images within the mind\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"graphic\" wordnet_id=\"a-02736983\" pos=\"JJ\" sense=\"of or relating to the graphic arts\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"gratuitous\" cornetto_synset_id=\"n_a-511409\" wordnet_id=\"a-01710260\" pos=\"JJ\" sense=\"costing nothing\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"gratuitous\" wordnet_id=\"a-01371553\" pos=\"JJ\" sense=\"without cause\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"gratuitous\" wordnet_id=\"a-01582049\" pos=\"JJ\" sense=\"unnecessary and unwarranted\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"great\" cornetto_synset_id=\"n_a-525317\" wordnet_id=\"a-01123879\" pos=\"JJ\" sense=\"very good\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"great\" wordnet_id=\"a-01278818\" pos=\"JJ\" sense=\"of major significance or importance\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"great\" wordnet_id=\"a-01386883\" pos=\"JJ\" sense=\"relatively large in size or number or extent\" polarity=\"0.4\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"great\" wordnet_id=\"a-01677433\" pos=\"JJ\" sense=\"remarkable or out of the ordinary in degree or magnitude or effect\" polarity=\"0.8\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"greater\" cornetto_synset_id=\"n_a-518433\" wordnet_id=\"a-01395330\" pos=\"JJ\" sense=\"greater in size or importance or degree\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"greatest\" cornetto_synset_id=\"d_a-9399\" wordnet_id=\"a-02343517\" pos=\"JJ\" sense=\"highest in quality\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"greek\" cornetto_synset_id=\"d_a-9134\" wordnet_id=\"a-03016202\" pos=\"JJ\" sense=\"of or relating to or characteristic of Greece or the Greeks or the Greek language\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"green\" cornetto_synset_id=\"n_a-511523\" wordnet_id=\"a-00375969\" pos=\"JJ\" sense=\"of the color between blue and yellow in the color spectrum\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"green\" wordnet_id=\"a-01493897\" pos=\"JJ\" sense=\"not fully developed or mature\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"green\" wordnet_id=\"a-02272485\" pos=\"JJ\" sense=\"naive and easily deceived or tricked\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"green\" wordnet_id=\"a-02545257\" pos=\"JJ\" sense=\"looking pale and unhealthy\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"green\" wordnet_id=\"a-03069937\" pos=\"JJ\" sense=\"concerned with or supporting or in conformity with the political principles of the Green Party\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"grey\" cornetto_synset_id=\"n_a-511480\" wordnet_id=\"a-00389310\" pos=\"JJ\" sense=\"of an achromatic color of any lightness intermediate between the extremes of white and black\" polarity=\"-0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"grey\" cornetto_synset_id=\"n_a-511486\" wordnet_id=\"a-01645678\" pos=\"JJ\" sense=\"showing characteristics of age, especially having grey or white hair\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"grief\" wordnet_id=\"n-5833683\" pos=\"NN\" sense=\"something that causes great unhappiness\" polarity=\"-0.8\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"grief\" wordnet_id=\"n-7535010\" pos=\"NN\" sense=\"intense sorrow caused by loss of a loved one (especially by death)\" polarity=\"-0.8\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"grievous\" cornetto_synset_id=\"n_a-521480\" wordnet_id=\"a-01365544\" pos=\"JJ\" sense=\"causing or marked by grief or anguish\" polarity=\"-0.8\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"grim\" cornetto_synset_id=\"d_a-9521\" wordnet_id=\"a-00703615\" pos=\"JJ\" sense=\"filled with melancholy and despondency \" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"grim\" cornetto_synset_id=\"n_a-518384\" wordnet_id=\"a-00364881\" pos=\"JJ\" sense=\"causing dejection\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"grim\" cornetto_synset_id=\"n_a-521565\" wordnet_id=\"a-00195684\" pos=\"JJ\" sense=\"shockingly repellent\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"grim\" wordnet_id=\"a-01785341\" pos=\"JJ\" sense=\"not to be placated or appeased or moved by entreaty\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"grim\" wordnet_id=\"a-01802932\" pos=\"JJ\" sense=\"harshly uninviting or formidable in manner or appearance\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"grim\" wordnet_id=\"a-02079507\" pos=\"JJ\" sense=\"harshly ironic or sinister\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"gripping\" cornetto_synset_id=\"n_a-501243\" wordnet_id=\"a-01344171\" pos=\"JJ\" sense=\"capable of arousing and holding the attention\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"gritty\" cornetto_synset_id=\"n_a-509538\" wordnet_id=\"a-00263994\" pos=\"JJ\" sense=\"willing to face danger\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"gritty\" cornetto_synset_id=\"n_a-535610\" wordnet_id=\"a-02231502\" pos=\"JJ\" sense=\"composed of or covered with particles resembling meal in texture or consistency\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"gross\" cornetto_synset_id=\"n_a-505096\" wordnet_id=\"a-01582821\" pos=\"JJ\" sense=\"before any deductions\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"grotesque\" cornetto_synset_id=\"n_a-503484\" wordnet_id=\"a-00221627\" pos=\"JJ\" sense=\"distorted and unnatural in shape or size\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"grotesque\" cornetto_synset_id=\"n_a-535905\" wordnet_id=\"a-00221627\" pos=\"JJ\" sense=\"distorted and unnatural in shape or size\" polarity=\"-0.1\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"grr\" wordnet_id=\"\" pos=\"UH\" polarity=\"-0.7\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"grrr\" wordnet_id=\"\" pos=\"UH\" polarity=\"-0.7\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"grrrr\" wordnet_id=\"\" pos=\"UH\" polarity=\"-0.7\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"grudging\" cornetto_synset_id=\"d_a-9356\" wordnet_id=\"a-01113636\" pos=\"JJ\" sense=\"petty or reluctant in giving or spending\" polarity=\"-0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"gruesome\" cornetto_synset_id=\"n_a-521565\" wordnet_id=\"a-00195684\" pos=\"JJ\" sense=\"shockingly repellent\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"guarded\" cornetto_synset_id=\"n_a-533736\" wordnet_id=\"a-00326202\" pos=\"JJ\" sense=\"prudent\" polarity=\"0.4\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"guilty\" wordnet_id=\"a-00154583\" pos=\"JJ\" sense=\"showing a sense of guilt\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"guilty\" wordnet_id=\"a-01320988\" pos=\"JJ\" sense=\"responsible for or chargeable with a reprehensible act\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"haha\" wordnet_id=\"\" pos=\"UH\" polarity=\"0.2\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"hahaha\" wordnet_id=\"\" pos=\"UH\" polarity=\"0.2\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"hahahaha\" wordnet_id=\"\" pos=\"UH\" polarity=\"0.2\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"hahahahaha\" wordnet_id=\"\" pos=\"UH\" polarity=\"0.2\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"half\" wordnet_id=\"a-00517554\" pos=\"JJ\" sense=\"consisting of one of two equivalent parts in value or quantity\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"half\" wordnet_id=\"a-00518035\" pos=\"JJ\" sense=\"(of siblings) related through one parent only\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"half\" wordnet_id=\"a-00524496\" pos=\"JJ\" sense=\"partial\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"hand-held\" wordnet_id=\"a-03149169\" pos=\"JJ\" sense=\"small and light enough to be operated while you hold it in your hands\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"handsome\" cornetto_synset_id=\"n_a-511674\" wordnet_id=\"a-01111418\" pos=\"JJ\" sense=\"given or giving freely\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"handsome\" cornetto_synset_id=\"n_a-515377\" wordnet_id=\"a-00218950\" pos=\"JJ\" sense=\"pleasing in appearance especially by reason of conformity to ideals of form and proportion\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"handy\" cornetto_synset_id=\"n_a-520249\" wordnet_id=\"a-00019731\" pos=\"JJ\" sense=\"easy to reach\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"haphazard\" cornetto_synset_id=\"n_a-527969\" wordnet_id=\"a-00312519\" pos=\"JJ\" sense=\"marked by great carelessness\" polarity=\"-0.6\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"hapless\" cornetto_synset_id=\"n_a-535670\" wordnet_id=\"a-01050890\" pos=\"JJ\" sense=\"deserving or inciting pity\" polarity=\"-0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"happiness\" wordnet_id=\"n-13987423\" pos=\"NN\" sense=\"state of well-being characterized by emotions ranging from contentment to intense joy\" polarity=\"0.7\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"happiness\" wordnet_id=\"n-7526757\" pos=\"NN\" sense=\"emotions experienced when in a state of well-being\" polarity=\"0.7\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"happy\" cornetto_synset_id=\"d_a-9297\" wordnet_id=\"a-01148283\" pos=\"JJ\" sense=\"enjoying or showing or marked by joy or pleasure\" polarity=\"0.8\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"hard\" cornetto_synset_id=\"d_a-9325\" wordnet_id=\"a-01150915\" pos=\"JJ\" sense=\"resisting weight or pressure\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"hard\" cornetto_synset_id=\"n_a-513802\" wordnet_id=\"a-00836544\" pos=\"JJ\" sense=\"characterized by effort to the point of exhaustion\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"hard\" cornetto_synset_id=\"n_a-528549\" wordnet_id=\"a-01069715\" pos=\"JJ\" sense=\"dried out\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"hard\" cornetto_synset_id=\"n_a-529210\" wordnet_id=\"a-02286294\" pos=\"JJ\" sense=\"produced without vibration of the vocal cords\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"hard\" wordnet_id=\"a-00744916\" pos=\"JJ\" sense=\"not easy\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"hard\" wordnet_id=\"a-01127302\" pos=\"JJ\" sense=\"unfortunate or hard to bear\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"hard\" wordnet_id=\"a-01155354\" pos=\"JJ\" sense=\"dispassionate\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"hard\" wordnet_id=\"a-01156505\" pos=\"JJ\" sense=\"(of speech sounds)\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"hard\" wordnet_id=\"a-01157762\" pos=\"JJ\" sense=\"(of light) transmitted directly from a pointed light source\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"hard\" wordnet_id=\"a-01158974\" pos=\"JJ\" sense=\"being distilled rather than fermented\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"hard\" wordnet_id=\"a-01299173\" pos=\"JJ\" sense=\"given to excessive indulgence of bodily appetites especially for intoxicating liquors\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"hard\" wordnet_id=\"a-02322512\" pos=\"JJ\" sense=\"very strong or vigorous\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"harder\" wordnet_id=\"\" pos=\"JJ\" polarity=\"-0.1\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"harsh\" cornetto_synset_id=\"n_a-508890\" wordnet_id=\"a-01803792\" pos=\"JJ\" sense=\"disagreeable to the senses\" polarity=\"-0.2\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"hate\" wordnet_id=\"v-1774136\" pos=\"VB\" sense=\"dislike intensely\" polarity=\"-0.8\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"hated\" wordnet_id=\"\" pos=\"VB\" polarity=\"-0.9\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"hazardous\" cornetto_synset_id=\"n_a-502847\" wordnet_id=\"a-02059811\" pos=\"JJ\" sense=\"involving risk or danger\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"healthy\" wordnet_id=\"a-00624576\" pos=\"JJ\" sense=\"large in amount or extent or degree\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"healthy\" wordnet_id=\"a-01170243\" pos=\"JJ\" sense=\"having or indicating good health in body or mind\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"healthy\" wordnet_id=\"a-01944088\" pos=\"JJ\" sense=\"exercising or showing good judgment\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"healthy\" wordnet_id=\"a-02273838\" pos=\"JJ\" sense=\"financially secure and functioning well\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"healthy\" wordnet_id=\"a-02558184\" pos=\"JJ\" sense=\"promoting health\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"heartfelt\" wordnet_id=\"a-02179968\" pos=\"JJ\" sense=\"earnest\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"heavy\" cornetto_synset_id=\"d_a-9636\" wordnet_id=\"a-01184932\" pos=\"JJ\" sense=\"of comparatively great physical weight or density\" polarity=\"-0.2\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"heroic\" cornetto_synset_id=\"d_a-9330\" wordnet_id=\"a-00251134\" pos=\"JJ\" sense=\"having or displaying qualities appropriate for heroes\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"heroic\" cornetto_synset_id=\"d_a-9340\" wordnet_id=\"a-00263463\" pos=\"JJ\" sense=\"showing extreme courage\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"heroic\" wordnet_id=\"a-01284544\" pos=\"JJ\" sense=\"of behavior that is impressive and ambitious in scale or scope\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"heroic\" wordnet_id=\"a-01386010\" pos=\"JJ\" sense=\"very imposing or impressive\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"heroic\" wordnet_id=\"a-02740508\" pos=\"JJ\" sense=\"relating to or characteristic of heroes of antiquity\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"hidden\" wordnet_id=\"a-02089377\" pos=\"JJ\" sense=\"difficult to find\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"hidden\" wordnet_id=\"a-02089514\" pos=\"JJ\" sense=\"designed to elude detection\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"hidden\" wordnet_id=\"a-02517817\" pos=\"JJ\" sense=\"not accessible to view\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"high\" cornetto_synset_id=\"d_a-9337\" wordnet_id=\"a-01210854\" pos=\"JJ\" sense=\"greater than normal in degree or intensity or amount\" polarity=\"0.0\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"high\" cornetto_synset_id=\"n_a-512844\" wordnet_id=\"a-00705498\" pos=\"JJ\" sense=\"happy and excited and energetic\" polarity=\"0.2\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"high\" cornetto_synset_id=\"n_a-512845\" wordnet_id=\"a-01213197\" pos=\"JJ\" sense=\"used of sounds and voices\" polarity=\"0.0\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"high\" cornetto_synset_id=\"n_a-525864\" wordnet_id=\"a-00799224\" pos=\"JJ\" sense=\"slightly and pleasantly intoxicated from alcohol or a drug (especially marijuana)\" polarity=\"0.3\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"high\" cornetto_synset_id=\"n_a-531696\" wordnet_id=\"a-00705498\" pos=\"JJ\" sense=\"happy and excited and energetic\" polarity=\"0.3\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"higher\" wordnet_id=\"a-01211828\" pos=\"JJ\" sense=\"of education beyond the secondary level\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"higher\" wordnet_id=\"a-01211962\" pos=\"JJ\" sense=\"advanced in complexity or elaboration\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"hilarious\" wordnet_id=\"a-01266841\" pos=\"JJ\" sense=\"marked by or causing boisterous merriment or convulsive laughter\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"hindered\" wordnet_id=\"\" pos=\"VBN\" sense=\"\" polarity=\"-0.2\" subjectivity=\"0.1\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"historic\" cornetto_synset_id=\"n_a-510560\" wordnet_id=\"a-01730060\" pos=\"JJ\" sense=\"belonging to the past\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"historic\" cornetto_synset_id=\"n_a-512540\" wordnet_id=\"a-01279028\" pos=\"JJ\" sense=\"important in history\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"historical\" cornetto_synset_id=\"n_a-506773\" wordnet_id=\"a-02377418\" pos=\"JJ\" sense=\"used of the study of a phenomenon (especially language) as it changes through time\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"historical\" cornetto_synset_id=\"n_a-510560\" wordnet_id=\"a-01730060\" pos=\"JJ\" sense=\"belonging to the past\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"historical\" wordnet_id=\"a-01934284\" pos=\"JJ\" sense=\"having once lived or existed or taken place in the real world as distinct from being legendary\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"historical\" wordnet_id=\"a-02920121\" pos=\"JJ\" sense=\"of or relating to the study of history\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"hit-and-miss\" wordnet_id=\"\" pos=\"NN\" sense=\"\" polarity=\"-0.2\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"hollow\" wordnet_id=\"a-2010127\" pos=\"JJ\" sense=\"as if echoing in a hollow space\" polarity=\"-0.2\" subjectivity=\"0.1\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"hollow\" wordnet_id=\"n-13910895\" pos=\"NN\" sense=\"a cavity or space in something\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"hollow\" wordnet_id=\"n-9305031\" pos=\"NN\" sense=\"a small valley between mountains\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"honest\" cornetto_synset_id=\"n_a-508027\" wordnet_id=\"a-01225643\" pos=\"JJ\" sense=\"marked by truth\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"honest-to-god\" cornetto_synset_id=\"n_a-527706\" wordnet_id=\"a-01116118\" pos=\"JJ\" sense=\"(used informally especially for emphasis)\" polarity=\"-0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"horrible\" cornetto_synset_id=\"n_a-519025\" wordnet_id=\"a-00193480\" pos=\"JJ\" sense=\"provoking horror\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"horrific\" cornetto_synset_id=\"n_a-532685\" wordnet_id=\"a-00193799\" pos=\"JJ\" sense=\"causing fear or dread or terror\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"horrific\" wordnet_id=\"a-01626562\" pos=\"JJ\" sense=\"grossly offensive to decency or morality\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"horrifying\" wordnet_id=\"\" pos=\"JJ\" polarity=\"-0.9\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"hot\" cornetto_synset_id=\"n_a-526932\" wordnet_id=\"a-00033077\" pos=\"JJ\" sense=\"marked by excited activity\" polarity=\"-0.1\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"hot\" cornetto_synset_id=\"n_a-526932\" wordnet_id=\"a-00033077\" pos=\"JJ\" sense=\"marked by excited activity\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"huge\" cornetto_synset_id=\"n_a-508356\" wordnet_id=\"a-01387319\" pos=\"JJ\" sense=\"unusually great in size or amount or degree or especially extent or scope\" polarity=\"0.8\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"huge\" cornetto_synset_id=\"n_a-521669\" wordnet_id=\"a-01387319\" pos=\"JJ\" sense=\"unusually great in size or amount or degree or especially extent or scope\" polarity=\"0.3\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"huge\" cornetto_synset_id=\"n_a-531690\" wordnet_id=\"a-01387319\" pos=\"JJ\" sense=\"unusually great in size or amount or degree or especially extent or scope\" polarity=\"0.1\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"human\" cornetto_synset_id=\"n_a-518600\" wordnet_id=\"a-01258617\" pos=\"JJ\" sense=\"having human form or attributes as opposed to those of animals or divine beings\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"humble\" cornetto_synset_id=\"n_a-510497\" wordnet_id=\"a-02340458\" pos=\"JJ\" sense=\"low or inferior in station or quality\" polarity=\"-0.2\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"humorous\" wordnet_id=\"a-01264336\" pos=\"JJ\" sense=\"full of or characterized by humor\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"hysterical\" cornetto_synset_id=\"n_a-513259\" wordnet_id=\"a-01584287\" pos=\"JJ\" sense=\"characterized by or arising from psychoneurotic hysteria\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"hysterical\" wordnet_id=\"a-00086606\" pos=\"JJ\" sense=\"marked by excessive or uncontrollable emotion\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"icky\" wordnet_id=\"a-1127782\" pos=\"JJ\" sense=\"very bad\" polarity=\"-0.3\" subjectivity=\"0.6\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"iconic\" cornetto_synset_id=\"n_a-513273\" wordnet_id=\"a-02851550\" pos=\"JJ\" sense=\"relating to or having the characteristics on an icon\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"icy\" cornetto_synset_id=\"c_127\" wordnet_id=\"a-01079240\" pos=\"JJ\" sense=\"covered with or containing or consisting of ice\" polarity=\"-0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"ideal\" cornetto_synset_id=\"n_a-513278\" wordnet_id=\"a-00012689\" pos=\"JJ\" sense=\"constituting or existing only in the form of an idea or mental image or conception\" polarity=\"0.9\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"identifiable\" cornetto_synset_id=\"n_a-512378\" wordnet_id=\"a-01272397\" pos=\"JJ\" sense=\"capable of being identified\" polarity=\"0.1\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"idiocy\" wordnet_id=\"n-5646926\" pos=\"NN\" sense=\"extreme mental retardation\" polarity=\"-0.3\" subjectivity=\"0.4\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"idiot\" wordnet_id=\"n-10197525\" pos=\"NN\" sense=\"a person of subnormal intelligence\" polarity=\"-0.8\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"idiots\" wordnet_id=\"\" pos=\"NNS\" sense=\"\" polarity=\"-0.8\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"idiotic\" cornetto_synset_id=\"n_a-503782\" wordnet_id=\"a-01840880\" pos=\"JJ\" sense=\"having a mental age of three to seven years\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"idiotic\" cornetto_synset_id=\"n_a-513294\" wordnet_id=\"a-02075737\" pos=\"JJ\" sense=\"insanely irresponsible\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"idiotic\" wordnet_id=\"a-02570643\" pos=\"JJ\" sense=\"incongruous\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"ill\" wordnet_id=\"a-00178126\" pos=\"JJ\" sense=\"presaging ill fortune\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"ill\" wordnet_id=\"a-01128010\" pos=\"JJ\" sense=\"distressing\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"ill\" wordnet_id=\"a-01162267\" pos=\"JJ\" sense=\"resulting in suffering or adversity\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"ill\" wordnet_id=\"a-01246004\" pos=\"JJ\" sense=\"indicating hostility or enmity\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"ill\" wordnet_id=\"a-02541302\" pos=\"JJ\" sense=\"affected by an impairment of normal physical or mental function\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"illegal\" cornetto_synset_id=\"n_a-521122\" wordnet_id=\"a-01401854\" pos=\"JJ\" sense=\"prohibited by law or by official or accepted rules\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"imaginative\" cornetto_synset_id=\"n_a-506150\" wordnet_id=\"a-00643863\" pos=\"JJ\" sense=\"(used of persons or artifacts) marked by independence and creativity in thought or action\" polarity=\"0.6\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"imbecile\" wordnet_id=\"\" pos=\"NN\" polarity=\"-0.8\" subjectivity=\"1.0\" intensity=\"1.0\" label=\"profanity\" confidence=\"0.8\" />\n<word form=\"imitation\" wordnet_id=\"n-1020936\" pos=\"NN\" sense=\"copying (or trying to copy) the actions of someone else\" polarity=\"-0.2\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"imitation\" wordnet_id=\"n-3562126\" pos=\"NN\" sense=\"something copied or derived from an original\" polarity=\"-0.2\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"imitation\" wordnet_id=\"n-5962602\" pos=\"NN\" sense=\"the doctrine that representations of nature or human behavior should be accurate imitations\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"immanent\" cornetto_synset_id=\"n_a-529917\" wordnet_id=\"a-01273910\" pos=\"JJ\" sense=\"of a mental act performed entirely within the mind\" polarity=\"-0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"immense\" cornetto_synset_id=\"n_a-508356\" wordnet_id=\"a-01387319\" pos=\"JJ\" sense=\"unusually great in size or amount or degree or especially extent or scope\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"impassive\" cornetto_synset_id=\"n_a-521187\" wordnet_id=\"a-00857560\" pos=\"JJ\" sense=\"having or revealing little emotion or sensibility\" polarity=\"-0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"impatient\" cornetto_synset_id=\"n_a-521037\" wordnet_id=\"a-00811536\" pos=\"JJ\" sense=\"(usually followed by 'to') full of eagerness\" polarity=\"-0.2\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"impeccable\" cornetto_synset_id=\"n_a-533543\" wordnet_id=\"a-01750847\" pos=\"JJ\" sense=\"without fault or error\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"impeccable\" wordnet_id=\"a-02513521\" pos=\"JJ\" sense=\"not capable of sin\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"imperceptible\" cornetto_synset_id=\"d_a-9473\" wordnet_id=\"a-01748318\" pos=\"JJ\" sense=\"impossible or difficult to perceive by the mind or senses\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"implicated\" cornetto_synset_id=\"n_a-518389\" wordnet_id=\"a-01516346\" pos=\"JJ\" sense=\"culpably involved\" polarity=\"-0.4\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"implicit in\" cornetto_synset_id=\"n_a-520863\" wordnet_id=\"a-00941940\" pos=\"JJ\" sense=\"in the nature of something though not readily apparent\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"important\" cornetto_synset_id=\"d_a-9178\" wordnet_id=\"a-01830403\" pos=\"JJ\" sense=\"having authority or ascendancy or influence\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"important\" cornetto_synset_id=\"n_a-527688\" wordnet_id=\"a-02161432\" pos=\"JJ\" sense=\"important in effect or meaning\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"important\" wordnet_id=\"a-00655779\" pos=\"JJ\" sense=\"of extreme importance\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"important\" wordnet_id=\"a-01275562\" pos=\"JJ\" sense=\"of great significance or value\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"important\" wordnet_id=\"a-01539887\" pos=\"JJ\" sense=\"having or suggesting a consciousness of high position\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"impossible\" cornetto_synset_id=\"n_a-511166\" wordnet_id=\"a-02418692\" pos=\"JJ\" sense=\"totally unlikely\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"impossible\" cornetto_synset_id=\"n_a-521243\" wordnet_id=\"a-02436025\" pos=\"JJ\" sense=\"used of persons or their behavior\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"impossible\" wordnet_id=\"a-01823092\" pos=\"JJ\" sense=\"not capable of occurring or being accomplished or dealt with\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"impressed\" cornetto_synset_id=\"n_a-509653\" wordnet_id=\"a-00071142\" pos=\"JJ\" sense=\"deeply or markedly affected or influenced\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"impressive\" cornetto_synset_id=\"n_a-524894\" wordnet_id=\"a-00835292\" pos=\"JJ\" sense=\"producing a strong effect\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"impressive\" wordnet_id=\"a-01282014\" pos=\"JJ\" sense=\"making a strong or vivid impression\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"in good taste\" cornetto_synset_id=\"n_a-528044\" wordnet_id=\"a-00689215\" pos=\"JJ\" sense=\"satisfying generally accepted social or esthetic standards\" polarity=\"0.9\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"in stock\" cornetto_synset_id=\"n_a-533683\" wordnet_id=\"a-00184543\" pos=\"JJ\" sense=\"available for use or sale\" polarity=\"0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"inapposite\" cornetto_synset_id=\"n_a-519011\" wordnet_id=\"a-00138782\" pos=\"JJ\" sense=\"of an inappropriate or misapplied nature\" polarity=\"-0.8\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"inarticulate\" cornetto_synset_id=\"n_a-520850\" wordnet_id=\"a-00151105\" pos=\"JJ\" sense=\"without or deprived of the use of speech or words\" polarity=\"-0.1\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"inauspicious\" cornetto_synset_id=\"n_a-503876\" wordnet_id=\"a-00176838\" pos=\"JJ\" sense=\"not auspicious\" polarity=\"-0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"inauspicious\" cornetto_synset_id=\"n_a-503876\" wordnet_id=\"a-00176838\" pos=\"JJ\" sense=\"not auspicious\" polarity=\"-0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"inauspicious\" cornetto_synset_id=\"n_a-521232\" wordnet_id=\"a-00176838\" pos=\"JJ\" sense=\"not auspicious\" polarity=\"-0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"incalculable\" cornetto_synset_id=\"n_a-530266\" wordnet_id=\"a-00301777\" pos=\"JJ\" sense=\"not capable of being computed or enumerated\" polarity=\"0.0\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"incoherent\" wordnet_id=\"a-152104\" pos=\"JJ\" sense=\"unable to express yourself clearly or fluently\" polarity=\"-0.3\" subjectivity=\"0.3\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"incoherent\" wordnet_id=\"a-328653\" pos=\"JJ\" sense=\"(physics) of waves having no stable definite or stable phase relation\" polarity=\"-0.1\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"incoherent\" wordnet_id=\"a-464962\" pos=\"JJ\" sense=\"without logical or meaningful connection\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"incomparable\" cornetto_synset_id=\"d_a-9559\" wordnet_id=\"a-00504592\" pos=\"JJ\" sense=\"such that comparison is impossible\" polarity=\"0.4\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"incompetent\" wordnet_id=\"a-1128103\" pos=\"JJ\" sense=\"not doing a good job\" polarity=\"-0.6\" subjectivity=\"0.7\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"incompetent\" wordnet_id=\"a-511214\" pos=\"JJ\" sense=\"not qualified or suited for a purpose\" polarity=\"-0.4\" subjectivity=\"0.4\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"incompetent\" wordnet_id=\"a-512261\" pos=\"JJ\" sense=\"legally not qualified or sufficient\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"incompetent\" wordnet_id=\"n-10202363\" pos=\"NN\" sense=\"someone who is not competent to take effective action\" polarity=\"-0.3\" subjectivity=\"0.3\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"inconsistencies\" wordnet_id=\"\" pos=\"NNS\" sense=\"\" polarity=\"-0.1\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"inconvenient\" cornetto_synset_id=\"n_a-521143\" wordnet_id=\"a-00605128\" pos=\"JJ\" sense=\"not suited to your comfort, purpose or needs\" polarity=\"-0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"incorruptible\" cornetto_synset_id=\"n_a-513844\" wordnet_id=\"a-00622935\" pos=\"JJ\" sense=\"incapable of being morally corrupted\" polarity=\"0.5\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"incredible\" cornetto_synset_id=\"n_a-535103\" wordnet_id=\"a-00645493\" pos=\"JJ\" sense=\"beyond belief or understanding\" polarity=\"0.9\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"incurable\" cornetto_synset_id=\"n_a-521115\" wordnet_id=\"a-00349759\" pos=\"JJ\" sense=\"unalterable in disposition or habits\" polarity=\"-0.5\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"indecipherable\" cornetto_synset_id=\"n_a-521269\" wordnet_id=\"a-00535042\" pos=\"JJ\" sense=\"impossible to determine the meaning of\" polarity=\"-0.4\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"indecipherable\" cornetto_synset_id=\"n_a-521270\" wordnet_id=\"a-01405523\" pos=\"JJ\" sense=\"not easily deciphered\" polarity=\"-0.7\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"independent\" cornetto_synset_id=\"n_a-519989\" wordnet_id=\"a-00727564\" pos=\"JJ\" sense=\"free from external control and constraint\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"independent\" wordnet_id=\"a-00730215\" pos=\"JJ\" sense=\"(of a clause) capable of standing syntactically alone as a complete sentence\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"independent\" wordnet_id=\"a-00731606\" pos=\"JJ\" sense=\"not controlled by a party or interest group\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"independent\" wordnet_id=\"a-01062393\" pos=\"JJ\" sense=\"(of political bodies) not controlled by outside forces\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"indie\" wordnet_id=\"a-00729133\" pos=\"JJ\" sense=\"(of pop groups) not affiliated with a major recording company\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"indispensable\" cornetto_synset_id=\"n_a-520130\" wordnet_id=\"a-00849108\" pos=\"JJ\" sense=\"unavoidable\" polarity=\"0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"individual\" cornetto_synset_id=\"d_a-9343\" wordnet_id=\"a-02153174\" pos=\"JJ\" sense=\"characteristic of or meant for a single person or thing\" polarity=\"0.0\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"indomitable\" cornetto_synset_id=\"n_a-520642\" wordnet_id=\"a-00570099\" pos=\"JJ\" sense=\"impossible to subdue\" polarity=\"0.0\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"ineluctable\" cornetto_synset_id=\"n_a-521606\" wordnet_id=\"a-00343360\" pos=\"JJ\" sense=\"impossible to avoid or evade\" polarity=\"-0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"inevitable\" wordnet_id=\"a-00343015\" pos=\"JJ\" sense=\"incapable of being avoided or prevented\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"inevitable\" wordnet_id=\"a-01841834\" pos=\"JJ\" sense=\"invariably occurring or appearing\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"inexpedient\" cornetto_synset_id=\"n_a-521622\" wordnet_id=\"a-01814252\" pos=\"JJ\" sense=\"not appropriate to the purpose\" polarity=\"-0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"inexperienced\" cornetto_synset_id=\"n_a-520979\" wordnet_id=\"a-00936740\" pos=\"JJ\" sense=\"lacking practical experience or training\" polarity=\"-0.1\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"inexplicable\" cornetto_synset_id=\"n_a-520635\" wordnet_id=\"a-00939105\" pos=\"JJ\" sense=\"incapable of being explained or accounted for\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"inexplicable\" cornetto_synset_id=\"n_a-520635\" wordnet_id=\"a-00939105\" pos=\"JJ\" sense=\"incapable of being explained or accounted for\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"inexpressible\" cornetto_synset_id=\"d_a-9258\" wordnet_id=\"a-00943999\" pos=\"JJ\" sense=\"defying expression\" polarity=\"-0.1\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"inexpressible\" cornetto_synset_id=\"d_a-9258\" wordnet_id=\"a-00943999\" pos=\"JJ\" sense=\"defying expression\" polarity=\"0.2\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"infamous\" cornetto_synset_id=\"n_a-522276\" wordnet_id=\"a-01984411\" pos=\"JJ\" sense=\"known widely and usually unfavorably\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"infantile\" wordnet_id=\"a-1648189\" pos=\"JJ\" sense=\"being or befitting or characteristic of an infant\" polarity=\"-0.8\" subjectivity=\"0.7\" intensity=\"1.0\" reliability=\"0.9\" />>\n<word form=\"infantile\" wordnet_id=\"a-2748837\" pos=\"JJ\" sense=\"of or relating to infants or infancy\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"infatuated\" wordnet_id=\"\" pos=\"VBN\" sense=\"\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"inflexible\" cornetto_synset_id=\"d_a-9530\" wordnet_id=\"a-01029151\" pos=\"JJ\" sense=\"incapable of adapting or changing to meet circumstances\" polarity=\"-0.4\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"infuriating\" wordnet_id=\"\" pos=\"\" sense=\"VBG\" polarity=\"-0.6\" subjectivity=\"0.8\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"ingenious\" wordnet_id=\"a-00061885\" pos=\"JJ\" sense=\"showing inventiveness and skill\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"inhumane\" cornetto_synset_id=\"d_a-9455\" wordnet_id=\"a-01262611\" pos=\"JJ\" sense=\"lacking and reflecting lack of pity or compassion\" polarity=\"-0.9\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"initial\" wordnet_id=\"a-01011973\" pos=\"JJ\" sense=\"occurring at the beginning\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"inner\" wordnet_id=\"a-00948985\" pos=\"JJ\" sense=\"inside or closer to the inside of the body\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"inner\" wordnet_id=\"a-00950272\" pos=\"JJ\" sense=\"located or occurring within or closer to a center\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"inner\" wordnet_id=\"a-00951831\" pos=\"JJ\" sense=\"located inward\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"inner\" wordnet_id=\"a-01348835\" pos=\"JJ\" sense=\"innermost or essential\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"inner\" wordnet_id=\"a-01862891\" pos=\"JJ\" sense=\"exclusive to a center\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"inner\" wordnet_id=\"a-01863066\" pos=\"JJ\" sense=\"confined to an exclusive group\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"innocent\" cornetto_synset_id=\"n_a-521396\" wordnet_id=\"a-01319874\" pos=\"JJ\" sense=\"free from evil or guilt\" polarity=\"0.5\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"innovative\" wordnet_id=\"a-01687586\" pos=\"JJ\" sense=\"being or producing something like nothing done or experienced or created before\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"innovative\" wordnet_id=\"a-01876261\" pos=\"JJ\" sense=\"ahead of the times\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"insane\" wordnet_id=\"a-02074092\" pos=\"JJ\" sense=\"afflicted with or characteristic of mental derangement\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"insane\" wordnet_id=\"a-02572038\" pos=\"JJ\" sense=\"very foolish\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"insecure\" wordnet_id=\"a-02093493\" pos=\"JJ\" sense=\"lacking self-confidence or assurance\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"insecure\" wordnet_id=\"a-02094755\" pos=\"JJ\" sense=\"lacking in security or safety\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"insecure\" wordnet_id=\"a-02095786\" pos=\"JJ\" sense=\"not firm or firmly fixed\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"insecure\" wordnet_id=\"a-02524443\" pos=\"JJ\" sense=\"not safe from attack\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"inspirational\" wordnet_id=\"a-02055773\" pos=\"JJ\" sense=\"imparting a divine influence on the mind and soul\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"inspiring\" cornetto_synset_id=\"n_a-513804\" wordnet_id=\"a-01323096\" pos=\"JJ\" sense=\"stimulating or exalting to the spirit\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"instant\" wordnet_id=\"a-00712877\" pos=\"JJ\" sense=\"demanding attention\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"instant\" wordnet_id=\"a-00979031\" pos=\"JJ\" sense=\"occurring with no delay\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"instant\" wordnet_id=\"a-01732012\" pos=\"JJ\" sense=\"in or of the present month\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"insulting\" wordnet_id=\"a-01995288\" pos=\"JJ\" sense=\"expressing extreme contempt\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"insultingly\" wordnet_id=\"r-379674\" pos=\"RB\" sense=\"in a disrespectful and insulting manner\" polarity=\"-0.3\" subjectivity=\"0.4\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"intellectual\" cornetto_synset_id=\"n_a-532721\" wordnet_id=\"a-01332386\" pos=\"JJ\" sense=\"appealing to or using the intellect\" polarity=\"0.3\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"intelligent\" cornetto_synset_id=\"c_239\" wordnet_id=\"a-01334398\" pos=\"JJ\" sense=\"having the capacity for thought and reason especially to a high degree\" polarity=\"0.8\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"intelligentsia\" wordnet_id=\"n-8387354\" pos=\"NN\" sense=\"an educated and intellectual elite\" polarity=\"-0.1\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"intense\" cornetto_synset_id=\"n_a-512478\" wordnet_id=\"a-01509527\" pos=\"JJ\" sense=\"possessing or displaying a distinctive feature to a heightened degree\" polarity=\"0.2\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"interested\" wordnet_id=\"a-01342237\" pos=\"JJ\" sense=\"having or showing interest\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"interested\" wordnet_id=\"a-01515692\" pos=\"JJ\" sense=\"involved in or affected by or having a claim to or share in\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"interesting\" wordnet_id=\"a-01343918\" pos=\"JJ\" sense=\"arousing or holding the attention\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"internal\" cornetto_synset_id=\"n_a-524893\" wordnet_id=\"a-01038332\" pos=\"JJ\" sense=\"inside the country\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"internal\" wordnet_id=\"a-00948670\" pos=\"JJ\" sense=\"happening or arising or located within some limits or especially surface\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"internal\" wordnet_id=\"a-00951831\" pos=\"JJ\" sense=\"located inward\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"internal\" wordnet_id=\"a-01346978\" pos=\"JJ\" sense=\"occurring within an institution or community\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"internal\" wordnet_id=\"a-01348835\" pos=\"JJ\" sense=\"innermost or essential\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"international\" cornetto_synset_id=\"d_a-9351\" wordnet_id=\"a-01037885\" pos=\"JJ\" sense=\"from or between other countries\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"international\" wordnet_id=\"a-01568375\" pos=\"JJ\" sense=\"concerning or belonging to all or at least two or more nations\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"intimate\" cornetto_synset_id=\"n_a-527516\" wordnet_id=\"a-02132735\" pos=\"JJ\" sense=\"involved in a sexual relationship\" polarity=\"0.2\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"intriguing\" wordnet_id=\"a-01344684\" pos=\"JJ\" sense=\"capable of arousing interest or curiosity\" polarity=\"0.4\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"intriguing\" wordnet_id=\"a-01897106\" pos=\"JJ\" sense=\"disturbingly provocative\" polarity=\"0.2\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"inventive\" cornetto_synset_id=\"n_a-506150\" wordnet_id=\"a-00643863\" pos=\"JJ\" sense=\"(used of persons or artifacts) marked by independence and creativity in thought or action\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"irish\" wordnet_id=\"a-03003744\" pos=\"JJ\" sense=\"of or relating to or characteristic of Ireland or its people\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"ironic\" cornetto_synset_id=\"n_a-528735\" wordnet_id=\"a-00563288\" pos=\"JJ\" sense=\"characterized by often poignant difference or incongruity between what is expected and what actually is\" polarity=\"0.2\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"irrelevant\" wordnet_id=\"a-01976084\" pos=\"JJ\" sense=\"having no bearing on or connection with the subject at issue\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"irritating\" wordnet_id=\"a-2310185\" pos=\"JJ\" sense=\"(used of physical stimuli) serving to stimulate or excite\" polarity=\"-0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"irritating\" wordnet_id=\"a-478685\" pos=\"JJ\" sense=\"causing physical discomfort\" polarity=\"-0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"isn't\" wordnet_id=\"\" pos=\"VB\" polarity=\"-0.2\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"italian\" wordnet_id=\"a-02957066\" pos=\"JJ\" sense=\"of or pertaining to or characteristic of Italy or its people or culture or language\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"jackass\" wordnet_id=\"\" pos=\"NN\" polarity=\"-0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"jackasses\" wordnet_id=\"\" pos=\"NNS\" polarity=\"-0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"jail\" wordnet_id=\"n-3592245\" pos=\"NN\" sense=\"a correctional institution used to detain persons who are in the lawful custody of the government\" polarity=\"-0.1\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"jammed\" cornetto_synset_id=\"n_a-529021\" wordnet_id=\"a-00560100\" pos=\"JJ\" sense=\"filled to capacity\" polarity=\"-0.1\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"japanese\" cornetto_synset_id=\"n_a-500510\" wordnet_id=\"a-02965043\" pos=\"JJ\" sense=\"of or relating to or characteristic of Japan or its people or their culture or language\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"jewish\" cornetto_synset_id=\"n_a-500503\" wordnet_id=\"a-02922263\" pos=\"JJ\" sense=\"of or relating to Jews or their culture or religion\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"joy\" wordnet_id=\"n-5829782\" pos=\"NN\" sense=\"something or someone that provides a source of happiness\" polarity=\"0.8\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"joy\" wordnet_id=\"n-7527352\" pos=\"NN\" sense=\"the emotion of great happiness\" polarity=\"0.8\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"justified\" cornetto_synset_id=\"n_a-510466\" wordnet_id=\"a-00910750\" pos=\"JJ\" sense=\"having words so spaced that lines have straight even margins\" polarity=\"0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"juvenile\" wordnet_id=\"a-01492596\" pos=\"JJ\" sense=\"displaying or suggesting a lack of maturity\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"juvenile\" wordnet_id=\"a-02892980\" pos=\"JJ\" sense=\"of or relating to or characteristic of or appropriate for children or young people\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"key\" wordnet_id=\"a-01277097\" pos=\"JJ\" sense=\"serving as an essential component\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"killed\" wordnet_id=\"\" pos=\"VB\" sense=\"cause to die\" polarity=\"-0.2\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"kind\" cornetto_synset_id=\"n_a-501386\" wordnet_id=\"a-01372049\" pos=\"JJ\" sense=\"having or showing a tender and considerate and helpful nature\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"lame\" wordnet_id=\"a-01018788\" pos=\"JJ\" sense=\"disabled in the feet or legs\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"lame\" wordnet_id=\"a-02325304\" pos=\"JJ\" sense=\"pathetically lacking in force or effectiveness\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"large\" cornetto_synset_id=\"n_a-508271\" wordnet_id=\"a-00579622\" pos=\"JJ\" sense=\"conspicuous in position or importance\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"large\" cornetto_synset_id=\"n_a-517554\" wordnet_id=\"a-00173391\" pos=\"JJ\" sense=\"in an advanced stage of pregnancy\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"large\" cornetto_synset_id=\"n_a-521944\" wordnet_id=\"a-02016881\" pos=\"JJ\" sense=\"ostentatiously lofty in style\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"large\" wordnet_id=\"a-00527870\" pos=\"JJ\" sense=\"having broad power and range and scope\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"large\" wordnet_id=\"a-01114658\" pos=\"JJ\" sense=\"generous and understanding and tolerant\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"large\" wordnet_id=\"a-01382086\" pos=\"JJ\" sense=\"above average in size or number or quantity or magnitude or extent\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"large\" wordnet_id=\"a-02163307\" pos=\"JJ\" sense=\"fairly large or important in effect\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"larger\" wordnet_id=\"a-01383756\" pos=\"JJ\" sense=\"large or big relative to something else\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"last\" cornetto_synset_id=\"n_a-516555\" wordnet_id=\"a-00004296\" pos=\"JJ\" sense=\"occurring at the time of death\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"last\" cornetto_synset_id=\"n_a-532537\" wordnet_id=\"a-00004296\" pos=\"JJ\" sense=\"occurring at the time of death\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"last\" cornetto_synset_id=\"n_a-533745\" wordnet_id=\"a-01212095\" pos=\"JJ\" sense=\"highest in extent or degree\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"lasting\" cornetto_synset_id=\"n_a-507829\" wordnet_id=\"a-01439496\" pos=\"JJ\" sense=\"existing for a long time\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"lasting\" wordnet_id=\"a-01754421\" pos=\"JJ\" sense=\"continuing or enduring without marked change in status or condition or place\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"lasting\" wordnet_id=\"a-01758339\" pos=\"JJ\" sense=\"retained\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"lasting\" wordnet_id=\"a-02291500\" pos=\"JJ\" sense=\"lasting a long time without change\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"late\" cornetto_synset_id=\"n_a-516548\" wordnet_id=\"a-00816481\" pos=\"JJ\" sense=\"being or occurring at an advanced period of time or after a usual or expected time\" polarity=\"-0.3\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"later\" cornetto_synset_id=\"n_a-508045\" wordnet_id=\"a-00123485\" pos=\"JJ\" sense=\"coming at a subsequent time or stage\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"later\" wordnet_id=\"a-00819235\" pos=\"JJ\" sense=\"at or toward an end or late period or stage of development\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"latest\" cornetto_synset_id=\"n_a-505528\" wordnet_id=\"a-00971506\" pos=\"JJ\" sense=\"in the current fashion or style\" polarity=\"0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"latter\" wordnet_id=\"a-01047561\" pos=\"JJ\" sense=\"referring to the second of two things or persons mentioned (or the last one or ones of several)\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"laugh\" wordnet_id=\"v-31820\" pos=\"VB\" sense=\"produce laughter\" polarity=\"0.3\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"laughable\" cornetto_synset_id=\"n_a-515488\" wordnet_id=\"a-01265308\" pos=\"JJ\" sense=\"arousing or provoking laughter\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"laughable\" wordnet_id=\"a-02570643\" pos=\"JJ\" sense=\"incongruous\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"laughed\" wordnet_id=\"\" pos=\"VB\" polarity=\"0.7\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"lawful\" cornetto_synset_id=\"n_a-514272\" wordnet_id=\"a-01395617\" pos=\"JJ\" sense=\"conformable to or allowed by law\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"lazy\" wordnet_id=\"a-00294579\" pos=\"JJ\" sense=\"disinclined to work or exertion\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"lazy\" wordnet_id=\"a-00981304\" pos=\"JJ\" sense=\"moving slowly and gently\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"leaden\" wordnet_id=\"a-1189853\" pos=\"JJ\" sense=\"made heavy or weighted down with weariness\" polarity=\"-0.3\" subjectivity=\"0.4\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"leaden\" wordnet_id=\"a-2754012\" pos=\"JJ\" sense=\"made of lead\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"leaden\" wordnet_id=\"a-837756\" pos=\"JJ\" sense=\"(of movement) slow and laborious\" polarity=\"-0.3\" subjectivity=\"0.4\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"least\" wordnet_id=\"a-01556061\" pos=\"JJ\" sense=\"the superlative of 'little' that can be used with mass nouns and is usually preceded by 'the'\" polarity=\"-0.3\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"left\" cornetto_synset_id=\"n_a-517388\" wordnet_id=\"a-02032953\" pos=\"JJ\" sense=\"being or located on or directed toward the side of the body to the west when facing north\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"leftist\" cornetto_synset_id=\"n_a-517389\" wordnet_id=\"a-02031335\" pos=\"JJ\" sense=\"believing in or supporting tenets of the political left\" polarity=\"-0.1\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"leftist\" cornetto_synset_id=\"n_a-517389\" wordnet_id=\"a-02031335\" pos=\"JJ\" sense=\"believing in or supporting tenets of the political left\" polarity=\"0.0\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"legal\" cornetto_synset_id=\"n_a-535042\" wordnet_id=\"a-02499148\" pos=\"JJ\" sense=\"having legal efficacy or force\" polarity=\"0.2\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"legendary\" cornetto_synset_id=\"n_a-516946\" wordnet_id=\"a-01935744\" pos=\"JJ\" sense=\"celebrated in fable or legend\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"legendary\" wordnet_id=\"a-01376355\" pos=\"JJ\" sense=\"so celebrated as to having taken on the nature of a legend\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"legible\" cornetto_synset_id=\"n_a-516920\" wordnet_id=\"a-01404702\" pos=\"JJ\" sense=\"(of handwriting, print, etc.) capable of being read or deciphered\" polarity=\"0.2\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"lenient\" cornetto_synset_id=\"c_392\" wordnet_id=\"a-00711831\" pos=\"JJ\" sense=\"not strict\" polarity=\"0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"less\" wordnet_id=\"a-01555416\" pos=\"JJ\" sense=\"(comparative of 'little' usually used with mass nouns) a quantifier meaning not as great in amount or degree\" polarity=\"-0.5\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"less\" wordnet_id=\"a-01556913\" pos=\"JJ\" sense=\"(nonstandard in some uses but often idiomatic with measure phrases) fewer\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"less\" wordnet_id=\"a-02347371\" pos=\"JJ\" sense=\"(usually preceded by 'no') lower in quality\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"lesser\" wordnet_id=\"a-01393681\" pos=\"JJ\" sense=\"smaller in size or amount or value\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"lesser\" wordnet_id=\"a-01395488\" pos=\"JJ\" sense=\"of less size or importance\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"liable\" cornetto_synset_id=\"n_a-532097\" wordnet_id=\"a-02362178\" pos=\"JJ\" sense=\"(often followed by 'to') likely to be affected with\" polarity=\"-0.1\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"licentious\" cornetto_synset_id=\"n_a-520781\" wordnet_id=\"a-00362269\" pos=\"JJ\" sense=\"lacking moral discipline\" polarity=\"0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"lifelike\" cornetto_synset_id=\"n_a-517106\" wordnet_id=\"a-00074594\" pos=\"JJ\" sense=\"free from artificiality\" polarity=\"0.3\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"lifelong\" cornetto_synset_id=\"n_a-517115\" wordnet_id=\"a-01440159\" pos=\"JJ\" sense=\"continuing through life\" polarity=\"-0.1\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"light\" cornetto_synset_id=\"d_a-9580\" wordnet_id=\"a-00993117\" pos=\"JJ\" sense=\"having relatively few calories\" polarity=\"0.2\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"light\" cornetto_synset_id=\"n_a-528450\" wordnet_id=\"a-00269989\" pos=\"JJ\" sense=\"characterized by or emitting light\" polarity=\"0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"light-hearted\" wordnet_id=\"a-00363291\" pos=\"JJ\" sense=\"carefree and happy and lighthearted\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"likable\" wordnet_id=\"a-01461292\" pos=\"JJ\" sense=\"easy to like\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"likable\" wordnet_id=\"a-02376277\" pos=\"JJ\" sense=\"(of characters in literature or drama) evoking empathic or sympathetic feelings\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"liked\" wordnet_id=\"a-1461138\" pos=\"JJ\" sense=\"found pleasant or attractive\" polarity=\"0.6\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"likely\" wordnet_id=\"a-00645169\" pos=\"JJ\" sense=\"within the realm of credibility\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"likely\" wordnet_id=\"a-01411451\" pos=\"JJ\" sense=\"has a good chance of being the case or of coming about\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"likely\" wordnet_id=\"a-01413247\" pos=\"JJ\" sense=\"likely but not certain to be or become true or real\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"likely\" wordnet_id=\"a-01884176\" pos=\"JJ\" sense=\"expected to become or be\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"limited\" wordnet_id=\"a-00529191\" pos=\"JJ\" sense=\"including only a part\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"limited\" wordnet_id=\"a-01007258\" pos=\"JJ\" sense=\"not unlimited\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"limited\" wordnet_id=\"a-01103844\" pos=\"JJ\" sense=\"having a specific function or scope\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"limited\" wordnet_id=\"a-01415021\" pos=\"JJ\" sense=\"small in range or scope\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"limited\" wordnet_id=\"a-01532586\" pos=\"JJ\" sense=\"not excessive\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"limited\" wordnet_id=\"a-01913642\" pos=\"JJ\" sense=\"mediocre\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"limited\" wordnet_id=\"a-02002470\" pos=\"JJ\" sense=\"subject to limits or subjected to limits\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"limp\" cornetto_synset_id=\"n_a-527850\" wordnet_id=\"a-02404081\" pos=\"JJ\" sense=\"lacking in strength or firmness or resilience\" polarity=\"-0.2\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"linguistic\" cornetto_synset_id=\"n_a-530161\" wordnet_id=\"a-02842445\" pos=\"JJ\" sense=\"consisting of or related to language\" polarity=\"0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"literary\" cornetto_synset_id=\"n_a-517073\" wordnet_id=\"a-02830501\" pos=\"JJ\" sense=\"of or relating to or characteristic of literature\" polarity=\"0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"little\" cornetto_synset_id=\"c_648\" wordnet_id=\"a-01391351\" pos=\"JJ\" sense=\"limited or below average in number or quantity or magnitude or extent\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"little\" cornetto_synset_id=\"n_a-519992\" wordnet_id=\"a-01280908\" pos=\"JJ\" sense=\"(informal) small and of little importance\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"little\" wordnet_id=\"a-00855670\" pos=\"JJ\" sense=\"small in a way that arouses feelings (of tenderness or its opposite depending on the context)\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"little\" wordnet_id=\"a-01455732\" pos=\"JJ\" sense=\"(of a voice) faint\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"little\" wordnet_id=\"a-01467534\" pos=\"JJ\" sense=\"lowercase\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"little\" wordnet_id=\"a-01554510\" pos=\"JJ\" sense=\"(quantifier used with mass nouns) small in quantity or degree\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"little\" wordnet_id=\"a-01649031\" pos=\"JJ\" sense=\"(of children and animals) young, immature\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"little\" wordnet_id=\"a-02386612\" pos=\"JJ\" sense=\"low in stature\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"live\" cornetto_synset_id=\"d_a-9644\" wordnet_id=\"a-00843595\" pos=\"JJ\" sense=\"elastic\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"live\" cornetto_synset_id=\"n_a-535124\" wordnet_id=\"a-00806243\" pos=\"JJ\" sense=\"abounding with life and energy\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"live\" wordnet_id=\"a-00041488\" pos=\"JJ\" sense=\"capable of erupting\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"live\" wordnet_id=\"a-00094448\" pos=\"JJ\" sense=\"possessing life\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"live\" wordnet_id=\"a-00099290\" pos=\"JJ\" sense=\"exerting force or containing energy\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"live\" wordnet_id=\"a-00358392\" pos=\"JJ\" sense=\"charged or energized with electricity\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"live\" wordnet_id=\"a-00667353\" pos=\"JJ\" sense=\"of current relevance\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"live\" wordnet_id=\"a-00667463\" pos=\"JJ\" sense=\"in current use or ready for use\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"live\" wordnet_id=\"a-01422556\" pos=\"JJ\" sense=\"actually being performed at the time of hearing or viewing\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"live\" wordnet_id=\"a-01424596\" pos=\"JJ\" sense=\"charged with an explosive\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"live\" wordnet_id=\"a-02010441\" pos=\"JJ\" sense=\"highly reverberant\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"lively\" cornetto_synset_id=\"d_a-9285\" wordnet_id=\"a-00804371\" pos=\"JJ\" sense=\"filled with events or activity\" polarity=\"0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"lively\" cornetto_synset_id=\"d_a-9285\" wordnet_id=\"a-00804371\" pos=\"JJ\" sense=\"filled with events or activity\" polarity=\"0.8\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"lively\" cornetto_synset_id=\"n_a-528047\" wordnet_id=\"a-00804371\" pos=\"JJ\" sense=\"filled with events or activity\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"lmao\" wordnet_id=\"\" pos=\"UH\" polarity=\"0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"local\" wordnet_id=\"a-01106405\" pos=\"JJ\" sense=\"relating to or applicable to or concerned with the administration of a city or town or district rather than a larger area\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"local\" wordnet_id=\"a-01425529\" pos=\"JJ\" sense=\"affecting only a restricted part or area of the body\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"local\" wordnet_id=\"a-02756346\" pos=\"JJ\" sense=\"of or belonging to or characteristic of a particular locality or neighborhood\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"logical\" cornetto_synset_id=\"n_a-524375\" wordnet_id=\"a-00464513\" pos=\"JJ\" sense=\"marked by an orderly, logical, and aesthetically consistent relation of parts\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"logical\" wordnet_id=\"a-01430111\" pos=\"JJ\" sense=\"capable of or reflecting the capability for correct and valid reasoning\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"logical\" wordnet_id=\"a-01925708\" pos=\"JJ\" sense=\"capable of thinking and expressing yourself in a clear and consistent manner\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"logical\" wordnet_id=\"a-02499301\" pos=\"JJ\" sense=\"based on known statements or events or conditions\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"lol\" wordnet_id=\"\" pos=\"UH\" polarity=\"0.8\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"lolol\" wordnet_id=\"\" pos=\"UH\" polarity=\"0.8\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"lonely\" cornetto_synset_id=\"n_a-508013\" wordnet_id=\"a-00704360\" pos=\"JJ\" sense=\"marked by dejection from being alone\" polarity=\"-0.6\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"lonely\" cornetto_synset_id=\"n_a-536020\" wordnet_id=\"a-01313649\" pos=\"JJ\" sense=\"devoid of creatures\" polarity=\"0.4\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"long\" cornetto_synset_id=\"d_a-9377\" wordnet_id=\"a-01433493\" pos=\"JJ\" sense=\"primarily spatial sense\" polarity=\"0.0\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"long\" cornetto_synset_id=\"n_a-516735\" wordnet_id=\"a-01437963\" pos=\"JJ\" sense=\"primarily temporal sense\" polarity=\"-0.1\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"long-winded\" cornetto_synset_id=\"n_a-508243\" wordnet_id=\"a-00549236\" pos=\"JJ\" sense=\"using or containing too many words\" polarity=\"-0.2\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"loose\" cornetto_synset_id=\"d_a-9167\" wordnet_id=\"a-00361837\" pos=\"JJ\" sense=\"casual and unrestrained in sexual behavior\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"loose\" cornetto_synset_id=\"d_a-9391\" wordnet_id=\"a-01062114\" pos=\"JJ\" sense=\"having escaped, especially from confinement\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"loose\" cornetto_synset_id=\"n_a-520711\" wordnet_id=\"a-00916199\" pos=\"JJ\" sense=\"not literal\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"loose\" wordnet_id=\"a-00159381\" pos=\"JJ\" sense=\"not affixed\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"loose\" wordnet_id=\"a-00503321\" pos=\"JJ\" sense=\"not compact or dense in structure or arrangement\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"loose\" wordnet_id=\"a-00600725\" pos=\"JJ\" sense=\"(of a ball in sport) not in the possession or control of any player\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"loose\" wordnet_id=\"a-00638841\" pos=\"JJ\" sense=\"emptying easily or excessively\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"loose\" wordnet_id=\"a-01446749\" pos=\"JJ\" sense=\"not tight\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"loose\" wordnet_id=\"a-01634027\" pos=\"JJ\" sense=\"not officially recognized or controlled\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"loose\" wordnet_id=\"a-01739582\" pos=\"JJ\" sense=\"not carefully arranged in a package\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"loose\" wordnet_id=\"a-01998835\" pos=\"JJ\" sense=\"lacking a sense of restraint or responsibility\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"loose\" wordnet_id=\"a-02232112\" pos=\"JJ\" sense=\"(of textures) full of small openings or gaps\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"loose\" wordnet_id=\"a-02404421\" pos=\"JJ\" sense=\"not tense or taut\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"losers\" wordnet_id=\"\" pos=\"NNS\" sense=\"\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"loses\" wordnet_id=\"\" pos=\"VB\" polarity=\"-0.3\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"loud\" cornetto_synset_id=\"n_a-512029\" wordnet_id=\"a-01452593\" pos=\"JJ\" sense=\"characterized by or producing sound of great volume or intensity\" polarity=\"0.1\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"lousy\" wordnet_id=\"a-422374\" pos=\"JJ\" sense=\"infested with lice\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"lovable\" wordnet_id=\"a-01459422\" pos=\"JJ\" sense=\"having characteristics that attract love or affection\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"love\" wordnet_id=\"v-1775164\" pos=\"VB\" sense=\"have a great affection or liking for\" polarity=\"0.5\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"love\" wordnet_id=\"v-1775535\" pos=\"VB\" sense=\"be enamored or in love with\" polarity=\"0.5\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"love\" wordnet_id=\"v-1828736\" pos=\"VB\" sense=\"get pleasure from\" polarity=\"0.5\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"loved\" cornetto_synset_id=\"n_a-506898\" wordnet_id=\"a-01461822\" pos=\"JJ\" sense=\"held dear\" polarity=\"0.7\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"lovely\" cornetto_synset_id=\"d_a-9388\" wordnet_id=\"a-00219809\" pos=\"JJ\" sense=\"appealing to the emotions as well as the eye\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"lovely\" wordnet_id=\"a-01459755\" pos=\"JJ\" sense=\"lovable especially in a childlike or naive way\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"loving\" cornetto_synset_id=\"n_a-530384\" wordnet_id=\"a-01463965\" pos=\"JJ\" sense=\"feeling or showing love and affection\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"loving\" cornetto_synset_id=\"n_a-530384\" wordnet_id=\"a-01463965\" pos=\"JJ\" sense=\"feeling or showing love and affection\" polarity=\"0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"low\" cornetto_synset_id=\"d_a-9374\" wordnet_id=\"a-01212469\" pos=\"JJ\" sense=\"less than normal in degree or intensity or amount\" polarity=\"0.0\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"low\" cornetto_synset_id=\"n_a-516525\" wordnet_id=\"a-01215421\" pos=\"JJ\" sense=\"used of sounds and voices\" polarity=\"0.0\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"loyal\" cornetto_synset_id=\"n_a-531957\" wordnet_id=\"a-01740207\" pos=\"JJ\" sense=\"inspired by love for your country\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"loyal\" wordnet_id=\"a-00959244\" pos=\"JJ\" sense=\"unwavering in devotion to friend or vow or cause\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"loyal\" wordnet_id=\"a-00961392\" pos=\"JJ\" sense=\"steadfast in allegiance or duty\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"lucky\" cornetto_synset_id=\"n_a-504403\" wordnet_id=\"a-00177547\" pos=\"JJ\" sense=\"presaging or likely to bring good luck\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"lucky\" wordnet_id=\"a-01049210\" pos=\"JJ\" sense=\"occurring by chance\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"lucky\" wordnet_id=\"a-01468097\" pos=\"JJ\" sense=\"having or bringing good fortune\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"lush\" cornetto_synset_id=\"n_a-526590\" wordnet_id=\"a-01369078\" pos=\"JJ\" sense=\"full of juice\" polarity=\"0.1\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"lyric\" cornetto_synset_id=\"n_a-517862\" wordnet_id=\"a-00856011\" pos=\"JJ\" sense=\"expressing deep emotion\" polarity=\"0.1\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"lyric\" cornetto_synset_id=\"n_a-517863\" wordnet_id=\"a-00856011\" pos=\"JJ\" sense=\"expressing deep emotion\" polarity=\"0.4\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"mad\" cornetto_synset_id=\"n_a-516037\" wordnet_id=\"a-02075321\" pos=\"JJ\" sense=\"affected with madness or insanity\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mad\" cornetto_synset_id=\"n_a-529067\" wordnet_id=\"a-00115193\" pos=\"JJ\" sense=\"roused to anger\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mad\" wordnet_id=\"a-02390724\" pos=\"JJ\" sense=\"marked by uncontrolled excitement or emotion\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mad\" wordnet_id=\"a-02572038\" pos=\"JJ\" sense=\"very foolish\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"magic\" cornetto_synset_id=\"n_a-510820\" wordnet_id=\"a-01576071\" pos=\"JJ\" sense=\"possessing or using or characteristic of or appropriate to supernatural powers\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"magical\" cornetto_synset_id=\"n_a-510820\" wordnet_id=\"a-01576071\" pos=\"JJ\" sense=\"possessing or using or characteristic of or appropriate to supernatural powers\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"magnificent\" cornetto_synset_id=\"n_a-511105\" wordnet_id=\"a-01285376\" pos=\"JJ\" sense=\"characterized by grandeur\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"main\" wordnet_id=\"a-00730215\" pos=\"JJ\" sense=\"(of a clause) capable of standing syntactically alone as a complete sentence\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"main\" wordnet_id=\"a-01277426\" pos=\"JJ\" sense=\"most important element\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"main\" wordnet_id=\"a-01512527\" pos=\"JJ\" sense=\"of force\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"major\" wordnet_id=\"a-01471002\" pos=\"JJ\" sense=\"greater in number or size or amount\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"major\" wordnet_id=\"a-01471538\" pos=\"JJ\" sense=\"greater in scope or effect\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"major\" wordnet_id=\"a-01471848\" pos=\"JJ\" sense=\"of full legal age\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"major\" wordnet_id=\"a-01472098\" pos=\"JJ\" sense=\"of a scale or mode\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"major\" wordnet_id=\"a-01472351\" pos=\"JJ\" sense=\"of the field of academic study in which one concentrates or specializes\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"major\" wordnet_id=\"a-01472628\" pos=\"JJ\" sense=\"of greater importance or stature or rank\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"major\" wordnet_id=\"a-01473680\" pos=\"JJ\" sense=\"of greater seriousness or danger\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"major\" wordnet_id=\"a-02100236\" pos=\"JJ\" sense=\"of the elder of two boys with the same family name\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"maladroit\" cornetto_synset_id=\"n_a-509478\" wordnet_id=\"a-00063277\" pos=\"JJ\" sense=\"not adroit\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"maladroit\" cornetto_synset_id=\"n_a-521227\" wordnet_id=\"a-00063277\" pos=\"JJ\" sense=\"not adroit\" polarity=\"-0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"maladroit\" cornetto_synset_id=\"n_a-529331\" wordnet_id=\"a-00063277\" pos=\"JJ\" sense=\"not adroit\" polarity=\"-0.4\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"male\" cornetto_synset_id=\"d_a-9398\" wordnet_id=\"a-01476685\" pos=\"JJ\" sense=\"being the sex (of plant or animal) that produces gametes (spermatozoa) that perform the fertilizing function in generation\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"malevolent\" cornetto_synset_id=\"c_254\" wordnet_id=\"a-00225564\" pos=\"JJ\" sense=\"wishing or appearing to wish evil to others\" polarity=\"-0.8\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"malevolent\" cornetto_synset_id=\"c_529\" wordnet_id=\"a-00225564\" pos=\"JJ\" sense=\"wishing or appearing to wish evil to others\" polarity=\"-0.7\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"malevolent\" cornetto_synset_id=\"n_a-532034\" wordnet_id=\"a-00225564\" pos=\"JJ\" sense=\"wishing or appearing to wish evil to others\" polarity=\"-0.9\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"mannerly\" cornetto_synset_id=\"n_a-503527\" wordnet_id=\"a-00641343\" pos=\"JJ\" sense=\"socially correct in behavior\" polarity=\"0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"manorial\" cornetto_synset_id=\"c_472\" wordnet_id=\"a-03084397\" pos=\"JJ\" sense=\"of or relating to or based on the manor\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"manque\" cornetto_synset_id=\"n_a-530896\" wordnet_id=\"a-00104825\" pos=\"JJ\" sense=\"unfulfilled or frustrated in realizing an ambition\" polarity=\"0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"many\" cornetto_synset_id=\"n_a-532215\" wordnet_id=\"a-01551633\" pos=\"JJ\" sense=\"a quantifier that can be used with count nouns and is often preceded by 'as' or 'too' or 'so' or 'that'\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"many-sided\" cornetto_synset_id=\"n_a-502070\" wordnet_id=\"a-02506922\" pos=\"JJ\" sense=\"having many aspects\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"marked\" cornetto_synset_id=\"n_a-522312\" wordnet_id=\"a-01287808\" pos=\"JJ\" sense=\"strongly marked\" polarity=\"0.1\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"married\" cornetto_synset_id=\"n_a-507911\" wordnet_id=\"a-02852920\" pos=\"JJ\" sense=\"of or relating to the state of marriage\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"married\" wordnet_id=\"a-01481612\" pos=\"JJ\" sense=\"joined in matrimony\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"martial\" cornetto_synset_id=\"n_a-516117\" wordnet_id=\"a-01517526\" pos=\"JJ\" sense=\"of or relating to the armed forces\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"martial\" wordnet_id=\"a-01518694\" pos=\"JJ\" sense=\"(of persons) befitting a warrior\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"martial\" wordnet_id=\"a-01518860\" pos=\"JJ\" sense=\"suggesting war or military life\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"marvelous\" cornetto_synset_id=\"n_a-525897\" wordnet_id=\"a-00646117\" pos=\"JJ\" sense=\"too improbable to admit of belief\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"marvelous\" wordnet_id=\"a-01576551\" pos=\"JJ\" sense=\"being or having the character of a miracle\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"marvelous\" wordnet_id=\"a-01676517\" pos=\"JJ\" sense=\"extraordinarily good or great \" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"masculine\" cornetto_synset_id=\"n_a-518174\" wordnet_id=\"a-01483324\" pos=\"JJ\" sense=\"associated with men and not with women\" polarity=\"0.1\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"massive\" cornetto_synset_id=\"n_a-519268\" wordnet_id=\"a-01389170\" pos=\"JJ\" sense=\"imposing in size or bulk or solidity\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"massive\" wordnet_id=\"a-01185916\" pos=\"JJ\" sense=\"consisting of great mass\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"massive\" wordnet_id=\"a-01389451\" pos=\"JJ\" sense=\"imposing in scale or scope or degree or power\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"massive\" wordnet_id=\"a-02263875\" pos=\"JJ\" sense=\"being the same substance throughout\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"masterful\" cornetto_synset_id=\"n_a-518477\" wordnet_id=\"a-02226979\" pos=\"JJ\" sense=\"having or revealing supreme mastery or skill\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mathematical\" cornetto_synset_id=\"n_a-535010\" wordnet_id=\"a-00915141\" pos=\"JJ\" sense=\"characterized by the exactness or precision of mathematics\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"mature\" cornetto_synset_id=\"n_a-510494\" wordnet_id=\"a-00742316\" pos=\"JJ\" sense=\"fully considered and perfected\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mature\" wordnet_id=\"a-01095914\" pos=\"JJ\" sense=\"(of birds) having developed feathers or plumage\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mature\" wordnet_id=\"a-01488245\" pos=\"JJ\" sense=\"having reached full natural growth or development\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mature\" wordnet_id=\"a-01491775\" pos=\"JJ\" sense=\"characteristic of maturity\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mature\" wordnet_id=\"a-01493173\" pos=\"JJ\" sense=\"fully developed or matured and ready to be eaten or used\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"meager\" cornetto_synset_id=\"n_a-502563\" wordnet_id=\"a-00106456\" pos=\"JJ\" sense=\"deficient in amount or quality or extent\" polarity=\"-0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"mean\" cornetto_synset_id=\"c_540\" wordnet_id=\"a-01589650\" pos=\"JJ\" sense=\"having or showing an ignoble lack of honor or morality\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mean\" cornetto_synset_id=\"n_a-501418\" wordnet_id=\"a-01112969\" pos=\"JJ\" sense=\"(used of sums of money) so small in amount as to deserve contempt\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mean\" wordnet_id=\"a-00905039\" pos=\"JJ\" sense=\"of no value or worth\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mean\" wordnet_id=\"a-01113807\" pos=\"JJ\" sense=\"(used of persons or behavior) characterized by or indicative of lack of generosity\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mean\" wordnet_id=\"a-01587787\" pos=\"JJ\" sense=\"characterized by malice\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mean\" wordnet_id=\"a-01594146\" pos=\"JJ\" sense=\"approximating the statistical norm or average or expected value\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mean\" wordnet_id=\"a-02025718\" pos=\"JJ\" sense=\"marked by poverty befitting a beggar\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mean\" wordnet_id=\"a-02227663\" pos=\"JJ\" sense=\"excellent\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"meaningful\" cornetto_synset_id=\"n_a-532119\" wordnet_id=\"a-01496976\" pos=\"JJ\" sense=\"having a meaning or purpose\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"meaningless\" wordnet_id=\"a-01497736\" pos=\"JJ\" sense=\"having no meaning or direction or purpose\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"measly\" cornetto_synset_id=\"n_a-508417\" wordnet_id=\"a-00107384\" pos=\"JJ\" sense=\"contemptibly small in amount\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"measly\" cornetto_synset_id=\"n_a-520627\" wordnet_id=\"a-00107384\" pos=\"JJ\" sense=\"contemptibly small in amount\" polarity=\"-0.5\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"measly\" cornetto_synset_id=\"n_a-530515\" wordnet_id=\"a-00107384\" pos=\"JJ\" sense=\"contemptibly small in amount\" polarity=\"-0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"medical\" cornetto_synset_id=\"n_a-532635\" wordnet_id=\"a-02760116\" pos=\"JJ\" sense=\"relating to the study or practice of medicine\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"medicative\" cornetto_synset_id=\"n_a-510314\" wordnet_id=\"a-01166656\" pos=\"JJ\" sense=\"having the properties of medicine\" polarity=\"0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"medieval\" cornetto_synset_id=\"n_a-518794\" wordnet_id=\"a-02989754\" pos=\"JJ\" sense=\"relating to or belonging to the Middle Ages\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"mediocre\" cornetto_synset_id=\"n_a-518934\" wordnet_id=\"a-01673061\" pos=\"JJ\" sense=\"lacking exceptional quality or ability\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mediocre\" wordnet_id=\"a-01128253\" pos=\"JJ\" sense=\"poor to middling in quality\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mediocre\" wordnet_id=\"a-02347564\" pos=\"JJ\" sense=\"moderate to inferior in quality\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mediocrity\" wordnet_id=\"\" pos=\"NN\" sense=\"\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"melodrama\" wordnet_id=\"n-7016648\" pos=\"NN\" sense=\"an extravagant comedy in which action is more salient than characterization\" polarity=\"-0.3\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"memorable\" cornetto_synset_id=\"n_a-509822\" wordnet_id=\"a-01040752\" pos=\"JJ\" sense=\"worth remembering\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"menacing\" wordnet_id=\"a-00194357\" pos=\"JJ\" sense=\"threatening or foreshadowing evil or tragic developments\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mental\" cornetto_synset_id=\"n_a-524654\" wordnet_id=\"a-01177899\" pos=\"JJ\" sense=\"affected by a disorder of the mind\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mental\" wordnet_id=\"a-01779986\" pos=\"JJ\" sense=\"involving the mind or an intellectual process\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mental\" wordnet_id=\"a-02734776\" pos=\"JJ\" sense=\"of or relating to the chin or median part of the lower jaw\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mental\" wordnet_id=\"a-02734914\" pos=\"JJ\" sense=\"of or relating to the chin- or liplike structure in insects and certain mollusks\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mental\" wordnet_id=\"a-02898750\" pos=\"JJ\" sense=\"of or relating to the mind\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"merciless\" cornetto_synset_id=\"n_a-518422\" wordnet_id=\"a-01507402\" pos=\"JJ\" sense=\"having or showing no mercy\" polarity=\"-0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"merciless\" cornetto_synset_id=\"n_a-518422\" wordnet_id=\"a-01507402\" pos=\"JJ\" sense=\"having or showing no mercy\" polarity=\"-0.8\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"mere\" cornetto_synset_id=\"c_303\" wordnet_id=\"a-01792573\" pos=\"JJ\" sense=\"apart from anything else\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mere\" wordnet_id=\"a-01099707\" pos=\"JJ\" sense=\"being nothing more than specified\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mesmerizing\" wordnet_id=\"\" pos=\"VB\" polarity=\"0.3\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mess\" wordnet_id=\"n-14500047\" pos=\"NN\" sense=\"a state of confusion and disorderliness\" polarity=\"-0.4\" subjectivity=\"0.4\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"mess\" wordnet_id=\"n-3751065\" pos=\"NN\" sense=\"a (large) military dining room where service personnel eat or relax\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"mess\" wordnet_id=\"n-7565608\" pos=\"NN\" sense=\"a meal eaten in a mess hall by service personnel\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"mess\" wordnet_id=\"n-7650792\" pos=\"NN\" sense=\"soft semiliquid food\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"mess\" wordnet_id=\"v-1176079\" pos=\"VB\" sense=\"eat in a mess hall\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"mess\" wordnet_id=\"v-276214\" pos=\"VB\" sense=\"make a mess of or create disorder in\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"messy\" wordnet_id=\"a-2426042\" pos=\"JJ\" sense=\"dirty and disorderly\" polarity=\"-0.2\" subjectivity=\"0.4\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"metaphorical\" cornetto_synset_id=\"n_a-508972\" wordnet_id=\"a-01419784\" pos=\"JJ\" sense=\"expressing one thing in terms normally denoting another\" polarity=\"0.0\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"mexican\" wordnet_id=\"a-03026902\" pos=\"JJ\" sense=\"of or relating to Mexico or its inhabitants\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mid\" wordnet_id=\"a-00816324\" pos=\"JJ\" sense=\"used in combination to denote the middle\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"middle\" cornetto_synset_id=\"n_a-511782\" wordnet_id=\"a-00330506\" pos=\"JJ\" sense=\"equally distant from the extremes\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"middle\" cornetto_synset_id=\"n_a-531475\" wordnet_id=\"a-01014953\" pos=\"JJ\" sense=\"being neither at the beginning nor at the end in a series\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"middle\" wordnet_id=\"a-00815941\" pos=\"JJ\" sense=\"between an earlier and a later period of time\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"middle\" wordnet_id=\"a-00820458\" pos=\"JJ\" sense=\"of a stage in the development of a language or literature between earlier and later stages\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mighty\" cornetto_synset_id=\"n_a-518022\" wordnet_id=\"a-01826575\" pos=\"JJ\" sense=\"having or showing great strength or force or intensity\" polarity=\"0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"mild\" cornetto_synset_id=\"n_a-518871\" wordnet_id=\"a-01893510\" pos=\"JJ\" sense=\"humble in spirit or manner\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mild\" cornetto_synset_id=\"n_a-535263\" wordnet_id=\"a-00438332\" pos=\"JJ\" sense=\"mild and pleasant\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mild\" wordnet_id=\"a-01508719\" pos=\"JJ\" sense=\"moderate in type or degree or effect or force\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"military\" cornetto_synset_id=\"n_a-518892\" wordnet_id=\"a-02764251\" pos=\"JJ\" sense=\"of or relating to the study of the principles of warfare\" polarity=\"-0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"mind-boggling\" cornetto_synset_id=\"n_a-532272\" wordnet_id=\"a-01285938\" pos=\"JJ\" sense=\"intellectually or emotionally overwhelming\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"mindless\" cornetto_synset_id=\"n_a-532722\" wordnet_id=\"a-01334277\" pos=\"JJ\" sense=\"requiring little mental effort\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mindless\" wordnet_id=\"a-01498418\" pos=\"JJ\" sense=\"lacking the thinking capacity characteristic of a conscious being\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mindless\" wordnet_id=\"a-01945139\" pos=\"JJ\" sense=\"not marked by the use of reason\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mindless\" wordnet_id=\"a-01978003\" pos=\"JJ\" sense=\"not mindful or attentive\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mindless\" wordnet_id=\"a-02571277\" pos=\"JJ\" sense=\"devoid of intelligence\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"minimal\" cornetto_synset_id=\"n_a-518946\" wordnet_id=\"a-01496021\" pos=\"JJ\" sense=\"the least possible\" polarity=\"-0.1\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"minor\" wordnet_id=\"a-01415219\" pos=\"JJ\" sense=\"limited in size or scope\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"minor\" wordnet_id=\"a-01471368\" pos=\"JJ\" sense=\"inferior in number or size or amount\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"minor\" wordnet_id=\"a-01471723\" pos=\"JJ\" sense=\"lesser in scope or effect\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"minor\" wordnet_id=\"a-01471954\" pos=\"JJ\" sense=\"not of legal age\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"minor\" wordnet_id=\"a-01472225\" pos=\"JJ\" sense=\"of a scale or mode\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"minor\" wordnet_id=\"a-01472509\" pos=\"JJ\" sense=\"of your secondary field of academic concentration or specialization\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"minor\" wordnet_id=\"a-01473083\" pos=\"JJ\" sense=\"of lesser importance or stature or rank\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"minor\" wordnet_id=\"a-01473826\" pos=\"JJ\" sense=\"of lesser seriousness or danger\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"minor\" wordnet_id=\"a-01721401\" pos=\"JJ\" sense=\"warranting only temporal punishment\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"minor\" wordnet_id=\"a-02101240\" pos=\"JJ\" sense=\"of the younger of two boys with the same family name\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"minus\" cornetto_synset_id=\"n_a-519760\" wordnet_id=\"a-00065667\" pos=\"JJ\" sense=\"involving disadvantage or harm\" polarity=\"-0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"miserable\" cornetto_synset_id=\"n_a-520627\" wordnet_id=\"a-00107384\" pos=\"JJ\" sense=\"contemptibly small in amount\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"miserable\" cornetto_synset_id=\"n_a-535670\" wordnet_id=\"a-01050890\" pos=\"JJ\" sense=\"deserving or inciting pity\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"miserable\" wordnet_id=\"a-00478872\" pos=\"JJ\" sense=\"characterized by physical misery\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"miserable\" wordnet_id=\"a-00904745\" pos=\"JJ\" sense=\"of the most contemptible kind\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"miserable\" wordnet_id=\"a-01150205\" pos=\"JJ\" sense=\"very unhappy\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"miserable\" wordnet_id=\"a-02347086\" pos=\"JJ\" sense=\"of very poor quality or condition\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"misfire\" wordnet_id=\"n-7421749\" pos=\"NN\" sense=\"an explosion that fails to occur\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"misfire\" wordnet_id=\"v-1134653\" pos=\"VB\" sense=\"fail to fire or detonate\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"misplaced\" wordnet_id=\"a-1682073\" pos=\"JJ\" sense=\"put in the wrong place or position\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"missing\" wordnet_id=\"a-1450178\" pos=\"JJ\" sense=\"not able to be found\" polarity=\"-0.2\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"missing\" wordnet_id=\"a-1450178\" pos=\"JJ\" sense=\"not able to be found\" polarity=\"-0.2\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mixed\" wordnet_id=\"a-01199083\" pos=\"JJ\" sense=\"consisting of a haphazard assortment of different kinds\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mixed\" wordnet_id=\"a-01326652\" pos=\"JJ\" sense=\"involving or composed of different races\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mod\" cornetto_synset_id=\"d_a-9408\" wordnet_id=\"a-00972902\" pos=\"JJ\" sense=\"relating to a recently developed fashion or style\" polarity=\"0.2\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"moderate\" cornetto_synset_id=\"n_a-518332\" wordnet_id=\"a-01509367\" pos=\"JJ\" sense=\"not extreme\" polarity=\"0.0\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"modern\" cornetto_synset_id=\"n_a-519076\" wordnet_id=\"a-01535709\" pos=\"JJ\" sense=\"belonging to the modern era\" polarity=\"0.2\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"modest\" cornetto_synset_id=\"n_a-513680\" wordnet_id=\"a-01532912\" pos=\"JJ\" sense=\"not large but sufficient in size or amount\" polarity=\"0.1\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"monkey\" wordnet_id=\"n-2484322\" pos=\"NN\" sense=\"any of various long-tailed primates (excluding the prosimians)\" polarity=\"-0.05\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"monosyllabic\" wordnet_id=\"a-2289018\" pos=\"JJ\" sense=\"having or characterized by or consisting of one syllable\" polarity=\"-0.1\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"moral\" wordnet_id=\"a-01548193\" pos=\"JJ\" sense=\"concerned with principles of right and wrong or conforming to standards of behavior and character based on those principles\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"moral\" wordnet_id=\"a-01780596\" pos=\"JJ\" sense=\"psychological rather than physical or tangible in effect\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"moralizing\" wordnet_id=\"n-6742932\" pos=\"NN\" sense=\"indulgence in moral pronouncements\" polarity=\"-0.3\" subjectivity=\"0.4\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"more\" wordnet_id=\"a-01555133\" pos=\"JJ\" sense=\"(comparative of 'much' used with mass nouns) a quantifier meaning greater in size or amount or extent or degree\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"more\" wordnet_id=\"a-01556355\" pos=\"JJ\" sense=\"(comparative of 'many' used with count nouns) quantifier meaning greater in number\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"moron\" wordnet_id=\"n-10197525\" pos=\"NN\" sense=\"a person of subnormal intelligence\" polarity=\"-0.8\" subjectivity=\"1.0\" intensity=\"1.0\" label=\"profanity\" confidence=\"0.8\" />\n<word form=\"morons\" wordnet_id=\"\" pos=\"NNS\" polarity=\"-0.8\" subjectivity=\"1.0\" intensity=\"1.0\" label=\"profanity\" confidence=\"0.8\" />\n<word form=\"most\" wordnet_id=\"a-01555732\" pos=\"JJ\" sense=\"the superlative of 'much' that can be used with mass nouns and is usually preceded by 'the'\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"most\" wordnet_id=\"a-01557120\" pos=\"JJ\" sense=\"(superlative of 'many' used with count nouns and often preceded by 'the') quantifier meaning the greatest in number\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"motley\" cornetto_synset_id=\"n_a-504646\" wordnet_id=\"a-00398978\" pos=\"JJ\" sense=\"having sections or patches colored differently and usually brightly\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"mouth-watering\" cornetto_synset_id=\"d_a-9380\" wordnet_id=\"a-00133669\" pos=\"JJ\" sense=\"pleasing to the sense of taste\" polarity=\"0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"mouth-watering\" cornetto_synset_id=\"d_a-9380\" wordnet_id=\"a-00133669\" pos=\"JJ\" sense=\"pleasing to the sense of taste\" polarity=\"0.8\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"much\" wordnet_id=\"r-59413\" pos=\"RB\" sense=\"frequently or in great quantities\" polarity=\"0.2\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"muggy\" cornetto_synset_id=\"c_290\" wordnet_id=\"a-02549691\" pos=\"JJ\" sense=\"hot or warm and humid\" polarity=\"-0.6\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"multilateral\" cornetto_synset_id=\"n_a-532153\" wordnet_id=\"a-00237240\" pos=\"JJ\" sense=\"having many parts or sides\" polarity=\"0.1\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"multiple\" cornetto_synset_id=\"n_a-532136\" wordnet_id=\"a-02215977\" pos=\"JJ\" sense=\"having or involving or consisting of more than one part or entity or individual\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mundane\" cornetto_synset_id=\"n_a-502040\" wordnet_id=\"a-01674242\" pos=\"JJ\" sense=\"found in the ordinary course of events\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mundane\" wordnet_id=\"a-01181446\" pos=\"JJ\" sense=\"belonging to this earth or world\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mundane\" wordnet_id=\"a-02578035\" pos=\"JJ\" sense=\"concerned with the world or worldly matters\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"musical\" cornetto_synset_id=\"n_a-519488\" wordnet_id=\"a-01504625\" pos=\"JJ\" sense=\"characteristic of or resembling or accompanied by music\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"muzak\" wordnet_id=\"\" pos=\"NN\" sense=\"\" polarity=\"-0.05\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"mysterious\" cornetto_synset_id=\"n_a-520944\" wordnet_id=\"a-00939444\" pos=\"JJ\" sense=\"of an obscure nature\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"mysterious\" wordnet_id=\"a-00900071\" pos=\"JJ\" sense=\"having an import not apparent to the senses nor obvious to the intelligence\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"naive\" cornetto_synset_id=\"n_a-519502\" wordnet_id=\"a-02271544\" pos=\"JJ\" sense=\"marked by or showing unaffected simplicity and lack of guile or worldly experience\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"naive\" cornetto_synset_id=\"n_a-521251\" wordnet_id=\"a-00937341\" pos=\"JJ\" sense=\"not initiated\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"naive\" wordnet_id=\"a-01309657\" pos=\"JJ\" sense=\"lacking information or instruction\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"naive\" wordnet_id=\"a-01637371\" pos=\"JJ\" sense=\"inexperienced\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"naive\" wordnet_id=\"a-01912858\" pos=\"JJ\" sense=\"of or created by one without formal training\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"naked\" cornetto_synset_id=\"n_a-533208\" wordnet_id=\"a-00457998\" pos=\"JJ\" sense=\"completely unclothed\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"naked\" wordnet_id=\"a-01698760\" pos=\"JJ\" sense=\"lacking any cover\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"naked\" wordnet_id=\"a-01705195\" pos=\"JJ\" sense=\"devoid of elaboration or diminution or concealment\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"naked\" wordnet_id=\"a-01886783\" pos=\"JJ\" sense=\"having no protecting or concealing cover\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"naked\" wordnet_id=\"a-02354234\" pos=\"JJ\" sense=\"(of the eye or ear e.g.) without the aid of an optical or acoustical device or instrument\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"nameless\" cornetto_synset_id=\"n_a-531905\" wordnet_id=\"a-00120784\" pos=\"JJ\" sense=\"being or having an unknown or unnamed source\" polarity=\"-0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"narrow\" cornetto_synset_id=\"d_a-9417\" wordnet_id=\"a-02561888\" pos=\"JJ\" sense=\"not wide\" polarity=\"-0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"narrow\" cornetto_synset_id=\"d_a-9417\" wordnet_id=\"a-02561888\" pos=\"JJ\" sense=\"not wide\" polarity=\"-0.3\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"nasty\" cornetto_synset_id=\"n_a-507749\" wordnet_id=\"a-00425313\" pos=\"JJ\" sense=\"characterized by obscenity\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"nasty\" cornetto_synset_id=\"n_a-516436\" wordnet_id=\"a-00421590\" pos=\"JJ\" sense=\"disgustingly dirty\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"nasty\" cornetto_synset_id=\"n_a-521224\" wordnet_id=\"a-00747727\" pos=\"JJ\" sense=\"exasperatingly difficult to handle or circumvent\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"nasty\" wordnet_id=\"a-01587077\" pos=\"JJ\" sense=\"offensive or even (of persons) malicious\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"natural\" cornetto_synset_id=\"n_a-519696\" wordnet_id=\"a-01569965\" pos=\"JJ\" sense=\"in accordance with nature\" polarity=\"0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"naturalistic\" cornetto_synset_id=\"c_369\" wordnet_id=\"a-01979985\" pos=\"JJ\" sense=\"representing what is real\" polarity=\"0.4\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"naughty\" cornetto_synset_id=\"n_a-529550\" wordnet_id=\"a-01128406\" pos=\"JJ\" sense=\"badly behaved\" polarity=\"-0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"naughty\" cornetto_synset_id=\"n_a-529550\" wordnet_id=\"a-01128406\" pos=\"JJ\" sense=\"badly behaved\" polarity=\"0.1\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"nauseated\" cornetto_synset_id=\"n_a-519014\" wordnet_id=\"a-02545689\" pos=\"JJ\" sense=\"feeling nausea\" polarity=\"-0.4\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"near\" cornetto_synset_id=\"n_a-512169\" wordnet_id=\"a-00444519\" pos=\"JJ\" sense=\"not far distant in time or space or degree or circumstances\" polarity=\"0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"necessary\" wordnet_id=\"a-00343552\" pos=\"JJ\" sense=\"unavoidably determined by prior circumstances\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"necessary\" wordnet_id=\"a-01580050\" pos=\"JJ\" sense=\"absolutely essential\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"needless\" wordnet_id=\"a-01582049\" pos=\"JJ\" sense=\"unnecessary and unwarranted\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"negative\" cornetto_synset_id=\"n_a-521445\" wordnet_id=\"a-00075515\" pos=\"JJ\" sense=\"expressing or consisting of a negation or refusal or denial\" polarity=\"-0.3\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"nerve-racking\" cornetto_synset_id=\"n_a-535561\" wordnet_id=\"a-00090408\" pos=\"JJ\" sense=\"extremely irritating to the nerves\" polarity=\"-0.4\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"net\" cornetto_synset_id=\"n_a-519884\" wordnet_id=\"a-01582461\" pos=\"JJ\" sense=\"remaining after all deductions\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"new\" cornetto_synset_id=\"n_a-511814\" wordnet_id=\"a-00937186\" pos=\"JJ\" sense=\"lacking training or experience\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"new\" cornetto_synset_id=\"n_a-514862\" wordnet_id=\"a-00128733\" pos=\"JJ\" sense=\"having no previous example or precedent or parallel\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"new\" cornetto_synset_id=\"n_a-525158\" wordnet_id=\"a-01687167\" pos=\"JJ\" sense=\"original and of a kind not seen before\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"new\" wordnet_id=\"a-00024996\" pos=\"JJ\" sense=\"unfamiliar\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"new\" wordnet_id=\"a-00818008\" pos=\"JJ\" sense=\"(of crops) harvested at an early stage of development\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"new\" wordnet_id=\"a-00820975\" pos=\"JJ\" sense=\"used of a living language\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"new\" wordnet_id=\"a-00821208\" pos=\"JJ\" sense=\"in use after medieval times\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"new\" wordnet_id=\"a-01640850\" pos=\"JJ\" sense=\"not of long duration\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"new\" wordnet_id=\"a-01687965\" pos=\"JJ\" sense=\"(of a new kind or fashion) gratuitously new\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"new\" wordnet_id=\"a-02070491\" pos=\"JJ\" sense=\"other than the former one(s)\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"new\" wordnet_id=\"a-02584699\" pos=\"JJ\" sense=\"unaffected by use or exposure\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"next\" cornetto_synset_id=\"n_a-519943\" wordnet_id=\"a-00447472\" pos=\"JJ\" sense=\"nearest in space or position\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"next\" cornetto_synset_id=\"n_a-520887\" wordnet_id=\"a-00127948\" pos=\"JJ\" sense=\"immediately following in time or order\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"next\" wordnet_id=\"a-01294975\" pos=\"JJ\" sense=\"(of elected officers) elected but not yet serving\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"nice\" cornetto_synset_id=\"c_644\" wordnet_id=\"a-01586342\" pos=\"JJ\" sense=\"pleasant or pleasing or agreeable in nature or appearance\" polarity=\"0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"nice\" cornetto_synset_id=\"n_a-510721\" wordnet_id=\"a-01586342\" pos=\"JJ\" sense=\"pleasant or pleasing or agreeable in nature or appearance\" polarity=\"0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"noble\" cornetto_synset_id=\"n_a-507937\" wordnet_id=\"a-01588172\" pos=\"JJ\" sense=\"having or showing or indicative of high or elevated character\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"nonviolent\" cornetto_synset_id=\"n_a-510824\" wordnet_id=\"a-00249576\" pos=\"JJ\" sense=\"achieved without bloodshed\" polarity=\"0.4\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"normal\" cornetto_synset_id=\"c_80\" wordnet_id=\"a-01593649\" pos=\"JJ\" sense=\"conforming with or constituting a norm or standard or level or type or social norm\" polarity=\"-0.1\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"normal\" cornetto_synset_id=\"c_80\" wordnet_id=\"a-01593649\" pos=\"JJ\" sense=\"conforming with or constituting a norm or standard or level or type or social norm\" polarity=\"0.1\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"normal\" cornetto_synset_id=\"n_a-517484\" wordnet_id=\"a-01593649\" pos=\"JJ\" sense=\"conforming with or constituting a norm or standard or level or type or social norm\" polarity=\"0.1\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"normal\" cornetto_synset_id=\"n_a-517484\" wordnet_id=\"a-01593649\" pos=\"JJ\" sense=\"conforming with or constituting a norm or standard or level or type or social norm\" polarity=\"0.5\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"norwegian\" wordnet_id=\"a-02959912\" pos=\"JJ\" sense=\"of or relating to Norway or its people or culture or language\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"nostalgic\" cornetto_synset_id=\"d_a-9425\" wordnet_id=\"a-00889098\" pos=\"JJ\" sense=\"unhappy about being away and longing for familiar things or persons\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"notable\" cornetto_synset_id=\"n_a-512859\" wordnet_id=\"a-01375831\" pos=\"JJ\" sense=\"widely known and esteemed\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"notable\" wordnet_id=\"a-02586957\" pos=\"JJ\" sense=\"worthy of notice\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"numb\" cornetto_synset_id=\"d_a-9540\" wordnet_id=\"a-00080698\" pos=\"JJ\" sense=\"so frightened as to be unable to move\" polarity=\"-0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"numerous\" wordnet_id=\"a-01552419\" pos=\"JJ\" sense=\"amounting to a large indefinite number\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"obedient\" cornetto_synset_id=\"n_a-510893\" wordnet_id=\"a-01612053\" pos=\"JJ\" sense=\"dutifully complying with the commands or instructions of those in authority\" polarity=\"0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"objective\" cornetto_synset_id=\"d_a-9427\" wordnet_id=\"a-00013442\" pos=\"JJ\" sense=\"belonging to immediate experience of actual things or events\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"obsessed\" wordnet_id=\"a-00544478\" pos=\"JJ\" sense=\"having or showing excessive or compulsive concern with something\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"obsessed\" wordnet_id=\"a-00599468\" pos=\"JJ\" sense=\"influenced or controlled by a powerful force such as a strong emotion\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"obstacles\" wordnet_id=\"\" pos=\"NNS\" sense=\"\" polarity=\"-0.05\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"obvious\" wordnet_id=\"a-01618053\" pos=\"JJ\" sense=\"easily perceived by the senses or grasped by the mind\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"occasional\" wordnet_id=\"a-00594004\" pos=\"JJ\" sense=\"recurring or reappearing from time to time\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"occasional\" wordnet_id=\"a-01067415\" pos=\"JJ\" sense=\"occurring from time to time\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"occasional\" wordnet_id=\"a-01842468\" pos=\"JJ\" sense=\"occurring or appearing at usually irregular intervals\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"occasional\" wordnet_id=\"a-01961205\" pos=\"JJ\" sense=\"occurring from time to time\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"odd\" cornetto_synset_id=\"n_a-517380\" wordnet_id=\"a-00926505\" pos=\"JJ\" sense=\"not used up\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"odd\" cornetto_synset_id=\"n_a-520981\" wordnet_id=\"a-01487496\" pos=\"JJ\" sense=\"of the remaining member of a pair, of socks e.g.\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"odd\" wordnet_id=\"a-00490845\" pos=\"JJ\" sense=\"not easily explained\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"odd\" wordnet_id=\"a-00913454\" pos=\"JJ\" sense=\"not divisible by two\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"odd\" wordnet_id=\"a-00916383\" pos=\"JJ\" sense=\"an indefinite quantity more than that specified\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"odd\" wordnet_id=\"a-00968010\" pos=\"JJ\" sense=\"beyond or deviating from the usual or expected\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"offbeat\" cornetto_synset_id=\"n_a-504364\" wordnet_id=\"a-00609564\" pos=\"JJ\" sense=\"informal terms\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"offers\" wordnet_id=\"\" pos=\"VB\" polarity=\"0.1\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"ok\" wordnet_id=\"a-02081114\" pos=\"JJ\" sense=\"being satisfactory or in satisfactory condition\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"okay\" wordnet_id=\"a-02081114\" pos=\"JJ\" sense=\"being satisfactory or in satisfactory condition\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"old\" cornetto_synset_id=\"d_a-9482\" wordnet_id=\"a-01638438\" pos=\"JJ\" sense=\"of long duration\" polarity=\"0.1\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"older\" cornetto_synset_id=\"n_a-522259\" wordnet_id=\"a-01644225\" pos=\"JJ\" sense=\"advanced in years\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"older\" wordnet_id=\"a-00936297\" pos=\"JJ\" sense=\"skilled through long experience\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"older\" wordnet_id=\"a-02100031\" pos=\"JJ\" sense=\"used of the older of two persons of the same name especially used to distinguish a father from his son\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"only\" wordnet_id=\"a-01862697\" pos=\"JJ\" sense=\"exclusive of anyone or anything else\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"only\" wordnet_id=\"a-02214736\" pos=\"JJ\" sense=\"being the only one\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"oozes\" wordnet_id=\"\" pos=\"VBZ\" sense=\"\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"open\" cornetto_synset_id=\"n_a-521880\" wordnet_id=\"a-02130821\" pos=\"JJ\" sense=\"not brought to a conclusion\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"open-minded\" cornetto_synset_id=\"n_a-533914\" wordnet_id=\"a-00287498\" pos=\"JJ\" sense=\"ready to entertain new ideas\" polarity=\"0.4\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"opposite\" cornetto_synset_id=\"n_a-506798\" wordnet_id=\"a-02066312\" pos=\"JJ\" sense=\"characterized by opposite extremes\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"opposite\" wordnet_id=\"a-01663201\" pos=\"JJ\" sense=\"of leaves etc\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"opposite\" wordnet_id=\"a-02067913\" pos=\"JJ\" sense=\"altogether different in nature or quality or significance\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"opposite\" wordnet_id=\"a-02070711\" pos=\"JJ\" sense=\"the other one of a complementary pair\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"opposite\" wordnet_id=\"a-02070887\" pos=\"JJ\" sense=\"being directly across from each other\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"opposite\" wordnet_id=\"a-02071139\" pos=\"JJ\" sense=\"moving or facing away from each other\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"optimum\" cornetto_synset_id=\"n_a-522061\" wordnet_id=\"a-00228645\" pos=\"JJ\" sense=\"most desirable possible under a restriction expressed or implied\" polarity=\"0.7\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"ordinary\" cornetto_synset_id=\"n_a-518792\" wordnet_id=\"a-00486290\" pos=\"JJ\" sense=\"lacking special distinction, rank, or status\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"ordinary\" wordnet_id=\"a-01672607\" pos=\"JJ\" sense=\"not exceptional in any way especially in quality or ability or size or degree\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"original\" wordnet_id=\"a-00699207\" pos=\"JJ\" sense=\"not derived or copied or translated from something else\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"original\" wordnet_id=\"a-01012503\" pos=\"JJ\" sense=\"preceding all others in time or being as first made or performed\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"original\" wordnet_id=\"a-01686439\" pos=\"JJ\" sense=\"being or productive of something fresh and unusual\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"original\" wordnet_id=\"a-01853039\" pos=\"JJ\" sense=\"(of e.g. information) not secondhand or by way of something intermediary\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"orthodox\" cornetto_synset_id=\"n_a-522187\" wordnet_id=\"a-01689880\" pos=\"JJ\" sense=\"adhering to what is commonly accepted\" polarity=\"-0.2\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"other\" wordnet_id=\"a-00969333\" pos=\"JJ\" sense=\"very unusual\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"other\" wordnet_id=\"a-01729384\" pos=\"JJ\" sense=\"belonging to the distant past\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"other\" wordnet_id=\"a-01730820\" pos=\"JJ\" sense=\"recently past\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"other\" wordnet_id=\"a-02069355\" pos=\"JJ\" sense=\"not the same one or ones already mentioned or implied\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"outdated\" cornetto_synset_id=\"n_a-522237\" wordnet_id=\"a-00669138\" pos=\"JJ\" sense=\"old\" polarity=\"-0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"outdated\" cornetto_synset_id=\"n_a-522237\" wordnet_id=\"a-00669138\" pos=\"JJ\" sense=\"old\" polarity=\"-0.8\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"outdated\" cornetto_synset_id=\"n_a-533656\" wordnet_id=\"a-00669138\" pos=\"JJ\" sense=\"old\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"outraged\" wordnet_id=\"\" pos=\"VB\" polarity=\"-0.9\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"outrageous\" wordnet_id=\"a-01534282\" pos=\"JJ\" sense=\"greatly exceeding bounds of reason or moderation\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"outrageous\" wordnet_id=\"a-01626562\" pos=\"JJ\" sense=\"grossly offensive to decency or morality\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"outside\" cornetto_synset_id=\"d_a-9351\" wordnet_id=\"a-01037885\" pos=\"JJ\" sense=\"from or between other countries\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"outside\" cornetto_synset_id=\"n_a-522248\" wordnet_id=\"a-00023655\" pos=\"JJ\" sense=\"(of a baseball pitch) on the far side of home plate from the batter\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"outside\" wordnet_id=\"a-00948514\" pos=\"JJ\" sense=\"originating or belonging beyond some bounds\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"outside\" wordnet_id=\"a-00950002\" pos=\"JJ\" sense=\"on or toward an outer edge\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"outside\" wordnet_id=\"a-00952761\" pos=\"JJ\" sense=\"leading to or from the outside\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"outside\" wordnet_id=\"a-01347749\" pos=\"JJ\" sense=\"functioning outside the boundaries or precincts of an organized unit\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"outside\" wordnet_id=\"a-01350225\" pos=\"JJ\" sense=\"coming from the outside\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"outside\" wordnet_id=\"a-01413084\" pos=\"JJ\" sense=\"very unlikely\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"outside\" wordnet_id=\"a-01692222\" pos=\"JJ\" sense=\"located, suited for, or taking place in the open air\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"outside\" wordnet_id=\"a-01692969\" pos=\"JJ\" sense=\"relating to or being on or near the outer side or limit\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"outstanding\" wordnet_id=\"a-00580805\" pos=\"JJ\" sense=\"having a quality that thrusts itself into attention\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"outstanding\" wordnet_id=\"a-01278818\" pos=\"JJ\" sense=\"of major significance or importance\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"outstanding\" wordnet_id=\"a-01710543\" pos=\"JJ\" sense=\"owed as a debt\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"outstanding\" wordnet_id=\"a-02343762\" pos=\"JJ\" sense=\"distinguished from others in excellence\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"over-the-top\" wordnet_id=\"a-01534648\" pos=\"JJ\" sense=\"far more than usual or expected\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"overall\" wordnet_id=\"a-01102451\" pos=\"JJ\" sense=\"involving only main features\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"overall\" wordnet_id=\"a-01582946\" pos=\"JJ\" sense=\"including everything\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"overboard\" wordnet_id=\"r-173131\" pos=\"RB\" sense=\"from on board a vessel into the water\" polarity=\"-0.2\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"overboard\" wordnet_id=\"r-506715\" pos=\"RB\" sense=\"to extremes\" polarity=\"-0.3\" subjectivity=\"0.3\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"overexcited\" cornetto_synset_id=\"n_a-522310\" wordnet_id=\"a-00920422\" pos=\"JJ\" sense=\"unduly excited\" polarity=\"-0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"overexcited\" cornetto_synset_id=\"n_a-522310\" wordnet_id=\"a-00920422\" pos=\"JJ\" sense=\"unduly excited\" polarity=\"-0.4\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"overwhelming\" cornetto_synset_id=\"n_a-516841\" wordnet_id=\"a-01989446\" pos=\"JJ\" sense=\"so strong as to be irresistible\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"overwhelming\" wordnet_id=\"a-01511152\" pos=\"JJ\" sense=\"very intense\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"own\" cornetto_synset_id=\"n_a-504151\" wordnet_id=\"a-01768724\" pos=\"JJ\" sense=\"belonging to or on behalf of a specified person (especially yourself)\" polarity=\"0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"painful\" cornetto_synset_id=\"n_a-523334\" wordnet_id=\"a-01711071\" pos=\"JJ\" sense=\"causing physical or psychological pain\" polarity=\"-0.7\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"pale\" wordnet_id=\"a-1458200\" pos=\"JJ\" sense=\"not full or rich\" polarity=\"-0.1\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"pale\" wordnet_id=\"a-2325984\" pos=\"JJ\" sense=\"(of light) lacking in intensity or brightness\" polarity=\"-0.1\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"pale\" wordnet_id=\"a-405879\" pos=\"JJ\" sense=\"abnormally deficient in color as suggesting physical or emotional distress\" polarity=\"-0.3\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"pale\" wordnet_id=\"a-408445\" pos=\"JJ\" sense=\"lacking in vitality or interest or effectiveness\" polarity=\"-0.1\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"pale\" wordnet_id=\"a-408992\" pos=\"JJ\" sense=\"very light colored\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"pale\" wordnet_id=\"v-103619\" pos=\"VB\" sense=\"turn pale, as if in fear\" polarity=\"-0.3\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"palpable\" wordnet_id=\"a-01717117\" pos=\"JJ\" sense=\"capable of being perceived\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"palpable\" wordnet_id=\"a-01747713\" pos=\"JJ\" sense=\"can be felt by palpation\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"parade\" wordnet_id=\"n-521085\" pos=\"NN\" sense=\"a visible display\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"parade\" wordnet_id=\"n-8428485\" pos=\"NN\" sense=\"a ceremonial procession including people marching\" polarity=\"-0.1\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"parade\" wordnet_id=\"n-8460395\" pos=\"NN\" sense=\"an extended (often showy) succession of persons or things\" polarity=\"-0.3\" subjectivity=\"0.3\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"parade\" wordnet_id=\"v-1924505\" pos=\"VB\" sense=\"march in a procession\" polarity=\"-0.1\" subjectivity=\"0.1\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"parade\" wordnet_id=\"v-1924712\" pos=\"VB\" sense=\"walk ostentatiously\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"parallel\" cornetto_synset_id=\"d_a-9265\" wordnet_id=\"a-01718158\" pos=\"JJ\" sense=\"being everywhere equidistant and not intersecting\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"partial\" cornetto_synset_id=\"n_r-509803\" wordnet_id=\"a-00524693\" pos=\"JJ\" sense=\"being or affecting only a part\" polarity=\"-0.1\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"particular\" cornetto_synset_id=\"n_a-503630\" wordnet_id=\"a-00984624\" pos=\"JJ\" sense=\"exacting especially about details\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"particular\" cornetto_synset_id=\"n_a-505164\" wordnet_id=\"a-00488187\" pos=\"JJ\" sense=\"surpassing what is common or usual or expected\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"particular\" wordnet_id=\"a-00311044\" pos=\"JJ\" sense=\"providing specific details or circumstances\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"particular\" wordnet_id=\"a-01104026\" pos=\"JJ\" sense=\"unique or specific to a person or thing or category\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"particular\" wordnet_id=\"a-01104460\" pos=\"JJ\" sense=\"separate and distinct from others of the same group or category\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"particular\" wordnet_id=\"a-01853228\" pos=\"JJ\" sense=\"first and most important\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"passionate\" cornetto_synset_id=\"n_a-508813\" wordnet_id=\"a-01725712\" pos=\"JJ\" sense=\"having or expressing strong emotions\" polarity=\"-0.2\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"passionate\" cornetto_synset_id=\"n_a-508813\" wordnet_id=\"a-01725712\" pos=\"JJ\" sense=\"having or expressing strong emotions\" polarity=\"0.1\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"past\" wordnet_id=\"a-01296091\" pos=\"JJ\" sense=\"of a person who has held and relinquished a position or office\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"past\" wordnet_id=\"a-01727926\" pos=\"JJ\" sense=\"earlier than the present time\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"pathetic\" cornetto_synset_id=\"n_a-535670\" wordnet_id=\"a-01050890\" pos=\"JJ\" sense=\"deserving or inciting pity\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"pathetic\" wordnet_id=\"a-00752847\" pos=\"JJ\" sense=\"inspiring scornful pity\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"pathetic\" wordnet_id=\"a-00905181\" pos=\"JJ\" sense=\"inspiring mixed contempt and pity\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"peaceful\" wordnet_id=\"a-01740892\" pos=\"JJ\" sense=\"not disturbed by strife or turmoil or war\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"peaceful\" wordnet_id=\"a-02513101\" pos=\"JJ\" sense=\"peacefully resistant in response to injustice\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"peaky\" cornetto_synset_id=\"n_a-528597\" wordnet_id=\"a-01214255\" pos=\"JJ\" sense=\"having or as if having especially high-pitched spots\" polarity=\"0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"peevish\" wordnet_id=\"\" pos=\"JJ\" sense=\"\" polarity=\"-0.4\" subjectivity=\"0.6\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"peppery\" cornetto_synset_id=\"n_a-510413\" wordnet_id=\"a-02397496\" pos=\"JJ\" sense=\"having the piquant burning taste of peppers\" polarity=\"-0.1\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"perfect\" cornetto_synset_id=\"n_a-520591\" wordnet_id=\"a-01520091\" pos=\"JJ\" sense=\"without qualification\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"perfect\" wordnet_id=\"a-00915321\" pos=\"JJ\" sense=\"precisely accurate or exact\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"perfect\" wordnet_id=\"a-01749320\" pos=\"JJ\" sense=\"being complete of its kind and without defect or blemish\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"perpetually\" wordnet_id=\"r-227968\" pos=\"RB\" sense=\"everlastingly\" polarity=\"-0.05\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"perplexed\" cornetto_synset_id=\"n_a-529451\" wordnet_id=\"a-01765643\" pos=\"JJ\" sense=\"full of difficulty or confusion or bewilderment\" polarity=\"0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"personal\" cornetto_synset_id=\"n_a-523170\" wordnet_id=\"a-01767329\" pos=\"JJ\" sense=\"concerning or affecting a particular person or his or her private life and personality\" polarity=\"0.0\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"phantasmagoric\" cornetto_synset_id=\"n_a-530055\" wordnet_id=\"a-01943067\" pos=\"JJ\" sense=\"characterized by fantastic imagery and incongruous juxtapositions\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"phenomenal\" wordnet_id=\"a-01676993\" pos=\"JJ\" sense=\"exceedingly or unbelievably great\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"phenomenal\" wordnet_id=\"a-02859708\" pos=\"JJ\" sense=\"of or relating to a phenomenon\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"philosophic\" cornetto_synset_id=\"n_a-534873\" wordnet_id=\"a-02858231\" pos=\"JJ\" sense=\"of or relating to philosophy or philosophers\" polarity=\"0.2\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"philosophic\" cornetto_synset_id=\"n_a-534873\" wordnet_id=\"a-02858231\" pos=\"JJ\" sense=\"of or relating to philosophy or philosophers\" polarity=\"0.2\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"philosophical\" cornetto_synset_id=\"n_a-527595\" wordnet_id=\"a-00858053\" pos=\"JJ\" sense=\"characterized by the attitude of a philosopher\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"philosophical\" cornetto_synset_id=\"n_a-534873\" wordnet_id=\"a-02858231\" pos=\"JJ\" sense=\"of or relating to philosophy or philosophers\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"physical\" cornetto_synset_id=\"n_a-513565\" wordnet_id=\"a-00842324\" pos=\"JJ\" sense=\"impelled by physical force especially against resistance\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"physical\" cornetto_synset_id=\"n_a-519693\" wordnet_id=\"a-02779774\" pos=\"JJ\" sense=\"relating to the sciences dealing with matter and energy\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"physical\" wordnet_id=\"a-00627004\" pos=\"JJ\" sense=\"having substance or material existence\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"physical\" wordnet_id=\"a-00627204\" pos=\"JJ\" sense=\"concerned with material things\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"physical\" wordnet_id=\"a-00874092\" pos=\"JJ\" sense=\"characterized by energetic bodily activity\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"physical\" wordnet_id=\"a-01574259\" pos=\"JJ\" sense=\"according with material things or natural laws (other than those peculiar to living matter)\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"physical\" wordnet_id=\"a-01778212\" pos=\"JJ\" sense=\"involving the body as distinguished from the mind or spirit\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"pinheads\" wordnet_id=\"\" pos=\"NNS\" sense=\"\" polarity=\"-0.3\" subjectivity=\"0.5\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"pink\" cornetto_synset_id=\"n_a-526273\" wordnet_id=\"a-00379595\" pos=\"JJ\" sense=\"of a light shade of red\" polarity=\"-0.1\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"pious\" cornetto_synset_id=\"d_a-9319\" wordnet_id=\"a-01781478\" pos=\"JJ\" sense=\"having or showing or expressing reverence for a deity\" polarity=\"0.0\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"pity\" wordnet_id=\"n-7305098\" pos=\"NN\" sense=\"an unfortunate development\" polarity=\"-0.1\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"pivotal\" cornetto_synset_id=\"n_a-503757\" wordnet_id=\"a-00656507\" pos=\"JJ\" sense=\"being of crucial importance\" polarity=\"0.5\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"placid\" cornetto_synset_id=\"n_a-527854\" wordnet_id=\"a-00302951\" pos=\"JJ\" sense=\"(of a body of water) free from disturbance by heavy waves\" polarity=\"-0.3\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"plain\" cornetto_synset_id=\"n_a-505886\" wordnet_id=\"a-01618376\" pos=\"JJ\" sense=\"clearly revealed to the mind or the senses or judgment\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"plain\" cornetto_synset_id=\"n_a-507238\" wordnet_id=\"a-00060605\" pos=\"JJ\" sense=\"lacking embellishment or ornamentation\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"plain\" cornetto_synset_id=\"n_a-508076\" wordnet_id=\"a-00169432\" pos=\"JJ\" sense=\"lacking in physical beauty or proportion\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"plain\" cornetto_synset_id=\"n_a-521323\" wordnet_id=\"a-00765666\" pos=\"JJ\" sense=\"free from any effort to soften to disguise\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"plain\" wordnet_id=\"a-01785906\" pos=\"JJ\" sense=\"lacking patterns especially in color\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"plain\" wordnet_id=\"a-01791911\" pos=\"JJ\" sense=\"not elaborate or elaborated\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"plain\" wordnet_id=\"a-01907103\" pos=\"JJ\" sense=\"not mixed with extraneous elements\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"platitudes\" wordnet_id=\"\" pos=\"\" sense=\"NNS\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"plausible\" wordnet_id=\"a-01799457\" pos=\"JJ\" sense=\"apparently reasonable and valid, and truthful\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"plausible\" wordnet_id=\"a-02182728\" pos=\"JJ\" sense=\"given to or characterized by presenting specious arguments\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"pleasant\" cornetto_synset_id=\"n_a-506397\" wordnet_id=\"a-01586866\" pos=\"JJ\" sense=\"(of persons) having pleasing manners or behavior\" polarity=\"0.7\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"pleasant\" cornetto_synset_id=\"n_a-532410\" wordnet_id=\"a-01800349\" pos=\"JJ\" sense=\"affording pleasure\" polarity=\"0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"pleasant\" cornetto_synset_id=\"n_a-532410\" wordnet_id=\"a-01800349\" pos=\"JJ\" sense=\"affording pleasure\" polarity=\"0.9\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"pleased\" cornetto_synset_id=\"n_a-513664\" wordnet_id=\"a-01892506\" pos=\"JJ\" sense=\"feeling pleasurable satisfaction over something by which you measures your self-worth\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"pleased\" wordnet_id=\"a-01805157\" pos=\"JJ\" sense=\"experiencing or manifesting pleasure\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"pleonastic\" cornetto_synset_id=\"d_a-9483\" wordnet_id=\"a-00549826\" pos=\"JJ\" sense=\"repetition of same sense in different words\" polarity=\"-0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"plod\" wordnet_id=\"\" pos=\"VB\" sense=\"\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"plodding\" wordnet_id=\"n-291965\" pos=\"NN\" sense=\"the act of walking with a slow heavy gait\" polarity=\"-0.3\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"poetic\" cornetto_synset_id=\"n_a-532727\" wordnet_id=\"a-02857099\" pos=\"JJ\" sense=\"of or relating to poetry\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"poetic\" wordnet_id=\"a-01420337\" pos=\"JJ\" sense=\"characterized by romantic imagery\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"poetic\" wordnet_id=\"a-02018141\" pos=\"JJ\" sense=\"characteristic of or befitting poetry\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"poetic\" wordnet_id=\"a-02857295\" pos=\"JJ\" sense=\"of or relating to poets\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"poignant\" wordnet_id=\"a-01560821\" pos=\"JJ\" sense=\"arousing affect\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"poignant\" wordnet_id=\"a-01712174\" pos=\"JJ\" sense=\"keenly distressing to the mind or feelings\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"pointless\" wordnet_id=\"a-01811504\" pos=\"JJ\" sense=\"not having a point especially a sharp point\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"pointless\" wordnet_id=\"a-02503305\" pos=\"JJ\" sense=\"serving no useful purpose\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"polar\" cornetto_synset_id=\"n_a-502523\" wordnet_id=\"a-01252151\" pos=\"JJ\" sense=\"extremely cold\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"polar\" cornetto_synset_id=\"n_a-503757\" wordnet_id=\"a-00656507\" pos=\"JJ\" sense=\"being of crucial importance\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"polar\" cornetto_synset_id=\"n_a-506798\" wordnet_id=\"a-02066312\" pos=\"JJ\" sense=\"characterized by opposite extremes\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"polar\" cornetto_synset_id=\"n_a-523821\" wordnet_id=\"a-02838005\" pos=\"JJ\" sense=\"located at or near or coming from the earth's poles\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"polar\" cornetto_synset_id=\"n_a-523822\" wordnet_id=\"a-00358820\" pos=\"JJ\" sense=\"having a pair of equal and opposite charges\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"polar\" wordnet_id=\"a-02444147\" pos=\"JJ\" sense=\"of or existing at or near a geographical pole or within the Arctic or Antarctic Circles\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"political\" cornetto_synset_id=\"d_a-9492\" wordnet_id=\"a-02857587\" pos=\"JJ\" sense=\"of or relating to the profession of governing\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"poor\" cornetto_synset_id=\"d_a-9161\" wordnet_id=\"a-02022953\" pos=\"JJ\" sense=\"having little money or few possessions\" polarity=\"-0.4\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"popular\" cornetto_synset_id=\"n_a-523989\" wordnet_id=\"a-00414518\" pos=\"JJ\" sense=\"(of music or art) new and of general appeal (especially among young people)\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"positive\" cornetto_synset_id=\"n_a-521722\" wordnet_id=\"a-00721838\" pos=\"JJ\" sense=\"impossible to deny or disprove\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"positive\" cornetto_synset_id=\"n_a-524027\" wordnet_id=\"a-02782815\" pos=\"JJ\" sense=\"of or relating to positivism\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"positive\" cornetto_synset_id=\"n_a-525680\" wordnet_id=\"a-01817500\" pos=\"JJ\" sense=\"characterized by or displaying affirmation or acceptance or certainty etc.\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"positive\" wordnet_id=\"a-00065064\" pos=\"JJ\" sense=\"involving advantage or good\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"positive\" wordnet_id=\"a-00337172\" pos=\"JJ\" sense=\"persuaded of\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"positive\" wordnet_id=\"a-00339288\" pos=\"JJ\" sense=\"marked by excessive confidence\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"positive\" wordnet_id=\"a-00358678\" pos=\"JJ\" sense=\"having a positive charge\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"positive\" wordnet_id=\"a-01043505\" pos=\"JJ\" sense=\"formally laid down or imposed\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"positive\" wordnet_id=\"a-01819692\" pos=\"JJ\" sense=\"greater than zero\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"positive\" wordnet_id=\"a-01820103\" pos=\"JJ\" sense=\"reckoned, situated or tending in the direction which naturally or arbitrarily is taken to indicate increase or progress or onward motion\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"positive\" wordnet_id=\"a-01820481\" pos=\"JJ\" sense=\"indicating existence or presence of a suspected condition or pathogen\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"possible\" wordnet_id=\"a-00044353\" pos=\"JJ\" sense=\"existing in possibility\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"possible\" wordnet_id=\"a-01821266\" pos=\"JJ\" sense=\"capable of happening or existing\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"potent\" cornetto_synset_id=\"c_752\" wordnet_id=\"a-01826979\" pos=\"JJ\" sense=\"having or wielding force or authority\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"potent\" cornetto_synset_id=\"n_a-500993\" wordnet_id=\"a-01830599\" pos=\"JJ\" sense=\"having great influence\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"potent\" wordnet_id=\"a-01824244\" pos=\"JJ\" sense=\"having a strong physiological or chemical effect\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"potent\" wordnet_id=\"a-01825419\" pos=\"JJ\" sense=\"(of a male) capable of copulation\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"potential\" wordnet_id=\"a-00044353\" pos=\"JJ\" sense=\"existing in possibility\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"potential\" wordnet_id=\"a-01884176\" pos=\"JJ\" sense=\"expected to become or be\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"powerful\" cornetto_synset_id=\"n_a-500993\" wordnet_id=\"a-01830599\" pos=\"JJ\" sense=\"having great influence\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"powerful\" cornetto_synset_id=\"n_a-528533\" wordnet_id=\"a-02321809\" pos=\"JJ\" sense=\"(of a person) possessing physical strength and weight\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"powerful\" wordnet_id=\"a-01261363\" pos=\"JJ\" sense=\"displaying superhuman strength or power\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"powerful\" wordnet_id=\"a-01825671\" pos=\"JJ\" sense=\"having great power or force or potency or effect\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"powerful\" wordnet_id=\"a-02323072\" pos=\"JJ\" sense=\"strong enough to knock down or overwhelm\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"powerless\" cornetto_synset_id=\"n_a-513099\" wordnet_id=\"a-01827535\" pos=\"JJ\" sense=\"lacking power\" polarity=\"-0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"preachy\" wordnet_id=\"a-1325273\" pos=\"JJ\" sense=\"inclined to or marked by tedious moralization\" polarity=\"-0.2\" subjectivity=\"0.3\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"precious\" wordnet_id=\"a-00148642\" pos=\"JJ\" sense=\"obviously contrived to charm\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"precious\" wordnet_id=\"a-01462625\" pos=\"JJ\" sense=\"characterized by feeling or showing fond affection for\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"precious\" wordnet_id=\"a-02501534\" pos=\"JJ\" sense=\"of high worth or cost\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"precious\" wordnet_id=\"a-02587556\" pos=\"JJ\" sense=\"held in great esteem for admirable qualities especially of an intrinsic nature\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"precise\" cornetto_synset_id=\"n_a-510774\" wordnet_id=\"a-01837744\" pos=\"JJ\" sense=\"sharply exact or accurate or delimited\" polarity=\"0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"predictable\" wordnet_id=\"a-01841544\" pos=\"JJ\" sense=\"capable of being foretold\" polarity=\"-0.2\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"pregnant\" cornetto_synset_id=\"n_a-503852\" wordnet_id=\"a-00173220\" pos=\"JJ\" sense=\"carrying developing offspring within the body or being about to produce new life\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"pregnant\" wordnet_id=\"a-01084900\" pos=\"JJ\" sense=\"filled with or attended with\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"pregnant\" wordnet_id=\"a-01497387\" pos=\"JJ\" sense=\"rich in significance or implication\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"present\" wordnet_id=\"a-01731351\" pos=\"JJ\" sense=\"temporal sense\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"present\" wordnet_id=\"a-01846413\" pos=\"JJ\" sense=\"being or existing in a specified place\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"pretentious\" wordnet_id=\"a-1849288\" pos=\"JJ\" sense=\"making claim to or creating an appearance of (often undeserved) importance or distinction\" polarity=\"-0.3\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"pretty\" wordnet_id=\"a-00220082\" pos=\"JJ\" sense=\"pleasing by delicacy or grace\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"pretty\" wordnet_id=\"a-01128871\" pos=\"JJ\" sense=\"(used ironically) unexpectedly bad\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"previous\" wordnet_id=\"a-00127137\" pos=\"JJ\" sense=\"just preceding something else in time or order\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"previous\" wordnet_id=\"a-00815227\" pos=\"JJ\" sense=\"too soon or too hasty\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"previous\" wordnet_id=\"a-01729819\" pos=\"JJ\" sense=\"(used especially of persons) of the immediate past\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"priceless\" wordnet_id=\"a-02501367\" pos=\"JJ\" sense=\"having incalculable monetary, intellectual, or spiritual worth\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"primary\" cornetto_synset_id=\"n_a-524354\" wordnet_id=\"a-01852174\" pos=\"JJ\" sense=\"of first rank or importance or value\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"primary\" wordnet_id=\"a-00699521\" pos=\"JJ\" sense=\"not derived from or reducible to something else\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"primary\" wordnet_id=\"a-00901060\" pos=\"JJ\" sense=\"of primary importance\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"primary\" wordnet_id=\"a-01277426\" pos=\"JJ\" sense=\"most important element\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"primary\" wordnet_id=\"a-01856238\" pos=\"JJ\" sense=\"of or being the essential or basic part\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"prior\" wordnet_id=\"a-00122128\" pos=\"JJ\" sense=\"earlier in time\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"prissy\" wordnet_id=\"\" pos=\"\" sense=\"\" polarity=\"-0.3\" subjectivity=\"0.4\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"private\" cornetto_synset_id=\"n_a-532778\" wordnet_id=\"a-00952181\" pos=\"JJ\" sense=\"not expressed\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"private\" wordnet_id=\"a-01768086\" pos=\"JJ\" sense=\"concerning one person exclusively\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"private\" wordnet_id=\"a-01769378\" pos=\"JJ\" sense=\"concerning things deeply private and personal\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"private\" wordnet_id=\"a-01858094\" pos=\"JJ\" sense=\"confined to particular persons or groups or providing privacy\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"professional\" wordnet_id=\"a-01868724\" pos=\"JJ\" sense=\"engaged in a profession or engaging in as a profession or means of livelihood\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"professional\" wordnet_id=\"a-01870100\" pos=\"JJ\" sense=\"characteristic of or befitting a profession or one engaged in a profession\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"professional\" wordnet_id=\"a-02556402\" pos=\"JJ\" sense=\"engaged in by members of a profession\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"professional\" wordnet_id=\"a-02839505\" pos=\"JJ\" sense=\"of or relating to a profession\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"professional\" wordnet_id=\"a-02839695\" pos=\"JJ\" sense=\"of or relating to or suitable as a profession\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"profitering\" wordnet_id=\"\" pos=\"VB\" polarity=\"-0.3\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"profound\" cornetto_synset_id=\"n_a-506896\" wordnet_id=\"a-00691141\" pos=\"JJ\" sense=\"situated at or extending to great depth\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"profound\" wordnet_id=\"a-00693020\" pos=\"JJ\" sense=\"(of sleep) deep and complete\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"profound\" wordnet_id=\"a-00693237\" pos=\"JJ\" sense=\"coming from deep within one\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"profound\" wordnet_id=\"a-01512645\" pos=\"JJ\" sense=\"of the greatest intensity\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"profound\" wordnet_id=\"a-01872745\" pos=\"JJ\" sense=\"showing intellectual penetration or emotional depth\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"profound\" wordnet_id=\"a-02162934\" pos=\"JJ\" sense=\"far-reaching and thoroughgoing in effect especially on the nature of something\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"prolix\" cornetto_synset_id=\"n_a-516733\" wordnet_id=\"a-00548781\" pos=\"JJ\" sense=\"tediously prolonged or tending to speak or write at great length\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"prominent\" cornetto_synset_id=\"n_a-508271\" wordnet_id=\"a-00579622\" pos=\"JJ\" sense=\"conspicuous in position or importance\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"prominent\" wordnet_id=\"a-00580805\" pos=\"JJ\" sense=\"having a quality that thrusts itself into attention\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"promising\" cornetto_synset_id=\"n_a-515378\" wordnet_id=\"a-00176387\" pos=\"JJ\" sense=\"full or promise\" polarity=\"0.2\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"promising\" wordnet_id=\"a-01412286\" pos=\"JJ\" sense=\"showing possibility of achievement or excellence\" polarity=\"0.2\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"propaganda\" wordnet_id=\"n-6674542\" pos=\"NN\" sense=\"information that is spread for the purpose of promoting some cause\" polarity=\"-0.1\" subjectivity=\"0.1\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"proper\" cornetto_synset_id=\"n_a-525198\" wordnet_id=\"a-00135455\" pos=\"JJ\" sense=\"appropriate for a condition or purpose or occasion or a person's character, needs\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"proud\" cornetto_synset_id=\"d_a-9551\" wordnet_id=\"a-01889256\" pos=\"JJ\" sense=\"feeling self-respect or pleasure in something by which you measure your self-worth\" polarity=\"0.8\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"proves\" wordnet_id=\"\" pos=\"VB\" polarity=\"0.3\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"psychological\" cornetto_synset_id=\"n_a-524671\" wordnet_id=\"a-02905794\" pos=\"JJ\" sense=\"of or relating to or determined by psychology\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"psychotic\" cornetto_synset_id=\"n_a-524683\" wordnet_id=\"a-02077469\" pos=\"JJ\" sense=\"characteristic of or suffering from psychosis\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"public\" cornetto_synset_id=\"n_a-521886\" wordnet_id=\"a-01861205\" pos=\"JJ\" sense=\"not private\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"public\" cornetto_synset_id=\"n_a-521887\" wordnet_id=\"a-01861205\" pos=\"JJ\" sense=\"not private\" polarity=\"-0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"public\" cornetto_synset_id=\"n_a-521887\" wordnet_id=\"a-01861205\" pos=\"JJ\" sense=\"not private\" polarity=\"0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"pure\" cornetto_synset_id=\"n_a-504893\" wordnet_id=\"a-00361125\" pos=\"JJ\" sense=\"in a state of sexual virginity\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"pure\" cornetto_synset_id=\"n_a-520591\" wordnet_id=\"a-01520091\" pos=\"JJ\" sense=\"without qualification\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"pure\" cornetto_synset_id=\"n_a-521578\" wordnet_id=\"a-00393508\" pos=\"JJ\" sense=\"(of color) being chromatically pure\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"pure\" wordnet_id=\"a-00862911\" pos=\"JJ\" sense=\"concerned with theory and data rather than practice\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"pure\" wordnet_id=\"a-01163860\" pos=\"JJ\" sense=\"free from discordant qualities\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"pure\" wordnet_id=\"a-01904845\" pos=\"JJ\" sense=\"(used of persons or behaviors) having no faults\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"pure\" wordnet_id=\"a-01905653\" pos=\"JJ\" sense=\"free of extraneous elements of any kind\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"putative\" cornetto_synset_id=\"n_a-526993\" wordnet_id=\"a-00028471\" pos=\"JJ\" sense=\"purported\" polarity=\"-0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"putative\" cornetto_synset_id=\"n_a-526993\" wordnet_id=\"a-00028471\" pos=\"JJ\" sense=\"purported\" polarity=\"0.0\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"putative\" cornetto_synset_id=\"n_a-532582\" wordnet_id=\"a-00028471\" pos=\"JJ\" sense=\"purported\" polarity=\"-0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"questionable\" wordnet_id=\"a-00721371\" pos=\"JJ\" sense=\"able to be refuted\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"questionable\" wordnet_id=\"a-01916229\" pos=\"JJ\" sense=\"subject to question\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"quick\" cornetto_synset_id=\"n_a-510739\" wordnet_id=\"a-00032733\" pos=\"JJ\" sense=\"moving quickly and lightly\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"quick\" wordnet_id=\"a-00919018\" pos=\"JJ\" sense=\"easily aroused or excited\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"quick\" wordnet_id=\"a-00978754\" pos=\"JJ\" sense=\"performed with little or no delay\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"quick\" wordnet_id=\"a-00979366\" pos=\"JJ\" sense=\"accomplished rapidly and without delay\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"quick\" wordnet_id=\"a-01270486\" pos=\"JJ\" sense=\"hurried and brief\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"quick\" wordnet_id=\"a-01335903\" pos=\"JJ\" sense=\"apprehending and responding with speed and sensitivity\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"quiet\" cornetto_synset_id=\"n_a-529367\" wordnet_id=\"a-00302951\" pos=\"JJ\" sense=\"(of a body of water) free from disturbance by heavy waves\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"quiet\" wordnet_id=\"a-00043615\" pos=\"JJ\" sense=\"of the sun characterized by a low level of surface phenomena like sunspots e.g.\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"quiet\" wordnet_id=\"a-01455540\" pos=\"JJ\" sense=\"in a softened tone\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"quiet\" wordnet_id=\"a-01849170\" pos=\"JJ\" sense=\"not showy or obtrusive\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"quiet\" wordnet_id=\"a-01918984\" pos=\"JJ\" sense=\"free of noise or uproar\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"quiet\" wordnet_id=\"a-01922763\" pos=\"JJ\" sense=\"characterized by an absence or near absence of agitation or activity\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"quirky\" cornetto_synset_id=\"n_a-504364\" wordnet_id=\"a-00609564\" pos=\"JJ\" sense=\"informal terms\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"quixotic\" cornetto_synset_id=\"n_a-526106\" wordnet_id=\"a-01837182\" pos=\"JJ\" sense=\"not sensible about practical matters\" polarity=\"0.2\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"rancorous\" cornetto_synset_id=\"d_a-9567\" wordnet_id=\"a-00116940\" pos=\"JJ\" sense=\"showing deep-seated resentment\" polarity=\"-0.8\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"random\" wordnet_id=\"a-01924316\" pos=\"JJ\" sense=\"lacking any definite plan or order or purpose\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"rank\" cornetto_synset_id=\"n_a-525065\" wordnet_id=\"a-01002256\" pos=\"JJ\" sense=\"very fertile\" polarity=\"-0.8\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"rare\" cornetto_synset_id=\"d_a-9624\" wordnet_id=\"a-00017024\" pos=\"JJ\" sense=\"not widely distributed\" polarity=\"0.3\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"raucous\" cornetto_synset_id=\"n_a-512205\" wordnet_id=\"a-01667110\" pos=\"JJ\" sense=\"disturbing the public peace\" polarity=\"-0.3\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"raucous\" cornetto_synset_id=\"n_a-512205\" wordnet_id=\"a-01667110\" pos=\"JJ\" sense=\"disturbing the public peace\" polarity=\"-0.3\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"raunchy\" cornetto_synset_id=\"n_a-533037\" wordnet_id=\"a-00420650\" pos=\"JJ\" sense=\"thickly covered with ingrained dirt or soot\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"raunchy\" wordnet_id=\"a-00425740\" pos=\"JJ\" sense=\"suggestive of or tending to moral looseness\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"raunchy\" wordnet_id=\"a-02134701\" pos=\"JJ\" sense=\"earthy and sexually explicit\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"raw\" cornetto_synset_id=\"n_a-511814\" wordnet_id=\"a-00937186\" pos=\"JJ\" sense=\"lacking training or experience\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"raw\" cornetto_synset_id=\"n_a-528539\" wordnet_id=\"a-00458266\" pos=\"JJ\" sense=\"(used informally) completely unclothed\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"raw\" wordnet_id=\"a-00417204\" pos=\"JJ\" sense=\"not processed or subjected to analysis\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"raw\" wordnet_id=\"a-00619433\" pos=\"JJ\" sense=\"not treated with heat to prepare it for eating\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"raw\" wordnet_id=\"a-00958020\" pos=\"JJ\" sense=\"brutally unfair or harsh\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"raw\" wordnet_id=\"a-01005914\" pos=\"JJ\" sense=\"used of wood and furniture\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"raw\" wordnet_id=\"a-01252399\" pos=\"JJ\" sense=\"unpleasantly cold and damp\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"raw\" wordnet_id=\"a-01319061\" pos=\"JJ\" sense=\"having the surface exposed and painful\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"raw\" wordnet_id=\"a-01705195\" pos=\"JJ\" sense=\"devoid of elaboration or diminution or concealment\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"raw\" wordnet_id=\"a-01712753\" pos=\"JJ\" sense=\"hurting\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"raw\" wordnet_id=\"a-01813081\" pos=\"JJ\" sense=\"untempered and unrefined\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"raw\" wordnet_id=\"a-01952643\" pos=\"JJ\" sense=\"(used especially of commodities) being unprocessed or manufactured using only simple or minimal processes\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"raw\" wordnet_id=\"a-01954943\" pos=\"JJ\" sense=\"not processed or refined\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"ready\" wordnet_id=\"a-00185759\" pos=\"JJ\" sense=\"(of especially money) immediately available\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"ready\" wordnet_id=\"a-01335903\" pos=\"JJ\" sense=\"apprehending and responding with speed and sensitivity\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"ready\" wordnet_id=\"a-01844742\" pos=\"JJ\" sense=\"made suitable and available for immediate use\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"ready\" wordnet_id=\"a-01930512\" pos=\"JJ\" sense=\"completely prepared or in condition for immediate action or use or progress\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"ready\" wordnet_id=\"a-02565701\" pos=\"JJ\" sense=\"mentally disposed\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"real\" cornetto_synset_id=\"d_a-9613\" wordnet_id=\"a-01932973\" pos=\"JJ\" sense=\"being or occurring in fact or actuality\" polarity=\"0.2\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"real\" cornetto_synset_id=\"\" wordnet_id=\"\" pos=\"RB\" sense=\"'real' is sometimes used informally for 'really'\" polarity=\"0.2\" subjectivity=\"0.4\" intensity=\"2.0\" confidence=\"0.8\" />\n<word form=\"realistic\" cornetto_synset_id=\"n_a-519677\" wordnet_id=\"a-01979985\" pos=\"JJ\" sense=\"representing what is real\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"realistic\" wordnet_id=\"a-01939984\" pos=\"JJ\" sense=\"aware or expressing awareness of things as they really are\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"realistic\" wordnet_id=\"a-02787290\" pos=\"JJ\" sense=\"of or relating to the philosophical doctrine of realism\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"really\" wordnet_id=\"r-00037226\" pos=\"RB\" sense=\"in accordance with truth or fact or reality\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"2.0\" confidence=\"0.9\" />\n<word form=\"reasonable\" cornetto_synset_id=\"n_a-520216\" wordnet_id=\"a-01943406\" pos=\"JJ\" sense=\"showing reason or sound judgment\" polarity=\"0.2\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"recent\" wordnet_id=\"a-01642477\" pos=\"JJ\" sense=\"new\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"recent\" wordnet_id=\"a-01730444\" pos=\"JJ\" sense=\"of the immediate past or just previous to the present time\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"recognizable\" wordnet_id=\"a-01272920\" pos=\"JJ\" sense=\"capable of being recognized\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"recognizable\" wordnet_id=\"a-01747996\" pos=\"JJ\" sense=\"easily perceived\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"red\" cornetto_synset_id=\"n_a-526144\" wordnet_id=\"a-00381097\" pos=\"JJ\" sense=\"of a color at the end of the color spectrum (next to orange)\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"redeeming\" cornetto_synset_id=\"n_a-535305\" wordnet_id=\"a-01130733\" pos=\"JJ\" sense=\"bringing about salvation or redemption from sin\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"redeeming\" wordnet_id=\"a-01124574\" pos=\"JJ\" sense=\"compensating for some fault or defect\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"redoubtable\" cornetto_synset_id=\"n_a-509670\" wordnet_id=\"a-01983432\" pos=\"JJ\" sense=\"worthy of respect or honor\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"redundant\" wordnet_id=\"\" pos=\"JJ\" sense=\"\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"refreshing\" wordnet_id=\"a-01357027\" pos=\"JJ\" sense=\"imparting vitality and energy\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"refreshing\" wordnet_id=\"a-01642245\" pos=\"JJ\" sense=\"pleasantly new or different\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"regrets\" wordnet_id=\"\" pos=\"NNS\" sense=\"\" polarity=\"-0.1\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"regular\" cornetto_synset_id=\"n_a-534763\" wordnet_id=\"a-00489863\" pos=\"JJ\" sense=\"in accord with regular practice or procedure\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"regular\" wordnet_id=\"a-00638501\" pos=\"JJ\" sense=\"not constipated\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"regular\" wordnet_id=\"a-01067003\" pos=\"JJ\" sense=\"relating to a person who does something regularly\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"regular\" wordnet_id=\"a-01089275\" pos=\"JJ\" sense=\"officially full-time\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"regular\" wordnet_id=\"a-01595312\" pos=\"JJ\" sense=\"not deviating from what is normal\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"regular\" wordnet_id=\"a-01959294\" pos=\"JJ\" sense=\"in accordance with fixed order or procedure or principle\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"regular\" wordnet_id=\"a-01961937\" pos=\"JJ\" sense=\"(of solids) having clear dimensions that can be measured\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"regular\" wordnet_id=\"a-01970777\" pos=\"JJ\" sense=\"(used of the military) belonging to or engaged in by legitimate army forces\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"regular\" wordnet_id=\"a-02296632\" pos=\"JJ\" sense=\"conforming to a standard or pattern\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"regular\" wordnet_id=\"a-02302187\" pos=\"JJ\" sense=\"occurring at fixed intervals\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"regular\" wordnet_id=\"a-02366927\" pos=\"JJ\" sense=\"regularly scheduled for fixed times\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"regular\" wordnet_id=\"a-02372520\" pos=\"JJ\" sense=\"symmetrically arranged\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"regular\" wordnet_id=\"a-02469577\" pos=\"JJ\" sense=\"often used as intensifiers\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"regurgitates\" wordnet_id=\"\" pos=\"VBZ\" sense=\"\" polarity=\"-0.3\" subjectivity=\"0.3\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"rehash\" wordnet_id=\"n-6635759\" pos=\"NN\" sense=\"old material that is slightly reworked and used again\" polarity=\"-0.05\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"rehash\" wordnet_id=\"v-1162629\" pos=\"VB\" sense=\"present or use over, with no or few changes\" polarity=\"-0.05\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"related\" cornetto_synset_id=\"n_a-532834\" wordnet_id=\"a-01972820\" pos=\"JJ\" sense=\"being connected either logically or causally or by shared characteristics \" polarity=\"0.0\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"relative\" wordnet_id=\"a-00006032\" pos=\"JJ\" sense=\"estimated by comparison\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"relative\" wordnet_id=\"a-00482673\" pos=\"JJ\" sense=\"properly related in size or degree or other measurable characteristics\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"relevant\" cornetto_synset_id=\"n_a-525520\" wordnet_id=\"a-01975138\" pos=\"JJ\" sense=\"having a bearing on or connection with the subject at issue\" polarity=\"0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"religious\" cornetto_synset_id=\"n_a-504091\" wordnet_id=\"a-01783158\" pos=\"JJ\" sense=\"having or showing belief in and reverence for a deity\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"religious\" cornetto_synset_id=\"n_a-528588\" wordnet_id=\"a-02056265\" pos=\"JJ\" sense=\"concerned with sacred matters or religion or the church\" polarity=\"0.0\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"remarkable\" wordnet_id=\"a-01678417\" pos=\"JJ\" sense=\"unusual or striking\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"remarkable\" wordnet_id=\"a-02163602\" pos=\"JJ\" sense=\"worthy of notice\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"reminiscent\" wordnet_id=\"a-01977669\" pos=\"JJ\" sense=\"serving to bring to mind\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"remote\" cornetto_synset_id=\"n_a-530640\" wordnet_id=\"a-00020103\" pos=\"JJ\" sense=\"inaccessible and sparsely populated\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"remote\" cornetto_synset_id=\"n_a-532245\" wordnet_id=\"a-00442917\" pos=\"JJ\" sense=\"located far away spatially\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"remote\" cornetto_synset_id=\"n_a-532246\" wordnet_id=\"a-00443075\" pos=\"JJ\" sense=\"separate or apart in time\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"remote\" cornetto_synset_id=\"n_a-532249\" wordnet_id=\"a-00450606\" pos=\"JJ\" sense=\"far apart in relevance or relationship or kinship \" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"remote\" wordnet_id=\"a-01413084\" pos=\"JJ\" sense=\"very unlikely\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"repellent\" cornetto_synset_id=\"n_a-534469\" wordnet_id=\"a-00007990\" pos=\"JJ\" sense=\"incapable of absorbing or mixing with\" polarity=\"-0.9\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"repetitive\" cornetto_synset_id=\"n_a-507593\" wordnet_id=\"a-00592539\" pos=\"JJ\" sense=\"repetitive and persistent\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"repetitive\" wordnet_id=\"a-01964367\" pos=\"JJ\" sense=\"characterized by repetition\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"reputable\" cornetto_synset_id=\"d_a-9255\" wordnet_id=\"a-01982646\" pos=\"JJ\" sense=\"having a good reputation\" polarity=\"0.6\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"reputable\" cornetto_synset_id=\"n_a-503878\" wordnet_id=\"a-01982646\" pos=\"JJ\" sense=\"having a good reputation\" polarity=\"0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"resourceful\" cornetto_synset_id=\"n_a-533083\" wordnet_id=\"a-00307182\" pos=\"JJ\" sense=\"having inner resources\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"respectable\" cornetto_synset_id=\"n_a-529095\" wordnet_id=\"a-01993140\" pos=\"JJ\" sense=\"characterized by socially or conventionally acceptable morals\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"respectable\" wordnet_id=\"a-00624576\" pos=\"JJ\" sense=\"large in amount or extent or degree\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"respectable\" wordnet_id=\"a-01983162\" pos=\"JJ\" sense=\"deserving of esteem and respect\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"respectful\" cornetto_synset_id=\"n_a-508023\" wordnet_id=\"a-01993940\" pos=\"JJ\" sense=\"full of or exhibiting respect\" polarity=\"0.5\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"respective\" cornetto_synset_id=\"n_a-503872\" wordnet_id=\"a-00494409\" pos=\"JJ\" sense=\"considered individually\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"responsible\" cornetto_synset_id=\"n_a-532262\" wordnet_id=\"a-00324878\" pos=\"JJ\" sense=\"being the agent or cause\" polarity=\"0.0\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"responsible\" cornetto_synset_id=\"n_a-532263\" wordnet_id=\"a-01996377\" pos=\"JJ\" sense=\"worthy of or requiring responsibility or trust\" polarity=\"0.4\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"retard\" wordnet_id=\"n-10197525\" pos=\"NN\" sense=\"a person of subnormal intelligence\" polarity=\"-0.9\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"retards\" wordnet_id=\"\" pos=\"NNS\" sense=\"\" polarity=\"-0.9\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"retarded\" wordnet_id=\"a-1840366\" pos=\"JJ\" sense=\"relatively slow in mental or emotional or physical development\" polarity=\"-0.8\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"rewarding\" wordnet_id=\"a-02015571\" pos=\"JJ\" sense=\"providing personal satisfaction\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"rich\" cornetto_synset_id=\"n_a-511626\" wordnet_id=\"a-00014490\" pos=\"JJ\" sense=\"affording an abundant supply\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"rich\" cornetto_synset_id=\"n_a-513757\" wordnet_id=\"a-00403385\" pos=\"JJ\" sense=\"strong\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"rich\" cornetto_synset_id=\"n_a-518021\" wordnet_id=\"a-02397234\" pos=\"JJ\" sense=\"marked by richness and fullness of flavor\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"rich\" cornetto_synset_id=\"n_a-533975\" wordnet_id=\"a-01081340\" pos=\"JJ\" sense=\"marked by great fruitfulness\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"rich\" wordnet_id=\"a-01457369\" pos=\"JJ\" sense=\"pleasantly full and mellow\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"rich\" wordnet_id=\"a-01866429\" pos=\"JJ\" sense=\"very productive\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"rich\" wordnet_id=\"a-02021905\" pos=\"JJ\" sense=\"possessing material wealth\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"rich\" wordnet_id=\"a-02024143\" pos=\"JJ\" sense=\"having an abundant supply of desirable qualities or substances (especially natural resources)\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"rich\" wordnet_id=\"a-02024758\" pos=\"JJ\" sense=\"suggestive of or characterized by great expense\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"rich\" wordnet_id=\"a-02026785\" pos=\"JJ\" sense=\"high in mineral content\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"rich\" wordnet_id=\"a-02501693\" pos=\"JJ\" sense=\"of great worth or quality\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"rich\" wordnet_id=\"a-02560402\" pos=\"JJ\" sense=\"containing plenty of fat, or eggs, or sugar\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"ridiculous\" wordnet_id=\"a-00752847\" pos=\"JJ\" sense=\"inspiring scornful pity\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"ridiculous\" wordnet_id=\"a-01266397\" pos=\"JJ\" sense=\"broadly or extravagantly humorous\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"ridiculous\" wordnet_id=\"a-02570643\" pos=\"JJ\" sense=\"incongruous\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"right\" cornetto_synset_id=\"n_a-525198\" wordnet_id=\"a-00135455\" pos=\"JJ\" sense=\"appropriate for a condition or purpose or occasion or a person's character, needs\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"right\" wordnet_id=\"a-00023278\" pos=\"JJ\" sense=\"precisely accurate\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"right\" wordnet_id=\"a-00631391\" pos=\"JJ\" sense=\"free from error\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"right\" wordnet_id=\"a-00633410\" pos=\"JJ\" sense=\"correct in opinion or judgment\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"right\" wordnet_id=\"a-01661289\" pos=\"JJ\" sense=\"most suitable or right for a particular purpose\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"right\" wordnet_id=\"a-01693585\" pos=\"JJ\" sense=\"(of the side of cloth or clothing) facing or intended to face outward\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"right\" wordnet_id=\"a-01720930\" pos=\"JJ\" sense=\"having the axis perpendicular to the base\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"right\" wordnet_id=\"a-01879261\" pos=\"JJ\" sense=\"socially right or correct\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"right\" wordnet_id=\"a-01879464\" pos=\"JJ\" sense=\"in accord with accepted standards of usage or procedure\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"right\" wordnet_id=\"a-02029047\" pos=\"JJ\" sense=\"intended for the right hand\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"right\" wordnet_id=\"a-02030080\" pos=\"JJ\" sense=\"of or belonging to the political or intellectual right\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"right\" wordnet_id=\"a-02031986\" pos=\"JJ\" sense=\"being or located on or directed toward the side of the body to the east when facing north\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"right\" wordnet_id=\"a-02034828\" pos=\"JJ\" sense=\"in conformance with justice or law or morality\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"right\" wordnet_id=\"a-02082081\" pos=\"JJ\" sense=\"in or into a satisfactory condition\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"right-minded\" cornetto_synset_id=\"d_a-9251\" wordnet_id=\"a-00633581\" pos=\"JJ\" sense=\"disposed toward or having views based on what is right\" polarity=\"0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"rightist\" cornetto_synset_id=\"n_a-525199\" wordnet_id=\"a-02030793\" pos=\"JJ\" sense=\"believing in or supporting tenets of the political right\" polarity=\"-0.2\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"rip-off\" wordnet_id=\"\" pos=\"NN\" sense=\"\" polarity=\"-0.4\" subjectivity=\"0.5\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"risk-free\" cornetto_synset_id=\"n_a-532179\" wordnet_id=\"a-02058529\" pos=\"JJ\" sense=\"thought to be devoid of risk\" polarity=\"0.4\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"riveting\" cornetto_synset_id=\"n_a-501243\" wordnet_id=\"a-01344171\" pos=\"JJ\" sense=\"capable of arousing and holding the attention\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"robotic\" wordnet_id=\"a-2939781\" pos=\"JJ\" sense=\"of or relating to mechanical robots\" polarity=\"-0.1\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"rofl\" wordnet_id=\"\" pos=\"UH\" polarity=\"0.8\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"rohypnol\" wordnet_id=\"\" pos=\"\" sense=\"\" polarity=\"-0.1\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"romantic\" cornetto_synset_id=\"n_a-502212\" wordnet_id=\"a-01465214\" pos=\"JJ\" sense=\"expressive of or exciting sexual love or romance\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"romantic\" cornetto_synset_id=\"n_a-526106\" wordnet_id=\"a-01837182\" pos=\"JJ\" sense=\"not sensible about practical matters\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"romantic\" wordnet_id=\"a-02789151\" pos=\"JJ\" sense=\"belonging to or characteristic of Romanticism or the Romantic Movement in the arts\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"rose\" cornetto_synset_id=\"n_a-532117\" wordnet_id=\"a-00382173\" pos=\"JJ\" sense=\"of something having a dusty purplish pink color\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"rose\" cornetto_synset_id=\"n_a-532117\" wordnet_id=\"a-00382173\" pos=\"JJ\" sense=\"of something having a dusty purplish pink color\" polarity=\"0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"rough\" cornetto_synset_id=\"d_a-9510\" wordnet_id=\"a-02238462\" pos=\"JJ\" sense=\"having or caused by an irregular surface\" polarity=\"-0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"roughage\" wordnet_id=\"n-7568818\" pos=\"NN\" sense=\"coarse, indigestible plant food low in nutrients\" polarity=\"-0.1\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"round\" cornetto_synset_id=\"n_a-504584\" wordnet_id=\"a-00916524\" pos=\"JJ\" sense=\"(mathematics) expressed to the nearest integer, ten, hundred, or thousand\" polarity=\"-0.2\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"rude\" cornetto_synset_id=\"n_a-517506\" wordnet_id=\"a-00642725\" pos=\"JJ\" sense=\"lacking civility or good manners\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"rude\" cornetto_synset_id=\"n_a-521230\" wordnet_id=\"a-00641944\" pos=\"JJ\" sense=\"socially incorrect in behavior\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"rude\" wordnet_id=\"a-00818175\" pos=\"JJ\" sense=\"belonging to an early stage of technical development\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"rude\" wordnet_id=\"a-01950857\" pos=\"JJ\" sense=\"(of persons) lacking in refinement or grace\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"rude\" wordnet_id=\"a-01952643\" pos=\"JJ\" sense=\"(used especially of commodities) being unprocessed or manufactured using only simple or minimal processes\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"ruins\" wordnet_id=\"\" pos=\"NNS\" sense=\"\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"ruins\" wordnet_id=\"\" pos=\"VBZ\" sense=\"\" polarity=\"-0.3\" subjectivity=\"0.4\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"rural\" cornetto_synset_id=\"n_a-516683\" wordnet_id=\"a-02790726\" pos=\"JJ\" sense=\"of or relating to the countryside as opposed to the city\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"rural\" wordnet_id=\"a-02050452\" pos=\"JJ\" sense=\"living in or characteristic of farming or country life\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"russian\" cornetto_synset_id=\"n_a-500919\" wordnet_id=\"a-02957276\" pos=\"JJ\" sense=\"of or pertaining to or characteristic of Russia or its people or culture or language\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"ruthless\" wordnet_id=\"a-01508086\" pos=\"JJ\" sense=\"without mercy or pity\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sad\" cornetto_synset_id=\"n_a-532342\" wordnet_id=\"a-01361863\" pos=\"JJ\" sense=\"experiencing or showing sorrow or unhappiness\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"sadism\" wordnet_id=\"n-7493830\" pos=\"NN\" sense=\"sexual pleasure obtained by inflicting harm (physical or psychological) on others\" polarity=\"-0.05\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"safe\" cornetto_synset_id=\"d_a-9281\" wordnet_id=\"a-00066933\" pos=\"JJ\" sense=\"(of an undertaking) secure from risk\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"safe\" wordnet_id=\"a-02057829\" pos=\"JJ\" sense=\"free from danger or the risk of harm\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"safe\" wordnet_id=\"a-02061307\" pos=\"JJ\" sense=\"having reached a base without being put out\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"safe\" wordnet_id=\"a-02273643\" pos=\"JJ\" sense=\"financially sound\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"same\" wordnet_id=\"a-00355611\" pos=\"JJ\" sense=\"unchanged in character or nature\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"same\" wordnet_id=\"a-01411065\" pos=\"JJ\" sense=\"equal in amount or value\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"same\" wordnet_id=\"a-02062670\" pos=\"JJ\" sense=\"closely similar or comparable in kind or quality or quantity or degree\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"same\" wordnet_id=\"a-02068476\" pos=\"JJ\" sense=\"same in identity\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sarcastic\" cornetto_synset_id=\"n_a-526596\" wordnet_id=\"a-02079029\" pos=\"JJ\" sense=\"expressing or expressive of ridicule that wounds\" polarity=\"0.1\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"satisfied\" wordnet_id=\"a-00589344\" pos=\"JJ\" sense=\"filled with satisfaction\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"satisfied\" wordnet_id=\"a-01519673\" pos=\"JJ\" sense=\"allayed\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"satisfying\" cornetto_synset_id=\"n_a-532528\" wordnet_id=\"a-02081563\" pos=\"JJ\" sense=\"providing freedom from worry\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"satisfying\" wordnet_id=\"a-02558528\" pos=\"JJ\" sense=\"providing abundant nourishment\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"satisyfing\" wordnet_id=\"\" pos=\"JJ\" polarity=\"0.6\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"scary\" cornetto_synset_id=\"n_a-503573\" wordnet_id=\"a-00194924\" pos=\"JJ\" sense=\"provoking fear terror\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"scarey\" wordnet_id=\"\" pos=\"JJ\" sense=\"provoking fear terror\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"scathing\" cornetto_synset_id=\"n_a-526928\" wordnet_id=\"a-00648614\" pos=\"JJ\" sense=\"marked by harshly abusive criticism\" polarity=\"-0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"scum\" wordnet_id=\"\" pos=\"NN\" sense=\"\" polarity=\"-0.3\" subjectivity=\"0.4\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"seamless\" cornetto_synset_id=\"n_a-519505\" wordnet_id=\"a-00464845\" pos=\"JJ\" sense=\"perfectly consistent and coherent\" polarity=\"0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"seasoned\" cornetto_synset_id=\"d_a-9160\" wordnet_id=\"a-00936523\" pos=\"JJ\" sense=\"rendered competent through trial and experience\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"seasoned\" wordnet_id=\"a-01494959\" pos=\"JJ\" sense=\"aged or processed\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sec\" cornetto_synset_id=\"n_a-507619\" wordnet_id=\"a-02368247\" pos=\"JJ\" sense=\"(of champagne) moderately dry\" polarity=\"-0.1\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"second\" wordnet_id=\"a-01016436\" pos=\"JJ\" sense=\"a part or voice or instrument or orchestra section lower in pitch than or subordinate to the first\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"second\" wordnet_id=\"a-02202146\" pos=\"JJ\" sense=\"coming next after the first in position in space or time or degree or magnitude\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"secondary\" cornetto_synset_id=\"n_a-520815\" wordnet_id=\"a-02100968\" pos=\"JJ\" sense=\"inferior in rank or status\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"secondary\" cornetto_synset_id=\"n_a-520816\" wordnet_id=\"a-00793592\" pos=\"JJ\" sense=\"belonging to a lower class or rank\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"secondary\" wordnet_id=\"a-01473558\" pos=\"JJ\" sense=\"not of major importance\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"secondary\" wordnet_id=\"a-01853461\" pos=\"JJ\" sense=\"being of second rank or importance or value\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"secondary\" wordnet_id=\"a-01857956\" pos=\"JJ\" sense=\"depending on or incidental to what is original or primary\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"secondhand\" cornetto_synset_id=\"n_a-531522\" wordnet_id=\"a-01640482\" pos=\"JJ\" sense=\"previously used or owned by another\" polarity=\"-0.1\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"secret\" cornetto_synset_id=\"n_a-512251\" wordnet_id=\"a-02090069\" pos=\"JJ\" sense=\"not open or public\" polarity=\"-0.4\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"secure\" cornetto_synset_id=\"d_a-9565\" wordnet_id=\"a-02093888\" pos=\"JJ\" sense=\"free from danger or risk\" polarity=\"0.4\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"seizures\" wordnet_id=\"\" pos=\"NNS\" sense=\"\" polarity=\"-0.05\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"self-acting\" cornetto_synset_id=\"n_a-502775\" wordnet_id=\"a-00182225\" pos=\"JJ\" sense=\"designed to activate or move or regulate itself\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"selfish\" wordnet_id=\"a-02098325\" pos=\"JJ\" sense=\"concerned chiefly or only with yourself and your advantage to the exclusion of others\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sensational\" wordnet_id=\"a-01282921\" pos=\"JJ\" sense=\"commanding attention\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sensational\" wordnet_id=\"a-02101580\" pos=\"JJ\" sense=\"causing intense interest, curiosity, or emotion\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sensational\" wordnet_id=\"a-02796425\" pos=\"JJ\" sense=\"relating to or concerned in sensation\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sensitive\" cornetto_synset_id=\"c_566\" wordnet_id=\"a-02105990\" pos=\"JJ\" sense=\"being susceptible to the attitudes, feelings, or circumstances of others\" polarity=\"0.1\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"sentimental\" wordnet_id=\"a-00854413\" pos=\"JJ\" sense=\"effusively or insincerely emotional\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sentimental\" wordnet_id=\"a-02449287\" pos=\"JJ\" sense=\"given to or marked by sentiment or sentimentality\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"serious\" cornetto_synset_id=\"c_292\" wordnet_id=\"a-00651039\" pos=\"JJ\" sense=\"causing fear or anxiety by threatening great harm\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"serious\" wordnet_id=\"a-00748359\" pos=\"JJ\" sense=\"requiring effort or concentration\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"serious\" wordnet_id=\"a-01279611\" pos=\"JJ\" sense=\"of great consequence\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"serious\" wordnet_id=\"a-01333477\" pos=\"JJ\" sense=\"appealing to the mind\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"serious\" wordnet_id=\"a-02118379\" pos=\"JJ\" sense=\"concerned with work or important matters rather than play or trivialities\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"serious\" wordnet_id=\"a-02123314\" pos=\"JJ\" sense=\"completely lacking in playfulness\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"seriously\" wordnet_id=\"r-00165018\" pos=\"RB\" sense=\"in a serious manner\" polarity=\"-0.1\" subjectivity=\"1.0\" intensity=\"2.0\" confidence=\"0.9\" />\n<word form=\"sermon\" wordnet_id=\"n-6712325\" pos=\"NN\" sense=\"a moralistic rebuke\" polarity=\"-0.4\" subjectivity=\"0.5\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"sermon\" wordnet_id=\"n-7243837\" pos=\"NN\" sense=\"an address of a religious nature (usually delivered during a church service)\" polarity=\"-0.05\" subjectivity=\"0.1\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"several\" cornetto_synset_id=\"n_a-503872\" wordnet_id=\"a-00494409\" pos=\"JJ\" sense=\"considered individually\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"several\" wordnet_id=\"a-02068174\" pos=\"JJ\" sense=\"distinct and individual\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"several\" wordnet_id=\"a-02268268\" pos=\"JJ\" sense=\"(used with count nouns) of an indefinite number more than 2 or 3 but not many\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sexual\" cornetto_synset_id=\"n_a-527516\" wordnet_id=\"a-02132735\" pos=\"JJ\" sense=\"involved in a sexual relationship\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sexual\" wordnet_id=\"a-02135389\" pos=\"JJ\" sense=\"having or involving sex\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sexual\" wordnet_id=\"a-02887578\" pos=\"JJ\" sense=\"of or relating to or characterized by sexuality\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sexy\" wordnet_id=\"a-02131072\" pos=\"JJ\" sense=\"marked by or tending to arouse sexual desire or interest\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sexy\" wordnet_id=\"a-02137538\" pos=\"JJ\" sense=\"exciting sexual desire\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"shady\" cornetto_synset_id=\"n_a-532303\" wordnet_id=\"a-01917594\" pos=\"JJ\" sense=\"not as expected\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"shady\" wordnet_id=\"a-00276862\" pos=\"JJ\" sense=\"filled with shade\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"shady\" wordnet_id=\"a-01984669\" pos=\"JJ\" sense=\"of questionable taste or morality\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"shady\" wordnet_id=\"a-02466566\" pos=\"JJ\" sense=\"(of businesses and businessmen) unscrupulous\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"shaky\" cornetto_synset_id=\"n_a-503929\" wordnet_id=\"a-02304565\" pos=\"JJ\" sense=\"vibrating slightly and irregularly\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"shaky\" cornetto_synset_id=\"n_a-521733\" wordnet_id=\"a-02292797\" pos=\"JJ\" sense=\"inclined to shake as from weakness or defect\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"shaky\" wordnet_id=\"a-02095037\" pos=\"JJ\" sense=\"not secure\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"shallow\" wordnet_id=\"a-00691696\" pos=\"JJ\" sense=\"lacking physical depth\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"shallow\" wordnet_id=\"a-00693356\" pos=\"JJ\" sense=\"not deep or strong\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"shallow\" wordnet_id=\"a-01875227\" pos=\"JJ\" sense=\"lacking depth of intellect or knowledge\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sham\" wordnet_id=\"\" pos=\"NN\" sense=\"\" polarity=\"-0.2\" subjectivity=\"0.3\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"shapeless\" wordnet_id=\"a-2142306\" pos=\"JJ\" sense=\"lacking symmetry or attractive form\" polarity=\"-0.2\" subjectivity=\"0.3\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"sharp\" cornetto_synset_id=\"c_235\" wordnet_id=\"a-00438909\" pos=\"JJ\" sense=\"marked by practical hardheaded intelligence\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sharp\" cornetto_synset_id=\"n_a-506895\" wordnet_id=\"a-01744515\" pos=\"JJ\" sense=\"having or demonstrating ability to recognize or draw fine distinctions\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sharp\" cornetto_synset_id=\"n_a-526858\" wordnet_id=\"a-01214430\" pos=\"JJ\" sense=\"having or emitting a high-pitched and sharp tone or tones \" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sharp\" cornetto_synset_id=\"n_a-526924\" wordnet_id=\"a-01810189\" pos=\"JJ\" sense=\"ending in a sharp point\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sharp\" cornetto_synset_id=\"n_a-526929\" wordnet_id=\"a-00780352\" pos=\"JJ\" sense=\"(of something seen or heard) clearly defined\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sharp\" cornetto_synset_id=\"n_a-529169\" wordnet_id=\"a-01145151\" pos=\"JJ\" sense=\"extremely steep\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sharp\" wordnet_id=\"a-00800826\" pos=\"JJ\" sense=\"having or made by a thin edge or sharp point\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sharp\" wordnet_id=\"a-00803038\" pos=\"JJ\" sense=\"keenly and painfully felt\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sharp\" wordnet_id=\"a-00842810\" pos=\"JJ\" sense=\"quick and forceful\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sharp\" wordnet_id=\"a-01144230\" pos=\"JJ\" sense=\"very sudden and in great amount or degree\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sharp\" wordnet_id=\"a-01577973\" pos=\"JJ\" sense=\"(of a musical note) raised in pitch by one chromatic semitone\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sharp\" wordnet_id=\"a-01804728\" pos=\"JJ\" sense=\"harsh\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sheer\" cornetto_synset_id=\"n_a-509141\" wordnet_id=\"a-02413390\" pos=\"JJ\" sense=\"so thin as to transmit light\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sheer\" cornetto_synset_id=\"n_a-525079\" wordnet_id=\"a-00520892\" pos=\"JJ\" sense=\"complete and without restriction or qualification\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sheer\" wordnet_id=\"a-01145422\" pos=\"JJ\" sense=\"very steep\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sheer\" wordnet_id=\"a-01907103\" pos=\"JJ\" sense=\"not mixed with extraneous elements\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"shit\" wordnet_id=\"n-13555775\" pos=\"NN\" sense=\"a coarse term for defecation\" polarity=\"-0.2\" subjectivity=\"0.8\" intensity=\"1.0\" label=\"profanity\" confidence=\"0.9\" />\n<word form=\"shocked\" cornetto_synset_id=\"n_a-530609\" wordnet_id=\"a-00078576\" pos=\"JJ\" sense=\"struck with fear, dread, or consternation\" polarity=\"-0.7\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"shocking\" cornetto_synset_id=\"n_a-501305\" wordnet_id=\"a-01549964\" pos=\"JJ\" sense=\"giving offense to moral sensibilities and injurious to reputation\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"shocking\" wordnet_id=\"a-02101757\" pos=\"JJ\" sense=\"glaringly vivid and graphic\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"shoddy\" wordnet_id=\"\" pos=\"JJ\" sense=\"\" polarity=\"-0.3\" subjectivity=\"0.5\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"short\" cornetto_synset_id=\"n_a-515879\" wordnet_id=\"a-01442186\" pos=\"JJ\" sense=\"primarily temporal sense\" polarity=\"0.0\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"shouldn't\" wordnet_id=\"\" pos=\"VB\" polarity=\"-0.1\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"showery\" cornetto_synset_id=\"n_a-525393\" wordnet_id=\"a-02550333\" pos=\"JJ\" sense=\"(of weather) wet by periods of rain\" polarity=\"-0.2\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"shrieky\" wordnet_id=\"\" pos=\"JJ\" sense=\"\" polarity=\"-0.4\" subjectivity=\"0.4\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"shrill\" cornetto_synset_id=\"n_a-507298\" wordnet_id=\"a-01214430\" pos=\"JJ\" sense=\"having or emitting a high-pitched and sharp tone or tones \" polarity=\"-0.4\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"shy\" cornetto_synset_id=\"c_751\" wordnet_id=\"a-00339941\" pos=\"JJ\" sense=\"lacking self-confidence\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"shy\" cornetto_synset_id=\"n_a-527420\" wordnet_id=\"a-00162863\" pos=\"JJ\" sense=\"wary and distrustful\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"shy\" wordnet_id=\"a-02337558\" pos=\"JJ\" sense=\"short\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sick\" cornetto_synset_id=\"n_a-516037\" wordnet_id=\"a-02075321\" pos=\"JJ\" sense=\"affected with madness or insanity\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sick\" cornetto_synset_id=\"n_a-519014\" wordnet_id=\"a-02545689\" pos=\"JJ\" sense=\"feeling nausea\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sick\" cornetto_synset_id=\"n_a-521565\" wordnet_id=\"a-00195684\" pos=\"JJ\" sense=\"shockingly repellent\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sick\" wordnet_id=\"a-01560165\" pos=\"JJ\" sense=\"deeply affected by a strong feeling\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sick\" wordnet_id=\"a-01806677\" pos=\"JJ\" sense=\"having a strong distaste from surfeit\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sick\" wordnet_id=\"a-02325984\" pos=\"JJ\" sense=\"(of light) lacking in intensity or brightness\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sick\" wordnet_id=\"a-02541302\" pos=\"JJ\" sense=\"affected by an impairment of normal physical or mental function\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sickening\" wordnet_id=\"\" pos=\"JJ\" polarity=\"-0.9\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"significant\" cornetto_synset_id=\"n_a-510846\" wordnet_id=\"a-00625055\" pos=\"JJ\" sense=\"fairly large\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"significant\" cornetto_synset_id=\"n_a-527688\" wordnet_id=\"a-02161432\" pos=\"JJ\" sense=\"important in effect or meaning\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"significant\" wordnet_id=\"a-01497387\" pos=\"JJ\" sense=\"rich in significance or implication\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"significant\" wordnet_id=\"a-02165655\" pos=\"JJ\" sense=\"too closely correlated to be attributed to chance and therefore indicating a systematic relation\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"silent\" cornetto_synset_id=\"n_a-529361\" wordnet_id=\"a-01919428\" pos=\"JJ\" sense=\"marked by absence of sound\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"silent\" cornetto_synset_id=\"n_a-529361\" wordnet_id=\"a-01919428\" pos=\"JJ\" sense=\"marked by absence of sound\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"silly\" cornetto_synset_id=\"n_a-507792\" wordnet_id=\"a-00437223\" pos=\"JJ\" sense=\"dazed from or as if from repeated blows\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"silly\" cornetto_synset_id=\"n_a-507793\" wordnet_id=\"a-02120828\" pos=\"JJ\" sense=\"lacking seriousness\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"silly\" wordnet_id=\"a-00752847\" pos=\"JJ\" sense=\"inspiring scornful pity\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"silly\" wordnet_id=\"a-02571536\" pos=\"JJ\" sense=\"ludicrous, foolish\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"similar\" cornetto_synset_id=\"n_a-510166\" wordnet_id=\"a-01409581\" pos=\"JJ\" sense=\"resembling or similar\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"similar\" wordnet_id=\"a-01410606\" pos=\"JJ\" sense=\"having the same or similar characteristics\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"similar\" wordnet_id=\"a-01978532\" pos=\"JJ\" sense=\"capable of replacing or changing places with something else\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"similar\" wordnet_id=\"a-02071420\" pos=\"JJ\" sense=\"marked by correspondence or resemblance\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"similar\" wordnet_id=\"a-02381495\" pos=\"JJ\" sense=\"(of words) expressing closely related meanings\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"simple\" cornetto_synset_id=\"c_303\" wordnet_id=\"a-01792573\" pos=\"JJ\" sense=\"apart from anything else\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"simple\" cornetto_synset_id=\"c_579\" wordnet_id=\"a-01841390\" pos=\"JJ\" sense=\"lacking mental capacity and subtlety\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"simple\" cornetto_synset_id=\"d_a-9254\" wordnet_id=\"a-00750296\" pos=\"JJ\" sense=\"easy and not involved or complicated\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"simple\" wordnet_id=\"a-01793812\" pos=\"JJ\" sense=\"unornamented\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"simple\" wordnet_id=\"a-02166346\" pos=\"JJ\" sense=\"(botany) of leaf shapes\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"simple\" wordnet_id=\"a-02174896\" pos=\"JJ\" sense=\"having few parts\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"simple\" wordnet_id=\"a-02272047\" pos=\"JJ\" sense=\"exhibiting childlike simplicity and credulity\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"simplistic\" wordnet_id=\"a-02175487\" pos=\"JJ\" sense=\"characterized by extreme and often misleading simplicity\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sincere\" cornetto_synset_id=\"n_a-512095\" wordnet_id=\"a-02118840\" pos=\"JJ\" sense=\"characterized by a firm and humorless belief in the validity of your opinions\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sincere\" wordnet_id=\"a-02179279\" pos=\"JJ\" sense=\"open and genuine\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"single\" cornetto_synset_id=\"d_a-9343\" wordnet_id=\"a-02153174\" pos=\"JJ\" sense=\"characteristic of or meant for a single person or thing\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"single\" cornetto_synset_id=\"n_a-512785\" wordnet_id=\"a-00493460\" pos=\"JJ\" sense=\"being or characteristic of a single thing or person\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"single\" wordnet_id=\"a-00539389\" pos=\"JJ\" sense=\"not divided among or brought to bear on more than one object or objective\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"single\" wordnet_id=\"a-01482228\" pos=\"JJ\" sense=\"not married or related to the unmarried state\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"single\" wordnet_id=\"a-01966740\" pos=\"JJ\" sense=\"having uniform application\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"single\" wordnet_id=\"a-02213947\" pos=\"JJ\" sense=\"existing alone or consisting of one entity or part or aspect or individual\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"single\" wordnet_id=\"a-02220571\" pos=\"JJ\" sense=\"used of flowers having usually only one row or whorl of petals\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sinister\" wordnet_id=\"a-00194357\" pos=\"JJ\" sense=\"threatening or foreshadowing evil or tragic developments\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sinister\" wordnet_id=\"a-00743742\" pos=\"JJ\" sense=\"on or starting from the wearer's left\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sinister\" wordnet_id=\"a-01131935\" pos=\"JJ\" sense=\"stemming from evil characteristics or forces\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sinks\" wordnet_id=\"\" pos=\"VBZ\" sense=\"\" polarity=\"-0.1\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"sixth-grade\" wordnet_id=\"\" pos=\"JJ\" sense=\"\" polarity=\"-0.05\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"skeptical\" cornetto_synset_id=\"n_a-526640\" wordnet_id=\"a-00647247\" pos=\"JJ\" sense=\"denying or questioning the tenets of especially a religion\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"skeptical\" wordnet_id=\"a-02463847\" pos=\"JJ\" sense=\"marked by or given to doubt\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"skilled\" cornetto_synset_id=\"c_689\" wordnet_id=\"a-02225510\" pos=\"JJ\" sense=\"having or showing or requiring special skill\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"skittish\" cornetto_synset_id=\"n_a-528449\" wordnet_id=\"a-00919155\" pos=\"JJ\" sense=\"unpredictably excitable (especially of horses)\" polarity=\"0.7\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"slick\" cornetto_synset_id=\"n_a-520935\" wordnet_id=\"a-00148078\" pos=\"JJ\" sense=\"marked by skill in deception\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"slick\" cornetto_synset_id=\"n_a-535697\" wordnet_id=\"a-00282675\" pos=\"JJ\" sense=\"having a smooth, gleaming surface reflecting light\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"slick\" wordnet_id=\"a-01799781\" pos=\"JJ\" sense=\"having only superficial plausibility\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"slick\" wordnet_id=\"a-02235520\" pos=\"JJ\" sense=\"made slick by e.g. ice or grease\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"slight\" cornetto_synset_id=\"n_a-530571\" wordnet_id=\"a-00990855\" pos=\"JJ\" sense=\"being of delicate or slender build\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"slight\" wordnet_id=\"a-01554510\" pos=\"JJ\" sense=\"(quantifier used with mass nouns) small in quantity or degree\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"slight\" wordnet_id=\"a-02164913\" pos=\"JJ\" sense=\"lacking substance or significance\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"slipping\" cornetto_synset_id=\"d_a-9233\" wordnet_id=\"a-02235994\" pos=\"JJ\" sense=\"moving as on a slippery surface\" polarity=\"-0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"sloppy\" cornetto_synset_id=\"d_a-9457\" wordnet_id=\"a-00312519\" pos=\"JJ\" sense=\"marked by great carelessness\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sloppy\" cornetto_synset_id=\"n_a-512551\" wordnet_id=\"a-01446991\" pos=\"JJ\" sense=\"not fitting closely\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sloppy\" wordnet_id=\"a-00856511\" pos=\"JJ\" sense=\"excessively or abnormally emotional\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sloppy\" wordnet_id=\"a-02426420\" pos=\"JJ\" sense=\"lacking neatness or order\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sloppy\" wordnet_id=\"a-02548066\" pos=\"JJ\" sense=\"(of soil) soft and watery\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sloppy\" wordnet_id=\"a-02550170\" pos=\"JJ\" sense=\"wet or smeared with a spilled liquid or moist material\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"slow\" cornetto_synset_id=\"n_a-516764\" wordnet_id=\"a-00980527\" pos=\"JJ\" sense=\"not moving quickly\" polarity=\"-0.2\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"slow\" cornetto_synset_id=\"n_a-516764\" wordnet_id=\"a-00980527\" pos=\"JJ\" sense=\"not moving quickly\" polarity=\"-0.4\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"small\" cornetto_synset_id=\"c_648\" wordnet_id=\"a-01391351\" pos=\"JJ\" sense=\"limited or below average in number or quantity or magnitude or extent\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"small\" cornetto_synset_id=\"n_a-510497\" wordnet_id=\"a-02340458\" pos=\"JJ\" sense=\"low or inferior in station or quality\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"small\" cornetto_synset_id=\"n_a-519741\" wordnet_id=\"a-01532912\" pos=\"JJ\" sense=\"not large but sufficient in size or amount\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"small\" wordnet_id=\"a-00882580\" pos=\"JJ\" sense=\"made to seem smaller or less (especially in worth)\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"small\" wordnet_id=\"a-01415219\" pos=\"JJ\" sense=\"limited in size or scope\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"small\" wordnet_id=\"a-01455732\" pos=\"JJ\" sense=\"(of a voice) faint\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"small\" wordnet_id=\"a-01467534\" pos=\"JJ\" sense=\"lowercase\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"small\" wordnet_id=\"a-01554940\" pos=\"JJ\" sense=\"slight or limited\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"small\" wordnet_id=\"a-01649031\" pos=\"JJ\" sense=\"(of children and animals) young, immature\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"small\" wordnet_id=\"a-02233680\" pos=\"JJ\" sense=\"have fine or very small constituent particles\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"smaller\" cornetto_synset_id=\"d_a-9404\" wordnet_id=\"a-01394922\" pos=\"JJ\" sense=\"small or little relative to something else\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"smart\" cornetto_synset_id=\"n_a-515608\" wordnet_id=\"a-01335458\" pos=\"JJ\" sense=\"characterized by quickness and ease in learning\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"smart\" cornetto_synset_id=\"n_a-515609\" wordnet_id=\"a-00205295\" pos=\"JJ\" sense=\"improperly forward or bold\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"smart\" wordnet_id=\"a-00182718\" pos=\"JJ\" sense=\"capable of independent and apparently intelligent action\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"smart\" wordnet_id=\"a-00438707\" pos=\"JJ\" sense=\"showing mental alertness and calculation and resourcefulness\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"smart\" wordnet_id=\"a-00975487\" pos=\"JJ\" sense=\"elegant and stylish\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"smart\" wordnet_id=\"a-00980144\" pos=\"JJ\" sense=\"quick and brisk\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"smart\" wordnet_id=\"a-01513376\" pos=\"JJ\" sense=\"painfully severe\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"smile\" wordnet_id=\"v-1067512\" pos=\"VB\" sense=\"express with a smile\" polarity=\"0.3\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"smile\" wordnet_id=\"v-28565\" pos=\"VB\" sense=\"change one's facial expression by spreading the lips, often to signal pleasure\" polarity=\"0.3\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"smiled\" wordnet_id=\"\" pos=\"VB\" polarity=\"0.6\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"smooth\" cornetto_synset_id=\"n_a-525902\" wordnet_id=\"a-02236842\" pos=\"JJ\" sense=\"having a surface free from roughness or bumps or ridges or irregularities\" polarity=\"0.4\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"sober\" cornetto_synset_id=\"d_a-9426\" wordnet_id=\"a-00799517\" pos=\"JJ\" sense=\"not affected by a chemical substance (especially alcohol)\" polarity=\"0.1\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"social\" cornetto_synset_id=\"n_a-517984\" wordnet_id=\"a-02798370\" pos=\"JJ\" sense=\"relating to human society and its members\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"social\" cornetto_synset_id=\"n_a-517984\" wordnet_id=\"a-02798370\" pos=\"JJ\" sense=\"relating to human society and its members\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"social\" cornetto_synset_id=\"n_a-528221\" wordnet_id=\"a-02798370\" pos=\"JJ\" sense=\"relating to human society and its members\" polarity=\"0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"soft\" cornetto_synset_id=\"d_a-9620\" wordnet_id=\"a-01152746\" pos=\"JJ\" sense=\"yielding readily to pressure or weight\" polarity=\"0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"soft\" cornetto_synset_id=\"n_a-535266\" wordnet_id=\"a-01454636\" pos=\"JJ\" sense=\"(of sound) relatively low in volume\" polarity=\"0.1\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"soft-boiled\" cornetto_synset_id=\"n_a-527573\" wordnet_id=\"a-00618752\" pos=\"JJ\" sense=\"(eggs) having the yolk still liquid\" polarity=\"-0.1\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"sole\" wordnet_id=\"a-02152985\" pos=\"JJ\" sense=\"not divided or shared with others\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sole\" wordnet_id=\"a-02214736\" pos=\"JJ\" sense=\"being the only one\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"solicitous\" cornetto_synset_id=\"n_a-535950\" wordnet_id=\"a-00164681\" pos=\"JJ\" sense=\"showing hovering attentiveness\" polarity=\"-0.1\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"solicitous\" cornetto_synset_id=\"n_a-535950\" wordnet_id=\"a-00164681\" pos=\"JJ\" sense=\"showing hovering attentiveness\" polarity=\"0.7\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"solid\" cornetto_synset_id=\"d_a-9563\" wordnet_id=\"a-02260035\" pos=\"JJ\" sense=\"of definite shape and volume\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"sophisticated\" cornetto_synset_id=\"n_a-519193\" wordnet_id=\"a-01333609\" pos=\"JJ\" sense=\"intellectually appealing\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sophisticated\" wordnet_id=\"a-01208738\" pos=\"JJ\" sense=\"ahead in development\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sophisticated\" wordnet_id=\"a-02270342\" pos=\"JJ\" sense=\"having or appealing to those having worldly knowledge and refinement and savoir-faire\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sophomoric\" wordnet_id=\"\" pos=\"JJ\" sense=\"\" polarity=\"-0.2\" subjectivity=\"0.4\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"sorry\" cornetto_synset_id=\"n_a-518384\" wordnet_id=\"a-00364881\" pos=\"JJ\" sense=\"causing dejection\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sorry\" cornetto_synset_id=\"n_a-518494\" wordnet_id=\"a-01150475\" pos=\"JJ\" sense=\"feeling or expressing regret or sorrow or a sense of loss over something done or undone\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sorry\" cornetto_synset_id=\"n_a-534446\" wordnet_id=\"a-01126841\" pos=\"JJ\" sense=\"bad\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sorry\" wordnet_id=\"a-02502578\" pos=\"JJ\" sense=\"without merit\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sound\" cornetto_synset_id=\"c_342\" wordnet_id=\"a-02275209\" pos=\"JJ\" sense=\"in good condition\" polarity=\"0.4\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"sour\" wordnet_id=\"a-1054922\" pos=\"JJ\" sense=\"smelling of fermentation or staleness\" polarity=\"-0.4\" subjectivity=\"0.3\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"sour\" wordnet_id=\"a-2368787\" pos=\"JJ\" sense=\"having a sharp biting taste\" polarity=\"-0.2\" subjectivity=\"0.3\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"sour\" wordnet_id=\"a-2399014\" pos=\"JJ\" sense=\"one of the four basic taste sensations\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"sour\" wordnet_id=\"n-5716744\" pos=\"NN\" sense=\"the taste experience when vinegar or lemon juice is taken into the mouth\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"sour\" wordnet_id=\"n-7918028\" pos=\"NN\" sense=\"a cocktail made of a liquor (especially whiskey or gin) mixed with lemon or lime juice and sugar\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"sour\" wordnet_id=\"v-2196690\" pos=\"VB\" sense=\"make sour or more sour\" polarity=\"-0.2\" subjectivity=\"0.1\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"sour\" wordnet_id=\"v-458471\" pos=\"VB\" sense=\"go sour or spoil\" polarity=\"-0.3\" subjectivity=\"0.1\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"soured\" wordnet_id=\"a-2369763\" pos=\"JJ\" sense=\"having turned bad\" polarity=\"-0.3\" subjectivity=\"0.1\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"southern\" wordnet_id=\"a-01602966\" pos=\"JJ\" sense=\"from the south\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"southern\" wordnet_id=\"a-01603179\" pos=\"JJ\" sense=\"situated in or oriented toward the south\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"southern\" wordnet_id=\"a-01605081\" pos=\"JJ\" sense=\"situated in or coming from regions of the south\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"southern\" wordnet_id=\"a-01606648\" pos=\"JJ\" sense=\"in or characteristic of a region of the United States south of (approximately) the Mason-Dixon line\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"spanish\" cornetto_synset_id=\"n_a-500976\" wordnet_id=\"a-02958576\" pos=\"JJ\" sense=\"of or relating to or characteristic of Spain or the people of Spain\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"special\" cornetto_synset_id=\"n_a-505164\" wordnet_id=\"a-00488187\" pos=\"JJ\" sense=\"surpassing what is common or usual or expected\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"special\" wordnet_id=\"a-01103844\" pos=\"JJ\" sense=\"having a specific function or scope\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"special\" wordnet_id=\"a-01104026\" pos=\"JJ\" sense=\"unique or specific to a person or thing or category\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"special\" wordnet_id=\"a-01678729\" pos=\"JJ\" sense=\"for a special service or occasion\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"special\" wordnet_id=\"a-01853228\" pos=\"JJ\" sense=\"first and most important\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"special\" wordnet_id=\"a-02278011\" pos=\"JJ\" sense=\"adapted to or reserved for a particular purpose\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"special\" wordnet_id=\"a-02367319\" pos=\"JJ\" sense=\"added to a regular schedule\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"specific\" cornetto_synset_id=\"n_a-528341\" wordnet_id=\"a-01099951\" pos=\"JJ\" sense=\"stated explicitly or in detail\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"specific\" wordnet_id=\"a-01103021\" pos=\"JJ\" sense=\"(sometimes followed by 'to') applying to or characterized by or distinguishing something particular or special or unique\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"specific\" wordnet_id=\"a-01105233\" pos=\"JJ\" sense=\"being or affecting a disease produced by a particular microorganism or condition\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"specific\" wordnet_id=\"a-02989316\" pos=\"JJ\" sense=\"relating to or distinguishing or constituting a taxonomic species\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"spectacular\" cornetto_synset_id=\"n_a-527561\" wordnet_id=\"a-00795246\" pos=\"JJ\" sense=\"characteristic of spectacles or drama\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"spent\" wordnet_id=\"\" pos=\"VBN\" sense=\"\" polarity=\"-0.1\" subjectivity=\"0.1\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"spirited\" cornetto_synset_id=\"n_a-509538\" wordnet_id=\"a-00263994\" pos=\"JJ\" sense=\"willing to face danger\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"spirited\" cornetto_synset_id=\"n_a-512115\" wordnet_id=\"a-02278939\" pos=\"JJ\" sense=\"displaying animation, vigor, or liveliness\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"spirited\" wordnet_id=\"a-00118844\" pos=\"JJ\" sense=\"made lively or spirited\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"spirited\" wordnet_id=\"a-00805309\" pos=\"JJ\" sense=\"marked by lively action\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"spiritual\" cornetto_synset_id=\"d_a-9284\" wordnet_id=\"a-00631193\" pos=\"JJ\" sense=\"lacking material body or form or substance\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"spiritual\" cornetto_synset_id=\"d_a-9284\" wordnet_id=\"a-00631193\" pos=\"JJ\" sense=\"lacking material body or form or substance\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"spiritual\" cornetto_synset_id=\"d_a-9284\" wordnet_id=\"a-00631193\" pos=\"JJ\" sense=\"lacking material body or form or substance\" polarity=\"0.0\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"splendid\" cornetto_synset_id=\"n_a-511105\" wordnet_id=\"a-01285376\" pos=\"JJ\" sense=\"characterized by grandeur\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"splendid\" cornetto_synset_id=\"n_a-513687\" wordnet_id=\"a-02343110\" pos=\"JJ\" sense=\"very good\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"splendid\" cornetto_synset_id=\"n_a-517817\" wordnet_id=\"a-00219389\" pos=\"JJ\" sense=\"having great beauty and splendor\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"spontaneous\" cornetto_synset_id=\"c_746\" wordnet_id=\"a-02282376\" pos=\"JJ\" sense=\"happening or arising without apparent external cause\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"spoof\" wordnet_id=\"v-849939\" pos=\"VB\" sense=\"make a parody of\" polarity=\"-0.1\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"sprightly\" cornetto_synset_id=\"n_a-533321\" wordnet_id=\"a-02280821\" pos=\"JJ\" sense=\"full of spirit and vitality\" polarity=\"0.4\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"stabbing\" cornetto_synset_id=\"n_a-531207\" wordnet_id=\"a-01162901\" pos=\"JJ\" sense=\"causing physical or especially psychological injury\" polarity=\"-0.6\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"stainless\" cornetto_synset_id=\"n_a-509479\" wordnet_id=\"a-00247247\" pos=\"JJ\" sense=\"(of reputation) free from blemishes\" polarity=\"0.2\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"stale\" cornetto_synset_id=\"n_a-519361\" wordnet_id=\"a-01689580\" pos=\"JJ\" sense=\"lacking originality or spontaneity\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"stale\" wordnet_id=\"a-01068726\" pos=\"JJ\" sense=\"lacking freshness, palatability, or showing deterioration from age\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"standard\" wordnet_id=\"a-00487525\" pos=\"JJ\" sense=\"commonly used or supplied\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"standard\" wordnet_id=\"a-01960076\" pos=\"JJ\" sense=\"regularly and widely used or sold\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"standard\" wordnet_id=\"a-02294777\" pos=\"JJ\" sense=\"established or well-known or widely recognized as a model of authority or excellence\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"standard\" wordnet_id=\"a-02295998\" pos=\"JJ\" sense=\"conforming to or constituting a standard of measurement or value\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"standard\" wordnet_id=\"a-02297664\" pos=\"JJ\" sense=\"conforming to the established language usage of educated native speakers\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"stark\" cornetto_synset_id=\"n_a-520591\" wordnet_id=\"a-01520091\" pos=\"JJ\" sense=\"without qualification\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"stark\" wordnet_id=\"a-00556881\" pos=\"JJ\" sense=\"devoid of any qualifications or disguise or adornment\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"stark\" wordnet_id=\"a-01242750\" pos=\"JJ\" sense=\"providing no shelter or sustenance\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"stark\" wordnet_id=\"a-01535583\" pos=\"JJ\" sense=\"complete or extreme\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"stark\" wordnet_id=\"a-01792387\" pos=\"JJ\" sense=\"severely simple\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"starting\" cornetto_synset_id=\"n_a-501322\" wordnet_id=\"a-01009865\" pos=\"JJ\" sense=\"appropriate to the beginning or start of an event\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"startling\" wordnet_id=\"a-02359958\" pos=\"JJ\" sense=\"so remarkably different or sudden as to cause momentary shock or alarm\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"state-supported\" cornetto_synset_id=\"n_a-520402\" wordnet_id=\"a-01862161\" pos=\"JJ\" sense=\"supported and operated by the government of a state\" polarity=\"0.1\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"static\" cornetto_synset_id=\"c_548\" wordnet_id=\"a-00348018\" pos=\"JJ\" sense=\"showing little if any change\" polarity=\"0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"steadfast\" cornetto_synset_id=\"n_a-506736\" wordnet_id=\"a-00583581\" pos=\"JJ\" sense=\"firm and dependable especially in loyalty\" polarity=\"0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"steady\" cornetto_synset_id=\"n_a-515549\" wordnet_id=\"a-02291336\" pos=\"JJ\" sense=\"not liable to fluctuate or especially to fall\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"steady\" cornetto_synset_id=\"n_a-517994\" wordnet_id=\"a-00919445\" pos=\"JJ\" sense=\"not easily excited or upset\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"steady\" cornetto_synset_id=\"n_a-520774\" wordnet_id=\"a-01990653\" pos=\"JJ\" sense=\"marked by firm determination or resolution\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"steady\" wordnet_id=\"a-01067003\" pos=\"JJ\" sense=\"relating to a person who does something regularly\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"steady\" wordnet_id=\"a-02095542\" pos=\"JJ\" sense=\"securely in position\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"steady\" wordnet_id=\"a-02301560\" pos=\"JJ\" sense=\"not subject to change or variation especially in behavior\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"stellar\" cornetto_synset_id=\"n_a-502663\" wordnet_id=\"a-02802976\" pos=\"JJ\" sense=\"being or relating to or resembling or emanating from stars\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"stellar\" cornetto_synset_id=\"n_a-529189\" wordnet_id=\"a-01472790\" pos=\"JJ\" sense=\"indicating the most important performer or role\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"stereotyped\" cornetto_synset_id=\"n_a-531136\" wordnet_id=\"a-00607977\" pos=\"JJ\" sense=\"lacking spontaneity or originality or individuality\" polarity=\"-0.1\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"stereotypical\" cornetto_synset_id=\"n_a-531136\" wordnet_id=\"a-00607977\" pos=\"JJ\" sense=\"lacking spontaneity or originality or individuality\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"stiff\" cornetto_synset_id=\"c_563\" wordnet_id=\"a-01023706\" pos=\"JJ\" sense=\"incapable of or resistant to bending\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"stiff\" cornetto_synset_id=\"n_a-520774\" wordnet_id=\"a-01990653\" pos=\"JJ\" sense=\"marked by firm determination or resolution\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"stiff\" cornetto_synset_id=\"n_a-529441\" wordnet_id=\"a-00798103\" pos=\"JJ\" sense=\"very drunk\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"stiff\" cornetto_synset_id=\"n_a-529698\" wordnet_id=\"a-01043924\" pos=\"JJ\" sense=\"rigidly formal\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"stiff\" wordnet_id=\"a-01525659\" pos=\"JJ\" sense=\"not moving or operating freely\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"stiff\" wordnet_id=\"a-01824244\" pos=\"JJ\" sense=\"having a strong physiological or chemical effect\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"stiff\" wordnet_id=\"a-02323726\" pos=\"JJ\" sense=\"powerful\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"stinker\" wordnet_id=\"n-4320731\" pos=\"NN\" sense=\"anything that gives off an offensive odor (especially a cheap cigar)\" polarity=\"-0.5\" subjectivity=\"0.6\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"stinks\" wordnet_id=\"\" pos=\"VBZ\" sense=\"\" polarity=\"-0.6\" subjectivity=\"0.5\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"straight\" cornetto_synset_id=\"d_a-9576\" wordnet_id=\"a-02310895\" pos=\"JJ\" sense=\"having no deviations\" polarity=\"0.1\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"straight\" cornetto_synset_id=\"n_a-517483\" wordnet_id=\"a-00022962\" pos=\"JJ\" sense=\"in keeping with the facts\" polarity=\"0.3\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"straightforward\" cornetto_synset_id=\"c_761\" wordnet_id=\"a-00761734\" pos=\"JJ\" sense=\"pointed directly ahead\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"straightforward\" wordnet_id=\"a-00766102\" pos=\"JJ\" sense=\"without evasion or compromise\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"straightforward\" wordnet_id=\"a-00897223\" pos=\"JJ\" sense=\"free from ambiguity\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"straightforward\" wordnet_id=\"a-02318728\" pos=\"JJ\" sense=\"without concealment or deception\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"strange\" cornetto_synset_id=\"n_a-533835\" wordnet_id=\"a-00966753\" pos=\"JJ\" sense=\"not known before\" polarity=\"-0.1\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"strange\" cornetto_synset_id=\"n_a-533835\" wordnet_id=\"a-00966753\" pos=\"JJ\" sense=\"not known before\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"stretched\" wordnet_id=\"a-1023128\" pos=\"JJ\" sense=\"(of muscles) relieved of stiffness by stretching\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"stretched\" wordnet_id=\"a-1432452\" pos=\"JJ\" sense=\"extended or spread over a wide area or distance\" polarity=\"-0.1\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"striking\" wordnet_id=\"a-00580805\" pos=\"JJ\" sense=\"having a quality that thrusts itself into attention\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"striking\" wordnet_id=\"a-01284212\" pos=\"JJ\" sense=\"sensational in appearance or thrilling in effect\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"strong\" cornetto_synset_id=\"c_343\" wordnet_id=\"a-02321009\" pos=\"JJ\" sense=\"having strength or power greater than average or expected\" polarity=\"0.1\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"strong\" cornetto_synset_id=\"d_a-9536\" wordnet_id=\"a-02321009\" pos=\"JJ\" sense=\"having strength or power greater than average or expected\" polarity=\"0.6\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"strong\" cornetto_synset_id=\"d_a-9536\" wordnet_id=\"a-02321009\" pos=\"JJ\" sense=\"having strength or power greater than average or expected\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"strutting\" wordnet_id=\"\" pos=\"VBG\" sense=\"\" polarity=\"-0.3\" subjectivity=\"0.4\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"stumble\" wordnet_id=\"v-1900408\" pos=\"VB\" sense=\"miss a step and fall or nearly fall\" polarity=\"-0.1\" subjectivity=\"0.1\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"stumble\" wordnet_id=\"v-1901133\" pos=\"VB\" sense=\"walk unsteadily\" polarity=\"-0.1\" subjectivity=\"0.1\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"stumble\" wordnet_id=\"v-2206462\" pos=\"VB\" sense=\"encounter by chance\" polarity=\"0.1\" subjectivity=\"0.1\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"stumble\" wordnet_id=\"v-618057\" pos=\"VB\" sense=\"make an error\" polarity=\"-0.1\" subjectivity=\"0.1\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"stunning\" wordnet_id=\"a-00220739\" pos=\"JJ\" sense=\"strikingly beautiful or attractive\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"stunning\" wordnet_id=\"a-01282921\" pos=\"JJ\" sense=\"commanding attention\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"stunning\" wordnet_id=\"a-01686036\" pos=\"JJ\" sense=\"causing or capable of causing bewilderment or shock or insensibility\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"stunning\" wordnet_id=\"a-02360171\" pos=\"JJ\" sense=\"causing great astonishment and consternation\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"stupid\" cornetto_synset_id=\"c_578\" wordnet_id=\"a-01336587\" pos=\"JJ\" sense=\"lacking intelligence\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"stupid\" wordnet_id=\"a-00436645\" pos=\"JJ\" sense=\"in a state of mental numbness especially as resulting from shock\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"stupid\" wordnet_id=\"a-00439588\" pos=\"JJ\" sense=\"lacking or marked by lack of intellectual acuity\" polarity=\"-0.9\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"stupidity\" wordnet_id=\"n-5645597\" pos=\"NN\" sense=\"a poor ability to understand or to profit from experience\" polarity=\"-0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"stylish\" cornetto_synset_id=\"n_a-520023\" wordnet_id=\"a-00971075\" pos=\"JJ\" sense=\"being or in accordance with current social fashions\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"stylish\" wordnet_id=\"a-00975171\" pos=\"JJ\" sense=\"having elegance or taste or refinement in manners or dress\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"subconscious\" cornetto_synset_id=\"n_a-520754\" wordnet_id=\"a-00573093\" pos=\"JJ\" sense=\"just below the level of consciousness\" polarity=\"-0.1\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"subconscious\" cornetto_synset_id=\"n_a-521720\" wordnet_id=\"a-00573093\" pos=\"JJ\" sense=\"just below the level of consciousness\" polarity=\"0.1\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"subject\" wordnet_id=\"a-00071559\" pos=\"JJ\" sense=\"likely to be affected by something\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"subject\" wordnet_id=\"a-02329864\" pos=\"JJ\" sense=\"being under the power or sovereignty of another or others\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"subject\" wordnet_id=\"a-02361540\" pos=\"JJ\" sense=\"possibly accepting or permitting\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"subnormal\" cornetto_synset_id=\"n_a-536080\" wordnet_id=\"a-01597702\" pos=\"JJ\" sense=\"below normal or average\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"subsequent\" cornetto_synset_id=\"n_a-516814\" wordnet_id=\"a-00122626\" pos=\"JJ\" sense=\"following in time or order\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"subsequent\" cornetto_synset_id=\"n_a-522362\" wordnet_id=\"a-00122626\" pos=\"JJ\" sense=\"following in time or order\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"subtle\" wordnet_id=\"a-01162406\" pos=\"JJ\" sense=\"working or spreading in a hidden and usually injurious way\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"subtle\" wordnet_id=\"a-01717901\" pos=\"JJ\" sense=\"difficult to detect or grasp by the mind or analyze\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"subtle\" wordnet_id=\"a-01745846\" pos=\"JJ\" sense=\"able to make fine distinctions\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"suburban\" wordnet_id=\"a-02804590\" pos=\"JJ\" sense=\"relating to or characteristic of or situated in suburbs\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"succeeds\" wordnet_id=\"\" pos=\"VB\" polarity=\"0.7\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"success\" wordnet_id=\"n-14474894\" pos=\"NN\" sense=\"a state of prosperity or fame\" polarity=\"0.3\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"success\" wordnet_id=\"n-63652\" pos=\"NN\" sense=\"an attainment that is successful\" polarity=\"0.3\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"success\" wordnet_id=\"n-7319103\" pos=\"NN\" sense=\"an event that accomplishes its intended purpose\" polarity=\"0.3\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"successful\" cornetto_synset_id=\"n_a-510582\" wordnet_id=\"a-02331262\" pos=\"JJ\" sense=\"having succeeded or being marked by a favorable outcome\" polarity=\"0.7\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"successful\" cornetto_synset_id=\"n_a-510582\" wordnet_id=\"a-02331262\" pos=\"JJ\" sense=\"having succeeded or being marked by a favorable outcome\" polarity=\"0.8\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"such\" wordnet_id=\"a-01554230\" pos=\"JJ\" sense=\"of so extreme a degree or extent\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sucker\" wordnet_id=\"\" pos=\"NN\" polarity=\"-0.3\" subjectivity=\"0.8\" intensity=\"1.0\" label=\"profanity\" confidence=\"0.9\" />\n<word form=\"suckers\" wordnet_id=\"\" pos=\"NNS\" polarity=\"-0.3\" subjectivity=\"0.8\" intensity=\"1.0\" label=\"profanity\" confidence=\"0.9\" />\n<word form=\"sucks\" wordnet_id=\"\" pos=\"VB\" polarity=\"-0.3\" subjectivity=\"0.3\" intensity=\"1.0\" label=\"profanity\" confidence=\"0.9\" />\n<word form=\"sudden\" cornetto_synset_id=\"n_a-526962\" wordnet_id=\"a-01143279\" pos=\"JJ\" sense=\"happening without warning or in a short space of time\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"suffers\" wordnet_id=\"\" pos=\"VB\" polarity=\"-0.6\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"suffocating\" wordnet_id=\"\" pos=\"VBG\" sense=\"\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"suitable\" cornetto_synset_id=\"d_a-9306\" wordnet_id=\"a-01020885\" pos=\"JJ\" sense=\"meant or adapted for an occasion or use\" polarity=\"0.5\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"suitable\" cornetto_synset_id=\"d_a-9306\" wordnet_id=\"a-01020885\" pos=\"JJ\" sense=\"meant or adapted for an occasion or use\" polarity=\"0.6\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"super\" wordnet_id=\"a-00528761\" pos=\"JJ\" sense=\"including more than a specified category\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"super\" wordnet_id=\"a-01390588\" pos=\"JJ\" sense=\"extremely large\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"super\" wordnet_id=\"a-02341864\" pos=\"JJ\" sense=\"of the highest quality\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"superb\" wordnet_id=\"a-01125154\" pos=\"JJ\" sense=\"surpassingly good\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"superb\" wordnet_id=\"a-02342608\" pos=\"JJ\" sense=\"of surpassing excellence\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"superfine\" cornetto_synset_id=\"n_a-511737\" wordnet_id=\"a-00229227\" pos=\"JJ\" sense=\"(used especially of merchandise) very fine in quality\" polarity=\"0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"superior\" cornetto_synset_id=\"d_a-9183\" wordnet_id=\"a-02341266\" pos=\"JJ\" sense=\"of high or superior quality or performance\" polarity=\"0.7\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"supernatural\" cornetto_synset_id=\"n_a-504843\" wordnet_id=\"a-01574446\" pos=\"JJ\" sense=\"not existing in nature or subject to explanation according to natural laws\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"supernatural\" cornetto_synset_id=\"n_a-504843\" wordnet_id=\"a-01574446\" pos=\"JJ\" sense=\"not existing in nature or subject to explanation according to natural laws\" polarity=\"0.1\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"supernatural\" cornetto_synset_id=\"n_a-518064\" wordnet_id=\"a-01574446\" pos=\"JJ\" sense=\"not existing in nature or subject to explanation according to natural laws\" polarity=\"0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"supporting\" wordnet_id=\"a-00217428\" pos=\"JJ\" sense=\"capable of bearing a structural load\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"supporting\" wordnet_id=\"a-02356244\" pos=\"JJ\" sense=\"furnishing support and encouragement\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"supportive\" wordnet_id=\"a-02354537\" pos=\"JJ\" sense=\"furnishing support or assistance\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sure\" cornetto_synset_id=\"n_a-521690\" wordnet_id=\"a-00335895\" pos=\"JJ\" sense=\"impossible to doubt or dispute\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sure\" wordnet_id=\"a-00309740\" pos=\"JJ\" sense=\"exercising or taking care great enough to bring assurance\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sure\" wordnet_id=\"a-00336831\" pos=\"JJ\" sense=\"having or feeling no doubt or uncertainty\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sure\" wordnet_id=\"a-00340239\" pos=\"JJ\" sense=\"certain to occur\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sure\" wordnet_id=\"a-00724397\" pos=\"JJ\" sense=\"reliable in operation or effect\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sure\" wordnet_id=\"a-02094633\" pos=\"JJ\" sense=\"physically secure or dependable\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sure\" wordnet_id=\"a-02302822\" pos=\"JJ\" sense=\"certain not to fail\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sure\" wordnet_id=\"a-02461586\" pos=\"JJ\" sense=\"infallible or unfailing\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sure\" wordnet_id=\"a-02465978\" pos=\"JJ\" sense=\"(of persons) worthy of trust or confidence\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"surprised\" cornetto_synset_id=\"n_a-532266\" wordnet_id=\"a-02357479\" pos=\"JJ\" sense=\"taken unawares or suddenly and feeling wonder or astonishment\" polarity=\"0.1\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"surprising\" cornetto_synset_id=\"n_a-532646\" wordnet_id=\"a-02359464\" pos=\"JJ\" sense=\"causing surprise or wonder or amazement\" polarity=\"0.7\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"surreal\" cornetto_synset_id=\"n_a-530055\" wordnet_id=\"a-01943067\" pos=\"JJ\" sense=\"characterized by fantastic imagery and incongruous juxtapositions\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"surreal\" wordnet_id=\"a-01939226\" pos=\"JJ\" sense=\"resembling a dream\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"suspenseful\" wordnet_id=\"a-02405805\" pos=\"JJ\" sense=\"(of a situation) characterized by or causing suspense\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sweet\" cornetto_synset_id=\"n_a-521045\" wordnet_id=\"a-02370083\" pos=\"JJ\" sense=\"not soured or preserved\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sweet\" cornetto_synset_id=\"n_a-527594\" wordnet_id=\"a-01459949\" pos=\"JJ\" sense=\"having a sweet nature befitting an angel or cherub\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sweet\" cornetto_synset_id=\"n_a-529988\" wordnet_id=\"a-01501821\" pos=\"JJ\" sense=\"pleasing to the ear\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sweet\" wordnet_id=\"a-01052611\" pos=\"JJ\" sense=\"having a natural fragrance\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sweet\" wordnet_id=\"a-01073707\" pos=\"JJ\" sense=\"not containing or composed of salt water\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sweet\" wordnet_id=\"a-01808413\" pos=\"JJ\" sense=\"pleasing to the mind or feeling\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sweet\" wordnet_id=\"a-01808671\" pos=\"JJ\" sense=\"pleasing to the senses\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sweet\" wordnet_id=\"a-02338197\" pos=\"JJ\" sense=\"with sweetening added\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sweet\" wordnet_id=\"a-02367604\" pos=\"JJ\" sense=\"(used of wines) having a high residual sugar content\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sweet\" wordnet_id=\"a-02368336\" pos=\"JJ\" sense=\"having or denoting the characteristic taste of sugar\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"swill\" wordnet_id=\"v-1169433\" pos=\"VB\" sense=\"drink large quantities of (liquid, especially alcoholic drink)\" polarity=\"-0.1\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"sympathetic\" cornetto_synset_id=\"n_a-528223\" wordnet_id=\"a-01372948\" pos=\"JJ\" sense=\"showing or motivated by sympathy and understanding and generosity\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sympathetic\" wordnet_id=\"a-01163589\" pos=\"JJ\" sense=\"relating to vibrations that occur as a result of vibrations in a nearby body\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sympathetic\" wordnet_id=\"a-02072923\" pos=\"JJ\" sense=\"having similar disposition and tastes\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sympathetic\" wordnet_id=\"a-02374914\" pos=\"JJ\" sense=\"expressing or feeling or resulting from sympathy or compassion or friendly fellow feelings\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sympathetic\" wordnet_id=\"a-02376277\" pos=\"JJ\" sense=\"(of characters in literature or drama) evoking empathic or sympathetic feelings\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"sympathetic\" wordnet_id=\"a-03008013\" pos=\"JJ\" sense=\"of or relating to the sympathetic nervous system\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"talented\" cornetto_synset_id=\"d_a-9174\" wordnet_id=\"a-01119192\" pos=\"JJ\" sense=\"endowed with talent or talents\" polarity=\"0.7\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"tame\" wordnet_id=\"a-2388145\" pos=\"JJ\" sense=\"brought from wildness into a domesticated state\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"tame\" wordnet_id=\"a-2389946\" pos=\"JJ\" sense=\"very restrained or quiet\" polarity=\"-0.3\" subjectivity=\"0.3\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"tame\" wordnet_id=\"a-923232\" pos=\"JJ\" sense=\"flat and uninspiring\" polarity=\"-0.4\" subjectivity=\"0.4\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"tame\" wordnet_id=\"v-202445\" pos=\"VB\" sense=\"correct by punishment or discipline\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"tasteless\" cornetto_synset_id=\"n_a-528048\" wordnet_id=\"a-02393401\" pos=\"JJ\" sense=\"lacking aesthetic or social taste\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"technical\" cornetto_synset_id=\"n_a-530379\" wordnet_id=\"a-02809692\" pos=\"JJ\" sense=\"of or relating to a practical subject that is organized according to scientific principles\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"tedious\" cornetto_synset_id=\"n_a-507469\" wordnet_id=\"a-01345307\" pos=\"JJ\" sense=\"so lacking in interest as to cause mental weariness\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tedious\" cornetto_synset_id=\"n_a-520533\" wordnet_id=\"a-00549236\" pos=\"JJ\" sense=\"using or containing too many words\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"teen\" wordnet_id=\"a-01647983\" pos=\"JJ\" sense=\"being of the age 13 through 19\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"teenage\" wordnet_id=\"a-01647983\" pos=\"JJ\" sense=\"being of the age 13 through 19\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"ten\" wordnet_id=\"a-02187296\" pos=\"JJ\" sense=\"being one more than nine\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tense\" wordnet_id=\"a-02403206\" pos=\"JJ\" sense=\"taut or rigid\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tense\" wordnet_id=\"a-02404868\" pos=\"JJ\" sense=\"pronounced with relatively tense tongue muscles (e.g., the vowel sound in 'beat')\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tense\" wordnet_id=\"a-02405326\" pos=\"JJ\" sense=\"in or of a state of physical or nervous tension\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"terminally\" wordnet_id=\"r-127449\" pos=\"RB\" sense=\"at the end\" polarity=\"-0.4\" subjectivity=\"0.5\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"terrestrial\" cornetto_synset_id=\"n_a-501400\" wordnet_id=\"a-00124918\" pos=\"JJ\" sense=\"operating or living or growing on land\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"terrible\" cornetto_synset_id=\"n_a-531138\" wordnet_id=\"a-01126291\" pos=\"JJ\" sense=\"exceptionally bad or displeasing\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"terrible\" cornetto_synset_id=\"n_a-532685\" wordnet_id=\"a-00193799\" pos=\"JJ\" sense=\"causing fear or dread or terror\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"terrible\" wordnet_id=\"a-01513050\" pos=\"JJ\" sense=\"intensely or extremely bad or unpleasant in degree or quality\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"terrible\" wordnet_id=\"a-01677200\" pos=\"JJ\" sense=\"extreme in degree or extent or amount or impact\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"terrific\" wordnet_id=\"a-00196449\" pos=\"JJ\" sense=\"causing extreme terror\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"terrific\" wordnet_id=\"a-01513619\" pos=\"JJ\" sense=\"very great or intense\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"terrific\" wordnet_id=\"a-01676517\" pos=\"JJ\" sense=\"extraordinarily good or great \" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"terrifying\" wordnet_id=\"a-00196449\" pos=\"JJ\" sense=\"causing extreme terror\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"thanks\" wordnet_id=\"n-7228971\" pos=\"NN\" sense=\"an acknowledgment of appreciation\" polarity=\"0.2\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"theatrical\" wordnet_id=\"a-00796047\" pos=\"JJ\" sense=\"suited to or characteristic of the stage or theater\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"theatrical\" wordnet_id=\"a-02813315\" pos=\"JJ\" sense=\"of or relating to the theater\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"thematic\" cornetto_synset_id=\"n_a-530699\" wordnet_id=\"a-02813978\" pos=\"JJ\" sense=\"of or relating to a melodic subject\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"thematic\" wordnet_id=\"a-02813680\" pos=\"JJ\" sense=\"relating to or constituting a topic of discourse\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"theoretical\" cornetto_synset_id=\"n_a-530704\" wordnet_id=\"a-00860611\" pos=\"JJ\" sense=\"concerned primarily with theories or hypotheses rather than practical considerations\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"thick\" cornetto_synset_id=\"c_398\" wordnet_id=\"a-02410393\" pos=\"JJ\" sense=\"not thin\" polarity=\"-0.5\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"thick\" cornetto_synset_id=\"d_a-9215\" wordnet_id=\"a-00539009\" pos=\"JJ\" sense=\"having component parts closely crowded together\" polarity=\"0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"thick\" cornetto_synset_id=\"n_a-506960\" wordnet_id=\"a-02415390\" pos=\"JJ\" sense=\"relatively dense in consistency\" polarity=\"0.1\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"thick\" cornetto_synset_id=\"n_a-529438\" wordnet_id=\"a-00015480\" pos=\"JJ\" sense=\"abounding\" polarity=\"-0.9\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"thin\" cornetto_synset_id=\"c_536\" wordnet_id=\"a-00988232\" pos=\"JJ\" sense=\"lacking excess flesh\" polarity=\"-0.3\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"thin\" cornetto_synset_id=\"c_536\" wordnet_id=\"a-00988232\" pos=\"JJ\" sense=\"lacking excess flesh\" polarity=\"-0.5\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"third\" cornetto_synset_id=\"n_a-530634\" wordnet_id=\"a-02202307\" pos=\"JJ\" sense=\"coming next after the second and just before the fourth in position\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"thought-provoking\" wordnet_id=\"a-02306598\" pos=\"JJ\" sense=\"stimulating interest or thought\" polarity=\"0.4\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"thoughtful\" wordnet_id=\"a-00639230\" pos=\"JJ\" sense=\"considerate of the feelings or well-being of others\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"thoughtful\" wordnet_id=\"a-01194483\" pos=\"JJ\" sense=\"taking heed\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"thoughtful\" wordnet_id=\"a-01873295\" pos=\"JJ\" sense=\"having intellectual depth\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"thoughtful\" wordnet_id=\"a-02119971\" pos=\"JJ\" sense=\"acting with or showing thought and good sense\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"thoughtful\" wordnet_id=\"a-02418872\" pos=\"JJ\" sense=\"exhibiting or characterized by careful thought\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"thrilled\" wordnet_id=\"a-920704\" pos=\"JJ\" sense=\"feeling intense pleasurable excitement\" polarity=\"0.6\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"thrilling\" wordnet_id=\"a-00921866\" pos=\"JJ\" sense=\"causing a surge of emotion or excitement\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"thrilling\" wordnet_id=\"a-02307199\" pos=\"JJ\" sense=\"causing quivering or shivering as by cold or fear or electric shock\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tidy\" cornetto_synset_id=\"n_a-519857\" wordnet_id=\"a-02422685\" pos=\"JJ\" sense=\"marked by order and cleanliness in appearance or habits\" polarity=\"0.6\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"tight\" cornetto_synset_id=\"n_a-504167\" wordnet_id=\"a-00711059\" pos=\"JJ\" sense=\"demanding strict attention to rules and procedures\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tight\" cornetto_synset_id=\"n_a-507874\" wordnet_id=\"a-00017186\" pos=\"JJ\" sense=\"affected by scarcity and expensive to borrow\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tight\" cornetto_synset_id=\"n_a-521224\" wordnet_id=\"a-00747727\" pos=\"JJ\" sense=\"exasperatingly difficult to handle or circumvent\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tight\" cornetto_synset_id=\"n_a-529441\" wordnet_id=\"a-00798103\" pos=\"JJ\" sense=\"very drunk\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tight\" wordnet_id=\"a-00503157\" pos=\"JJ\" sense=\"packed closely together\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tight\" wordnet_id=\"a-00890622\" pos=\"JJ\" sense=\"(of a contest or contestants) evenly matched\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tight\" wordnet_id=\"a-01113807\" pos=\"JJ\" sense=\"(used of persons or behavior) characterized by or indicative of lack of generosity\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tight\" wordnet_id=\"a-01398199\" pos=\"JJ\" sense=\"of such close construction as to be impermeable\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tight\" wordnet_id=\"a-01447302\" pos=\"JJ\" sense=\"closely constrained or constricted or constricting\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tight\" wordnet_id=\"a-01655538\" pos=\"JJ\" sense=\"pressed tightly together\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tight\" wordnet_id=\"a-02095670\" pos=\"JJ\" sense=\"securely or solidly fixed in place\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tight\" wordnet_id=\"a-02232739\" pos=\"JJ\" sense=\"of textiles\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tight\" wordnet_id=\"a-02403505\" pos=\"JJ\" sense=\"pulled or drawn tight\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tight\" wordnet_id=\"a-02526441\" pos=\"JJ\" sense=\"set so close together as to be invulnerable to penetration\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tiny\" cornetto_synset_id=\"n_a-508984\" wordnet_id=\"a-01392249\" pos=\"JJ\" sense=\"very small\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tired\" cornetto_synset_id=\"n_a-501778\" wordnet_id=\"a-01688757\" pos=\"JJ\" sense=\"repeated too often\" polarity=\"-0.4\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tired\" wordnet_id=\"a-02431728\" pos=\"JJ\" sense=\"depleted of strength or energy\" polarity=\"-0.4\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tiresome\" cornetto_synset_id=\"n_a-507469\" wordnet_id=\"a-01345307\" pos=\"JJ\" sense=\"so lacking in interest as to cause mental weariness\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"titular\" cornetto_synset_id=\"n_a-520090\" wordnet_id=\"a-01043374\" pos=\"JJ\" sense=\"existing in name only\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"titular\" wordnet_id=\"a-02815843\" pos=\"JJ\" sense=\"of or associated with or bearing a title signifying nobility\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"titular\" wordnet_id=\"a-02815998\" pos=\"JJ\" sense=\"of or pertaining to the title of a work of art\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"titular\" wordnet_id=\"a-02816198\" pos=\"JJ\" sense=\"of or bearing a title signifying status or function\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"titular\" wordnet_id=\"a-02816340\" pos=\"JJ\" sense=\"of or relating to a legal title to something\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"toilet\" wordnet_id=\"n-4446276\" pos=\"NN\" sense=\"a room or building equipped with one or more toilets\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"toilet\" wordnet_id=\"n-4446521\" pos=\"NN\" sense=\"a plumbing fixture for defecation and urination\" polarity=\"-0.1\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"toilet\" wordnet_id=\"n-828704\" pos=\"NN\" sense=\"the act of dressing and preparing yourself\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"toneless\" cornetto_synset_id=\"n_a-531021\" wordnet_id=\"a-02430238\" pos=\"JJ\" sense=\"lacking in tone or expression\" polarity=\"-0.1\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"top\" wordnet_id=\"a-02439949\" pos=\"JJ\" sense=\"situated at the top or highest position\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"top-notch\" wordnet_id=\"a-02341864\" pos=\"JJ\" sense=\"of the highest quality\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"topical\" cornetto_synset_id=\"n_a-523452\" wordnet_id=\"a-00668053\" pos=\"JJ\" sense=\"of interest at the present time\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"topical\" cornetto_synset_id=\"n_a-523453\" wordnet_id=\"a-00668053\" pos=\"JJ\" sense=\"of interest at the present time\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"total\" wordnet_id=\"a-00515380\" pos=\"JJ\" sense=\"constituting the full quantity or extent\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"total\" wordnet_id=\"a-00522885\" pos=\"JJ\" sense=\"complete in extent or degree and in every particular\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"touching\" wordnet_id=\"\" pos=\"VB\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tough\" cornetto_synset_id=\"n_a-521323\" wordnet_id=\"a-00707795\" pos=\"JJ\" sense=\"substantially made or constructed\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tough\" wordnet_id=\"a-00478311\" pos=\"JJ\" sense=\"feeling physical discomfort or pain ('tough' is occasionally used colloquially for 'bad')\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tough\" wordnet_id=\"a-00746451\" pos=\"JJ\" sense=\"making great mental demands\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tough\" wordnet_id=\"a-00748058\" pos=\"JJ\" sense=\"very difficult\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tough\" wordnet_id=\"a-01127302\" pos=\"JJ\" sense=\"unfortunate or hard to bear\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tough\" wordnet_id=\"a-02445636\" pos=\"JJ\" sense=\"resistant to cutting or chewing\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tough\" wordnet_id=\"a-02447344\" pos=\"JJ\" sense=\"physically toughened\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tough\" wordnet_id=\"a-02448437\" pos=\"JJ\" sense=\"not given to gentleness or sentimentality\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tough\" wordnet_id=\"a-02512641\" pos=\"JJ\" sense=\"violent and lawless\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"traditional\" cornetto_synset_id=\"n_a-531132\" wordnet_id=\"a-00611047\" pos=\"JJ\" sense=\"consisting of or derived from tradition\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"traditional\" cornetto_synset_id=\"n_a-531133\" wordnet_id=\"a-01690767\" pos=\"JJ\" sense=\"pertaining to time-honored orthodox doctrines\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tragic\" wordnet_id=\"a-01363153\" pos=\"JJ\" sense=\"very sad\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tragic\" wordnet_id=\"a-02973241\" pos=\"JJ\" sense=\"of or relating to or characteristic of tragedy\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"trapped\" wordnet_id=\"\" pos=\"VBN\" sense=\"\" polarity=\"-0.2\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"tremendous\" cornetto_synset_id=\"c_267\" wordnet_id=\"a-01385255\" pos=\"JJ\" sense=\"extraordinarily large in size or extent or amount or power or degree\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tremendous\" wordnet_id=\"a-01676517\" pos=\"JJ\" sense=\"extraordinarily good or great \" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"tremendous\" wordnet_id=\"a-01677200\" pos=\"JJ\" sense=\"extreme in degree or extent or amount or impact\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"trendy\" cornetto_synset_id=\"n_a-528141\" wordnet_id=\"a-00973677\" pos=\"JJ\" sense=\"in accord with the latest fad\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"tries\" wordnet_id=\"\" pos=\"VB\" polarity=\"-0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"trouble\" wordnet_id=\"n-14046751\" pos=\"NN\" sense=\"an unwanted pregnancy\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"trouble\" wordnet_id=\"n-5687338\" pos=\"NN\" sense=\"a source of difficulty\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"trouble\" wordnet_id=\"n-623862\" pos=\"NN\" sense=\"an effort that is inconvenient\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"trouble\" wordnet_id=\"n-7289014\" pos=\"NN\" sense=\"an event causing distress or pain\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"trouble\" wordnet_id=\"v-2507736\" pos=\"VB\" sense=\"to cause inconvenience or discomfort to\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"trouble\" wordnet_id=\"v-70816\" pos=\"VB\" sense=\"cause bodily suffering to and make sick or indisposed\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"troubled\" wordnet_id=\"a-01923720\" pos=\"JJ\" sense=\"characterized by unrest or disorder or insubordination\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"troubled\" wordnet_id=\"a-02455297\" pos=\"JJ\" sense=\"characterized by or indicative of distress or affliction or danger or need\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"true\" cornetto_synset_id=\"n_a-534096\" wordnet_id=\"a-02460502\" pos=\"JJ\" sense=\"consistent with fact or reality\" polarity=\"0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"true\" cornetto_synset_id=\"n_a-534096\" wordnet_id=\"a-02460502\" pos=\"JJ\" sense=\"consistent with fact or reality\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"truthful\" wordnet_id=\"a-01225398\" pos=\"JJ\" sense=\"expressing or given to expressing the truth\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"truthful\" wordnet_id=\"a-02461438\" pos=\"JJ\" sense=\"conforming to truth\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"twisted\" wordnet_id=\"a-01311067\" pos=\"JJ\" sense=\"having an intended meaning altered or misrepresented\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"two-dimensional\" wordnet_id=\"a-660551\" pos=\"JJ\" sense=\"lacking the expected range or depth\" polarity=\"-0.1\" subjectivity=\"0.1\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"typical\" cornetto_synset_id=\"n_a-514574\" wordnet_id=\"a-00357556\" pos=\"JJ\" sense=\"of a feature that helps to distinguish a person or thing\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"typical\" wordnet_id=\"a-01595440\" pos=\"JJ\" sense=\"conforming to a type\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"typical\" wordnet_id=\"a-02468635\" pos=\"JJ\" sense=\"exhibiting the qualities or characteristics that identify a group or kind or category\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"ugliness\" wordnet_id=\"n-4690196\" pos=\"NN\" sense=\"qualities of appearance that do not give pleasure to the senses\" polarity=\"-0.3\" subjectivity=\"0.4\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"ugly\" cornetto_synset_id=\"d_a-9381\" wordnet_id=\"a-00220956\" pos=\"JJ\" sense=\"displeasing to the senses\" polarity=\"-0.7\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"ugly-duckling\" wordnet_id=\"\" pos=\"\" sense=\"\" polarity=\"-0.1\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"ultimate\" wordnet_id=\"a-01013961\" pos=\"JJ\" sense=\"being the last or concluding element of a series\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"ultimate\" wordnet_id=\"a-01578312\" pos=\"JJ\" sense=\"furthest or highest in degree or order\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unable\" wordnet_id=\"a-00002098\" pos=\"JJ\" sense=\"(usually followed by 'to') not having the necessary means or skill or know-how\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unable\" wordnet_id=\"a-00307794\" pos=\"JJ\" sense=\"(usually followed by 'to') lacking necessary physical or mental ability\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unable\" wordnet_id=\"a-01825080\" pos=\"JJ\" sense=\"lacking in power or forcefulness\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unadulterated\" cornetto_synset_id=\"d_a-9633\" wordnet_id=\"a-01907481\" pos=\"JJ\" sense=\"not mixed with impurities\" polarity=\"0.4\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unaffected\" cornetto_synset_id=\"d_a-9280\" wordnet_id=\"a-00074346\" pos=\"JJ\" sense=\"free of artificiality\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unaffected\" cornetto_synset_id=\"n_a-520565\" wordnet_id=\"a-00074346\" pos=\"JJ\" sense=\"free of artificiality\" polarity=\"-0.1\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unanswered\" cornetto_synset_id=\"n_a-520614\" wordnet_id=\"a-01947127\" pos=\"JJ\" sense=\"not returned in kind\" polarity=\"-0.1\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unappealing\" wordnet_id=\"a-171044\" pos=\"JJ\" sense=\"not able to attract favorable attention\" polarity=\"-0.4\" subjectivity=\"0.5\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"unappetizing\" cornetto_synset_id=\"n_a-533034\" wordnet_id=\"a-00133851\" pos=\"JJ\" sense=\"not appetizing in appearance, aroma, or taste\" polarity=\"-0.8\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unashamed\" cornetto_synset_id=\"n_a-521042\" wordnet_id=\"a-00154965\" pos=\"JJ\" sense=\"used of persons or their behavior\" polarity=\"-0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unavowed\" cornetto_synset_id=\"d_a-9288\" wordnet_id=\"a-00028984\" pos=\"JJ\" sense=\"not openly made known\" polarity=\"0.0\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unaware\" wordnet_id=\"a-00191603\" pos=\"JJ\" sense=\"(often followed by 'of') not aware\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unbefitting\" cornetto_synset_id=\"n_a-521127\" wordnet_id=\"a-00136081\" pos=\"JJ\" sense=\"not befitting\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unbelievable\" cornetto_synset_id=\"n_a-521086\" wordnet_id=\"a-00645493\" pos=\"JJ\" sense=\"beyond belief or understanding\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unbelievable\" wordnet_id=\"a-01800169\" pos=\"JJ\" sense=\"having a probability too low to inspire belief\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unblemished\" cornetto_synset_id=\"n_a-506738\" wordnet_id=\"a-00247013\" pos=\"JJ\" sense=\"free from physical or moral spots or stains\" polarity=\"0.1\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unblinking\" cornetto_synset_id=\"n_a-532085\" wordnet_id=\"a-00082034\" pos=\"JJ\" sense=\"not shrinking from danger\" polarity=\"0.1\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unblinking\" cornetto_synset_id=\"n_a-532085\" wordnet_id=\"a-00082034\" pos=\"JJ\" sense=\"not shrinking from danger\" polarity=\"0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unbranded\" cornetto_synset_id=\"n_a-518640\" wordnet_id=\"a-01481513\" pos=\"JJ\" sense=\"not marked with a brand\" polarity=\"-0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"uncared-for\" cornetto_synset_id=\"n_a-527970\" wordnet_id=\"a-00308593\" pos=\"JJ\" sense=\"lacking needed care and attention\" polarity=\"-0.2\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unchaste\" cornetto_synset_id=\"c_532\" wordnet_id=\"a-00361509\" pos=\"JJ\" sense=\"not chaste\" polarity=\"-0.7\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"uncivil\" cornetto_synset_id=\"c_581\" wordnet_id=\"a-00642725\" pos=\"JJ\" sense=\"lacking civility or good manners\" polarity=\"-0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"uncivil\" cornetto_synset_id=\"c_581\" wordnet_id=\"a-00642725\" pos=\"JJ\" sense=\"lacking civility or good manners\" polarity=\"-0.8\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"uncivil\" cornetto_synset_id=\"n_a-517506\" wordnet_id=\"a-00642725\" pos=\"JJ\" sense=\"lacking civility or good manners\" polarity=\"-0.9\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"uncomfortable\" wordnet_id=\"a-00478015\" pos=\"JJ\" sense=\"providing or experiencing physical discomfort\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"uncomfortable\" wordnet_id=\"a-00479933\" pos=\"JJ\" sense=\"conducive to or feeling mental discomfort\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"uncommon\" cornetto_synset_id=\"n_a-531811\" wordnet_id=\"a-00487653\" pos=\"JJ\" sense=\"not common or ordinarily encountered\" polarity=\"0.8\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"uncontroversial\" cornetto_synset_id=\"n_a-521322\" wordnet_id=\"a-00602721\" pos=\"JJ\" sense=\"not likely to arouse controversy\" polarity=\"0.3\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"uncooked\" cornetto_synset_id=\"n_a-525114\" wordnet_id=\"a-00619808\" pos=\"JJ\" sense=\"not cooked\" polarity=\"-0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"uncritical\" cornetto_synset_id=\"n_a-516166\" wordnet_id=\"a-00650351\" pos=\"JJ\" sense=\"marked by disregard for critical standards or procedures\" polarity=\"0.0\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"uncut\" cornetto_synset_id=\"c_712\" wordnet_id=\"a-00664167\" pos=\"JJ\" sense=\"not shaped by cutting or trimming\" polarity=\"-0.5\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"undeserved\" wordnet_id=\"a-1371646\" pos=\"JJ\" sense=\"not deserved or earned\" polarity=\"-0.3\" subjectivity=\"0.3\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"undignified\" cornetto_synset_id=\"n_a-532253\" wordnet_id=\"a-00752392\" pos=\"JJ\" sense=\"lacking dignity\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unengaging\" wordnet_id=\"\" pos=\"VBG\" sense=\"\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"uneven\" wordnet_id=\"a-00578662\" pos=\"JJ\" sense=\"lacking consistency\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"uneven\" wordnet_id=\"a-00892773\" pos=\"JJ\" sense=\"(of a contest or contestants) not fairly matched as opponents\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"uneven\" wordnet_id=\"a-00911327\" pos=\"JJ\" sense=\"not even or uniform as e.g. in shape or texture\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"uneven\" wordnet_id=\"a-00913454\" pos=\"JJ\" sense=\"not divisible by two\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"uneven\" wordnet_id=\"a-02305651\" pos=\"JJ\" sense=\"variable and recurring at irregular intervals \" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unexcelled\" cornetto_synset_id=\"n_a-534455\" wordnet_id=\"a-00229371\" pos=\"JJ\" sense=\"not capable of being improved on\" polarity=\"0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unexpected\" wordnet_id=\"a-00930290\" pos=\"JJ\" sense=\"not expected or anticipated\" polarity=\"0.1\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unexplained\" wordnet_id=\"a-1610952\" pos=\"JJ\" sense=\"not explained\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"unexplained\" wordnet_id=\"a-940314\" pos=\"JJ\" sense=\"having the reason or cause not made clear\" polarity=\"-0.1\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"unfair\" cornetto_synset_id=\"n_a-531834\" wordnet_id=\"a-00957176\" pos=\"JJ\" sense=\"not fair\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unfaithful\" cornetto_synset_id=\"n_a-521482\" wordnet_id=\"a-00024139\" pos=\"JJ\" sense=\"not trustworthy\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unfocused\" cornetto_synset_id=\"d_a-9560\" wordnet_id=\"a-00782957\" pos=\"JJ\" sense=\"(of an image) not being in or brought into focus\" polarity=\"-0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unforgettable\" cornetto_synset_id=\"n_a-521585\" wordnet_id=\"a-01040410\" pos=\"JJ\" sense=\"impossible to forget\" polarity=\"0.8\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unfortunate\" cornetto_synset_id=\"n_a-521232\" wordnet_id=\"a-00176838\" pos=\"JJ\" sense=\"not auspicious\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unfortunate\" wordnet_id=\"a-01001547\" pos=\"JJ\" sense=\"unsuitable or regrettable\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unfortunate\" wordnet_id=\"a-01049462\" pos=\"JJ\" sense=\"not favored by fortune\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unfortunately\" wordnet_id=\"r-42769\" pos=\"RB\" sense=\"by bad luck\" polarity=\"-0.1\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"unfruitful\" cornetto_synset_id=\"n_a-535779\" wordnet_id=\"a-01082535\" pos=\"JJ\" sense=\"not fruitful\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"ungraded\" cornetto_synset_id=\"n_a-534209\" wordnet_id=\"a-01204443\" pos=\"JJ\" sense=\"not arranged in order hierarchically\" polarity=\"-0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unhampered\" cornetto_synset_id=\"d_a-9598\" wordnet_id=\"a-02001984\" pos=\"JJ\" sense=\"not slowed or blocked or interfered with\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unhappy\" cornetto_synset_id=\"n_a-521094\" wordnet_id=\"a-01149494\" pos=\"JJ\" sense=\"experiencing or marked by or causing sadness or sorrow or discontent\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unhealthy\" cornetto_synset_id=\"n_a-535643\" wordnet_id=\"a-01172889\" pos=\"JJ\" sense=\"not in or exhibiting good health in body or mind\" polarity=\"-0.4\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unhesitating\" cornetto_synset_id=\"n_a-521672\" wordnet_id=\"a-00685924\" pos=\"JJ\" sense=\"characterized by quickness and firmness\" polarity=\"0.1\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unilateral\" cornetto_synset_id=\"n_a-508018\" wordnet_id=\"a-00236989\" pos=\"JJ\" sense=\"involving only one part or side\" polarity=\"-0.5\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unimportant\" cornetto_synset_id=\"n_a-520661\" wordnet_id=\"a-01279978\" pos=\"JJ\" sense=\"not important\" polarity=\"-0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unimportant\" cornetto_synset_id=\"n_a-520661\" wordnet_id=\"a-01279978\" pos=\"JJ\" sense=\"not important\" polarity=\"-0.4\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"uninspired\" cornetto_synset_id=\"n_a-508817\" wordnet_id=\"a-00644560\" pos=\"JJ\" sense=\"deficient in originality or creativity\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"uninspired\" wordnet_id=\"a-00923066\" pos=\"JJ\" sense=\"having no intellectual or emotional or spiritual excitement\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unintelligent\" cornetto_synset_id=\"c_578\" wordnet_id=\"a-01336587\" pos=\"JJ\" sense=\"lacking intelligence\" polarity=\"-0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unintelligent\" cornetto_synset_id=\"c_578\" wordnet_id=\"a-01336587\" pos=\"JJ\" sense=\"lacking intelligence\" polarity=\"-0.7\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"uninterrupted\" cornetto_synset_id=\"n_a-520586\" wordnet_id=\"a-00291338\" pos=\"JJ\" sense=\"having undisturbed continuity\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unique\" wordnet_id=\"a-00491511\" pos=\"JJ\" sense=\"highly unusual or rare but not the single instance\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unique\" wordnet_id=\"a-00505853\" pos=\"JJ\" sense=\"radically distinctive and without equal\" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unique\" wordnet_id=\"a-01105042\" pos=\"JJ\" sense=\"(followed by 'to') applying exclusively to a given category or condition or locality\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unique\" wordnet_id=\"a-02215087\" pos=\"JJ\" sense=\"the single one of its kind\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"universal\" cornetto_synset_id=\"n_a-515915\" wordnet_id=\"a-00527188\" pos=\"JJ\" sense=\"of worldwide scope or applicability\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"universal\" wordnet_id=\"a-01028623\" pos=\"JJ\" sense=\"adapted to various purposes, sizes, forms, operations\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"universal\" wordnet_id=\"a-01102674\" pos=\"JJ\" sense=\"applicable to or common to all members of a group or set\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unknown\" cornetto_synset_id=\"n_a-521118\" wordnet_id=\"a-00120784\" pos=\"JJ\" sense=\"being or having an unknown or unnamed source\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unknown\" cornetto_synset_id=\"n_a-533835\" wordnet_id=\"a-00966753\" pos=\"JJ\" sense=\"not known before\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unknown\" wordnet_id=\"a-01122595\" pos=\"JJ\" sense=\"not famous or acclaimed\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unknown\" wordnet_id=\"a-01376894\" pos=\"JJ\" sense=\"not known\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unknown\" wordnet_id=\"a-02370625\" pos=\"JJ\" sense=\"not known to exist\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unlikely\" wordnet_id=\"a-01412415\" pos=\"JJ\" sense=\"has little chance of being the case or coming about\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unlikely\" wordnet_id=\"a-01413871\" pos=\"JJ\" sense=\"not likely to be true or to occur or to have occurred\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unlikely\" wordnet_id=\"a-01800169\" pos=\"JJ\" sense=\"having a probability too low to inspire belief\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unnecessary\" cornetto_synset_id=\"n_a-521309\" wordnet_id=\"a-01581115\" pos=\"JJ\" sense=\"not necessary\" polarity=\"-0.4\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unnoticed\" cornetto_synset_id=\"n_a-521336\" wordnet_id=\"a-01608264\" pos=\"JJ\" sense=\"not noticed\" polarity=\"-0.2\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unoriginal\" wordnet_id=\"a-1688271\" pos=\"JJ\" sense=\"not original\" polarity=\"-0.2\" subjectivity=\"0.1\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"unpaid\" cornetto_synset_id=\"n_a-533923\" wordnet_id=\"a-02521183\" pos=\"JJ\" sense=\"without payment\" polarity=\"0.2\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unplayable\" cornetto_synset_id=\"d_a-9456\" wordnet_id=\"a-00955405\" pos=\"JJ\" sense=\"not capable of or suitable for being played or played on\" polarity=\"-0.4\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unpleasant\" cornetto_synset_id=\"c_664\" wordnet_id=\"a-01801600\" pos=\"JJ\" sense=\"disagreeable to the senses, to the mind, or feelings \" polarity=\"-0.6\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unpleasant\" cornetto_synset_id=\"c_679\" wordnet_id=\"a-01801600\" pos=\"JJ\" sense=\"disagreeable to the senses, to the mind, or feelings \" polarity=\"-0.7\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unprecedented\" cornetto_synset_id=\"n_a-521055\" wordnet_id=\"a-00128572\" pos=\"JJ\" sense=\"having no precedent\" polarity=\"0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unpredictable\" wordnet_id=\"a-00594146\" pos=\"JJ\" sense=\"not occurring at expected times\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unpredictable\" wordnet_id=\"a-00739789\" pos=\"JJ\" sense=\"unknown in advance\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unpredictable\" wordnet_id=\"a-01842001\" pos=\"JJ\" sense=\"not capable of being foretold\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unprocessed\" cornetto_synset_id=\"d_a-9436\" wordnet_id=\"a-01071321\" pos=\"JJ\" sense=\"not treated or prepared by a special process\" polarity=\"-0.1\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unpropitious\" cornetto_synset_id=\"n_a-521220\" wordnet_id=\"a-00177963\" pos=\"JJ\" sense=\"not propitious\" polarity=\"-0.6\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unread\" cornetto_synset_id=\"n_a-521066\" wordnet_id=\"a-01309835\" pos=\"JJ\" sense=\"not informed through reading\" polarity=\"0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unrealistic\" wordnet_id=\"a-01941999\" pos=\"JJ\" sense=\"not realistic\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unsalted\" cornetto_synset_id=\"n_a-521211\" wordnet_id=\"a-02400125\" pos=\"JJ\" sense=\"without salt or seasoning\" polarity=\"0.4\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unschooled\" cornetto_synset_id=\"n_a-521710\" wordnet_id=\"a-00831696\" pos=\"JJ\" sense=\"lacking in schooling\" polarity=\"-0.2\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unsettling\" wordnet_id=\"\" pos=\"JJ\" polarity=\"-0.5\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"unstirred\" cornetto_synset_id=\"n_a-520570\" wordnet_id=\"a-00088899\" pos=\"JJ\" sense=\"not agitated by stirring\" polarity=\"-0.4\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unthinkable\" cornetto_synset_id=\"n_a-521670\" wordnet_id=\"a-02418538\" pos=\"JJ\" sense=\"incapable of being conceived or considered\" polarity=\"-0.2\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unthinkable\" cornetto_synset_id=\"n_a-521670\" wordnet_id=\"a-02418538\" pos=\"JJ\" sense=\"incapable of being conceived or considered\" polarity=\"0.1\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"untraceable\" cornetto_synset_id=\"d_a-9529\" wordnet_id=\"a-02453492\" pos=\"JJ\" sense=\"incapable of being traced or tracked down\" polarity=\"-0.3\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unusual\" cornetto_synset_id=\"n_a-533834\" wordnet_id=\"a-00488857\" pos=\"JJ\" sense=\"not commonly encountered\" polarity=\"0.2\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"unwed\" cornetto_synset_id=\"n_a-507976\" wordnet_id=\"a-01482751\" pos=\"JJ\" sense=\"of someone who has not been married\" polarity=\"0.0\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"upper\" wordnet_id=\"a-01206318\" pos=\"JJ\" sense=\"higher in place or position\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"upper\" wordnet_id=\"a-02340096\" pos=\"JJ\" sense=\"superior in rank or accomplishment\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"upper\" wordnet_id=\"a-02440617\" pos=\"JJ\" sense=\"the topmost one of two\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"urban\" cornetto_synset_id=\"d_a-9532\" wordnet_id=\"a-02052333\" pos=\"JJ\" sense=\"located in or characteristic of a city or city life\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"urban\" cornetto_synset_id=\"n_a-528928\" wordnet_id=\"a-02821071\" pos=\"JJ\" sense=\"relating to or concerned with a city or densely populated area\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"urinates\" wordnet_id=\"\" pos=\"VBZ\" sense=\"\" polarity=\"-0.1\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"used to\" cornetto_synset_id=\"n_a-510831\" wordnet_id=\"a-00024619\" pos=\"JJ\" sense=\"in the habit\" polarity=\"-0.1\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"useful\" wordnet_id=\"a-2495922\" pos=\"JJ\" sense=\"being of use or service\" polarity=\"0.3\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"useless\" wordnet_id=\"a-2497141\" pos=\"JJ\" sense=\"having no beneficial use or incapable of functioning usefully\" polarity=\"-0.5\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"usual\" wordnet_id=\"a-00489108\" pos=\"JJ\" sense=\"occurring or encountered or experienced or observed frequently or in accordance with regular practice or procedure\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"usual\" wordnet_id=\"a-00970610\" pos=\"JJ\" sense=\"commonly encountered\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"utter\" cornetto_synset_id=\"n_a-520591\" wordnet_id=\"a-01520091\" pos=\"JJ\" sense=\"without qualification\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"utter\" wordnet_id=\"a-00522349\" pos=\"JJ\" sense=\"complete\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"vacuum\" wordnet_id=\"n-14456054\" pos=\"NN\" sense=\"the absence of matter\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"vacuum\" wordnet_id=\"n-4517823\" pos=\"NN\" sense=\"an electrical home appliance that cleans by suction\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"vacuum\" wordnet_id=\"n-8653474\" pos=\"NN\" sense=\"a region that is devoid of matter\" polarity=\"-0.05\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"vacuum\" wordnet_id=\"v-1244853\" pos=\"VB\" sense=\"clean with a vacuum cleaner\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"vague\" cornetto_synset_id=\"n_a-520670\" wordnet_id=\"a-00697389\" pos=\"JJ\" sense=\"not precisely limited, determined, or distinguished\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"vague\" cornetto_synset_id=\"n_a-528768\" wordnet_id=\"a-00782216\" pos=\"JJ\" sense=\"lacking clarity or distinctness\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"vague\" wordnet_id=\"a-00431004\" pos=\"JJ\" sense=\"not clearly understood or expressed\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"vapid\" wordnet_id=\"a-2308001\" pos=\"JJ\" sense=\"lacking significance or liveliness or spirit or zest\" polarity=\"-0.3\" subjectivity=\"0.3\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"vaporific\" cornetto_synset_id=\"n_a-533334\" wordnet_id=\"a-02263491\" pos=\"JJ\" sense=\"resembling or characteristic of vapor\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"various\" cornetto_synset_id=\"n_a-503872\" wordnet_id=\"a-00494409\" pos=\"JJ\" sense=\"considered individually\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"various\" wordnet_id=\"a-02065665\" pos=\"JJ\" sense=\"of many different kinds purposefully arranged but lacking any uniformity\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"various\" wordnet_id=\"a-02067491\" pos=\"JJ\" sense=\"distinctly dissimilar or unlike\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"various\" wordnet_id=\"a-02507772\" pos=\"JJ\" sense=\"having great diversity or variety\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"vast\" cornetto_synset_id=\"n_a-508356\" wordnet_id=\"a-01387319\" pos=\"JJ\" sense=\"unusually great in size or amount or degree or especially extent or scope\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"very\" wordnet_id=\"r-00031899\" pos=\"RB\" sense=\"used as intensifier\" polarity=\"0.2\" subjectivity=\"0.3\" intensity=\"1.3\" confidence=\"0.9\" />\n<word form=\"veteran\" cornetto_synset_id=\"d_a-9160\" wordnet_id=\"a-00936523\" pos=\"JJ\" sense=\"rendered competent through trial and experience\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"vibrant\" wordnet_id=\"a-00404110\" pos=\"JJ\" sense=\"of colors that are bright and striking\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"vibrant\" wordnet_id=\"a-02011002\" pos=\"JJ\" sense=\"of sounds that are strong and resonating\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"vibrant\" wordnet_id=\"a-02280969\" pos=\"JJ\" sense=\"vigorous and animated\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"vicious\" cornetto_synset_id=\"c_182\" wordnet_id=\"a-01263013\" pos=\"JJ\" sense=\"(of persons or their actions) able or disposed to inflict pain or suffering\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"vicious\" wordnet_id=\"a-00226105\" pos=\"JJ\" sense=\"marked by deep ill will\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"vicious\" wordnet_id=\"a-02035765\" pos=\"JJ\" sense=\"bringing or deserving severe rebuke or censure\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"vicious\" wordnet_id=\"a-02514099\" pos=\"JJ\" sense=\"having the nature of vice\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"victim\" wordnet_id=\"n-10752093\" pos=\"NN\" sense=\"an unfortunate person who suffers from some adverse circumstance\" polarity=\"-0.05\" subjectivity=\"0.1\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"victim\" wordnet_id=\"n-10752480\" pos=\"NN\" sense=\"a person who is tricked or swindled\" polarity=\"-0.1\" subjectivity=\"0.0\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"violent\" cornetto_synset_id=\"n_a-520643\" wordnet_id=\"a-01514141\" pos=\"JJ\" sense=\"(of colors or sounds) intensely vivid or loud\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"violent\" wordnet_id=\"a-00248560\" pos=\"JJ\" sense=\"characterized by violence or bloodshed\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"violent\" wordnet_id=\"a-01511854\" pos=\"JJ\" sense=\"marked by extreme intensity of emotions or convictions\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"violent\" wordnet_id=\"a-01570747\" pos=\"JJ\" sense=\"effected by force or injury rather than natural causes\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"violent\" wordnet_id=\"a-02510879\" pos=\"JJ\" sense=\"acting with or marked by or resulting from great force or energy or emotional intensity\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"visual\" cornetto_synset_id=\"n_a-533151\" wordnet_id=\"a-02516148\" pos=\"JJ\" sense=\"visible\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"visual\" wordnet_id=\"a-02869563\" pos=\"JJ\" sense=\"relating to or using sight\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"vital\" cornetto_synset_id=\"n_a-509441\" wordnet_id=\"a-00095094\" pos=\"JJ\" sense=\"manifesting or characteristic of life\" polarity=\"0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"vivid\" cornetto_synset_id=\"d_a-9579\" wordnet_id=\"a-00393683\" pos=\"JJ\" sense=\"(of color) having the highest saturation\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"vivid\" cornetto_synset_id=\"n_a-510334\" wordnet_id=\"a-00402855\" pos=\"JJ\" sense=\"having striking color\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"vivid\" wordnet_id=\"a-00430041\" pos=\"JJ\" sense=\"having the clarity and freshness of immediate experience\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"vivid\" wordnet_id=\"a-01941026\" pos=\"JJ\" sense=\"evoking lifelike images within the mind\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"vocational\" cornetto_synset_id=\"n_a-524476\" wordnet_id=\"a-02840478\" pos=\"JJ\" sense=\"of or relating to a vocation or occupation\" polarity=\"0.3\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"vulgar\" wordnet_id=\"\" pos=\"JJ\" sense=\"\" polarity=\"-0.7\" subjectivity=\"0.8\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"vulnerable\" wordnet_id=\"a-02326482\" pos=\"JJ\" sense=\"capable of being wounded or hurt\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"vulnerable\" wordnet_id=\"a-02363166\" pos=\"JJ\" sense=\"susceptible to criticism or persuasion or temptation\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"vulnerable\" wordnet_id=\"a-02523275\" pos=\"JJ\" sense=\"susceptible to attack\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"wacky\" cornetto_synset_id=\"n_a-509411\" wordnet_id=\"a-02074929\" pos=\"JJ\" sense=\"informal or slang terms for mentally irregular\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"wacky\" wordnet_id=\"a-02571536\" pos=\"JJ\" sense=\"ludicrous, foolish\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"wan\" wordnet_id=\"a-119750\" pos=\"JJ\" sense=\"lacking vitality as from weariness or illness or unhappiness\" polarity=\"-0.2\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"wan\" wordnet_id=\"v-87653\" pos=\"VB\" sense=\"become pale and sickly\" polarity=\"-0.2\" subjectivity=\"0.1\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"wants\" wordnet_id=\"\" pos=\"VB\" polarity=\"0.2\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"warm\" cornetto_synset_id=\"d_a-9609\" wordnet_id=\"a-02529264\" pos=\"JJ\" sense=\"having or producing a comfortable and agreeable degree of heat or imparting or maintaining heat\" polarity=\"0.6\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"warm\" cornetto_synset_id=\"n_a-534242\" wordnet_id=\"a-00445308\" pos=\"JJ\" sense=\"of a seeker\" polarity=\"0.6\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"wary\" cornetto_synset_id=\"n_a-534522\" wordnet_id=\"a-00162386\" pos=\"JJ\" sense=\"marked by keen caution and watchful prudence\" polarity=\"-0.5\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"waste\" wordnet_id=\"\" pos=\"NN\" polarity=\"-0.2\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"wasted\" wordnet_id=\"\" pos=\"VB\" polarity=\"-0.2\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"wastes\" wordnet_id=\"\" pos=\"VB\" polarity=\"-0.2\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"weak\" cornetto_synset_id=\"c_562\" wordnet_id=\"a-02040233\" pos=\"JJ\" sense=\"lacking bodily or muscular strength or vitality\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"weak\" cornetto_synset_id=\"n_a-521278\" wordnet_id=\"a-00441523\" pos=\"JJ\" sense=\"deficient in intelligence or mental power\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"weak\" cornetto_synset_id=\"n_a-534352\" wordnet_id=\"a-00756459\" pos=\"JJ\" sense=\"overly diluted\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"weak\" wordnet_id=\"a-00964768\" pos=\"JJ\" sense=\"likely to fail under stress or pressure\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"weak\" wordnet_id=\"a-01259391\" pos=\"JJ\" sense=\"wanting in moral strength, courage, or will\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"weak\" wordnet_id=\"a-01747364\" pos=\"JJ\" sense=\"deficient in magnitude\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"weak\" wordnet_id=\"a-01828242\" pos=\"JJ\" sense=\"not having authority, political strength, or governing power\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"weak\" wordnet_id=\"a-01960432\" pos=\"JJ\" sense=\"(used of verbs) having standard (or regular) inflection\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"weak\" wordnet_id=\"a-02230471\" pos=\"JJ\" sense=\"deficient or lacking in some skill\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"weak\" wordnet_id=\"a-02320442\" pos=\"JJ\" sense=\"(used of vowels or syllables) pronounced with little or no stress\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"weak\" wordnet_id=\"a-02324397\" pos=\"JJ\" sense=\"wanting in physical strength\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"weak\" wordnet_id=\"a-02493574\" pos=\"JJ\" sense=\"tending downward in price\" polarity=\"0.0\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"wealthy\" cornetto_synset_id=\"n_a-534597\" wordnet_id=\"a-02022167\" pos=\"JJ\" sense=\"having an abundant supply of money or possessions of value\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"weird\" wordnet_id=\"a-00970081\" pos=\"JJ\" sense=\"strikingly odd or unusual\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"weird\" wordnet_id=\"a-01575424\" pos=\"JJ\" sense=\"suggesting the operation of supernatural influences\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"welcome\" cornetto_synset_id=\"n_a-534571\" wordnet_id=\"a-02539968\" pos=\"JJ\" sense=\"giving pleasure or satisfaction or received with pleasure or freely granted\" polarity=\"0.8\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"well-advised\" cornetto_synset_id=\"n_a-503989\" wordnet_id=\"a-00067966\" pos=\"JJ\" sense=\"having the benefit of careful prior consideration or counsel\" polarity=\"0.4\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"well-advised\" cornetto_synset_id=\"n_a-507294\" wordnet_id=\"a-00067966\" pos=\"JJ\" sense=\"having the benefit of careful prior consideration or counsel\" polarity=\"0.8\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"well-intentioned\" wordnet_id=\"a-1338363\" pos=\"JJ\" sense=\"marked by good intentions though often producing unfortunate results\" polarity=\"-0.05\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"well-off\" cornetto_synset_id=\"d_a-9505\" wordnet_id=\"a-01049352\" pos=\"JJ\" sense=\"fortunately situated\" polarity=\"0.4\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"western\" cornetto_synset_id=\"n_a-500616\" wordnet_id=\"a-00825089\" pos=\"JJ\" sense=\"relating to or characteristic of the western parts of the world or the West as opposed to the eastern or oriental parts\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"western\" wordnet_id=\"a-00824631\" pos=\"JJ\" sense=\"lying toward or situated in the west\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"western\" wordnet_id=\"a-00824753\" pos=\"JJ\" sense=\"of wind\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"western\" wordnet_id=\"a-00825970\" pos=\"JJ\" sense=\"of or characteristic of regions of the United States west of the Mississippi River\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"wet\" cornetto_synset_id=\"d_a-9416\" wordnet_id=\"a-02547317\" pos=\"JJ\" sense=\"covered or soaked with a liquid such as water\" polarity=\"-0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"whaddupwitdat\" wordnet_id=\"\" pos=\"UH\" polarity=\"-0.1\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"whimsical\" wordnet_id=\"a-00719442\" pos=\"JJ\" sense=\"determined by chance or impulse or whim rather than by necessity or reason\" polarity=\"-0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"white\" cornetto_synset_id=\"n_a-535039\" wordnet_id=\"a-00393105\" pos=\"JJ\" sense=\"being of the achromatic color of maximum lightness\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"whole\" cornetto_synset_id=\"d_a-9327\" wordnet_id=\"a-00514884\" pos=\"JJ\" sense=\"including all components without exception\" polarity=\"0.2\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"wide\" cornetto_synset_id=\"c_291\" wordnet_id=\"a-02560548\" pos=\"JJ\" sense=\"having great (or a certain) extent from one side to the other\" polarity=\"-0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"wild\" cornetto_synset_id=\"n_a-534877\" wordnet_id=\"a-02389220\" pos=\"JJ\" sense=\"in a natural state\" polarity=\"0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"willing\" cornetto_synset_id=\"d_a-9289\" wordnet_id=\"a-02564986\" pos=\"JJ\" sense=\"disposed or inclined toward\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"willing\" wordnet_id=\"a-02521036\" pos=\"JJ\" sense=\"not brought about by coercion or force\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"win\" wordnet_id=\"v-1100145\" pos=\"VB\" sense=\"be the winner in a contest or competition\" polarity=\"0.8\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"winning\" wordnet_id=\"a-00167829\" pos=\"JJ\" sense=\"very attractive\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"winning\" wordnet_id=\"a-02333314\" pos=\"JJ\" sense=\"having won\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"wins\" wordnet_id=\"\" pos=\"VB\" polarity=\"0.3\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"wise\" cornetto_synset_id=\"c_667\" wordnet_id=\"a-02569130\" pos=\"JJ\" sense=\"having or prompted by wisdom or discernment\" polarity=\"0.7\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"witty\" wordnet_id=\"a-01268194\" pos=\"JJ\" sense=\"combining clever conception and facetious expression\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"womanly\" cornetto_synset_id=\"d_a-9602\" wordnet_id=\"a-01484987\" pos=\"JJ\" sense=\"befitting or characteristic of a woman especially a mature woman\" polarity=\"0.0\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"won't\" wordnet_id=\"\" pos=\"VB\" polarity=\"-0.1\" subjectivity=\"0.2\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"wonderful\" wordnet_id=\"a-01676517\" pos=\"JJ\" sense=\"extraordinarily good or great \" polarity=\"1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"wonky\" wordnet_id=\"\" pos=\"JJ\" polarity=\"-0.3\" subjectivity=\"0.3\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"wooden\" wordnet_id=\"a-01141595\" pos=\"JJ\" sense=\"lacking ease or grace\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"wooden\" wordnet_id=\"a-02576489\" pos=\"JJ\" sense=\"made or consisting of (entirely or in part) or employing wood\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"workmanlike\" cornetto_synset_id=\"n_a-532002\" wordnet_id=\"a-00511037\" pos=\"JJ\" sense=\"worthy of a good workman\" polarity=\"0.5\" subjectivity=\"0.7\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"worse\" cornetto_synset_id=\"d_a-9520\" wordnet_id=\"a-00231252\" pos=\"JJ\" sense=\"(comparative of 'bad') inferior to another in quality or condition or desirability\" polarity=\"-0.4\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"worse\" wordnet_id=\"a-00232068\" pos=\"JJ\" sense=\"changed for the worse in health or fitness\" polarity=\"-0.4\" subjectivity=\"0.6\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"worst\" wordnet_id=\"a-00229630\" pos=\"JJ\" sense=\"(superlative of 'bad') most wanting in quality or value or condition\" polarity=\"-1.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"worth\" cornetto_synset_id=\"n_a-534079\" wordnet_id=\"a-02502016\" pos=\"JJ\" sense=\"having a specified value\" polarity=\"0.3\" subjectivity=\"0.1\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"worthless\" cornetto_synset_id=\"d_a-9605\" wordnet_id=\"a-02502163\" pos=\"JJ\" sense=\"lacking in usefulness or value\" polarity=\"-0.8\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"worthwhile\" wordnet_id=\"a-02587936\" pos=\"JJ\" sense=\"sufficiently valuable to justify the investment of time or interest\" polarity=\"0.5\" subjectivity=\"0.5\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"worthy\" wordnet_id=\"a-00852197\" pos=\"JJ\" sense=\"worthy of being chosen especially as a spouse\" polarity=\"0.0\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"worthy\" wordnet_id=\"a-01021120\" pos=\"JJ\" sense=\"having qualities or abilities that merit recognition in some way\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"worthy\" wordnet_id=\"a-02584981\" pos=\"JJ\" sense=\"having worth or merit or value\" polarity=\"0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"wow\" wordnet_id=\"v-1770252\" pos=\"VB\" sense=\"impress greatly\" polarity=\"0.1\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"wrong\" cornetto_synset_id=\"c_577\" wordnet_id=\"a-01881478\" pos=\"JJ\" sense=\"not in accord with established usage or procedure\" polarity=\"-0.5\" subjectivity=\"0.9\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"wtf\" wordnet_id=\"\" pos=\"UH\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"yarn\" wordnet_id=\"v-954038\" pos=\"VB\" sense=\"tell or spin a yarn\" polarity=\"-0.1\" subjectivity=\"0.2\" intensity=\"1.0\" reliability=\"0.9\" />\n<word form=\"yaaawwnnnn\" wordnet_id=\"\" pos=\"UH\" sense=\"\" polarity=\"-0.5\" subjectivity=\"1.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"yellow\" cornetto_synset_id=\"n_a-509864\" wordnet_id=\"a-00385756\" pos=\"JJ\" sense=\"of the color intermediate between green and orange in the color spectrum\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"young\" cornetto_synset_id=\"d_a-9357\" wordnet_id=\"a-01646941\" pos=\"JJ\" sense=\"(used of living things especially persons) in an early period of life or development or growth\" polarity=\"0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"young\" cornetto_synset_id=\"d_a-9357\" wordnet_id=\"a-01646941\" pos=\"JJ\" sense=\"(used of living things especially persons) in an early period of life or development or growth\" polarity=\"0.1\" subjectivity=\"0.4\" intensity=\"1.0\" confidence=\"0.8\" />\n<word form=\"younger\" wordnet_id=\"a-02101382\" pos=\"JJ\" sense=\"used of the younger of two persons of the same name especially used to distinguish a son from his father\" polarity=\"0.0\" subjectivity=\"0.0\" intensity=\"1.0\" confidence=\"0.9\" />\n<word form=\"youngish\" cornetto_synset_id=\"n_a-514159\" wordnet_id=\"a-01649651\" pos=\"JJ\" sense=\"somewhat young\" polarity=\"0.4\" subjectivity=\"0.8\" intensity=\"1.0\" confidence=\"0.8\" />\nreliability=\"0.9\" />\n</sentiment>"
  },
  {
    "path": "src/textblob/en/en-spelling.txt",
    "content": ";;;   \n;;;   Based on several public domain books from Project Gutenberg\n;;;   and frequency lists from Wiktionary and the British National Corpus.\n;;;   http://norvig.com/big.txt\n;;;   \na 21155\naah 1\naaron 5\nab 2\naback 3\nabacus 1\nabandon 32\nabandoned 72\nabandoning 27\nabandonment 15\nabandons 2\nabasement 1\nabashed 13\nabate 5\nabatement 2\nabbe 19\nabbey 2\nabbot 1\nabbots 1\nabbott 5\nabbreviations 1\nabc 1\nabdicate 1\nabdicated 1\nabdomen 22\nabdomens 2\nabdominal 47\nabduct 3\nabducted 4\nabducting 2\nabduction 10\nabductor 4\nabductors 1\nabe 2\nabel 1\naberdeen 2\nabettors 2\nabeyance 1\nabhor 1\nabhorrence 1\nabhorrent 1\nabide 6\nabiding 3\nabigail 3\nabilities 1\nability 14\nabject 1\nabjure 1\nablaze 4\nable 201\nablest 1\nably 1\nabnegation 2\nabnormal 28\nabnormality 2\nabnormally 10\naboard 1\nabode 2\nabodes 1\nabolish 9\nabolished 25\nabolishing 11\nabolition 36\nabolitionist 3\nabolitionists 19\nabominable 9\nabominably 1\nabomination 1\nabominations 4\nabort 1\nabortion 2\nabortive 1\nabound 2\nabounding 1\nabout 1497\nabove 298\naboveboard 1\nabraded 3\nabraham 7\nabramovna 1\nabrasion 8\nabrasions 4\nabreast 6\nabridge 1\nabridged 3\nabridging 3\nabroad 54\nabrogated 1\nabrupt 9\nabruptly 17\nabscess 195\nabscesses 45\nabsence 98\nabsent 56\nabsentee 1\nabsentees 1\nabsently 6\nabsentmindedly 1\nabsolute 56\nabsolutely 71\nabsolutism 1\nabsolved 3\nabsorb 4\nabsorbable 2\nabsorbed 61\nabsorbent 6\nabsorbing 2\nabsorption 43\nabstain 3\nabstained 2\nabstaining 2\nabstemious 2\nabstention 1\nabstiens 1\nabstract 11\nabstracted 4\nabstraction 7\nabstruse 1\nabsurd 24\nabsurdity 6\nabsurdly 3\nabundance 15\nabundant 28\nabundantly 4\nabuse 16\nabused 6\nabuses 23\nabusing 3\nabusive 2\nabutted 2\nabyss 4\nac 1\nacacia 1\nacademic 4\nacademies 1\nacademy 3\nacadia 1\nacceded 1\nacceding 1\naccelerate 2\naccelerated 2\naccent 18\naccents 2\naccentuated 3\naccentuating 2\naccept 57\nacceptable 4\nacceptance 8\naccepted 87\naccepting 12\naccepts 6\naccess 56\naccessed 3\naccessible 11\naccession 6\naccessory 7\naccident 28\naccidental 17\naccidentally 20\naccidently 1\naccidents 13\nacclaimed 2\nacclamation 3\nacclamations 2\naccommodate 4\naccommodated 1\naccommodation 5\naccommodations 1\naccompanied 85\naccompanies 7\naccompaniment 8\naccompaniments 2\naccompany 22\naccompanying 18\naccompli 1\naccomplice 2\naccomplish 16\naccomplished 39\naccomplishing 2\naccomplishment 4\naccomplishments 4\naccord 29\naccordance 16\naccorded 6\naccording 164\naccordingly 24\naccoucheur 1\naccount 177\naccountability 2\naccountable 1\naccountant 11\naccounted 8\naccounting 1\naccounts 38\naccouterments 1\naccredited 1\naccrue 3\naccumulate 7\naccumulated 13\naccumulates 6\naccumulation 25\naccumulations 6\naccuracy 8\naccurate 16\naccurately 17\naccursed 1\naccusation 3\naccusations 2\naccuse 4\naccused 31\naccuser 1\naccusers 1\naccuses 2\naccusing 1\naccustom 3\naccustomed 65\nace 1\nacetabular 1\nacetabulum 4\nacetatis 1\nacetones 1\nache 4\naches 3\nachieve 7\nachieved 9\nachievement 11\nachievements 11\nachilles 7\nachillis 2\nachillo 4\naching 10\nachondroplasia 2\nachtung 1\nacid 61\nacidosis 2\nacids 1\nacknowledge 11\nacknowledged 10\nacknowledges 1\nacknowledging 6\nacknowledgment 3\naclasis 2\nacme 2\nacne 5\nacorn 2\nacquaint 1\nacquaintance 56\nacquaintances 40\nacquainted 22\nacquiesce 2\nacquiesced 1\nacquiescence 1\nacquire 18\nacquired 57\nacquirement 1\nacquires 1\nacquiring 4\nacquisition 14\nacquittal 1\nacquitted 3\nacre 10\nacreage 1\nacres 36\nacrid 3\nacrimonious 5\nacromial 2\nacromion 4\nacross 222\nact 321\nacte 2\nacted 37\nacting 58\nactinomyces 9\nactinomycosis 17\naction 357\nactionable 2\nactions 77\nactivate 1\nactive 96\nactively 14\nactivist 1\nactivities 27\nactivity 131\nactor 8\nactors 3\nactress 7\nactresses 3\nacts 89\nactual 64\nactually 40\nactuated 5\nacupuncture 5\nacute 169\nacutely 7\nacuteness 1\nad 1\nadair 1\nadam 5\nadamant 2\nadams 81\nadamses 1\nadamson 2\nadapt 3\nadaptation 1\nadaptations 1\nadapted 9\nadapting 2\nadd 27\nadded 298\nadder 3\naddicted 4\nadding 22\naddison 1\naddition 72\nadditional 30\nadditions 10\naddress 76\naddressed 72\naddresses 10\naddressing 74\nadds 9\nadducing 1\nadduct 1\nadduction 3\nadductor 6\nadductors 2\nadelaide 1\nadele 1\naden 1\nadenitis 4\nadenoids 3\nadenoma 24\nadenomas 2\nadept 4\nadequate 9\nadequately 2\nadhere 8\nadhered 5\nadherence 1\nadherent 26\nadherents 7\nadheres 2\nadhering 4\nadhesion 2\nadhesions 44\nadhesive 3\nadieu 6\nadipose 3\nadiposis 1\nadiposus 2\nadj 1\nadjacent 93\nadjective 5\nadjoined 1\nadjoining 17\nadjourn 3\nadjourned 5\nadjournment 3\nadjunct 1\nadjust 2\nadjusted 16\nadjusting 7\nadjustment 8\nadjustments 1\nadjutant 166\nadjutants 38\nadjuvant 1\nadlai 1\nadler 16\nadminister 8\nadministered 18\nadministering 4\nadministrating 1\nadministration 117\nadministrations 9\nadministrative 12\nadministrator 5\nadministrators 1\nadmirable 14\nadmirably 7\nadmiral 6\nadmirals 1\nadmiralty 2\nadmiration 14\nadmire 7\nadmired 13\nadmirer 3\nadmirers 1\nadmires 1\nadmiring 8\nadmiringly 1\nadmission 61\nadmit 65\nadmits 9\nadmitted 61\nadmittedly 3\nadmitting 23\nadmixture 3\nadmonish 2\nadmonishing 1\nadmonishingly 1\nadmonitory 1\nado 1\nadolescence 5\nadolescent 4\nadolescentium 2\nadolescents 6\nadonai 1\nadopt 18\nadopted 81\nadopting 7\nadoption 22\nadorable 2\nadoration 5\nadore 4\nadored 16\nadorer 4\nadorers 1\nadores 1\nadoring 2\nadorn 3\nadorned 1\nadorning 1\nadornment 1\nadraksin 4\nadrenal 1\nadrenalin 6\nadrenals 1\nadrian 1\nadrift 1\nadroit 6\nadroitly 3\nadroitness 3\nadulation 2\nadult 24\nadults 26\nadv 1\nadvance 95\nadvanced 112\nadvancement 5\nadvances 4\nadvancing 45\nadvantage 63\nadvantageous 18\nadvantageously 4\nadvantages 39\nadve 1\nadvent 6\nadventitious 8\nadventure 34\nadventurer 3\nadventurers 6\nadventures 17\nadventuress 1\nadventurous 3\nadversary 3\nadverse 9\nadversity 3\nadvertise 3\nadvertised 3\nadvertisement 25\nadvertisements 2\nadvertising 5\nadvice 63\nadvisability 1\nadvisable 15\nadvise 19\nadvised 28\nadviser 5\nadvisers 10\nadvises 3\nadvising 6\nadvisory 1\nadvocacy 1\nadvocate 15\nadvocated 17\nadvocates 29\nadvocating 6\nadvsh 4\naerial 1\naerobes 2\naerobic 2\naerogenes 3\naesthetic 2\naet 40\nafar 3\nafebrile 1\naffability 1\naffable 2\naffably 1\naffair 116\naffaire 1\naffaires 2\naffairs 214\naffect 39\naffectation 13\naffected 203\naffecting 41\naffection 73\naffectionate 23\naffectionately 10\naffections 87\naffects 33\nafferent 9\naffetto 2\naffianced 6\naffiliated 4\naffiliation 1\naffinity 8\naffirm 5\naffirmation 4\naffirmative 6\naffirmatively 4\naffirmed 2\naffirming 1\naffixed 1\nafflicted 3\naffliction 2\naffluent 1\naffluents 1\nafflux 1\nafford 20\nafforded 21\naffording 11\naffords 9\naffright 1\naffront 1\naffronted 1\naffronts 1\nafghan 1\nafghanistan 1\nafield 1\naflame 2\nafloat 2\nafore 1\naforesaid 1\nafraid 173\nafresh 11\nafrica 24\nafrican 6\nafricans 3\naft 1\nafter 1504\nafterglow 1\nafterlife 1\nafternoon 34\nafterward 19\nafterwards 72\nafwaid 1\nagain 866\nagainst 660\nagar 1\nagate 2\nage 137\naged 31\nagencies 18\nagency 11\nagenda 1\nagent 25\nagents 49\nages 16\naggrandizement 4\naggravate 5\naggravated 18\naggravatedly 1\naggravates 1\naggravating 2\naggravation 2\naggregate 3\naggregated 1\naggregation 2\naggregations 3\naggression 11\naggressive 9\naggressor 2\naggressors 2\naggrieved 3\naghast 4\nagile 4\nagility 7\nagitated 52\nagitating 6\nagitation 83\nagitations 2\nagitator 3\nagitators 4\naglow 3\nagnes 1\nago 108\nagog 1\nagonies 2\nagonising 4\nagonized 1\nagonizing 2\nagonizingly 1\nagony 10\nagra 1\nagrafena 6\nagrarian 6\nagree 77\nagreeable 28\nagreeably 4\nagreed 71\nagreeing 6\nagreement 70\nagreements 5\nagrees 2\nagrement 1\nagricultural 22\nagriculturalist 1\nagriculture 55\nagriculturists 2\nague 1\naguinaldo 2\nagwee 1\nah 222\nahahah 1\nahead 43\nai 3\naid 113\naide 48\naided 17\naides 17\naiding 4\naids 2\nailing 1\nailments 1\naim 108\naime 5\naimed 19\naiming 6\naimless 4\naimlessly 2\naims 24\nain 1\nair 228\naircraft 1\nairiness 1\nairline 1\nairplane 2\nairport 1\nairs 3\nairy 3\naisle 2\naix 2\najar 1\nak 3\nakharovs 1\nakhrosimova 3\nakimbo 5\nakin 14\nakinfi 1\nakron 1\nal 1\nalabama 33\nalacrity 2\nalae 1\nalamance 2\nalamo 2\nalan 1\nalarm 52\nalarmed 29\nalarming 5\nalarms 1\nalas 4\nalaska 12\nalaskan 1\nalba 2\nalbanians 1\nalbany 15\nalbeit 2\nalbert 7\nalbum 5\nalbumen 6\nalbumin 1\nalbuminous 1\nalbuminuria 5\nalbumose 2\nalbumoses 1\nalbumosuria 3\nalbums 4\nalbuquerque 1\nalbus 6\nalcohol 38\nalcoholic 7\nalcoholism 5\nalder 1\naldermen 2\nalders 1\naldersgate 1\naldershot 1\naldrich 3\nale 1\nalenina 1\naleppo 3\nalert 13\nalertly 1\nalertness 2\nalesha 1\nalexander 155\nalexanders 2\nalexandre 3\nalexandria 4\nalexeevich 41\nalexeevna 2\nalexey 1\nalexins 2\nalexis 9\nalfalfa 1\nalfred 1\nalgebra 2\nalgiers 1\nalgonquins 2\nali 1\nalias 1\nalice 13\nalicia 1\nalien 33\nalienated 3\nalienating 2\naliens 10\nalight 4\nalighted 2\nalighting 2\nalign 1\naligning 1\nalike 37\naliment 1\nalimentary 4\nalimony 1\naline 2\nalive 71\nalkalies 1\nalkaline 5\nalkaloid 1\nalkaloids 1\nall 4144\nallah 1\nallay 6\nallayed 3\nallaying 2\nallays 2\nallegation 1\nallege 1\nalleged 23\nallegedly 1\nalleghanies 3\nallegheny 1\nallegiance 17\nalleging 1\nallegories 1\nallegory 1\nallegro 2\nallen 1\nalleviate 2\nalleviating 2\nalleviation 1\nalley 5\nalleys 3\nallez 1\nalliance 51\nalliances 6\nallied 28\nalliee 1\nallies 22\nallison 1\nallocate 1\nallocation 1\nalloit 1\nallons 1\nallopaths 1\nallot 1\nallotted 6\nallow 91\nallowance 10\nallowances 1\nallowed 86\nallowing 19\nallows 9\nallude 3\nalluded 6\nalluding 7\nallured 1\nallurement 1\nallurements 1\nalluring 1\nalluringly 1\nallusion 7\nallusions 5\nalluvial 1\nally 10\nalma 1\nalmanac 1\nalmanacs 2\nalmighty 8\nalmond 3\nalmonds 1\nalmost 325\nalms 5\nalmshouse 1\nalmshouses 1\naloe 1\naloft 2\nalone 337\nalong 404\nalongside 5\naloof 5\naloofness 2\nalopecia 1\nalopoecia 1\naloud 28\naloysius 5\nalpatych 137\nalpha 7\nalphabet 3\nalphonse 1\nalps 2\nalready 487\nalright 2\nalsace 2\nalsatian 2\nalso 778\naltar 15\naltars 2\nalte 1\nalter 17\nalteration 19\nalterations 17\naltercation 1\naltered 42\naltering 4\nalternate 8\nalternated 1\nalternately 7\nalternating 2\nalternation 1\nalternative 14\nalternatively 5\nalternatives 1\naltgeld 1\nalthough 168\naltogether 34\nalton 2\nalum 1\naluminium 2\nalveolar 5\nalveoli 7\nalways 608\nam 746\namalek 2\namalgam 2\namant 1\namants 1\namass 1\namateur 5\namazed 16\namazement 11\namazing 10\namazingly 2\namazon 1\nambassador 30\nambassadors 7\namber 3\nambiguity 2\nambiguous 2\nambition 13\nambitions 5\nambitious 8\namble 1\nambled 1\nambler 1\nambling 1\nambrine 3\nambulance 7\nambulatory 2\nambuscade 1\nambush 7\name 3\namelie 3\namen 1\namenable 11\namend 2\namended 2\namending 2\namendment 89\namendments 19\namends 1\namene 1\namenities 1\namerica 299\namerican 755\namericanization 5\namericans 79\namethyst 1\nami 3\namiabilities 2\namiability 3\namiable 21\namiably 8\namicable 4\namicably 1\namid 84\namidst 2\namie 2\namiens 1\namiss 6\namity 3\nammonia 3\nammoniae 2\nammoniated 1\nammonium 3\nammunition 16\namnesty 12\namniotic 1\namoeboid 2\namong 451\namongst 9\namorous 4\namorys 1\namos 1\namount 92\namounted 8\namounting 8\namounts 6\namour 2\namoureuse 1\namoy 1\namp 1\namphilochus 1\namphitheater 2\nample 9\namplifying 1\namply 4\nampoule 1\namputate 4\namputated 6\namputating 3\namputation 73\namputations 4\namsterdam 4\namstetten 1\namulet 1\namuse 14\namused 27\namusement 13\namusements 3\namuses 2\namusing 24\namusingly 1\namy 1\nan 3423\nana 2\nanaemia 7\nanaemic 7\nanaerobe 2\nanaerobes 5\nanaerobic 3\nanaesthesia 23\nanaesthetic 26\nanaesthetise 1\nanaesthetised 1\nanaesthetist 2\nanal 4\nanalgesia 3\nanalogies 5\nanalogous 3\nanalogy 5\nanalyse 1\nanalysis 20\nanalyst 1\nanalytical 3\nanalyze 6\nanalyzed 3\nanalyzing 2\nanaphylactic 1\nanaphylaxis 5\nanarchical 1\nanarchist 1\nanarchists 3\nanarchy 7\nanastomose 1\nanastomosed 2\nanastomoses 1\nanastomosis 7\nanastomotic 2\nanathematized 1\nanatole 222\nanatomical 33\nanatomy 30\nancestor 3\nancestors 7\nancestral 3\nancestry 1\nanchor 3\nanchors 1\nancient 50\nancients 17\nanconeus 1\nand 38313\nanderson 2\nandover 1\nandre 2\nandreevich 8\nandrew 1169\nandrews 2\nandros 6\nandrusha 6\nandwew 1\nandy 1\nanecdote 5\nanecdotes 6\nanel 4\naneurysm 214\naneurysmal 13\naneurysmo 1\naneurysmorrhaphy 2\naneurysms 12\nanew 6\nanferovs 2\nangel 42\nangela 1\nangeles 3\nangelic 2\nangelically 1\nangelo 1\nangels 4\nanger 59\nangered 5\nangina 5\nangio 8\nangioma 22\nangiomas 3\nangiomata 1\nangiomatous 1\nangiotribes 1\nanglaise 3\nangle 38\nangler 3\nangles 10\nangleterre 1\nanglican 6\nanglicans 4\nangling 2\nanglo 8\nangrier 3\nangrily 82\nangry 132\nanguish 3\nangular 2\naniline 1\nanimal 57\nanimals 40\nanimate 1\nanimated 66\nanimatedly 1\nanimating 1\nanimation 31\nanimosities 1\nanimosity 3\nanimus 1\naniska 3\nanisya 16\nanita 1\naniversary 1\nankle 36\nankles 6\nankylosed 2\nankylosing 1\nankylosis 54\nann 2\nanna 294\nannal 1\nannals 5\nannandale 3\nannapolis 5\nanne 10\nannette 12\nannex 1\nannexation 25\nannexed 4\nannexing 1\nannihilate 3\nannihilated 2\nannihilating 1\nanniversaries 1\nanniversary 5\nannounce 19\nannounced 67\nannouncement 21\nannouncements 2\nannounces 1\nannouncing 8\nannoy 2\nannoyance 18\nannoyed 9\nannoying 3\nannual 20\nannually 9\nannular 6\nannulled 7\nannulling 2\nannulment 3\nano 1\nanoci 2\nanode 1\nanointed 1\nanoints 1\nanomalies 1\nanon 1\nanonymous 4\nanother 841\nanserina 2\nansicht 1\nanstruther 1\nanswer 205\nanswerable 1\nanswered 226\nanswering 37\nanswers 25\nant 3\nantagonise 2\nantagonism 4\nantagonist 4\nantagonistic 2\nantagonists 3\nantagonizing 1\nante 3\nantecedent 12\nantecedents 2\nantechamber 5\nantechambers 1\nanterior 28\nanteroom 36\nanterooms 1\nanthony 8\nanthracaemia 2\nanthracis 2\nanthracite 1\nanthrax 20\nanthropoid 1\nanti 76\nantibodies 6\nantibody 1\nantichrist 5\nanticipate 4\nanticipated 10\nanticipating 4\nanticipation 6\nantics 1\nanticus 1\nantidotes 1\nantietam 3\nantigen 1\nantigens 2\nantinational 1\nantipathetic 1\nantipathies 1\nantipathy 8\nantipodes 1\nantipyrin 1\nantique 5\nantiquity 4\nantiseptic 28\nantiseptics 11\nantitoxic 6\nantitoxin 5\nantitoxins 2\nantivenin 2\nantoinette 2\nanton 3\nantonio 4\nantonov 1\nantonovna 4\nantrum 2\nants 5\nantwerp 1\nanus 9\nanxieties 2\nanxiety 46\nanxious 63\nanxiously 20\nany 1204\nanybody 21\nanyhow 12\nanymore 1\nanyone 223\nanything 379\nanyway 6\nanywhere 40\naorta 27\naortic 4\naortitis 1\napace 2\napache 1\napaches 1\napart 85\napartment 11\napartments 14\napathetic 1\napathy 4\nape 4\naperture 6\napes 4\napex 4\napiece 7\napocalypse 4\napocalyptic 1\napollo 1\napollon 1\napologetically 2\napologies 5\napologise 2\napologize 12\napologized 1\napologizing 2\napology 12\naponeuroses 2\naponeurosis 6\naponeurotic 1\napoplectic 1\napoplexy 1\napostle 2\napostles 3\napothecaries 1\nappalachian 3\nappalachians 9\nappalled 3\nappalling 7\napparatus 16\napparel 1\napparelled 1\napparent 42\napparently 68\napparition 4\nappeal 55\nappealed 13\nappealing 5\nappeals 11\nappear 150\nappearance 135\nappearances 31\nappeared 197\nappearing 23\nappears 108\nappease 3\nappeased 3\nappeasing 1\nappellate 3\nappellation 3\nappellations 1\nappendages 6\nappendectomy 1\nappendicitis 2\nappendix 11\nappetite 12\nappetizing 2\napplaud 1\napplauding 1\napplause 7\napple 11\napples 2\nappliance 2\nappliances 9\napplicable 24\napplicant 3\napplication 77\napplications 23\napplied 206\napplies 4\napply 43\napplying 36\nappoint 8\nappointed 91\nappointees 3\nappointment 39\nappointments 11\nappomattox 4\napportioned 11\napportioning 1\napportionment 4\napposed 4\nappositely 1\nappositeness 1\napposition 10\nappraisal 1\nappraise 2\nappraised 1\nappraising 1\nappreciable 1\nappreciably 2\nappreciate 12\nappreciated 22\nappreciating 2\nappreciation 8\nappreciative 1\napprehend 2\napprehended 1\napprehension 5\napprehensive 5\napprentice 2\napprenticed 1\napprentices 2\napprenticeship 2\napproach 40\napproached 81\napproaches 6\napproaching 68\napprobation 4\nappropriate 32\nappropriated 6\nappropriately 5\nappropriating 1\nappropriation 6\nappropriations 4\napproval 58\napprove 20\napproved 47\napproving 6\napprovingly 7\napproximate 4\napproximated 6\napproximately 13\napproximates 1\napproximating 2\napproximation 5\nappwove 1\napraksin 1\napraksina 5\napraksins 2\napril 33\napron 12\naproned 1\naprons 3\napropos 1\napsheron 4\napsherons 4\napt 35\naptitude 4\naptly 5\naquaintances 1\naquarium 1\naqueducts 1\naqueous 1\naquiline 2\nar 1\narab 5\narabchik 1\narabia 2\narabian 2\narabic 1\narable 3\narabs 1\narabum 1\narakcheev 43\narat 1\narbat 8\narbiter 1\narbiters 1\narbitrament 1\narbitrarily 7\narbitrariness 1\narbitrary 19\narbitrate 2\narbitrated 1\narbitration 27\narbitrators 1\narborescent 10\narbuthnot 2\narc 5\narcade 1\narch 13\narchaeological 1\narchangel 1\narchbishop 3\narchbishops 2\narchduchess 2\narchduchy 1\narchduke 15\narched 7\narchery 1\narches 1\narchie 2\narching 5\narchipelago 1\narchitect 19\narchitects 2\narchitectural 2\narchitecture 6\narchive 37\narchives 1\narchway 1\narcola 3\narctic 2\narcy 1\nardent 14\nardently 1\nardor 8\narduous 7\narduously 1\nare 3630\narea 163\nareas 41\naren 19\narena 7\nareola 1\nareolar 2\nargentina 1\nargonne 3\nargue 8\nargued 16\nargues 1\narguing 8\nargument 32\nargumentative 1\nargumentatively 1\narguments 38\nargus 1\narid 6\naridity 3\naright 2\narinka 1\narise 28\narisen 4\narises 15\narising 16\naristocracies 1\naristocracy 16\naristocrat 2\naristocratic 15\naristocrats 1\naristotle 1\naristovo 2\narithmetic 2\narizona 16\narizonians 1\nark 1\narkansas 20\narkharovs 4\narm 262\narmada 2\narmaments 5\narmchair 49\narmchairs 3\narmed 54\narmee 3\narmenia 1\narmenian 6\narmenians 1\narmfeldt 12\narmfeldts 1\narmies 62\narming 2\narmistice 8\narmitage 3\narmor 1\narmory 1\narmour 2\narmpit 1\narmpits 3\narms 249\narmy 764\narnauts 2\narnold 7\narnsworth 1\naroma 1\naromatic 2\narose 48\naround 271\narouse 16\naroused 52\narouses 1\narousing 9\narraigned 1\narrange 34\narranged 75\narrangement 35\narrangements 29\narranging 19\narray 7\narrayed 2\narrears 1\narrest 60\narrested 78\narresting 14\narrestment 1\narrests 5\narrival 68\narrivals 7\narrive 28\narrived 120\narrives 4\narriving 18\narrogance 2\narrogant 3\narrow 4\narrows 2\narsenal 4\narsenals 1\narsenic 12\narsenical 10\narseno 5\narshin 1\narson 2\nart 47\narterial 38\narteries 77\narterio 21\narteriole 1\narterioles 5\narteriorrhaphy 2\narteritis 9\nartery 168\nartful 3\narthralgia 1\narthritic 3\narthritis 71\narthrodesis 1\narthrolysis 2\narthropathies 13\narthropathy 8\narthroplasty 6\narthur 34\narticle 55\narticles 86\narticular 118\narticulate 1\narticulated 1\narticulating 5\narticulation 3\nartifice 1\nartificial 39\nartificiality 3\nartificially 7\nartillery 56\nartilleryman 6\nartillerymen 8\nartisans 24\nartist 5\nartistic 7\nartists 1\nartless 2\narts 17\nas 8064\nascend 3\nascendancy 1\nascended 14\nascending 11\nascent 3\nascertain 10\nascertained 6\nascertaining 4\nascetic 1\nasch 2\nascii 11\nascites 7\nascribe 5\nascribed 10\nascribing 2\nasepsis 7\naseptic 25\naseptically 1\nasepticity 4\nash 5\nashamed 64\nashburton 5\nashen 2\nashes 11\nashore 3\nashy 2\nasia 4\nasiatic 4\nasiatique 2\naside 105\nasile 1\nask 251\naskanazy 1\naskance 4\nasked 777\nasking 121\nasks 21\nasleep 87\nasp 1\nasparagus 2\naspect 55\naspects 21\naspen 3\nasperity 1\naspersion 1\nasphyxia 5\nasphyxiated 1\naspirated 3\naspirating 1\naspiration 3\naspirations 4\naspired 1\naspirin 2\nass 2\nassail 3\nassailant 1\nassailants 1\nassailed 11\nassailing 1\nassassin 1\nassassinated 1\nassassination 4\nassassins 1\nassault 13\nassaulted 2\nassemble 8\nassembled 49\nassemblies 23\nassembling 3\nassembly 40\nassemblymen 1\nassent 9\nassented 14\nassenting 2\nassert 8\nasserted 12\nasserting 2\nassertion 5\nasserts 1\nassess 1\nassessment 2\nassessor 1\nasset 2\nassez 1\nassiduity 1\nassiduous 2\nassiduously 1\nassign 5\nassignat 1\nassignation 1\nassigned 18\nassignment 2\nassimilable 1\nassimilate 1\nassimilated 4\nassimilating 1\nassimilation 3\nassist 13\nassistance 52\nassistant 50\nassistants 10\nassisted 5\nassisting 2\nassizes 7\nassociate 13\nassociated 196\nassociates 6\nassociating 2\nassociation 45\nassociations 7\nassume 71\nassumed 69\nassumes 36\nassuming 12\nassumption 31\nassumptions 2\nassurance 29\nassurances 2\nassure 24\nassured 41\nassuredly 2\nassures 1\nassuring 10\nasterisk 3\nasterisks 1\nastir 3\nastonish 3\nastonished 19\nastonishing 4\nastonishment 28\nastor 1\nastoria 2\nastounded 5\nastounding 13\nastraea 1\nastrakhan 1\nastray 6\nastride 1\nastronomy 9\nastute 6\nastuteness 1\nastwide 2\nasunder 2\nasylum 15\nasylums 3\nat 6791\nataxia 6\nataxic 2\natchison 1\nate 21\natheist 1\natheistic 1\natheistical 1\nathenian 1\nathens 1\natheroma 6\natheromatous 4\nathlete 2\nathletes 2\nathletic 2\nathletics 1\nathwart 2\natkinson 1\natlanta 6\natlantic 24\natlas 1\natmosphere 23\natmospheres 2\natom 4\natomic 1\natoms 5\natone 7\natonement 1\natrocious 2\natrocities 4\natrocity 1\natrophic 3\natrophied 2\natrophy 20\natropin 4\natt 1\nattach 7\nattached 53\nattaches 6\nattaching 5\nattachment 14\nattachments 5\nattack 157\nattacked 65\nattacker 2\nattacking 25\nattacks 66\nattain 50\nattainder 3\nattained 32\nattaining 5\nattainment 10\nattainments 2\nattains 9\nattainted 1\nattempt 76\nattempted 29\nattempting 18\nattempts 46\nattend 29\nattendance 22\nattendant 13\nattendants 4\nattended 132\nattendez 1\nattending 16\nattendre 1\nattends 8\nattention 191\nattentions 9\nattentive 17\nattentively 32\nattenuated 9\nattic 5\nattica 1\nattics 1\nattila 1\nattire 4\nattired 1\nattitude 72\nattitudes 6\nattorney 5\nattorneys 1\nattract 19\nattracted 36\nattracting 5\nattraction 12\nattractions 3\nattractive 23\nattractively 1\nattracts 5\nattribute 10\nattributed 24\nattributes 3\nattributing 2\nau 18\naubert 1\nauckland 1\nauction 4\nauctions 1\naudacious 1\naudacity 5\naudible 23\naudibly 3\naudience 22\naudiences 1\naudit 1\nauditing 1\nauditor 4\nauditoriums 1\nauditory 5\nauersperg 12\nauerstadt 4\naug 1\naugesd 5\naugezd 1\naught 1\naugment 2\naugmented 3\naugments 1\naugury 1\naugust 70\naugusta 2\naugustin 2\naugustine 1\naugustus 1\naunt 52\nauntie 3\naureus 13\nauricle 5\nauricular 10\nauscultating 1\nauscultation 1\nauspices 2\nauspicious 1\nauspiciously 1\naussi 1\naustere 3\nausterity 1\nausterlitz 51\naustin 2\naustralia 10\naustralian 10\naustralians 1\naustria 53\naustrian 71\naustrians 19\naustro 2\nauthentic 3\nauthenticity 1\nauthor 29\nauthorise 1\nauthoritative 2\nauthoritatively 1\nauthorities 54\nauthority 100\nauthorization 1\nauthorize 3\nauthorized 31\nauthorizing 16\nauthors 18\nauto 3\nautobiography 5\nautoclave 1\nautocracy 1\nautocrat 1\nautocratic 5\nautocrats 2\nautogenous 3\nautomatic 3\nautomatically 2\nautomobile 1\nautonomous 2\nautonomy 7\nautoplastic 2\nautre 1\nautumn 46\nautumnal 3\naux 2\nauxiliaries 1\navail 19\navailability 1\navailable 37\navailed 1\navailing 8\navalanche 2\navare 1\navarice 2\nave 1\navec 3\navenge 4\navenged 2\navenue 26\navenues 4\naverage 18\naveraged 1\naverages 1\naveraging 2\naverred 2\naverse 7\naversion 5\navert 11\naverted 7\naverting 3\navez 1\naviation 1\navoid 98\navoidance 2\navoided 56\navoiding 22\navoids 1\navoue 1\navow 1\navowed 8\navulsed 1\navulsing 1\navulsion 9\nawait 18\nawaited 37\nawaiting 53\nawaits 7\nawake 24\nawaked 1\nawaken 6\nawakened 16\nawakening 11\naward 7\nawarded 7\nawards 3\naware 52\nawareness 2\naway 838\nawe 11\nawed 4\nawful 29\nawfully 10\nawhile 15\nawistocwacy 1\nawkward 36\nawkwardly 15\nawkwardness 9\nawl 1\nawls 1\nawoke 19\nawry 4\nax 11\naxe 1\naxes 5\naxilla 37\naxillary 32\naxiom 3\naxis 37\naxles 1\nay 3\naye 3\nayez 1\naylmer 1\nazor 1\nazov 1\nazur 1\nazure 2\nb 87\nba 2\nbabcock 2\nbabe 2\nbabel 1\nbabes 1\nbabies 3\nbabinski 1\nbaboon 4\nbaby 45\nbabyhood 1\nbabylon 1\nbaccelli 1\nbacchus 1\nbache 1\nbachelor 18\nbachelors 2\nbacillary 4\nbacilli 33\nbacillus 68\nback 746\nbackbiter 1\nbacked 8\nbackgammon 1\nbackground 11\nbacking 2\nbacks 9\nbackward 25\nbackwardness 2\nbackwards 17\nbackwash 2\nbackwater 3\nbackwoods 2\nbackwoodsman 1\nbackwoodsmen 1\nbacon 10\nbacteria 115\nbacterial 54\nbactericidal 4\nbacteriological 5\nbacteriology 7\nbacterium 3\nbad 155\nbade 5\nbaden 2\nbadge 6\nbadges 2\nbadly 55\nbadness 1\nbaffled 8\nbaffling 2\nbag 21\nbaggage 39\nbaggers 2\nbagging 2\nbaggy 2\nbagley 1\nbagovut 2\nbagration 156\nbags 14\nbah 2\nbail 3\nbailey 1\nbailiff 2\nbait 2\nbaited 1\nbaits 1\nbaize 4\nbake 2\nbaked 5\nbaker 49\nbakers 3\nbakeshops 1\nbaking 3\nbal 2\nbalaga 20\nbalalayka 6\nbalance 43\nbalanced 6\nbalances 2\nbalancing 3\nbalanitis 3\nbalashav 2\nbalashev 110\nbalcony 11\nbald 82\nbaldly 1\nbaldwin 1\nbaleful 1\nbales 2\nbalfour 1\nbalk 3\nbalkan 1\nbalked 3\nball 124\nballad 1\nballads 1\nballarat 6\nballasted 1\nballet 4\nballoon 9\nballoons 2\nballot 49\nballoted 1\nballoting 1\nballots 3\nballroom 36\nballs 50\nbalmoral 4\nbalsam 2\nbaltic 1\nbaltimore 17\nbaltimores 1\nbalustraded 1\nbalzac 1\nbamboo 1\nban 6\nbanana 1\nbancroft 2\nbancrofti 3\nband 54\nbandage 49\nbandaged 21\nbandages 14\nbanded 3\nbandit 2\nbanditti 1\nbandolier 1\nbandoliers 1\nbands 27\nbandsmen 1\nbandy 6\nbane 1\nbang 7\nbanged 3\nbanging 2\nbanish 1\nbanished 7\nbanishment 2\nbanister 1\nbank 109\nbanker 16\nbankers 9\nbanking 30\nbankrupt 3\nbankruptcies 2\nbankruptcy 5\nbanks 54\nbanner 9\nbanners 6\nbanquet 7\nbanter 2\nbantering 2\nbanteringly 1\nbaptism 2\nbaptismal 1\nbaptist 1\nbaptists 3\nbaptized 2\nbar 25\nbarbadoes 2\nbarbara 5\nbarbarian 2\nbarbarians 1\nbarbaric 2\nbarbarism 3\nbarbarity 2\nbarbarous 2\nbarbed 1\nbarber 4\nbarcarolle 2\nbarclay 52\nbarclays 1\nbardeen 1\nbare 74\nbared 6\nbarefoot 7\nbarefooted 7\nbareheaded 6\nbarely 6\nbarest 2\nbargain 13\nbargained 2\nbargaining 5\nbarge 1\nbargees 1\nbarges 2\nbaring 3\nbaritone 3\nbark 9\nbarked 1\nbarker 1\nbarking 3\nbarks 1\nbarley 4\nbarlow 1\nbarmaid 3\nbarn 17\nbarns 1\nbarometric 1\nbaron 12\nbaroness 1\nbaronet 1\nbaronial 3\nbarony 1\nbarque 7\nbarracks 2\nbarre 3\nbarred 11\nbarrel 7\nbarrelled 1\nbarrels 5\nbarren 4\nbarricade 1\nbarricaded 2\nbarrier 24\nbarriers 8\nbarring 4\nbarrington 2\nbarron 1\nbarrow 1\nbarrowloads 1\nbarry 3\nbars 8\nbart 1\nbartenstein 2\nbarter 1\nbartered 1\nbartering 2\nbarthelemi 1\nbartholomew 2\nbarton 1\nbaryta 1\nbasal 2\nbase 53\nbased 56\nbaseless 1\nbasely 1\nbasement 1\nbaseness 10\nbaser 2\nbases 5\nbashful 2\nbashfully 1\nbashfulness 1\nbasic 6\nbasically 1\nbasil 2\nbasilar 1\nbasilic 4\nbasin 7\nbasins 2\nbasis 40\nbask 1\nbasket 8\nbasketful 1\nbaskets 1\nbasle 1\nbasov 1\nbass 18\nbassano 1\nbassett 4\nbast 12\nbastard 2\nbastards 1\nbastille 3\nbat 2\nbataillons 1\nbatard 1\nbatch 1\nbated 2\nbath 22\nbathe 4\nbathed 10\nbathhouse 2\nbathing 6\nbathroom 2\nbaths 18\nbathtubs 1\nbatiste 1\nbatman 1\nbaton 1\nbattalion 45\nbattalions 26\nbattens 1\nbattered 5\nbatteries 17\nbattery 78\nbattle 440\nbattled 2\nbattlefield 37\nbattlefields 1\nbattleground 1\nbattles 41\nbattleship 2\nbattleships 7\nbattre 1\nbavaria 1\nbavarians 2\nbaxter 1\nbay 23\nbaying 2\nbayonet 5\nbayoneted 1\nbayonets 14\nbazaar 5\nbazaars 1\nbazdeev 10\nbazdeevs 1\nbazin 6\nbc 1\nbe 6155\nbeach 3\nbeacon 1\nbead 3\nbeaded 1\nbeading 1\nbeads 4\nbeak 2\nbeam 3\nbeamed 10\nbeaming 19\nbeams 9\nbean 4\nbeans 1\nbear 86\nbearable 1\nbeard 43\nbearded 6\nbeardless 4\nbeards 3\nbearer 2\nbearers 9\nbearing 42\nbearings 5\nbears 18\nbearskin 2\nbearskins 1\nbeast 26\nbeastly 1\nbeasts 6\nbeat 46\nbeaten 47\nbeatific 4\nbeatified 3\nbeating 21\nbeats 4\nbeatson 5\nbeau 2\nbeauche 1\nbeaucoup 2\nbeauharnais 2\nbeaumarchais 3\nbeausset 25\nbeauties 2\nbeautiful 98\nbeautifully 7\nbeauty 70\nbeaux 1\nbeaver 6\nbecame 314\nbecause 630\nbecher 3\nbeck 3\nbecker 1\nbeckoned 11\nbeckoning 2\nbecome 409\nbecomes 245\nbecoming 82\nbed 221\nbedchamber 3\nbedclothes 5\nbedded 2\nbedding 3\nbedford 2\nbedouin 6\nbedridden 2\nbedroom 45\nbedrooms 3\nbeds 13\nbedside 6\nbedstead 9\nbedsteads 1\nbedtime 1\nbee 15\nbeech 1\nbeecher 4\nbeeches 12\nbeef 10\nbeekeeper 8\nbeekeeping 1\nbeen 2599\nbeer 9\nbees 24\nbeetles 2\nbefall 3\nbefallen 3\nbefalls 1\nbefell 2\nbefits 4\nbefitted 1\nbefitting 2\nbefore 1363\nbeforehand 13\nbefouled 2\nbefriend 1\nbefriended 1\nbeg 56\nbegan 810\nbeget 2\nbeggar 10\nbeggarly 1\nbeggarman 1\nbeggars 3\nbeggary 1\nbegged 34\nbegging 18\nbegin 97\nbeginning 143\nbeginnings 17\nbegins 47\nbegrudge 1\nbegrudged 1\nbegun 99\nbehalf 24\nbehave 19\nbehaved 17\nbehaves 2\nbehaving 5\nbehavior 8\nbehaviour 5\nbeheaded 1\nbeheld 3\nbehind 401\nbehindhand 2\nbehold 4\nbeige 1\nbeing 918\nbeings 12\nbekker 1\nbekleshev 3\nbelabor 1\nbelabored 2\nbelated 3\nbelauded 1\nbelaya 3\nbeleaguered 1\nbelfast 1\nbelfry 2\nbelgian 2\nbelgians 1\nbelgium 7\nbelief 31\nbeliefs 2\nbelieve 183\nbelieved 89\nbeliever 1\nbelieves 10\nbelieving 11\nbell 65\nbelladonna 4\nbelle 1\nbelleau 2\nbelliard 5\nbellicose 1\nbellies 1\nbelligerent 5\nbelligerents 7\nbellowitz 1\nbells 38\nbellum 1\nbelly 11\nbelong 23\nbelonged 39\nbelonging 25\nbelongings 10\nbelongs 15\nbelova 12\nbeloved 19\nbelow 115\nbelt 12\nbelted 2\nbelts 2\nbelying 1\nben 1\nbence 4\nbench 26\nbenches 4\nbend 18\nbended 1\nbending 34\nbendings 1\nbends 2\nbeneath 77\nbenedict 5\nbenediction 1\nbenefactions 2\nbenefactor 31\nbenefactors 4\nbeneficent 7\nbeneficial 19\nbeneficially 1\nbeneficiaries 1\nbeneficiary 2\nbenefit 46\nbenefited 3\nbenefits 5\nbenevolence 3\nbenevolent 6\nbengal 2\nbenign 5\nbenjamin 19\nbennett 1\nbennigsen 78\nbennigsenites 1\nbennigsens 1\nbennington 1\nbent 98\nbenton 3\nbenumbed 1\nbenzol 1\nbequeathed 3\nbequest 1\nberezina 17\nberg 98\nbergs 4\nberi 2\nberinged 2\nberkeley 1\nberks 1\nberkshire 4\nberlin 13\nbermuda 1\nbernadotte 1\nberne 1\nbernhard 1\nberth 2\nberthier 14\nberths 2\nberwick 1\nberyl 4\nberyls 4\nbesashed 1\nbeseech 3\nbeseeching 1\nbeset 7\nbeside 218\nbesides 133\nbesieged 3\nbesought 3\nbesouhoff 1\nbespattered 4\nbespattering 1\nbesprinkled 2\nbessieres 1\nbest 268\nbestial 1\nbestow 6\nbestowed 4\nbesuhof 5\nbet 17\nbeta 1\nbeth 1\nbethink 1\nbethlehem 1\nbetises 2\nbetokening 1\nbetook 1\nbetray 11\nbetrayal 3\nbetrayals 1\nbetrayed 14\nbetraying 12\nbetrays 1\nbetrothal 5\nbetrothed 18\nbets 2\nbettah 1\nbetted 1\nbetter 266\nbetterment 2\nbetting 1\nbetween 654\nbetwixt 1\nbevelled 1\nbeverage 2\nbeverages 1\nbeveridge 2\nbewail 1\nbewails 1\nbeware 5\nbewildered 16\nbewilderment 8\nbewitching 5\nbewitchingly 1\nbexar 1\nbeyond 225\nbezubova 1\nbezukhob 1\nbezukhov 71\nbezukhova 25\nbias 2\nbiassed 1\nbible 11\nbibulous 1\nbicarbonate 1\nbiceps 18\nbicipital 2\nbickering 1\nbicycle 1\nbicycling 1\nbid 7\nbidden 1\nbidder 1\nbidding 2\nbide 1\nbids 2\nbien 2\nbienseance 1\nbier 24\nbifida 1\nbifurcates 2\nbifurcation 8\nbig 82\nbigger 7\nbiggest 1\nbiglow 1\nbigwigs 3\nbijou 1\nbike 1\nbilateral 9\nbile 6\nbilibin 68\nbilious 2\nbill 99\nbillet 4\nbilleted 2\nbillets 1\nbillion 10\nbillions 3\nbillon 4\nbillroth 2\nbills 34\nbilly 1\nbillycock 1\nbimetallism 1\nbimetallist 1\nbin 2\nbinary 5\nbind 22\nbinder 1\nbinding 18\nbinds 1\nbiniodide 3\nbiochemical 1\nbiographical 12\nbiographies 5\nbiography 5\nbiological 2\nbiology 2\nbipolar 2\nbipp 3\nbipped 1\nbirch 19\nbirchbark 1\nbirches 9\nbirchmoor 1\nbirchwood 2\nbird 36\nbirdie 1\nbirds 15\nbiretta 1\nbirmingham 5\nbirney 1\nbirth 28\nbirthday 6\nbirthdays 1\nbirthplace 2\nbirthright 2\nbirths 1\nbiscuit 10\nbiscuits 8\nbisecting 1\nbishop 8\nbishops 4\nbiskra 2\nbismarck 2\nbismuth 20\nbisulphate 1\nbit 63\nbitch 12\nbite 22\nbiter 1\nbites 10\nbiting 9\nbits 8\nbitski 4\nbitten 13\nbitter 47\nbitterest 2\nbitterly 14\nbitterness 15\nbiurate 1\nbivouac 4\nbivouacking 5\nbivouacs 3\nbizarre 5\nbl 1\nblack 235\nblackened 5\nblackest 2\nblackgaurds 2\nblackguard 4\nblackguards 3\nblackish 1\nblackmailed 1\nblackmailing 1\nblacksmith 2\nblacksmithing 1\nblacksmiths 1\nbladder 15\nblade 11\nbladed 1\nblades 4\nblaine 6\nblame 71\nblamed 13\nblameless 1\nblamelessly 1\nblameworthy 3\nblaming 4\nblanche 3\nblanched 1\nbland 6\nblandly 9\nblank 5\nblanket 5\nblankets 6\nblasius 1\nblasphemies 2\nblasphemous 3\nblasphemy 1\nblast 7\nblasted 1\nblasting 1\nblasts 1\nblaze 5\nblazed 6\nblazers 2\nblazing 7\nblazoned 1\nbleached 2\nbleak 4\nbleared 1\nbleating 1\nblebs 4\nbled 5\nbleed 20\nbleeder 4\nbleeders 11\nbleeding 80\nbleeds 2\nblemishes 1\nblend 4\nblended 5\nblending 3\nbless 10\nblessed 10\nblessedness 7\nblessing 17\nblessings 4\nblest 1\nblew 11\nblight 1\nblind 23\nblinded 1\nblindfold 4\nblindfolded 4\nblinding 1\nblindman 4\nblindness 3\nblinds 7\nblink 2\nblinked 2\nblinking 5\nbliss 12\nblissful 9\nblissfully 1\nblister 22\nblistering 4\nblisters 30\nbloated 2\nbloc 1\nbloch 1\nblock 14\nblockade 21\nblockaded 3\nblockades 2\nblockading 3\nblocked 30\nblockhead 5\nblockhouses 1\nblocking 22\nblockquote 1\nblocks 5\nbloke 1\nblonde 9\nblood 548\nblooded 3\nbloodgood 1\nbloodless 9\nbloodlessly 2\nbloodshed 4\nbloodshot 5\nbloodstained 11\nbloodstains 2\nbloodthirsty 5\nbloody 14\nbloom 5\nblooming 1\nbloomsbury 1\nblossom 5\nblossoming 2\nblossoms 2\nblot 2\nblotch 3\nblotched 1\nblotches 3\nblotted 3\nblotting 2\nblow 72\nblowing 15\nblown 12\nblows 16\nblubberers 1\nbludgeon 1\nblue 143\nbluebeard 1\nbluestocking 2\nbluff 5\nbluish 21\nblunder 5\nblundered 4\nblundering 3\nblunders 6\nblunt 15\nblunted 1\nbluntly 5\nbluntness 2\nblur 1\nblurred 1\nblurs 1\nblurt 1\nblurted 1\nblush 9\nblushed 48\nblushes 3\nblushing 30\nblushingly 1\nbluster 1\nboa 1\nboard 34\nboarded 3\nboarding 3\nboards 15\nboast 4\nboasted 9\nboastful 1\nboasting 5\nboat 11\nboatload 2\nboatmen 1\nboats 11\nbob 3\nbobby 1\nbobtail 1\nbobtailed 5\nboded 1\nbodes 1\nbodice 5\nbodices 2\nbodied 4\nbodies 92\nbodily 6\nbody 337\nbodyguard 2\nboer 1\nboeuf 2\nbog 2\nbogart 4\nbogdanich 14\nbogdanovich 1\nbogdanovna 10\nboggy 2\nbogota 1\nbogucharovo 48\nbohemia 15\nbohemian 8\nboil 17\nboiled 15\nboiler 5\nboilers 3\nboiling 17\nboils 17\nboire 1\nboisterous 4\nbold 38\nbolder 1\nboldest 2\nbolding 1\nboldly 36\nboldness 10\nbolivia 1\nbolkhovitinov 13\nbolkonskaya 10\nbolkonski 178\nbolkonskis 2\nbolotnoe 1\nbolsheviki 1\nbolshevism 1\nbolshevists 1\nbolster 1\nbolt 5\nbolted 3\nbolts 4\nbomb 2\nbombard 1\nbombarded 1\nbombardment 3\nbombay 1\nbomber 1\nbombs 4\nbonanza 1\nbonaparte 94\nbonapartist 3\nbond 26\nbondage 15\nbondarchuk 2\nbondarenko 2\nbonded 1\nbondholders 1\nbondman 2\nbondmen 13\nbonds 52\nbone 625\nboned 5\nbones 262\nbonfire 3\nbonfires 4\nbonheur 1\nbonjour 3\nbonne 2\nbonnet 8\nbonniest 1\nbonny 1\nbons 2\nbonus 2\nbony 37\nbooby 1\nbook 125\nbookcase 2\nbookcases 1\nbooked 1\nbooking 1\nbookish 2\nbooklet 1\nbooks 59\nbookshop 1\nboom 14\nboomed 5\nbooming 4\nboon 5\nboone 13\nboonesboro 1\nboor 1\nboorishness 3\nboost 2\nboot 22\nbooted 2\nbooth 1\nbooths 1\nbootmaker 1\nbootmakers 2\nboots 91\nbooty 9\nboracic 16\nbordeaux 4\nborder 47\nbordered 5\nbordering 2\nbordermen 1\nborders 17\nbore 46\nbored 10\nboredom 1\nborgeaud 1\nboring 6\nboris 293\nborisov 1\nborn 38\nborne 40\nborodino 108\nborough 1\nboroughs 3\nborovitski 1\nborovsk 2\nborrow 6\nborrowed 16\nborrowers 3\nborrowing 3\nborrowings 1\nbory 5\nborzoi 18\nborzois 34\nborzozowska 1\nboscombe 16\nbosnia 1\nbosom 21\nbosoms 1\nboss 5\nbosse 2\nbossed 1\nbosses 10\nbossing 4\nboston 64\nboswell 1\nbotanist 3\nbotany 2\nboth 529\nbother 4\nbothering 2\nbothnia 1\nbottle 46\nbottles 14\nbottom 42\nbottoms 2\nbough 1\nboughs 1\nbought 55\nbougies 1\nboulevard 6\nboulevards 2\nboulogne 4\nboulton 1\nbounce 1\nbound 95\nboundaries 14\nboundary 27\nbounded 10\nbounding 3\nboundless 5\nbounds 13\nbounteous 1\nbounties 8\nbounty 3\nbouquet 4\nbourbon 2\nbourbons 8\nbourgeois 2\nbourienne 130\nbout 2\nbouts 2\nbovine 6\nbow 43\nbowdoin 3\nbowed 71\nbowel 4\nbowels 10\nbower 4\nbowie 2\nbowing 28\nbowl 6\nbowled 1\nbowler 1\nbowls 2\nbows 8\nbowwowing 1\nbox 75\nboxed 1\nboxer 7\nboxers 2\nboxes 16\nboxing 3\nboy 169\nboyars 7\nboycott 1\nboycotted 1\nboyfriend 1\nboyhood 3\nboyish 4\nboys 21\nbr 1\nbrace 4\nbraced 5\nbracelets 2\nbraces 3\nbrachial 22\nbrachialis 5\nbrachio 1\nbracket 1\nbrackets 1\nbraddock 5\nbradford 2\nbradley 1\nbradshaw 2\nbradstreet 12\nbrag 1\nbragg 2\nbraggart 1\nbragging 2\nbraided 2\nbraiding 1\nbrain 58\nbrains 8\nbrake 2\nbramble 1\nbramwell 2\nbranch 52\nbranched 1\nbranches 66\nbranchial 4\nbranching 3\nbrand 4\nbranded 5\nbranding 1\nbrandish 1\nbrandishing 2\nbrandon 1\nbrandy 15\nbrandywine 3\nbrasdor 3\nbrass 8\nbrassy 2\nbrat 1\nbraunau 14\nbravado 1\nbrave 28\nbraved 5\nbravely 3\nbraver 2\nbravery 4\nbravest 5\nbraving 1\nbravo 5\nbravoure 1\nbrawler 1\nbrawls 1\nbrawny 2\nbrazen 5\nbrazier 2\nbrazil 4\nbreach 21\nbreaches 2\nbread 34\nbreadth 12\nbreak 96\nbreakdown 1\nbreakers 2\nbreakfast 33\nbreakfasting 2\nbreakfasts 2\nbreaking 61\nbreaks 17\nbreakup 1\nbreast 86\nbreasted 1\nbreastpin 1\nbreasts 2\nbreath 38\nbreathe 10\nbreathed 9\nbreathes 1\nbreathing 43\nbreathless 13\nbreathlessly 5\nbreckinridge 15\nbred 10\nbreech 2\nbreeches 21\nbreed 6\nbreeding 4\nbreeds 1\nbreeze 6\nbreezy 1\nbremen 1\nbrest 1\nbrethren 6\nbrevis 1\nbrewer 1\nbrewery 1\nbrewing 1\nbrian 1\nbriar 1\nbribe 2\nbribed 4\nbribery 3\nbribes 3\nbrick 14\nbrickish 1\nbricklayers 2\nbricklaying 1\nbricks 7\nbridal 2\nbride 11\nbridegroom 8\nbridge 156\nbridged 1\nbridgehead 3\nbridges 17\nbridging 3\nbridle 5\nbridled 3\nbridles 2\nbrief 25\nbriefer 1\nbriefest 2\nbriefly 16\nbriefs 1\nbrig 1\nbrigade 7\nbrigadier 1\nbrigand 7\nbrigands 6\nbrigham 5\nbright 114\nbrighten 1\nbrightened 15\nbrightening 4\nbrightens 2\nbrighter 16\nbrightest 4\nbrightly 29\nbrightness 7\nbrilliance 2\nbrilliancy 2\nbrilliant 85\nbrilliantly 5\nbrim 5\nbrimful 1\nbrimmed 4\nbrimming 1\nbrims 1\nbrindled 1\nbring 165\nbringing 48\nbrings 10\nbrink 4\nbriony 11\nbrisk 10\nbrisker 1\nbriskly 19\nbriskness 3\nbristled 1\nbristling 2\nbristly 1\nbristol 9\nbritain 77\nbritannica 3\nbritish 265\nbriton 1\nbrittle 9\nbrixton 6\nbroad 92\nbroadcast 4\nbroadcloth 1\nbroaden 2\nbroadened 5\nbroadening 1\nbroader 6\nbroadest 3\nbroadly 4\nbroadsheet 6\nbroadsheets 11\nbroadsides 2\nbroadway 1\nbrochure 1\nbrodie 14\nbroke 95\nbroken 127\nbroker 1\nbromides 3\nbronchial 8\nbronchiectasis 1\nbronchitis 1\nbroncho 1\nbronnikov 1\nbronnitski 1\nbronnitskis 1\nbronze 3\nbronzes 3\nbrooch 1\nbrood 6\nbrooded 1\nbrooding 3\nbrook 7\nbrooklyn 1\nbrooks 4\nbroom 3\nbrothels 1\nbrother 177\nbrotherhood 19\nbrotherhoods 3\nbrotherly 7\nbrothers 50\nbrougham 4\nbrought 406\nbroussier 5\nbrow 21\nbrowed 1\nbrown 71\nbrownish 14\nbrows 32\nbrowsing 1\nbrozin 1\nbruce 4\nbruin 2\nbruise 5\nbruised 21\nbruises 5\nbruising 9\nbruit 10\nbrumaire 2\nbrunette 1\nbrunn 12\nbrunswick 1\nbrunt 2\nbrush 18\nbrushed 21\nbrushes 1\nbrushing 1\nbrushwood 1\nbrusque 3\nbrusquely 1\nbrussels 1\nbrutal 6\nbrutally 2\nbrute 7\nbrutes 2\nbrutus 1\nbryan 25\nbryant 1\nbryce 5\nbryn 1\nbu 1\nbubble 1\nbubbles 1\nbubbling 1\nbubo 9\nbuboes 2\nbubonic 1\nbuchanan 7\nbucharest 3\nbuck 2\nbucket 3\nbuckle 4\nbuckled 4\nbuckles 1\nbucks 1\nbuckwheat 5\nbud 3\nbuddha 1\nbuddhist 1\nbudding 2\nbudge 3\nbudget 4\nbuds 6\nbuena 1\nbuff 3\nbuffalo 12\nbuffaloes 1\nbuffets 2\nbuffoon 10\nbuffoons 1\nbug 1\nbuggy 1\nbugle 2\nbugler 4\nbuild 17\nbuilder 3\nbuilders 8\nbuilding 53\nbuildings 19\nbuilt 77\nbulb 2\nbulbous 6\nbulgaria 3\nbulge 2\nbulged 2\nbulges 2\nbulging 2\nbulk 9\nbulkier 1\nbulkiest 1\nbulky 8\nbull 6\nbullae 5\nbulldog 2\nbullet 46\nbulletin 3\nbullets 43\nbullion 2\nbully 3\nbulwark 2\nbulwarks 1\nbulwer 1\nbumblebee 1\nbumblebees 1\nbump 4\nbumped 1\nbumping 1\nbunch 5\nbunches 3\nbundle 13\nbundles 24\nbunion 2\nbunker 4\nbunks 1\nbunsen 1\nbunt 1\nbunting 1\nbunyan 1\nbuonaparte 30\nbuonapartes 1\nbuonapartists 1\nbuoyant 2\nbuoyed 1\nburden 34\nburdened 9\nburdening 2\nburdens 9\nburdensome 4\nburdino 1\nbureau 19\nbureaucracy 1\nbureaucratic 1\nburen 12\nburgess 1\nburgesses 3\nburgher 1\nburghers 1\nburglar 1\nburglaries 1\nburglars 1\nburgled 2\nburgoyne 7\nburgundy 1\nburial 2\nburied 21\nburke 23\nburlington 1\nburly 1\nburn 40\nburned 77\nburning 83\nburnished 1\nburnol 2\nburnoose 1\nburns 58\nburnside 1\nburnt 8\nburnwell 7\nburr 6\nburri 2\nburroughs 1\nburrow 3\nburrowing 2\nburrows 2\nbursa 75\nbursae 38\nbursal 16\nbursata 2\nbursitis 16\nburst 73\nbursting 16\nbursts 9\nbury 8\nburying 3\nbus 1\nbush 8\nbushel 5\nbushels 4\nbushes 29\nbushy 9\nbusied 2\nbusier 1\nbusily 4\nbusiness 316\nbusinesslike 5\nbusinessman 1\nbusinessmen 2\nbust 3\nbustle 12\nbustled 2\nbustling 7\nbustlingly 1\nbusts 1\nbusy 55\nbusybody 1\nbusying 1\nbut 5653\nbutcher 3\nbutchers 1\nbute 1\nbutler 14\nbutt 7\nbutte 1\nbutted 1\nbutter 3\nbutterflies 1\nbutterfly 2\nbuttermilk 2\nbuttock 23\nbuttocks 6\nbutton 14\nbuttoned 10\nbuttonhole 1\nbuttoning 8\nbuttons 8\nbutts 1\nbuxhowden 13\nbuxton 2\nbuy 50\nbuyer 2\nbuyers 2\nbuying 15\nbuzz 5\nbuzzed 1\nbuzzing 10\nbweak 3\nbweed 1\nbwethwen 1\nbwicks 1\nbwing 6\nbwinging 1\nbwother 2\nbwought 1\nbwushed 1\nbwute 2\nby 6738\nbye 7\nbykov 1\nbyrom 2\nbyron 1\nbystanders 1\nbyways 1\nc 143\nca 1\ncab 33\ncabal 2\ncabalistic 2\ncabbage 5\ncabby 1\ncabin 9\ncabinet 18\ncabins 4\ncable 3\ncabman 8\ncabmen 1\ncabot 3\ncabriolet 1\ncabs 3\ncachectic 1\ncachets 1\ncachexia 6\ncackle 1\ncacodylate 1\ncactus 1\ncadaver 2\ncadaverous 1\ncadet 25\ncadets 1\ncady 3\ncaecum 2\ncaesar 10\ncaesars 3\ncafe 1\ncaffein 1\ncage 5\ncaged 1\ncahd 2\ncain 1\ncaird 1\ncairo 1\ncaisson 1\ncaissons 2\ncajolery 1\ncake 6\ncakelike 1\ncakes 5\ncal 1\ncalamine 1\ncalamities 6\ncalamitous 1\ncalamity 17\ncalcanean 2\ncalcaneus 14\ncalcareous 6\ncalcification 17\ncalcified 9\ncalcined 1\ncalcis 1\ncalcium 5\ncalculate 7\ncalculated 19\ncalculating 2\ncalculation 7\ncalculations 4\ncalculus 1\ncalcutta 2\ncalder 2\ncaldrons 3\ncaleb 1\ncaleche 29\ncaleches 3\ncalendar 2\ncalendars 1\ncalf 17\ncalhoun 38\ncalibre 5\ncalibres 1\ncalico 1\ncalifornia 55\ncalifornian 1\ncalifornians 1\ncaliforny 1\ncalkers 1\ncall 197\ncalled 450\ncallender 23\ncallers 2\ncalling 62\ncallings 1\ncallosities 7\ncallosity 4\ncallous 12\ncalls 29\ncallus 10\ncalm 91\ncalmed 3\ncalmer 6\ncalmette 1\ncalming 2\ncalmly 28\ncalmness 3\ncalms 1\ncalomel 7\ncalorie 1\ncaltrops 1\ncalumny 1\ncalvaria 1\ncalves 3\ncalvin 2\ncamberwell 2\ncambon 1\ncambric 2\ncambridge 7\ncamden 6\ncame 979\ncamel 3\ncamelia 3\ncameo 2\ncamera 2\ncameron 1\ncamlet 1\ncamp 138\ncampaign 190\ncampaigned 1\ncampaigner 1\ncampaigning 3\ncampaigns 21\ncampan 8\ncampbell 1\ncamped 1\ncampfire 18\ncampfires 31\ncamphor 1\ncamping 1\ncampo 1\ncamps 9\ncampstool 3\ncan 1095\ncanada 28\ncanadian 5\ncanadians 2\ncanal 72\ncanalised 1\ncanals 35\ncancel 1\ncanceled 3\ncancellated 1\ncancellation 1\ncancelli 1\ncancellous 13\ncancer 170\ncancerous 17\ncancers 12\ncancrum 7\ncandid 6\ncandidacy 2\ncandidate 56\ncandidates 28\ncandidly 1\ncandle 36\ncandlelight 1\ncandles 28\ncandlestick 3\ncandlesticks 1\ncandor 1\ncandy 1\ncane 5\ncanister 1\ncanned 1\ncanneries 1\ncanning 2\ncannon 94\ncannonade 12\ncannonading 2\ncannons 1\ncannot 277\ncannula 8\ncanoe 1\ncanon 4\ncanonized 1\ncanopy 4\ncanst 1\ncantata 2\ncanteen 6\ncanteenkeeper 1\ncanter 1\ncantharides 3\ncantharidis 1\ncanthus 2\ncantigny 2\ncanton 2\ncanvas 4\ncanvass 1\ncanyon 1\ncap 97\ncapabilities 2\ncapability 1\ncapable 54\ncapacious 1\ncapacities 1\ncapacity 39\ncape 3\ncaper 1\ncapered 1\ncapers 2\ncapillaries 17\ncapillary 24\ncapitaine 1\ncapital 144\ncapitale 1\ncapitalism 1\ncapitalist 4\ncapitalists 12\ncapitally 3\ncapitals 5\ncapitation 1\ncapitis 1\ncapitol 2\ncapitulation 6\ncapless 2\ncapotes 1\ncaprice 8\ncaprices 1\ncapricious 1\ncapriciously 1\ncaps 19\ncapsicum 1\ncapsular 11\ncapsulatus 3\ncapsule 33\ncapsules 1\ncaptain 127\ncaptaincy 2\ncaptains 12\ncaptivated 2\ncaptivating 1\ncaptive 7\ncaptives 1\ncaptivity 10\ncaptors 2\ncapture 44\ncaptured 55\ncaptures 2\ncapturing 6\ncar 7\ncarabineers 1\ncaraffe 1\ncaravan 3\ncaravans 2\ncarbohydrates 1\ncarbolic 31\ncarbolised 1\ncarbon 12\ncarbonate 6\ncarbuncle 17\ncarbuncles 2\ncarcinoma 10\ncarcinomatous 1\ncard 30\ncardboard 8\ncardiac 14\ncardinal 4\ncardinell 1\ncarding 1\ncardplayer 1\ncards 47\ncare 106\ncared 14\ncareening 1\ncareer 39\ncareers 1\ncarefree 2\ncareful 43\ncarefully 72\ncareless 14\ncarelessly 14\ncarelessness 4\ncarer 1\ncares 20\ncaress 3\ncaressed 4\ncaressing 10\ncaret 1\ncareworn 3\ncargo 5\ncargoes 4\ncaribbean 18\ncaricature 1\ncaries 24\ncarious 9\ncarl 3\ncarlo 2\ncarlsbad 1\ncarlton 4\ncarlyle 1\ncarnage 1\ncarnegie 3\ncarnival 1\ncarnivora 1\ncarolina 97\ncarolinas 17\ncaroline 2\ncarolinians 1\ncarotid 26\ncarousal 1\ncarousals 3\ncarp 1\ncarpal 8\ncarpenter 4\ncarpenters 10\ncarpentry 1\ncarpet 21\ncarpeted 3\ncarpets 13\ncarpi 6\ncarping 1\ncarpus 2\ncarranza 3\ncarree 1\ncarrel 3\ncarriage 143\ncarriages 42\ncarried 282\ncarrier 2\ncarriers 6\ncarries 9\ncarrion 1\ncarron 2\ncarrot 2\ncarry 103\ncarrying 87\ncarryings 1\ncars 7\ncarson 1\ncart 56\ncarta 2\ncarte 2\ncarted 5\ncarter 1\ncarteret 1\ncarterets 1\ncarters 1\ncartier 1\ncartilage 104\ncartilages 10\ncartilaginous 26\ncarting 6\ncartload 1\ncartloads 1\ncartoon 5\ncartoons 1\ncartridge 2\ncartridges 1\ncarts 83\ncartwright 1\ncarve 2\ncarved 7\ncarving 2\ncascade 1\ncase 438\ncaseated 6\ncaseating 3\ncaseation 17\ncaseful 1\ncasement 5\ncaseous 12\ncases 453\ncash 11\ncashbox 1\ncashier 2\ncasket 5\ncaskets 1\ncasque 1\ncassel 2\ncassette 1\ncassock 2\ncast 54\ncastanet 1\ncastanets 1\ncaste 2\ncasting 11\ncastle 14\ncastor 2\ncastrated 1\ncastres 2\ncasts 1\ncasual 9\ncasually 10\ncasualties 1\ncasualty 2\ncat 10\ncataclysm 2\ncataclysms 1\ncatacombs 3\ncatafalque 1\ncatalepsy 2\ncatalogue 2\ncataloguers 2\ncatarrh 4\ncatastrophe 8\ncatch 45\ncatcher 1\ncatches 5\ncatching 18\ncatchplay 1\ncatchwords 1\ncatechism 1\ncatechisms 1\ncategories 3\ncategory 9\ncater 1\ncatgut 22\ncatharine 1\ncathcart 2\ncathedral 13\ncathedrals 1\ncatherine 26\ncatheter 3\ncatheterising 1\ncatholic 10\ncatholicism 1\ncatholics 9\ncatiche 10\ncatlike 1\ncats 2\ncattle 42\ncattlemen 1\ncaucasus 2\ncaucus 9\ncaucuses 3\ncaught 90\ncaulaincourt 6\ncauldron 2\ncauliflower 7\ncausal 2\ncausalgia 1\ncausation 15\ncausations 1\ncausative 5\ncausatively 1\ncause 376\ncaused 102\ncauseless 1\ncauses 149\ncausing 54\ncaustic 13\ncaustics 3\ncaustique 2\ncauteries 1\ncauterisation 4\ncauterise 1\ncauterised 7\ncautery 19\ncaution 18\ncautioned 1\ncautious 10\ncautiously 12\ncava 3\ncavae 1\ncavalcade 1\ncavalier 3\ncavaliers 1\ncavalry 79\ncavalryman 5\ncavalrymen 6\ncave 3\ncaved 1\ncavern 2\ncavernous 12\ncaverns 2\ncavities 29\ncavity 96\ncawing 2\ncawolla 1\nce 11\ncease 38\nceased 63\nceaseless 4\nceaselessly 1\nceases 13\nceasing 2\ncecil 1\ncecilia 1\ncedar 2\ncedars 3\nceded 8\nceding 2\nceiling 15\nceilings 1\ncela 2\ncelebrate 6\ncelebrated 23\ncelebrates 1\ncelebrating 3\ncelebration 4\ncelebrations 1\ncelebres 1\ncelebrity 1\ncelerity 2\ncelestial 3\ncell 12\ncellar 22\ncellaret 1\ncellars 3\ncelled 7\ncells 130\ncellular 70\ncellulitic 1\ncellulitis 40\ncelsus 1\nceltic 3\ncelui 2\ncement 4\ncemetery 2\ncenser 1\ncensers 1\ncensor 2\ncensorship 5\ncensure 9\ncensured 3\ncensuring 1\ncensus 8\ncent 77\ncentennial 1\ncenter 70\ncentered 13\ncenters 21\ncentimetres 1\ncentral 76\ncentralization 3\ncentralized 2\ncentre 50\ncentred 2\ncentres 7\ncentrifugal 1\ncents 11\ncenturies 12\ncentury 93\ncependant 1\ncephalic 4\ncereal 1\ncereals 2\ncerebellum 1\ncerebral 8\ncerebritis 1\ncerebro 5\nceremonial 4\nceremonies 6\nceremonious 2\nceremoniously 2\nceremony 17\ncertain 361\ncertainly 119\ncertains 1\ncertainty 13\ncertificate 2\ncertificates 6\ncertify 2\ncervera 1\ncervical 40\nces 1\ncessation 5\ncession 12\ncessions 1\ncet 1\ncette 6\ncf 11\nch 3\nchadwick 3\nchafe 1\nchafed 3\nchaff 1\nchaffed 2\nchaffering 2\nchaffing 5\nchaffingly 1\nchafing 1\nchagrin 5\nchagrined 3\nchain 30\nchained 1\nchains 14\nchair 135\nchairman 7\nchairs 29\nchaise 1\nchaises 1\nchale 3\nchalice 1\nchalk 13\nchalked 1\nchalks 1\nchalky 2\nchallenge 31\nchallenged 12\nchallenges 2\nchallenging 5\nchallengingly 1\nchalme 1\nchamber 35\nchamberlain 3\nchambers 6\nchamois 3\nchamp 1\nchampagne 10\nchamping 1\nchampion 9\nchampioned 4\nchampions 3\nchampionship 2\nchamps 1\nchance 96\nchanced 8\nchancellor 7\nchancery 1\nchances 18\nchancre 30\nchancres 8\nchancroid 3\nchandelier 1\nchandeliers 1\nchange 150\nchanged 134\nchangers 1\nchanges 168\nchanging 44\nchannel 16\nchannels 14\nchanning 5\nchant 1\nchante 1\nchanter 3\nchanters 2\nchanting 3\nchantry 3\nchaos 8\nchap 9\nchapel 8\nchaplain 1\nchaps 6\nchapter 464\nchapters 3\ncharacter 174\ncharacterise 5\ncharacterised 25\ncharacterises 1\ncharacteristic 97\ncharacteristically 6\ncharacteristics 14\ncharacterize 2\ncharacterized 15\ncharacters 69\ncharcoal 10\ncharcot 19\ncharge 70\ncharged 28\ncharges 18\ncharging 4\ncharing 2\nchariot 1\ncharitable 7\ncharities 3\ncharity 7\ncharlatan 1\ncharles 40\ncharleston 24\ncharlie 1\ncharlotte 1\ncharm 31\ncharmant 3\ncharmante 3\ncharme 1\ncharmed 4\ncharmee 1\ncharmer 3\ncharming 62\ncharmingly 1\ncharms 3\ncharon 2\ncharpie 1\ncharred 9\ncharring 4\nchart 12\ncharter 32\nchartered 9\nchartering 1\ncharters 12\ncharts 2\nchary 1\nchas 1\nchase 20\nchased 5\nchasers 1\nchasing 2\nchasm 2\nchasseur 1\nchasseurs 7\nchaste 1\nchastened 1\nchat 9\nchateau 3\nchateaubriand 5\nchatham 3\nchatrov 1\nchats 1\nchattanooga 3\nchatted 5\nchattel 6\nchatter 8\nchattered 5\nchattering 4\nchatting 2\nchatty 1\nchaucer 1\ncheadle 1\ncheap 15\ncheaper 4\ncheapest 2\ncheaply 2\ncheapness 3\ncheat 4\ncheating 3\ncheck 38\nchecked 22\ncheckerboards 1\nchecking 5\ncheckmate 1\ncheckmated 1\nchecks 6\ncheek 43\ncheekbones 4\ncheeked 1\ncheeks 47\ncheer 5\ncheered 10\ncheerful 52\ncheerfully 13\ncheerfulness 5\ncheerily 2\ncheering 2\ncheerless 2\ncheers 6\ncheery 3\ncheese 5\ncheetah 6\nchef 2\ncheilotomy 1\nchekmar 3\ncheloid 1\nchemical 35\nchemically 1\nchemicals 1\nchemiotaxis 1\nchemise 1\nchemist 3\nchemistry 6\nchemists 1\nchemotaxis 1\ncheque 2\ncher 25\nchere 9\ncherish 6\ncherished 14\ncherishing 2\nchernyshev 8\ncherokee 1\ncherokees 1\ncherry 9\ncherubini 1\nchesapeake 3\nchess 5\nchessboard 1\nchessmen 3\nchessplayer 1\nchest 81\nchester 3\nchesterfield 1\nchestnut 15\nchests 1\nchevalier 4\nchevaliers 2\nchew 1\nchewed 1\nchewing 4\ncheyenne 1\nchi 1\nchicago 28\nchichagov 10\nchickamauga 2\nchicken 6\nchickens 3\nchiding 1\nchief 359\nchiefly 134\nchiefs 3\nchieftain 2\nchiene 1\nchiffon 1\nchiffonier 3\nchigirin 2\nchigoe 4\nchilblain 4\nchilblains 7\nchild 176\nchildbearing 1\nchildbed 1\nchildhood 41\nchildish 25\nchildishly 2\nchildishness 2\nchildless 1\nchildlike 24\nchildren 231\nchildwen 1\nchile 1\nchill 16\nchilled 2\nchillicothe 1\nchilliness 5\nchills 2\nchilly 4\nchime 1\nchimed 8\nchimera 1\nchimerical 1\nchimes 2\nchiming 1\nchimney 11\nchimneys 3\nchimpanzee 1\nchin 30\nchina 43\nchinaware 1\nchinchilla 1\nchinese 24\nchink 2\nchinks 1\nchinoises 1\nchins 1\nchintz 2\nchip 5\nchipault 1\nchips 1\nchiropodists 1\nchirped 2\nchirping 2\nchirruping 1\nchisel 12\nchiselled 2\nchiselling 1\nchit 4\nchivalrous 3\nchivalry 6\nchloral 4\nchlorate 1\nchloride 7\nchlorine 3\nchloroform 4\nchloroma 2\nchlorosis 1\nchoate 1\nchocolate 6\nchoice 46\nchoicest 2\nchoir 8\nchoirs 2\nchoke 2\nchoked 14\nchoking 10\ncholera 1\ncholeric 2\ncholestrol 3\nchondral 3\nchondro 13\nchondroma 27\nchondromas 14\nchondromata 1\nchondromatosis 2\nchoose 54\nchooses 1\nchoosing 20\nchop 1\nchopped 1\nchoppers 1\nchopping 2\nchord 6\nchordoma 2\nchords 3\nchorea 1\nchoroiditis 3\nchorus 6\nchose 34\nchosen 73\nchris 1\nchrist 32\nchristendom 1\nchristened 3\nchristian 16\nchristianity 5\nchristians 7\nchristine 1\nchristmas 24\nchristmastime 1\nchristopher 3\nchromatic 2\nchromic 1\nchromicised 1\nchronic 121\nchronicle 7\nchronicler 1\nchroniclers 1\nchronicles 3\nchronological 2\nchubb 1\nchubby 1\nchuck 1\nchucked 2\nchuckle 2\nchuckled 7\nchuckling 1\nchum 1\nchurch 117\nchurches 34\nchurchill 1\nchurchyard 1\nchurlish 1\nchurned 1\nchurning 1\nchyle 8\nchylo 2\nchylorrhoea 2\nchylous 3\nchyluria 1\ncicatrices 6\ncicatricial 41\ncicatrisation 7\ncicatrise 1\ncicatrix 16\ncicero 1\ncider 1\ncigar 15\ncigarette 6\ncigarettes 1\ncigars 7\nciliary 2\ncincinnati 6\ncinder 1\ncinema 1\ncircassian 6\ncircle 78\ncircled 1\ncircles 36\ncirclet 1\ncircuit 4\ncircuiting 1\ncircuits 1\ncircular 24\ncirculate 4\ncirculated 5\ncirculates 1\ncirculating 22\ncirculation 93\ncirculatory 3\ncircumcision 2\ncircumference 2\ncircumflex 3\ncircumscribed 24\ncircumscribes 1\ncircumspect 2\ncircumspection 1\ncircumspectly 2\ncircumstance 7\ncircumstances 107\ncircumstantial 3\ncircumstantially 1\ncircumvented 2\ncircus 1\ncirrhosis 2\ncirsoid 9\ncitadel 5\ncite 1\ncited 10\ncities 77\ncitizen 28\ncitizenesses 1\ncitizens 109\ncitizenship 14\ncitrate 1\ncity 180\ncivic 3\ncivics 1\ncivil 177\ncivilian 19\ncivilians 12\ncivilisation 2\ncivilised 2\ncivilities 2\ncivility 2\ncivilization 41\ncivilized 11\nclad 14\ncladius 1\nclaim 43\nclaimant 1\nclaimants 1\nclaimed 22\nclaiming 6\nclaims 40\nclair 27\nclamber 1\nclambered 3\nclammy 5\nclamor 10\nclamored 3\nclamp 3\nclamped 4\nclamping 1\nclamps 1\nclan 1\nclandestine 2\nclang 5\nclanging 3\nclank 1\nclanking 4\nclannish 1\nclaparede 5\nclapped 7\nclapper 2\nclapping 6\nclara 2\nclare 1\nclarendon 2\nclaret 3\nclarification 1\nclarify 2\nclarifying 1\nclarion 1\nclarity 1\nclark 13\nclarke 1\nclash 16\nclashed 3\nclashes 2\nclasp 3\nclasped 11\nclasping 3\nclaspings 1\nclass 73\nclassed 2\nclasses 30\nclassic 6\nclassical 6\nclassically 1\nclassification 14\nclassified 6\nclassify 1\nclassroom 3\nclatter 12\nclattered 3\nclattering 3\nclaude 1\nclaudication 2\nclause 15\nclauses 3\nclausewitz 1\nclaviceps 1\nclavichord 22\nclavicle 20\nclavicles 1\nclavicular 9\nclaw 5\nclaws 3\nclay 72\nclayton 5\nclean 61\ncleaned 6\ncleaner 1\ncleanest 2\ncleaning 6\ncleanliness 13\ncleanly 3\ncleanse 5\ncleansed 5\ncleansing 5\nclear 233\nclearance 1\nclearcut 1\ncleared 53\nclearer 11\nclearest 2\nclearheadedness 1\nclearing 29\nclearings 3\nclearly 130\nclearness 12\nclears 2\ncleavage 1\ncleaver 2\ncleaving 1\ncleft 1\nclefts 3\nclemenceau 3\nclemency 3\nclement 1\nclench 1\nclenched 4\nclenching 3\ncleopatra 1\nclergy 19\nclergyman 9\nclergymen 3\nclerical 8\nclerk 25\nclerks 8\ncleveland 42\nclever 56\ncleverer 3\ncleverest 2\ncleverly 2\ncleverness 6\nclick 6\nclicked 3\nclient 33\nclients 3\ncliff 2\nclifford 1\ncliffs 3\nclimate 15\nclimax 8\nclimb 6\nclimbed 13\nclimber 1\nclimbing 3\nclinch 2\nclinched 1\nclinching 1\ncling 4\nclinging 9\nclinic 1\nclinical 160\nclinically 27\nclinics 1\nclink 3\nclinked 1\nclinking 3\nclinton 4\nclip 5\nclipped 3\nclipping 2\nclips 2\ncloaca 2\ncloacae 4\ncloak 62\ncloaks 9\nclock 120\nclocks 1\nclodhoppers 1\ncloister 1\nclonic 6\nclose 219\nclosed 174\nclosely 95\ncloseness 3\ncloser 35\ncloses 6\nclosest 2\ncloset 1\nclosing 35\nclosure 6\nclot 70\ncloth 38\nclothe 3\nclothed 6\nclothes 62\nclothing 26\ncloths 5\nclotilde 1\nclots 10\nclotted 1\nclotting 3\ncloud 30\nclouded 6\ncloudless 3\ncloudlets 2\nclouds 44\ncloudy 3\nclown 2\nclowns 1\nclub 71\nclubbing 2\nclubs 7\nclucked 1\nclue 19\nclues 3\nclump 4\nclumps 1\nclumsily 2\nclumsy 8\nclung 18\ncluster 5\nclustered 1\nclusters 4\nclutch 3\nclutched 13\nclutches 4\nclutching 14\nclymer 1\ncm 2\ncms 1\nco 30\ncoach 26\ncoaches 3\ncoachman 52\ncoachmen 6\ncoagula 1\ncoagulability 2\ncoagulate 4\ncoagulated 4\ncoagulates 5\ncoagulating 2\ncoagulation 11\ncoagulum 3\ncoal 39\ncoaled 1\ncoalesce 3\ncoalescence 3\ncoaling 2\ncoalition 4\ncoaptation 3\ncoarse 28\ncoarsely 2\ncoarseness 1\ncoarser 1\ncoarsest 1\ncoast 40\ncoastal 1\ncoasts 4\ncoat 172\ncoated 2\ncoating 1\ncoats 39\ncoax 1\ncoaxing 1\ncob 1\ncobb 2\ncobbler 1\ncobblestones 1\ncoburg 9\ncobwebby 1\ncobwebs 1\ncocain 1\ncocaine 4\ncocci 10\ncoccygeal 2\ncochon 2\ncock 9\ncockcrow 1\ncocked 10\ncocking 2\ncockroaches 4\ncocks 5\ncocksure 2\ncocktail 1\ncocoa 1\ncocottes 1\ncod 6\ncode 13\ncodein 1\ncodes 9\ncodman 1\ncody 1\ncoeliac 2\ncoerce 2\ncoerced 2\ncoercion 3\ncoeur 4\ncoexist 2\ncoexistence 1\ncoexisting 1\ncoffee 24\ncoffeepot 1\ncoffin 13\ncogency 1\ncogently 2\ncognition 2\ncognitive 1\ncognizable 1\ncognizance 2\ncognizant 1\ncogs 1\ncogwheel 1\ncogwheels 3\ncohens 1\ncoherence 4\ncoherent 2\ncohnheim 1\ncoiffure 7\ncoiffures 1\ncoil 5\ncoiled 2\ncoiling 1\ncoils 2\ncoin 22\ncoinage 13\ncoincide 5\ncoincided 4\ncoincidence 12\ncoincidences 1\ncoincident 4\ncoincidently 4\ncoincides 4\ncoinciding 2\ncoiners 1\ncoins 5\ncol 1\ncold 257\ncolder 2\ncoldly 27\ncoldness 13\ncoleridge 1\ncoley 2\ncolfax 1\ncoli 7\ncolic 2\ncollaboration 1\ncollahs 1\ncollapse 17\ncollapsed 12\ncollapses 1\ncollapsing 3\ncollar 37\ncollarbones 1\ncollars 2\ncollateral 21\ncollaterals 1\ncolleague 7\ncolleagues 10\ncollect 24\ncollected 40\ncollecting 17\ncollection 27\ncollections 7\ncollective 28\ncollectively 3\ncollector 2\ncollectors 3\ncollects 3\ncollege 36\ncolleges 11\ncollegiate 1\ncolles 4\ncollide 1\ncollided 3\ncollides 1\ncolliding 1\ncollins 1\ncollision 12\ncollisions 4\ncollodion 11\ncolloid 9\ncolloidal 2\ncolloquies 1\ncologne 3\ncolombia 3\ncolombian 2\ncolon 9\ncolonel 143\ncolonels 1\ncolonial 182\ncolonies 207\ncolonists 63\ncolonization 18\ncolony 57\ncolor 42\ncolorado 13\ncoloration 7\ncolored 24\ncoloring 3\ncolors 5\ncolossal 3\ncolosseum 1\ncolossus 2\ncolostomy 1\ncolour 95\ncoloured 21\ncolourful 1\ncolourless 4\ncolours 1\ncolt 2\ncolumbia 11\ncolumbus 6\ncolumn 62\ncolumnar 4\ncolumns 49\ncom 4\ncoma 4\ncoman 17\ncomb 4\ncombat 11\ncombatant 1\ncombatants 3\ncombated 1\ncombating 6\ncombative 1\ncombatted 1\ncombed 3\ncombers 1\ncombination 43\ncombinations 33\ncombine 10\ncombined 43\ncombining 4\ncombs 3\ncome 934\ncomedian 2\ncomedy 5\ncomely 3\ncomes 91\ncomet 10\ncometh 1\ncomfort 34\ncomfortable 22\ncomfortably 12\ncomforted 10\ncomforting 12\ncomforts 11\ncomic 4\ncomical 5\ncoming 217\ncomings 1\ncomite 1\ncomma 2\ncommand 151\ncommanded 25\ncommandeered 1\ncommander 310\ncommanders 64\ncommanding 32\ncommands 35\ncomme 3\ncommence 11\ncommenced 7\ncommencement 19\ncommences 15\ncommencing 6\ncommend 2\ncommendation 3\ncommended 2\ncommending 1\ncommensurable 1\ncommensurate 2\ncomment 10\ncommentaries 2\ncommentary 1\ncommentator 1\ncommented 2\ncommenting 1\ncomments 5\ncommerce 119\ncommercial 68\ncommercialism 1\ncomminuted 2\ncomminution 3\ncommiserating 1\ncommiseration 4\ncommissariat 14\ncommissaries 3\ncommissary 1\ncommission 62\ncommissionaire 4\ncommissioned 4\ncommissioner 8\ncommissioners 16\ncommissions 21\ncommit 17\ncommitment 1\ncommits 4\ncommitted 51\ncommittee 39\ncommitteeman 1\ncommitteemen 2\ncommittees 21\ncommitting 3\ncommodities 11\ncommodity 2\ncommodore 10\ncommodores 1\ncommon 287\ncommoner 3\ncommoners 2\ncommonest 27\ncommonly 60\ncommonplace 14\ncommonplaces 2\ncommons 22\ncommonsense 3\ncommonwealth 11\ncommonwealths 5\ncommotion 5\ncommotions 1\ncommunal 2\ncommune 7\ncommunicable 1\ncommunicate 15\ncommunicated 14\ncommunicates 4\ncommunicating 11\ncommunication 42\ncommunications 3\ncommunicative 1\ncommuning 1\ncommunion 8\ncommunis 8\ncommunism 5\ncommunist 4\ncommunistic 4\ncommunities 9\ncommunity 21\ncommuted 1\ncommuting 1\ncompact 21\ncompactly 1\ncompacts 2\ncompagne 1\ncompagnie 1\ncompanies 73\ncompanion 81\ncompanions 18\ncompanionship 2\ncompany 192\ncomparable 6\ncomparative 11\ncomparatively 60\ncompare 29\ncompared 49\ncompares 2\ncomparing 5\ncomparison 26\ncomparisons 1\ncompartment 5\ncompartments 2\ncompass 6\ncompasses 4\ncompassion 4\ncompassionate 2\ncompassionately 3\ncompatible 6\ncompatriot 1\ncompatriots 1\ncompel 9\ncompelled 48\ncompelling 6\ncompensate 3\ncompensated 4\ncompensation 19\ncompensatory 1\ncompete 1\ncompetence 2\ncompetent 8\ncompeting 2\ncompetition 23\ncompetitive 3\ncompetitor 2\ncompetitors 5\ncompilation 3\ncompile 1\ncompilers 1\ncomplacency 3\ncomplacent 4\ncomplacently 4\ncomplain 14\ncomplained 17\ncomplaining 6\ncomplains 19\ncomplaint 20\ncomplaints 8\ncomplement 3\ncomplementary 1\ncomplements 1\ncomplete 145\ncompleted 25\ncompletely 95\ncompleteness 4\ncompleting 2\ncompletion 3\ncomplex 25\ncomplexion 3\ncomplexity 2\ncompliance 17\ncomplicate 2\ncomplicated 29\ncomplicates 2\ncomplicating 1\ncomplication 11\ncomplications 31\ncomplied 2\ncompliment 7\ncomplimentary 1\ncomplimented 3\ncompliments 4\ncomply 19\ncomplying 8\ncomponent 5\ncomponents 4\ncompose 4\ncomposed 91\ncomposer 3\ncomposing 6\ncomposite 3\ncomposition 12\ncompositor 1\ncomposure 10\ncompound 20\ncompounds 1\ncomprehend 9\ncomprehended 4\ncomprehensible 13\ncomprehension 5\ncomprehensive 4\ncomprendre 1\ncomprenez 1\ncompress 5\ncompressed 34\ncompresses 2\ncompressible 8\ncompressing 5\ncompression 39\ncomprise 1\ncomprising 1\ncompromise 71\ncompromised 2\ncompromiser 1\ncompromises 5\ncompromising 4\ncomptez 1\ncomptrollers 1\ncompulsion 3\ncompulsory 10\ncompunction 3\ncompute 1\ncomputer 12\ncomputers 7\ncomputing 1\ncomrade 24\ncomrades 46\ncomte 5\ncomtesse 1\ncon 1\nconan 4\nconcatinatae 1\nconcave 3\nconcavo 1\nconceal 31\nconcealed 29\nconcealing 10\nconcealment 3\nconcede 2\nconceded 3\nconceding 1\nconceit 3\nconceited 4\nconceivable 6\nconceive 16\nconceived 7\nconceives 1\nconcentrate 5\nconcentrated 31\nconcentrating 5\nconcentration 10\nconcentric 4\nconcentrically 3\nconcept 7\nconception 81\nconceptions 8\nconcepts 1\nconceptual 1\nconcern 32\nconcerned 80\nconcerning 38\nconcerns 16\nconcert 6\nconcerted 3\nconcerts 3\nconcession 7\nconcessions 14\nconciliate 2\nconciliated 1\nconciliating 1\nconciliation 11\nconciliatory 3\nconcise 4\nconcisely 2\nconclaves 1\nconclude 9\nconcluded 57\nconcluding 3\nconclusion 58\nconclusions 14\nconclusive 9\nconclusively 1\nconclusiveness 1\nconcomitant 1\nconcomitants 1\nconcord 5\nconcourse 2\nconcrete 4\nconcur 3\nconcurrence 5\nconcurrent 2\nconcurrently 3\nconcussion 1\ncond 1\nconde 2\ncondemn 11\ncondemnation 5\ncondemnations 1\ncondemned 30\ncondemning 15\ncondensation 3\ncondensed 5\ncondensing 1\ncondescend 5\ncondescending 6\ncondescendingly 3\ncondescension 6\ncondign 1\ncondiments 1\ncondition 346\nconditional 4\nconditionally 4\nconditioned 2\nconditions 242\ncondolence 1\nconduce 1\nconduced 2\nconducing 1\nconduct 63\nconducted 25\nconducting 12\nconductivity 1\nconductor 3\nconductors 1\nconducts 1\ncondy 1\ncondylar 1\ncondyle 7\ncondyles 3\ncondylomata 7\ncondylomatous 1\ncone 5\nconfectioner 1\nconfederacy 30\nconfederate 34\nconfederated 4\nconfederates 14\nconfederation 47\nconfer 14\nconference 31\nconferences 12\nconferred 25\nconferring 6\nconfers 2\nconfess 36\nconfessed 12\nconfession 14\nconfessor 4\nconfidant 4\nconfidante 1\nconfide 6\nconfided 6\nconfidence 53\nconfident 32\nconfidential 9\nconfidentially 4\nconfidently 8\nconfiding 3\nconfiguration 3\nconfine 12\nconfined 60\nconfinement 5\nconfinements 1\nconfines 3\nconfining 3\nconfirm 16\nconfirmation 12\nconfirmatory 1\nconfirmed 36\nconfirming 3\nconfirms 6\nconfiscate 2\nconfiscated 5\nconfiscation 7\nconflagration 7\nconflagrations 3\nconflict 75\nconflicting 9\nconflicts 13\nconfluence 3\nconfluent 4\nconform 6\nconforming 1\nconformists 1\nconformity 1\nconforms 1\nconfound 6\nconfounded 2\nconfounding 1\nconfront 1\nconfrontation 1\nconfronted 12\nconfronting 2\nconfuse 1\nconfused 67\nconfusedly 1\nconfusing 4\nconfusion 58\nconfuted 1\ncong 1\ncongealed 2\ncongenial 2\ncongenital 31\ncongenitally 1\ncongested 10\ncongestion 21\ncongestive 1\ncongratulate 21\ncongratulated 7\ncongratulating 1\ncongratulation 1\ncongratulations 6\ncongregated 1\ncongregation 9\ncongregations 3\ncongress 445\ncongresses 4\ncongressional 11\ncongressmen 4\nconical 5\nconiston 1\nconjecture 10\nconjectured 3\nconjectures 8\nconjecturing 1\nconjoined 1\nconjugal 2\nconjunction 9\nconjunctiva 5\nconjunctivae 2\nconjunctival 2\nconjunctivitis 1\nconjure 1\nconjuror 1\nconkling 4\nconnais 1\nconnaissez 1\nconnect 4\nconnected 52\nconnecticut 51\nconnecting 10\nconnection 103\nconnections 30\nconnective 100\nconnexion 1\nconnivance 2\nconnived 2\nconnoisseur 1\nconnoisseurs 3\nconquer 9\nconquered 12\nconquering 7\nconqueror 9\nconquerors 7\nconquest 28\nconquests 5\nconscience 25\nconsciences 3\nconscientious 5\nconscientiously 2\nconscious 68\nconsciously 1\nconsciousness 78\nconscripted 3\nconscription 5\nconscripts 1\nconscwiption 1\nconsecrated 1\nconsecutive 4\nconsensus 1\nconsent 52\nconsented 7\nconsenting 1\nconsents 1\nconsequence 28\nconsequences 18\nconsequent 8\nconsequential 8\nconsequently 29\nconservation 16\nconservatism 1\nconservative 44\nconservatives 5\nconservatories 2\nconservatory 10\nconserve 4\nconserved 1\nconserving 2\nconsider 98\nconsiderable 173\nconsiderably 18\nconsiderate 4\nconsideration 36\nconsiderations 30\nconsidered 164\nconsidering 53\nconsiders 10\nconsigne 1\nconsigned 3\nconsist 29\nconsisted 38\nconsistence 19\nconsistency 3\nconsistent 12\nconsistently 8\nconsisting 25\nconsistory 1\nconsists 139\nconsolation 18\nconsolations 2\nconsolatory 1\nconsole 7\nconsoled 4\nconsoler 1\nconsolidate 2\nconsolidated 9\nconsolidating 1\nconsolidation 7\nconsoling 5\nconsonant 1\nconsonants 1\nconsortium 1\nconspicuous 12\nconspiracies 2\nconspiracy 14\nconspiratorial 1\nconspirators 1\nconspired 5\nconspiring 1\nconstable 6\nconstables 3\nconstabulary 2\nconstancy 1\nconstant 73\nconstantine 4\nconstantinople 1\nconstantly 48\nconsternation 7\nconstipated 1\nconstipation 4\nconstituency 1\nconstituent 6\nconstituents 3\nconstitute 25\nconstituted 15\nconstitutes 28\nconstituting 13\nconstitution 292\nconstitutional 92\nconstitutionality 6\nconstitutionally 3\nconstitutions 38\nconstrain 1\nconstrained 7\nconstrains 1\nconstraint 8\nconstricted 2\nconstricting 11\nconstriction 7\nconstricts 1\nconstruct 6\nconstructed 21\nconstructing 4\nconstruction 25\nconstructionists 1\nconstructive 6\nconstrued 8\nconsul 4\nconsuls 3\nconsult 19\nconsultant 1\nconsultation 11\nconsultations 5\nconsulted 6\nconsulting 13\nconsults 1\nconsume 4\nconsumed 5\nconsumer 3\nconsumers 2\nconsuming 3\nconsummate 2\nconsummated 1\nconsumption 4\nconsumptive 2\ncontact 87\ncontagion 1\ncontagious 1\ncontagiousness 6\ncontain 26\ncontained 20\ncontainer 1\ncontaining 68\ncontains 36\ncontaminated 14\ncontamination 4\ncontemplate 9\ncontemplated 4\ncontemplation 7\ncontemplative 1\ncontemporaneously 1\ncontemporaries 27\ncontemporary 10\ncontempt 39\ncontemptible 9\ncontemptuous 17\ncontemptuously 17\ncontend 3\ncontended 9\ncontending 4\ncontent 29\ncontente 1\ncontented 13\ncontentedly 1\ncontention 6\ncontentions 2\ncontentment 1\ncontents 50\ncontest 54\ncontestants 4\ncontested 4\ncontests 10\ncontext 3\ncontez 1\ncontiguous 2\ncontinent 37\ncontinental 46\ncontinents 3\ncontingencies 9\ncontingent 3\ncontinual 15\ncontinually 91\ncontinuance 6\ncontinuation 3\ncontinuations 1\ncontinue 50\ncontinued 291\ncontinues 24\ncontinuing 20\ncontinuity 20\ncontinuous 47\ncontinuously 13\ncontorting 1\ncontortions 1\ncontour 11\ncontra 8\ncontraband 4\ncontrabass 1\ncontract 31\ncontracted 21\ncontractility 1\ncontracting 6\ncontraction 61\ncontractions 3\ncontractor 2\ncontractors 3\ncontracts 13\ncontractual 1\ncontracture 28\ncontradict 13\ncontradicted 4\ncontradicting 2\ncontradiction 20\ncontradictions 7\ncontradictory 11\ncontraire 1\ncontralto 2\ncontrary 158\ncontrast 50\ncontrasted 5\ncontrasting 2\ncontrasts 3\ncontrat 3\ncontre 2\ncontribute 9\ncontributed 12\ncontributes 1\ncontributing 7\ncontribution 4\ncontributions 13\ncontributory 1\ncontrition 1\ncontrivance 1\ncontrive 2\ncontrived 6\ncontrives 2\ncontrol 122\ncontrolled 31\ncontrolledly 1\ncontroller 1\ncontrolling 8\ncontrols 3\ncontroversial 2\ncontroversies 14\ncontroversy 33\ncontroverted 1\ncontused 16\ncontusion 17\ncontusions 9\nconundrums 1\nconvalescence 11\nconvalescent 3\nconvene 1\nconvened 4\nconvenience 9\nconvenient 25\nconveniently 7\nconvent 5\nconvention 151\nconventional 5\nconventionalities 1\nconventionality 1\nconventions 29\nconverge 3\nconverging 2\nconversant 3\nconversation 181\nconversational 1\nconversations 20\nconverse 7\nconversed 2\nconversely 3\nconversing 13\nconversion 7\nconvert 10\nconverted 19\nconvertible 1\nconverting 3\nconverts 3\nconvex 5\nconvey 13\nconveyance 7\nconveyances 1\nconveyed 26\nconveying 7\nconveys 2\nconvict 7\nconvicted 6\nconviction 48\nconvictions 8\nconvicts 8\nconvient 1\nconvince 16\nconvinced 82\nconvinces 4\nconvincing 14\nconvoked 1\nconvoluted 3\nconvoy 27\nconvoyed 2\nconvoyman 1\nconvoys 2\nconvulse 1\nconvulsed 2\nconvulsion 1\nconvulsions 5\nconvulsive 6\nconvulsively 6\nconway 2\ncooee 7\ncooing 1\ncook 27\ncooked 4\ncookers 1\ncooking 6\ncooks 3\ncookshop 1\ncookshops 2\ncool 11\ncooled 3\ncoolest 1\ncoolidge 2\ncooling 4\ncoolly 3\ncoolness 3\ncooped 1\ncooper 7\ncooperate 4\ncooperated 2\ncooperating 1\ncooperation 21\ncooperative 9\ncoordinate 5\ncop 1\ncope 3\ncopeland 1\ncopenhagen 2\ncopernicus 4\ncopied 9\ncopier 1\ncopies 26\ncopious 9\ncopper 26\ncoppers 2\ncoppery 2\ncopse 9\ncopses 2\ncopy 46\ncopying 14\ncopyright 69\ncoquet 1\ncoquetry 3\ncoquette 1\ncoquettish 6\ncor 1\ncoraco 1\ncoracoid 1\ncoral 3\ncorbin 2\ncord 46\ncordage 1\ncorded 4\ncordial 12\ncordiality 3\ncordially 11\ncording 1\ncordon 2\ncords 23\ncordwainers 2\ncore 7\ncorium 5\ncork 9\ncorked 2\ncorks 1\ncorn 45\ncornea 7\ncornell 2\ncorner 128\ncornered 4\ncorners 16\ncornet 8\ncornetcy 1\ncorneum 3\ncornfield 1\ncornfields 1\ncornice 1\ncornified 2\ncorns 10\ncornwall 2\ncornwallis 10\ncorollary 1\ncorona 1\ncoronado 1\ncoronary 1\ncoronation 3\ncoroner 18\ncoronet 29\ncoronoid 1\ncorpora 2\ncorporal 29\ncorporals 1\ncorporate 5\ncorporation 34\ncorporations 26\ncorps 50\ncorpse 8\ncorpses 9\ncorpulence 1\ncorpulent 2\ncorpus 10\ncorpuscles 13\ncorradi 8\ncorrals 1\ncorrect 38\ncorrected 14\ncorrecting 3\ncorrection 6\ncorrections 4\ncorrective 1\ncorrectly 11\ncorrectness 2\ncorrects 1\ncorrelation 2\ncorrespond 15\ncorresponded 4\ncorrespondence 24\ncorrespondent 5\ncorresponding 26\ncorrespondingly 4\ncorresponds 8\ncorridor 35\ncorridors 1\ncorrigan 2\ncorroborate 1\ncorroboration 2\ncorrosive 3\ncorrupt 10\ncorrupted 2\ncorrupting 1\ncorruption 10\ncorruptly 2\ncorset 1\ncorsican 1\ncortes 2\ncortex 11\ncortez 1\ncortical 5\ncortlandt 1\ncorvisart 1\ncorydon 1\ncos 1\ncosaques 1\ncosmetic 1\ncosmography 1\ncosmopolitan 3\ncossack 83\ncossacks 84\ncost 65\ncosta 1\ncostal 4\ncoster 1\ncosting 5\ncostly 10\ncosto 3\ncosts 8\ncostume 16\ncostumes 5\ncosy 1\ncot 12\ncotillion 2\ncotillions 1\ncottage 5\ncottages 1\ncotterill 3\ncotton 80\ncottons 1\ncottonwood 1\ncotyledons 1\ncouch 15\ncouched 1\ncouches 1\ncough 14\ncoughed 12\ncoughing 8\ncould 1700\ncouldn 11\ncouldst 1\ncouler 1\ncouncil 76\ncouncillor 1\ncouncilor 2\ncouncilors 3\ncouncils 11\ncounsel 10\ncounseled 2\ncounselling 1\ncounsellor 2\ncounselor 1\ncounselors 1\ncounsels 7\ncount 748\ncounted 20\ncountenance 9\ncountenances 2\ncounter 15\ncounteract 8\ncounteracted 2\ncounteracting 3\ncounteraction 1\ncounterattack 1\ncountered 2\ncounterfeiting 1\ncountermanded 1\ncountermarches 1\ncountermovement 4\ncounterorders 1\ncounterpaned 1\ncounterpart 1\ncounterpoise 1\ncounters 1\ncountess 497\ncountesses 1\ncounties 13\ncounting 15\ncountinghouse 1\ncountless 8\ncountries 54\ncountry 423\ncountryman 3\ncountrymen 24\ncountryside 9\ncounts 2\ncountwy 1\ncounty 17\ncoup 2\ncouple 45\ncoupled 4\ncouples 10\ncoupon 2\ncourage 41\ncourageous 2\ncourant 1\ncourier 24\ncouriers 2\ncourse 389\ncourses 9\ncoursing 1\ncourt 173\ncourte 2\ncourted 3\ncourteous 8\ncourteously 4\ncourtesan 1\ncourtesy 12\ncourthouse 1\ncourtier 8\ncourtierlike 2\ncourtiers 20\ncourting 2\ncourtly 4\ncourts 44\ncourtship 2\ncourtyard 19\ncourtyards 1\ncousin 40\ncousinage 2\ncousine 2\ncousinhood 2\ncousins 5\ncouture 1\ncovenant 7\ncovenants 2\ncovent 3\ncoventry 2\ncover 38\ncoverage 1\ncovered 169\ncovering 40\ncoverings 2\ncoverlet 1\ncovers 10\ncovert 5\ncovertly 1\ncoveted 10\ncow 7\ncoward 8\ncowardice 7\ncowardly 1\ncowards 2\ncowboy 9\ncowboys 4\ncowhouse 1\ncowpens 3\ncows 3\ncowshed 3\ncox 2\ncoxa 2\ncoxcombs 1\ncoyness 1\ncoyote 1\ncrab 2\ncrack 20\ncracked 13\ncracking 5\ncrackings 3\ncrackle 4\ncrackled 3\ncrackling 16\ncracks 3\ncradle 4\ncraft 15\ncrafts 6\ncraftsman 1\ncraftsmanship 1\ncraftsmen 4\ncrafty 5\ncraggy 1\ncraig 1\ncrammed 1\ncramp 4\ncramped 2\ncramps 4\ncrane 1\ncranial 7\ncraniotabes 8\ncranium 2\ncrank 2\ncranks 2\ncrash 12\ncrashed 1\ncrashing 1\ncrass 2\ncrate 3\ncrater 1\ncrateriform 2\ncrates 1\ncravat 2\ncravats 1\ncravatte 1\ncraving 1\ncrawford 3\ncrawl 7\ncrawled 4\ncrawling 3\ncrazy 10\ncreak 9\ncreaked 11\ncreaking 11\ncreaks 1\ncream 14\ncreamy 2\ncrease 1\ncreases 6\ncreate 17\ncreated 62\ncreates 2\ncreating 24\ncreation 16\ncreative 2\ncreator 6\ncreature 28\ncreatures 7\ncredentials 1\ncredibility 1\ncredit 61\ncreditable 1\ncreditor 2\ncreditors 23\ncredits 1\ncreed 2\ncreek 3\ncreeks 1\ncreep 3\ncreeping 7\ncreolin 1\ncreosote 1\ncrepitans 1\ncrepitant 3\ncrepitating 1\ncrepitation 4\ncrepitus 3\ncrept 9\ncrescent 1\ncrescentic 2\ncresol 2\ncrest 7\ncrestfallen 1\ncret 1\ncrew 11\ncrewe 1\ncrews 1\ncrib 2\ncribriform 1\ncricket 5\ncrickets 1\ncried 283\ncries 31\ncrile 3\ncrime 61\ncrimea 1\ncrimean 5\ncrimes 21\ncriminal 30\ncriminals 15\ncrimson 13\ncringe 2\ncringing 2\ncrinkled 1\ncripple 8\ncrippled 9\ncrippling 6\ncrisis 33\ncrisp 6\ncrisply 1\ncristal 2\ncriterion 2\ncritic 1\ncritical 22\ncriticise 1\ncriticising 1\ncriticism 34\ncriticisms 7\ncriticize 7\ncriticized 7\ncriticizes 1\ncriticizing 4\ncritics 13\ncritique 1\ncrittenden 3\ncroaked 1\ncroats 1\ncrockery 3\ncrockett 3\ncrocuses 1\ncroix 2\ncroly 1\ncromwell 3\ncrony 1\ncrooked 4\ncrooking 2\ncrop 24\ncropped 5\ncrops 24\ncrosart 1\ncross 96\ncrossbeam 1\ncrossed 75\ncrosses 11\ncrossing 54\ncrossings 1\ncrossly 6\ncrossness 1\ncrossroads 4\ncrossway 1\ncrotchety 1\ncrouch 2\ncrouched 4\ncrouching 2\ncroup 1\ncroupous 1\ncroups 1\ncroupy 1\ncrow 2\ncrowd 225\ncrowded 55\ncrowder 3\ncrowding 18\ncrowds 34\ncrowed 3\ncrowing 3\ncrown 61\ncrowned 10\ncrowning 2\ncrowns 2\ncrows 6\ncrucial 3\ncrucified 1\ncrucify 2\ncrude 5\ncrudele 2\ncrudest 2\ncruel 41\ncruelly 9\ncruelty 25\ncruise 1\ncruisers 4\ncrumbled 2\ncrumbles 2\ncrumbling 5\ncrumbly 1\ncrumpled 9\ncrumpling 3\ncrunching 3\ncrupper 3\ncrural 3\ncrureus 1\ncrusade 1\ncrusades 3\ncrush 24\ncrushed 29\ncrushing 22\ncrust 10\ncrusted 2\ncrusts 3\ncrusty 1\ncrutch 7\ncrutches 2\ncruz 2\ncry 143\ncrybabies 1\ncrybaby 1\ncrying 27\ncrystal 6\ncrystallised 1\ncrystallized 1\ncrystals 4\ncub 1\ncuba 30\ncuban 10\ncubans 5\ncubic 3\ncubital 1\ncubitus 1\ncubs 6\ncucumber 1\ncucumbers 1\ncudgel 8\ncudgelled 1\ncudgels 1\ncuff 2\ncuffs 3\ncuirasse 2\ncuisse 1\ncullen 1\nculminate 1\nculminated 3\nculminating 4\nculmination 2\nculprit 3\nculprits 2\ncult 1\ncultivate 5\ncultivated 11\ncultivates 1\ncultivating 1\ncultivation 13\ncultural 1\nculture 37\ncultured 1\ncultures 5\ncum 1\ncumberland 12\ncumbrous 1\ncummins 2\ncumulative 2\ncunctators 1\ncuneiform 1\ncunning 26\ncunningly 3\ncup 26\ncupboard 9\ncupboards 3\ncupful 1\ncupidity 1\ncupolas 3\ncupping 5\ncups 1\ncurate 1\ncurative 4\ncurb 4\ncure 71\ncured 8\ncures 3\ncuretting 1\ncuring 1\ncuriosities 1\ncuriosity 61\ncurious 29\ncuriously 3\ncurl 5\ncurled 13\ncurling 9\ncurlpapers 1\ncurls 10\ncurly 24\ncurrency 50\ncurrent 71\ncurrently 2\ncurrents 4\ncurriculum 2\ncurse 6\ncursed 4\ncurses 7\ncursing 4\ncurt 2\ncurtail 1\ncurtailed 2\ncurtain 22\ncurtained 1\ncurtains 5\ncurtis 8\ncurtly 2\ncurtseying 1\ncurtsied 5\ncurtsy 1\ncurvature 6\ncurvatures 2\ncurve 9\ncurved 17\ncurves 4\ncurving 10\ncusack 3\ncushay 1\ncushing 3\ncushion 7\ncushioned 1\ncushions 7\ncusp 1\ncuster 1\ncustodian 1\ncustody 6\ncustom 25\ncustomary 19\ncustomer 3\ncustomers 4\ncustoms 16\ncut 199\ncutaneous 42\ncutis 6\ncutler 1\ncutlery 1\ncutlets 2\ncuts 5\ncutters 2\ncutting 34\ncuttings 1\ncutup 1\ncuvier 1\ncweation 1\ncweep 1\ncwoss 1\ncwow 1\ncy 1\ncyanide 2\ncyanosis 6\ncycle 1\ncyclical 1\ncycling 1\ncygne 2\ncylinder 8\ncylinders 17\ncylindrical 1\ncymbals 1\ncynical 3\ncynically 1\ncyril 14\ncyrus 1\ncyst 67\ncystic 34\ncystica 2\ncystitis 2\ncysts 66\nczar 6\nczartoryski 4\nczech 1\nczechoslovakia 2\nczechs 1\nd 180\nda 4\ndactylitis 18\ndad 7\ndaddy 6\ndagger 11\ndaggers 3\ndahe 1\ndaily 44\ndaintiest 1\ndainty 3\ndairy 2\ndaisy 1\ndakin 2\ndakota 18\ndakotan 1\ndakotans 1\ndakotas 5\ndale 2\ndallas 1\ndalliance 1\ndallied 1\ndallying 1\ndalmatic 1\ndam 30\ndamage 25\ndamaged 37\ndamages 29\ndamaging 1\ndamascus 1\ndamask 2\ndame 3\ndames 1\ndamn 4\ndamned 7\ndamning 2\ndamp 29\ndamper 1\ndampness 1\ndams 4\ndamsel 1\ndan 2\ndance 40\ndanced 26\ndancer 13\ndancers 8\ndances 8\ndancing 45\ndandies 3\ndandin 1\ndandling 2\ndandy 2\ndane 1\ndanger 124\ndangereux 2\ndangerous 92\ndangerously 3\ndangers 15\ndangles 1\ndangling 4\ndaniel 57\ndanilov 1\ndanilovna 11\ndanish 7\ndank 2\ndans 6\ndanser 1\ndanseuse 1\ndanube 17\ndanzig 2\ndappled 1\ndare 43\ndared 33\ndaredevil 3\ndaren 2\ndares 3\ndaresay 5\ndaring 22\ndark 181\ndarkened 8\ndarker 5\ndarkly 2\ndarkness 68\ndarling 38\ndarlings 2\ndarlington 1\ndart 2\ndarted 9\ndarting 3\ndartmouth 3\ndartos 1\ndarwin 1\ndas 1\ndash 9\ndashboard 1\ndashed 23\ndashing 14\ndat 2\ndata 17\ndatabase 1\ndate 48\ndated 6\ndates 9\ndating 4\ndato 1\ndaubed 1\ndaubing 1\ndaughter 183\ndaughters 30\ndaunted 4\ndave 1\ndavenport 1\ndavid 10\ndavis 18\ndavout 42\ndavy 3\ndavydov 3\ndawbarn 1\ndawdling 4\ndawn 22\ndawned 3\ndawning 2\ndawson 1\nday 819\ndaybreak 6\ndaydreams 2\ndaylight 15\ndays 453\ndaytime 5\ndayton 1\ndazed 8\ndazzled 4\ndazzling 6\ndazzlingly 2\nde 237\ndeacon 10\ndeacons 1\ndead 164\ndeadliest 2\ndeadline 1\ndeadlock 8\ndeadlocked 1\ndeadly 18\ndeadness 1\ndeaf 10\ndeafened 3\ndeafening 12\ndeafeningly 1\ndeafness 4\ndeah 1\ndeal 69\ndealer 7\ndealers 4\ndealing 42\ndealings 3\ndeals 4\ndealt 26\ndean 1\ndeane 4\ndear 449\ndearer 1\ndearest 20\ndearly 8\ndeath 330\ndeathbed 1\ndeathbeds 1\ndeathlike 2\ndeathly 1\ndeaths 3\ndebate 37\ndebated 5\ndebates 15\ndebauchery 5\ndebilitated 10\ndebility 4\ndebit 1\ndebonair 1\ndebouching 1\ndebris 4\ndebs 6\ndebt 65\ndebtor 3\ndebtors 7\ndebts 62\ndebut 2\ndec 2\ndecade 14\ndecadence 1\ndecades 12\ndecalcified 1\ndecanter 2\ndecanters 1\ndecapsulation 1\ndecatur 3\ndecay 5\ndecaying 1\ndecays 1\ndecease 1\ndeceased 12\ndeceit 4\ndeceitful 1\ndeceive 13\ndeceived 16\ndeceiver 1\ndeceivers 1\ndeceiving 3\ndecember 40\ndecency 2\ndecent 9\ndecently 5\ndeception 10\ndeceptions 2\ndeceptive 2\ndecide 33\ndecided 149\ndecidedly 9\ndecides 3\ndeciding 8\ndecision 61\ndecisions 17\ndecisive 24\ndecisively 3\ndeck 3\ndecked 1\ndecks 1\ndeclaimed 2\ndeclaration 50\ndeclarations 4\ndeclaratory 3\ndeclare 25\ndeclared 141\ndeclares 4\ndeclaring 34\ndecline 26\ndeclined 17\ndeclining 3\ndeclivity 1\ndecolorised 1\ndecomposes 1\ndecomposing 3\ndecomposition 7\ndecorate 1\ndecorated 6\ndecorating 1\ndecoration 6\ndecorations 14\ndecorative 1\ndecorous 1\ndecorum 5\ndecoyed 3\ndecrease 5\ndecreased 2\ndecreases 3\ndecree 21\ndecreed 9\ndecrees 7\ndecrepit 3\ndecrepitude 1\ndecried 1\ndedicate 1\ndedicated 13\ndedicates 1\ndeduce 14\ndeduced 12\ndeductible 9\ndeduction 12\ndeductions 7\ndeductive 1\ndeed 37\ndeeds 14\ndeem 6\ndeemed 14\ndeeming 1\ndeep 215\ndeepen 1\ndeepened 4\ndeepening 1\ndeepens 1\ndeeper 58\ndeepest 15\ndeeply 77\ndeeps 1\ndeer 5\ndef 2\ndefame 1\ndefault 1\ndefeat 46\ndefeated 31\ndefeating 2\ndefeats 5\ndefect 23\ndefection 2\ndefective 21\ndefects 23\ndefence 6\ndefenceless 1\ndefend 29\ndefendant 1\ndefended 22\ndefender 4\ndefenders 5\ndefending 21\ndefense 67\ndefenseless 1\ndefensive 10\ndefer 2\ndeference 9\ndeferens 1\ndeferential 3\ndeferentially 2\ndeferred 3\ndeferring 2\ndefiance 9\ndefiant 3\ndefiantly 1\ndeficiencies 1\ndeficiency 5\ndeficient 6\ndeficit 1\ndefied 2\ndefile 2\ndefiled 1\ndefiles 1\ndefiling 1\ndefine 13\ndefined 55\ndefines 2\ndefining 5\ndefinite 78\ndefinitely 35\ndefiniteness 1\ndefinition 24\ndefinitions 3\ndeflected 1\ndeflecting 1\ndeflection 1\ndefoe 1\ndeformans 43\ndeformed 8\ndeformities 27\ndeformity 53\ndefrauded 1\ndefray 1\ndefraying 2\ndeft 2\ndeftly 4\ndefy 4\ndegenerate 5\ndegenerated 4\ndegenerates 2\ndegenerating 1\ndegeneration 63\ndegenerative 8\ndeglutition 4\ndegradation 3\ndegraded 7\ndegrading 1\ndegree 94\ndegrees 29\ndegwaded 1\ndehydrate 1\ndehydrated 4\ndehydrates 1\ndeign 5\ndeigned 4\ndeities 1\ndeity 12\ndejected 9\ndejection 2\ndel 1\ndelaware 35\ndelay 47\ndelayed 27\ndelaying 2\ndelays 4\ndelegate 9\ndelegated 6\ndelegates 55\ndelegation 6\ndelegations 2\ndelete 4\ndeleterious 2\ndeletions 2\ndelhi 5\ndeliberate 16\ndeliberately 23\ndeliberating 1\ndeliberation 7\ndeliberations 5\ndeliberative 1\ndelicacy 11\ndelicate 54\ndelicately 3\ndelicious 10\ndelight 43\ndelighted 38\ndelightedly 3\ndelightful 23\ndelights 2\ndelimited 1\ndelirious 11\ndelirium 34\ndeliver 12\ndeliverance 3\ndelivered 23\ndeliverer 1\ndelivering 4\ndelivers 2\ndelivery 4\ndeltoid 14\ndelude 1\ndeluded 2\ndeluding 1\ndeluge 2\ndeluged 1\ndelusion 6\ndelusions 1\ndelve 1\ndelving 1\ndem 8\ndemagogues 2\ndemain 1\ndemand 77\ndemande 2\ndemanded 66\ndemandent 1\ndemanding 12\ndemands 32\ndemarcation 14\ndemean 3\ndemeanour 1\ndementat 1\ndementia 2\ndementyev 1\ndemerara 1\ndemkin 1\ndemocracy 97\ndemocrat 13\ndemocratic 81\ndemocrats 93\ndemolish 1\ndemolished 1\ndemon 2\ndemonetization 3\ndemonetized 1\ndemonstrable 1\ndemonstrate 8\ndemonstrated 21\ndemonstrates 1\ndemonstrating 5\ndemonstration 9\ndemonstrations 8\ndemonstrator 1\ndemoralization 2\ndemoralized 1\ndemosthenes 1\ndemurely 1\ndemyan 2\nden 17\ndenial 7\ndenied 30\ndenis 1\ndenisov 432\ndenmark 3\ndenomination 3\ndenominations 5\ndenote 7\ndenoted 1\ndenotes 1\ndenouement 1\ndenounce 4\ndenounced 32\ndenouncing 4\ndense 44\ndensely 4\ndenser 12\ndensity 8\ndental 4\ndentigerous 3\ndentine 2\ndentist 2\ndentition 2\ndenuded 1\ndenunciation 6\ndenunciations 1\ndenver 2\ndeny 10\ndenying 5\ndeodorant 1\ndepart 4\ndeparted 6\ndeparting 3\ndepartment 34\ndepartmental 1\ndepartments 9\ndeparture 60\ndepartures 2\ndepend 41\ndepended 25\ndependence 19\ndependencies 3\ndependency 3\ndependent 30\ndependents 3\ndepending 9\ndepends 52\ndepict 1\ndepicted 7\ndepicting 1\ndepleted 1\ndeplorable 3\ndeplored 8\ndeploring 1\ndeploy 1\ndeployed 1\ndeploying 2\ndepopulated 1\ndeported 3\ndeportment 1\ndepose 2\ndeposed 3\ndeposes 1\ndeposit 25\ndepositaries 1\ndepositary 1\ndeposited 12\ndepositing 1\ndeposition 5\ndepositors 1\ndeposits 9\ndepot 3\ndepraved 7\ndeprecate 1\ndeprecated 2\ndeprecating 1\ndepreciation 3\ndepredations 2\ndepress 2\ndepressed 32\ndepressing 12\ndepression 26\ndepressions 1\ndeprivation 1\ndeprive 20\ndeprived 35\ndeprives 4\ndepriving 9\ndepth 30\ndepths 22\ndepuis 1\ndeputation 9\ndeputations 1\ndeputies 2\ndeputy 3\ndepwavity 1\nder 5\nderanged 2\nderangements 2\nderbies 1\nderby 1\ndercum 2\ndere 1\nderide 1\nderision 5\nderisive 2\nderisively 1\nderivative 7\nderivatives 1\nderive 16\nderived 69\nderives 1\nderiving 5\nderma 3\ndermal 1\ndermatitis 8\ndermatocele 1\ndermoid 8\ndermoids 24\ndernburg 1\nderogates 1\nderogation 2\nderogatory 1\ndes 10\ndescend 10\ndescendant 3\ndescendants 5\ndescended 31\ndescending 16\ndescends 2\ndescent 15\ndescribe 51\ndescribed 151\ndescribes 6\ndescribing 16\ndescried 3\ndescription 27\ndescriptions 8\ndescriptive 2\ndescry 1\ndesecrate 2\ndesecration 1\ndeseret 1\ndesert 25\ndeserted 32\ndeserter 3\ndeserters 1\ndesertest 1\ndeserting 2\ndesertion 2\ndeserts 5\ndeserve 7\ndeserved 15\ndeserves 6\ndeserving 2\ndesign 16\ndesignate 1\ndesignation 3\ndesigned 34\ndesigner 1\ndesigning 1\ndesigns 15\ndesirability 2\ndesirable 16\ndesire 96\ndesired 51\ndesires 22\ndesiring 6\ndesirous 3\ndesist 1\ndesisted 1\ndesk 11\ndesktop 1\ndesolate 1\ndesolation 5\ndespair 45\ndespaired 2\ndespairing 12\ndespairingly 2\ndespatch 2\ndespatched 1\ndesperate 32\ndesperately 11\ndesperation 11\ndespicable 2\ndespise 11\ndespised 17\ndespises 1\ndespising 1\ndespite 93\ndespoil 1\ndespoiled 1\ndespondency 1\ndespondent 2\ndespot 3\ndespotic 1\ndespotism 7\ndesquamated 1\ndesquamation 2\ndessaix 4\ndessalles 37\ndessert 1\ndessicans 2\ndestination 10\ndestined 29\ndestinies 1\ndestiny 22\ndestitute 3\ndestitution 1\ndestroy 57\ndestroyed 127\ndestroying 35\ndestroys 5\ndestruction 111\ndestructions 1\ndestructive 28\ndesultory 4\ndetach 5\ndetached 34\ndetaching 2\ndetachment 37\ndetachments 15\ndetail 38\ndetailed 12\ndetailing 1\ndetails 67\ndetain 8\ndetained 12\ndetect 5\ndetected 24\ndetection 2\ndetective 9\ndetector 1\ndetention 1\ndeter 2\ndeteriorate 1\ndeteriorated 1\ndetermination 20\ndetermine 39\ndetermined 64\ndetermines 8\ndetermining 14\ndeterred 1\ndetest 1\ndetestable 3\ndetestation 2\ndetested 4\ndethrone 1\ndethroned 1\ndetonate 1\ndetonators 1\ndetour 1\ndetoxicated 1\ndetracted 1\ndetractors 1\ndetriment 2\ndetrimental 1\ndetritus 1\ndetroit 5\ndetruite 1\ndeuce 3\ndeux 1\ndevait 1\ndevastated 7\ndevastating 1\ndevastation 1\ndevelop 56\ndeveloped 51\ndeveloper 1\ndeveloping 12\ndevelopment 113\ndevelopmental 2\ndevelopments 3\ndevelops 14\ndeviate 2\ndeviated 3\ndeviating 2\ndeviation 6\ndeviations 4\ndevice 19\ndevices 16\ndevil 72\ndevilish 3\ndevils 12\ndevise 9\ndevised 36\ndevises 1\ndevising 1\ndevitalise 2\ndevitalised 12\ndevoid 13\ndevoirs 1\ndevolve 2\ndevonshire 1\ndevote 12\ndevoted 41\ndevotedly 3\ndevotee 1\ndevotees 1\ndevoting 2\ndevotion 29\ndevotional 2\ndevotions 2\ndevour 1\ndevoured 4\ndevouring 2\ndevout 5\ndevoutly 1\ndevriez 1\ndew 10\ndewey 16\ndews 1\ndewy 3\ndexter 1\ndexterity 1\ndexterous 3\ndey 1\ndi 2\ndiabetes 12\ndiabetic 8\ndiable 3\ndiabolical 1\ndiadem 1\ndiagnose 2\ndiagnosed 16\ndiagnosing 2\ndiagnosis 114\ndiagnostic 11\ndiagonal 1\ndiagram 3\ndial 1\ndialect 2\ndialogue 2\ndiam 10\ndiameter 8\ndiametrically 2\ndiamond 9\ndiamonds 8\ndiana 3\ndiapedesis 2\ndiaphanous 1\ndiaphragm 4\ndiaphysial 2\ndiaphysis 14\ndiaries 1\ndiarrhoea 8\ndiarsenol 4\ndiary 16\ndiathesis 2\ndiaz 6\ndice 2\ndichotomy 1\ndick 1\ndickens 2\ndickinson 1\ndickson 1\ndicrotic 1\ndictate 3\ndictated 5\ndictates 1\ndictating 3\ndictation 1\ndictator 2\ndictatorship 4\ndictionaries 1\ndictionary 2\ndictum 1\ndid 1875\ndiderot 1\ndidn 67\ndidst 3\ndie 86\ndied 83\ndiego 1\ndies 17\ndiese 1\ndiet 13\ndietary 1\ndieted 1\ndietetic 2\ndieu 12\ndiffer 15\ndiffered 10\ndifference 46\ndifferences 14\ndifferent 274\ndifferential 21\ndifferentiate 11\ndifferentiated 15\ndifferentiating 3\ndifferentiation 3\ndifferently 25\ndiffering 3\ndiffers 11\ndifficult 148\ndifficulties 48\ndifficulty 110\ndiffidence 1\ndiffident 1\ndiffuse 65\ndiffused 15\ndiffusely 3\ndiffusing 4\ndiffusion 3\ndig 5\ndigastric 2\ndigest 4\ndigested 5\ndigesting 1\ndigestion 8\ndigestive 1\ndigging 4\ndiggings 2\ndighton 1\ndigit 3\ndigital 16\ndigitalin 1\ndigitalis 2\ndigitorum 3\ndigits 4\ndignified 18\ndignitaries 2\ndignitary 3\ndignity 52\ndigs 1\ndihydrochloride 1\ndilapidated 2\ndilatation 17\ndilatations 2\ndilate 9\ndilated 24\ndilates 1\ndilatory 1\ndilemma 4\ndilettanti 1\ndiligence 2\ndiligent 7\ndiligently 3\ndilly 1\ndiluent 1\ndilute 4\ndiluted 4\ndiluting 1\ndim 24\ndimension 1\ndimensions 11\ndiminish 19\ndiminished 44\ndiminishes 11\ndiminishing 14\ndiminution 10\ndiminutive 2\ndimly 23\ndimmed 3\ndimmler 18\ndimness 3\ndimple 6\ndimpled 3\ndimples 3\ndimpling 1\ndin 5\ndinah 1\ndine 14\ndined 19\ndingley 5\ndingy 2\ndining 31\ndinned 1\ndinner 184\ndinnerless 1\ndinners 15\ndinnertime 3\ndint 3\ndio 1\ndioxide 8\ndioxydiamido 1\ndip 9\ndiphtheria 22\ndiphtheriae 2\ndiphtheritic 7\ndiplo 1\ndiplococci 3\ndiplococcus 1\ndiploe 5\ndiploma 1\ndiplomacy 35\ndiplomas 1\ndiplomat 9\ndiplomatic 54\ndiplomatist 9\ndiplomatists 9\ndiplomats 5\ndipped 2\ndipping 3\ndire 3\ndirect 141\ndirected 89\ndirecteur 1\ndirecting 13\ndirection 146\ndirections 40\ndirective 1\ndirectly 104\ndirectness 2\ndirector 14\ndirectors 8\ndirectory 5\ndirects 3\ndirk 1\ndirt 14\ndirty 38\ndis 1\ndisabilities 9\ndisability 20\ndisabled 6\ndisablement 3\ndisabling 1\ndisadvantage 7\ndisadvantageous 2\ndisadvantageously 1\ndisadvantages 4\ndisaffected 1\ndisagree 3\ndisagreeable 15\ndisagreeably 2\ndisagreed 2\ndisagreement 5\ndisagreements 3\ndisagrees 1\ndisallowance 1\ndisappear 45\ndisappearance 34\ndisappeared 58\ndisappearing 3\ndisappears 18\ndisappoint 8\ndisappointed 5\ndisappointing 7\ndisappointment 12\ndisappointments 3\ndisappoints 1\ndisapproval 8\ndisapprove 3\ndisapproved 5\ndisapproving 3\ndisapprovingly 8\ndisarmed 3\ndisaster 16\ndisasters 4\ndisastrous 15\ndisastrously 1\ndisavow 2\ndisavowing 2\ndisbanded 1\ndisbanding 1\ndisbelieve 2\ndisbelieved 2\ndisbelieving 1\ndisc 6\ndiscard 2\ndiscarded 4\ndiscarding 1\ndiscern 5\ndiscerned 4\ndiscernible 3\ndiscerning 3\ndischarge 100\ndischarged 18\ndischarges 5\ndischarging 4\ndisciple 2\ndisciples 1\ndisciplinarian 2\ndisciplinary 1\ndiscipline 25\ndisciplined 3\ndisciplining 1\ndisclaim 3\ndisclaimed 3\ndisclaimer 9\ndisclaimers 7\ndisclaims 5\ndisclose 7\ndisclosed 5\ndiscloses 1\ndisclosing 1\ndisclosure 1\ndisco 1\ndiscoid 1\ndiscoloration 12\ndiscoloured 11\ndiscomfiture 4\ndiscomfort 15\ndiscomforts 1\ndiscomposure 1\ndisconcert 2\ndisconcerted 13\ndisconcerting 1\ndisconnected 8\ndisconnectedly 1\ndisconsolately 1\ndiscontent 13\ndiscontented 7\ndiscontentedly 1\ndiscontents 1\ndiscontinuance 1\ndiscontinue 3\ndiscontinued 1\ndiscontinuous 2\ndiscord 7\ndiscordant 4\ndiscordantly 1\ndiscount 2\ndiscountenanced 1\ndiscourage 3\ndiscouraged 8\ndiscouragement 1\ndiscourages 1\ndiscouraging 1\ndiscourse 4\ndiscover 28\ndiscoverable 3\ndiscovered 45\ndiscoveries 4\ndiscovering 7\ndiscovers 1\ndiscovery 25\ndiscredit 2\ndiscreditable 1\ndiscredited 6\ndiscreet 4\ndiscrepancy 1\ndiscrete 3\ndiscretion 13\ndiscriminate 2\ndiscriminated 1\ndiscriminating 4\ndiscrimination 9\ndiscriminations 7\ndiscriminatory 1\ndiscs 3\ndiscuss 36\ndiscussed 31\ndiscusses 1\ndiscussing 13\ndiscussion 31\ndiscussions 16\ndisdain 5\ndisdainful 2\ndisdainfully 6\ndisdaining 1\ndisease 615\ndiseased 33\ndiseases 136\ndisengaged 5\ndisengaging 2\ndisentangle 1\ndisentangled 4\ndisfavor 5\ndisfigured 5\ndisfigurement 9\ndisfiguring 4\ndisfranchise 1\ndisfranchised 4\ndisfranchisement 5\ndisfranchisements 1\ndisgrace 12\ndisgraced 7\ndisgraceful 9\ndisgraces 1\ndisgracing 1\ndisgruntled 3\ndisguise 10\ndisguised 5\ndisguises 1\ndisguising 1\ndisgust 14\ndisgusted 1\ndisgusting 4\ndish 13\ndisharmony 1\ndishes 11\ndisheveled 7\ndishonest 3\ndishonesty 1\ndishonor 3\ndishonorable 9\ndishonored 3\ndishonour 1\ndishonourable 1\ndishonoured 3\ndisillusion 1\ndisillusioned 2\ndisillusionment 5\ndisillusionments 1\ndisinclination 1\ndisinclined 2\ndisinfect 2\ndisinfectant 1\ndisinfected 12\ndisinfecting 5\ndisinfection 10\ndisintegrate 2\ndisintegrated 4\ndisintegrates 2\ndisintegrating 1\ndisintegration 12\ndisinterested 5\ndisinterestedly 2\ndisjecta 1\ndisjointed 1\ndisk 10\ndisks 1\ndislike 9\ndisliked 20\ndislikes 1\ndisliking 1\ndislocate 1\ndislocated 9\ndislocating 1\ndislocation 38\ndislocations 8\ndislodge 1\ndisloyal 2\ndisloyalty 1\ndismal 5\ndismally 2\ndismantled 3\ndismay 20\ndismayed 3\ndismembered 2\ndismemberment 1\ndismiss 3\ndismissal 4\ndismissals 1\ndismissed 13\ndismount 5\ndismounted 26\ndismounting 5\ndisobedience 4\ndisobey 4\ndisobeying 2\ndisobeys 1\ndisorder 36\ndisordered 13\ndisorderly 8\ndisorders 14\ndisorganisation 7\ndisorganised 4\ndisorganization 1\ndisorganized 8\ndisown 1\ndisowned 2\ndisparage 1\ndisparity 3\ndispassionate 1\ndispatch 21\ndispatched 18\ndispatches 3\ndispatching 4\ndispel 1\ndispelled 3\ndispensations 1\ndispense 7\ndispensed 2\ndisperse 17\ndispersed 18\ndisperses 2\ndispersing 7\ndispersion 3\ndispirited 3\ndisplace 3\ndisplaced 21\ndisplacement 26\ndisplaces 3\ndisplacing 6\ndisplay 19\ndisplayed 17\ndisplaying 15\ndisplays 3\ndisplease 2\ndispleased 19\ndispleases 1\ndispleasing 1\ndispleasure 8\ndisport 1\ndisposal 12\ndispose 13\ndisposed 18\ndisposing 4\ndisposition 37\ndispositions 35\ndisproportionate 1\ndisproportionately 2\ndisproving 2\ndisputatious 1\ndispute 48\ndisputed 13\ndisputes 27\ndisputing 12\ndisqualification 1\ndisqualify 1\ndisquiet 1\ndisquieted 1\ndisquieting 3\ndisregard 6\ndisregarded 5\ndisregarding 6\ndisreputable 3\ndisrepute 3\ndisrespectful 2\ndisrespectfully 1\ndisrobe 1\ndisrupt 1\ndisrupted 3\ndisrupting 1\ndisruption 4\ndissatisfaction 18\ndissatisfied 34\ndissect 3\ndissected 5\ndissecting 5\ndissection 12\ndissections 2\ndisseminate 1\ndisseminated 4\ndissemination 14\ndissension 2\ndissensions 15\ndissent 8\ndissented 3\ndissenters 8\ndissenting 8\ndissipated 7\ndissipation 4\ndissipations 2\ndissociated 2\ndissolute 2\ndissolution 21\ndissolve 5\ndissolved 18\ndissolving 1\ndissuade 2\ndissuasions 1\ndistaff 1\ndistal 28\ndistally 1\ndistance 118\ndistances 3\ndistant 51\ndistend 2\ndistended 15\ndistending 1\ndistends 1\ndistension 9\ndistilled 3\ndistilleries 1\ndistillers 1\ndistinct 43\ndistinction 19\ndistinctions 6\ndistinctive 7\ndistinctly 37\ndistinctness 3\ndistinguee 1\ndistinguish 34\ndistinguished 68\ndistinguishes 2\ndistinguishing 8\ndistort 1\ndistorted 20\ndistortion 3\ndistract 5\ndistracted 11\ndistractedly 1\ndistracting 1\ndistraction 4\ndistractions 3\ndistraught 4\ndistress 25\ndistressed 10\ndistressful 1\ndistressing 10\ndistribute 26\ndistributed 41\ndistributing 19\ndistribution 62\ndistributor 3\ndistrict 37\ndistricts 10\ndistrust 8\ndistrusted 4\ndistrustful 1\ndisturb 15\ndisturbance 42\ndisturbances 14\ndisturbed 36\ndisturber 1\ndisturbing 9\ndisturbs 2\ndisunion 2\ndisuse 5\nditch 9\nditches 4\nditching 1\ndites 3\ndiuretics 1\ndiurnal 1\ndivan 3\ndive 1\ndived 1\ndiverge 1\ndiverged 1\ndivergence 1\ndivers 1\ndiverse 18\ndiversification 2\ndiversified 5\ndiversion 6\ndiversions 1\ndiversities 1\ndiversity 17\ndivert 6\ndiverted 10\ndiverticula 2\ndiverticulum 2\ndiverting 2\ndivest 1\ndivested 1\ndivide 14\ndivided 127\ndividend 1\ndivides 1\ndividing 12\ndivine 34\ndivined 4\ndivinely 1\ndiving 1\ndivining 2\ndivinities 1\ndivinity 6\ndivision 113\ndivisions 20\ndivorce 8\ndivorced 3\ndix 1\ndixon 1\ndizziness 1\ndizzy 2\ndmitri 13\ndmitrich 11\ndmitrievna 105\ndmitrov 1\ndmitrovsk 1\ndnieper 7\ndo 1503\ndobroe 3\ndock 8\ndocketing 1\ndocks 3\ndockyard 1\ndocs 2\ndoctor 183\ndoctors 45\ndoctrine 65\ndoctrines 14\ndocument 20\ndocumentary 18\ndocumentation 1\ndocuments 11\ndodd 4\ndoddering 1\ndodge 2\ndoe 1\ndoers 2\ndoes 358\ndoesn 40\ndoffed 5\ndoffing 2\ndog 64\ndogma 1\ndogmatism 1\ndogs 38\ndohkturov 2\ndoing 178\ndoings 11\ndokhturov 27\ndole 1\ndoled 1\ndoleful 1\ndolefully 1\ndolens 2\ndoles 1\ndolgorukov 45\ndoll 11\ndollar 19\ndollars 46\ndolls 1\ndolokhov 329\ndolokhova 1\ndolorosa 3\ndolphin 1\ndomain 62\ndome 3\ndomes 2\ndomestic 74\ndomestics 2\ndominance 10\ndominant 8\ndominate 6\ndominated 11\ndominating 3\ndomination 5\ndomingo 10\ndominican 2\ndominicans 1\ndominion 32\ndominions 18\ndomo 13\ndon 581\ndonald 1\ndonate 14\ndonation 10\ndonations 47\ndonc 1\ndone 428\ndonelson 2\ndonets 4\ndonkey 1\ndonna 1\ndonne 1\ndonned 7\ndonning 3\ndonor 2\ndonors 6\ndont 2\ndoom 6\ndoomed 5\ndoor 498\ndoorpost 4\ndoors 47\ndoorway 16\ndoorways 2\ndooties 1\ndoppelkummel 1\ndora 1\ndoran 12\ndormant 2\ndormir 1\ndorogobuzh 3\ndorogomilov 9\ndorokhov 4\ndorothea 1\ndorothy 1\ndorr 4\ndorsal 15\ndorsales 1\ndorsalis 1\ndorsi 1\ndorsiflex 2\ndorsiflexed 4\ndorsiflexion 3\ndorsum 20\ndosage 3\ndose 25\ndoses 28\ndost 1\ndot 2\ndotage 1\ndotard 2\ndoth 1\ndoting 1\ndots 1\ndotted 8\ndottles 1\ndouble 49\ndoubled 12\ndoubles 2\ndoubling 1\ndoubly 9\ndoubt 152\ndoubted 10\ndoubter 1\ndoubtful 19\ndoubtfully 2\ndoubting 4\ndoubtless 13\ndoubts 39\ndouceur 1\ndouched 2\ndouches 1\ndouching 6\ndough 1\ndoughy 6\ndouglas 29\ndouleurs 1\ndoute 1\ndove 3\ndover 3\ndovey 1\ndowager 6\ndowden 3\ndowerless 2\ndown 1128\ndowncast 14\ndowned 1\ndownfall 4\ndownhill 11\ndownload 5\ndownloading 5\ndownright 1\ndownstairs 26\ndownward 19\ndownwards 22\ndowny 8\ndowry 11\ndoyen 1\ndoyle 5\ndoze 2\ndozed 7\ndozen 36\ndozens 9\ndozhoyveyko 1\ndozing 5\ndr 48\ndrab 1\ndraft 30\ndrafted 18\ndrafting 3\ndrafts 2\ndrag 10\ndragged 34\ndragging 22\ndragnet 1\ndragon 3\ndragoon 8\ndragoons 27\ndrags 2\ndrain 18\ndrainage 29\ndrained 12\ndraining 2\ndrains 2\ndrake 1\ndram 11\ndrama 7\ndramas 1\ndramatic 10\ndramatically 1\ndramatized 1\ndrams 3\ndramshop 2\ndrank 25\ndraped 2\ndraping 1\ndrastic 21\ndraught 7\ndraughts 2\ndraw 55\ndrawback 2\ndrawer 13\ndrawers 7\ndrawing 240\ndrawingroom 2\ndrawings 5\ndrawled 2\ndrawn 147\ndraws 2\ndraymen 1\ndread 12\ndreaded 11\ndreadful 68\ndreadfully 10\ndreading 3\ndream 45\ndreamed 18\ndreamer 2\ndreamers 1\ndreamest 1\ndreaminess 1\ndreaming 7\ndreams 16\ndreamt 1\ndreamy 3\ndreary 5\ndred 11\ndredge 1\ndregs 3\ndrenched 5\ndresden 3\ndress 138\ndressed 102\ndresser 3\ndressers 5\ndresses 27\ndressing 129\ndressings 36\ndressmaker 2\ndressmakers 1\ndrew 153\ndried 26\ndries 4\ndrift 23\ndrifted 5\ndrifting 7\ndrill 8\ndrilled 4\ndrilling 1\ndrills 1\ndrink 55\ndrinker 1\ndrinkers 2\ndrinking 23\ndrinks 6\ndrip 2\ndripping 4\ndrissa 22\ndrive 86\ndriven 66\ndriver 31\ndrivers 7\ndrives 12\ndriving 48\ndrizzling 1\ndroits 1\ndroll 1\ndron 54\ndrone 3\ndroned 1\ndrones 4\ndroning 1\ndronushka 10\ndroop 3\ndrooped 4\ndrooping 17\ndrop 47\ndroplets 3\ndropped 59\ndropping 18\ndrops 28\ndropsical 1\ndropsy 1\ndrought 1\ndrove 114\ndroves 1\ndrown 9\ndrowned 14\ndrowning 7\ndrowns 1\ndrowsily 1\ndrowsiness 4\ndrowsing 2\ndrowsy 3\ndrubetskaya 10\ndrubetskoy 19\ndrubetskoys 1\ndrudgery 1\ndrug 21\ndruggist 1\ndrugs 16\ndrum 7\ndrummed 1\ndrummer 17\ndrummers 1\ndrumming 2\ndrums 11\ndrunk 32\ndrunkard 9\ndrunkards 1\ndrunken 21\ndrunkenness 7\ndry 131\ndryden 1\ndrying 11\ndryly 5\ndryness 5\ndu 12\ndual 3\ndub 1\ndubbed 2\ndubious 1\ndubiously 2\ndublin 2\ndubuque 1\nduc 11\nduchenne 5\nduchenois 1\nduchess 3\nduchy 4\nduck 4\nducked 4\nducks 1\nducrey 5\nduct 22\nducts 10\ndudgeon 1\ndue 249\nduel 31\ndueling 1\nduelist 2\nduels 2\ndues 3\nduets 1\ndug 15\ndugout 2\nduke 46\ndukes 5\ndull 74\ndulled 2\ndullest 1\ndullness 1\ndulness 1\nduly 16\ndum 2\ndumb 6\ndumbfounded 1\ndumbly 1\ndumfound 1\ndummy 4\ndump 2\ndumped 4\ndumping 1\ndumps 1\ndun 2\nduncan 9\ndundas 1\ndundee 5\ndung 3\ndungeon 1\nduniway 1\ndunning 4\ndunyasha 34\nduodenal 3\nduodenum 2\ndupe 1\ndupes 1\nduplicate 1\nduplicates 1\nduplicity 1\nduport 8\ndupuytren 1\nduquesne 2\ndura 3\nduration 25\ndurham 1\nduring 503\ndurings 1\nduroc 2\ndurosnel 1\ndurrenstein 3\ndurst 1\ndurum 1\ndusk 10\nduskier 1\ndusky 9\ndussek 1\ndust 39\ndustcoat 1\ndusted 4\ndusting 7\ndusty 16\ndutch 29\nduties 84\ndutiful 1\ndutifully 1\nduty 136\ndvina 1\ndwagging 1\ndwarf 5\ndwarfed 2\ndwarfing 4\ndwarfs 2\ndwell 8\ndweller 1\ndwellers 2\ndwelling 6\ndwellings 1\ndwelt 9\ndwindled 2\ndwink 3\ndwive 1\ndwown 1\ndwy 1\ndwyer 2\ndy 1\ndye 2\ndyed 2\ndyeing 1\ndying 80\ndynamic 1\ndynamite 2\ndynasty 2\ndynia 2\ndysentery 2\ndyspepsia 1\ndyspnoea 5\ne 136\neach 411\neager 50\neagerly 39\neagerness 8\neagle 9\neagles 1\near 46\nearache 1\nearl 4\nearle 1\nearlier 33\nearliest 17\nearly 270\nearn 13\nearned 10\nearner 1\nearners 8\nearnest 10\nearnestly 10\nearnestness 3\nearning 5\nearnings 8\nearrings 4\nears 58\nearshot 1\nearth 117\nearthen 2\nearthly 11\nearthquake 1\nearthquakes 1\nearthwork 4\nearthworks 1\nearthy 1\nease 44\neasier 26\neasiest 3\neasily 114\neasing 1\neast 130\neaster 1\neasterly 1\neastern 50\neasterners 1\neastward 7\neastwards 2\neasy 122\neasygoing 1\neat 54\neaten 18\neaters 3\neating 24\neats 8\neau 3\neaves 1\neavesdroppers 1\nebb 2\nebbed 1\nebbing 1\nebcdic 4\nebook 87\nebooks 54\nebullient 1\neburnation 4\neccentric 5\neccentricities 1\neccentricity 2\necchondroses 2\necchymosed 1\necchymoses 1\necchymosis 6\necclesiastical 5\nechelons 1\nechinoccus 1\nechinococcal 1\nechinococcus 3\nechkino 2\necho 7\nechoed 4\nechoes 2\nechoing 1\nechthyma 1\necka 1\neckmuhl 4\neclairaient 1\neclipsed 2\neclipses 2\neconomic 120\neconomical 4\neconomically 2\neconomics 4\neconomies 1\neconomist 4\neconomists 2\neconomized 1\neconomy 23\necossaise 8\necstasies 1\necstasy 8\necstatic 12\necstatically 6\necthyma 1\necuador 1\neczema 10\ned 14\neddied 1\neddies 1\neddy 2\neddying 1\neden 1\nedentulous 1\nedgar 1\nedge 60\nedged 5\nedges 70\nedgeware 2\nedifice 4\nedifices 1\nedifying 2\nedin 1\nedinburgh 25\nedit 4\nedited 8\nedith 2\nediting 6\nedition 21\neditions 17\neditor 17\neditorial 2\neditorially 1\neditorials 3\neditors 5\nedmund 12\neducate 2\neducated 21\neducation 57\neducational 16\nedward 7\nedwards 1\neerie 1\nefface 1\neffaced 1\neffacing 1\neffect 187\neffected 21\neffecting 4\neffective 27\neffectively 6\neffectiveness 2\neffects 82\neffectual 3\neffectually 2\nefferent 2\neffervescing 1\neffete 1\nefficacious 9\nefficacy 3\nefficiency 8\nefficient 22\nefficiently 6\neffigy 4\neffort 130\nefforts 103\neffrayee 1\neffrontery 1\neffused 7\neffusion 34\neffusions 1\neffusive 2\nefim 3\neg 1\negerton 1\negg 14\negged 1\neggleston 1\neggs 8\neggshell 1\neglises 2\neglonitz 1\neglow 1\nego 1\negotism 8\negotistic 1\negotists 2\negress 1\negria 1\negypt 6\negyptian 3\negyptians 1\neh 89\nehrlich 4\neight 128\neighteen 24\neighteenth 22\neighth 21\neighths 1\neighties 2\neightpence 1\neighty 21\nein 6\neither 293\nejaculated 10\nejaculating 1\nejaculation 3\nejected 1\nekonomov 3\nel 1\nelaborate 5\nelaborated 4\nelapse 5\nelapsed 24\nelapses 2\nelastic 50\nelasticity 8\nelated 4\nelation 2\nelba 2\nelbe 1\nelbow 92\nelbowed 2\nelbowing 1\nelbows 24\nelbridge 2\nelchingen 1\nelder 40\nelderly 33\nelders 10\neldest 29\nelect 12\nelected 44\nelecting 4\nelection 119\nelections 37\nelective 8\nelector 3\nelectoral 20\nelectorate 1\nelectors 29\nelectric 21\nelectrical 11\nelectricity 18\nelectrode 4\nelectrolysis 11\nelectron 1\nelectronic 58\nelectronically 11\nelectronics 1\nelectrotyped 1\nelects 1\nelegance 3\nelegant 9\nelegantly 5\nelement 27\nelemental 4\nelementary 6\nelements 69\nelephant 3\nelephantiasis 30\nelephants 1\nelets 1\nelevate 5\nelevated 20\nelevates 1\nelevating 3\nelevation 16\nelevator 3\nelevators 1\neleven 21\neleventh 7\neley 1\nelias 4\nelicit 2\nelicited 15\nelided 1\neligible 7\nelihu 2\nelijah 1\neliminate 5\neliminated 7\neliminates 1\neliminating 4\nelimination 3\nelisabeth 1\nelisaveta 1\nelise 1\nelite 2\neliza 3\nelizabeth 9\nelkins 2\nellen 1\nellet 1\nellipse 2\nelliptical 1\nellis 1\nellsworth 4\nelm 1\nelocution 1\nelohim 1\nelongated 8\nelongates 1\nelongation 1\nelope 5\nelopement 1\nelopements 1\neloquence 6\neloquent 12\neloquently 4\nelse 201\nelsewhere 24\nelson 41\nelucidate 1\nelude 1\nelusive 1\nely 2\nem 5\nemaciated 9\nemaciates 1\nemaciation 4\nemail 13\nemanated 1\nemanating 2\nemanations 3\nemancipate 1\nemancipated 10\nemancipation 23\nemancipators 1\nembankment 3\nembankments 1\nembargo 7\nembargoes 1\nembark 5\nembarked 4\nembarrassed 22\nembarrassing 11\nembarrassment 19\nembarrassments 1\nembassage 1\nembassy 10\nembedded 27\nembedding 1\nembellish 2\nembers 4\nembezzlement 2\nembitter 1\nembittered 5\nemblem 2\nembodied 3\nembodiment 1\nembody 1\nembodying 1\nemboldened 2\nemboli 12\nembolic 11\nembolism 25\nembolus 19\nembossed 1\nembrace 17\nembraced 46\nembraces 5\nembracing 15\nembroidered 10\nembroidering 1\nembroidery 7\nembryo 6\nembryonic 4\nembryos 1\nemerald 2\nemerge 8\nemerged 18\nemergence 5\nemergencies 3\nemergency 6\nemerges 2\nemerging 8\nemerson 6\nemetin 1\nemigrant 4\nemigrants 5\nemigrate 1\nemigrated 2\nemigration 7\nemigre 2\nemigree 1\nemigres 1\nemilie 1\nemily 1\neminence 3\neminences 3\neminent 12\neminently 2\nemissaries 1\nemissary 2\nemission 1\nemit 3\nemitted 4\nemitting 3\nemma 2\nemolument 2\nemoluments 2\nemotion 36\nemotional 9\nemotions 10\nempereur 22\nemperor 639\nemperors 35\nempewah 2\nempewo 2\nemphasis 11\nemphasise 1\nemphasised 2\nemphasize 4\nemphasized 6\nemphasizing 2\nemphatic 4\nemphatically 4\nemphysema 3\nemphysematous 6\nempia 1\nempire 72\nempires 3\nempirical 1\nempirically 1\nemplastrum 1\nemploy 17\nemploye 2\nemployed 156\nemployee 8\nemployees 37\nemployer 15\nemployers 29\nemploying 7\nemployment 24\nemployments 2\nemploys 2\nempower 1\nempowered 12\nempowering 1\nempress 27\nempresses 1\nemprosthotonos 2\nemptied 17\nemptiest 1\nemptiness 2\nempting 1\nempty 61\nemptying 5\nempyema 10\nemulated 1\nemulating 2\nemulation 2\nemulsion 3\nemunctories 2\nen 25\nenable 24\nenabled 14\nenables 4\nenabling 6\nenact 11\nenacted 34\nenacting 1\nenactment 9\nenacts 1\nenamel 3\nencamp 1\nencamped 5\nencampment 5\nencapsulated 13\nencapsulates 2\nencapsulation 2\nencapsuled 1\nencased 1\nencephaloid 3\nenchanted 8\nenchanting 18\nenchantment 2\nenchantress 4\nenchondroma 1\nencircled 1\nenclose 1\nenclosed 10\nenclosing 2\nenclosure 7\nenclosures 1\nencoding 5\nencompass 3\nencompassed 1\nencounter 27\nencountered 16\nencountering 6\nencounters 5\nencourage 20\nencouraged 24\nencouragement 8\nencourages 1\nencouraging 10\nencroached 1\nencroaches 3\nencrustation 1\nencumbered 1\nencumbering 1\nencyclopaedia 5\nencyclopaedias 1\nencyclopedia 4\nencysted 1\nend 465\nendanger 8\nendangered 3\nendangering 1\nendarteritis 8\nendeared 1\nendearment 1\nendearments 1\nendears 1\nendeavor 5\nendeavored 2\nendeavors 3\nendeavour 3\nendeavoured 11\nendeavouring 8\nendeavours 1\nended 39\nendell 1\nendemic 3\nending 18\nendings 1\nendless 25\nendo 2\nendocarditis 4\nendocardium 1\nendoneural 1\nendoneurium 2\nendorse 4\nendorsed 10\nendorsement 1\nendorsing 1\nendothelial 9\nendothelioid 1\nendothelioma 5\nendotheliomas 1\nendotheliomata 1\nendothelium 14\nendow 1\nendowed 14\nendowing 1\nendowment 1\nends 103\nendurance 8\nendure 27\nendured 9\nenduring 7\nenema 1\nenemata 2\nenemies 39\nenemy 292\nenergetic 26\nenergetically 8\nenergies 5\nenergique 1\nenergy 45\nenfant 2\nenfants 2\nenfeebled 5\nenfin 1\nenfolded 1\nenforce 29\nenforced 12\nenforcement 21\nenforcing 2\nenfranchise 1\nenfranchised 8\nenfranchisement 6\nengage 9\nengaged 87\nengagement 48\nengagements 5\nengaging 7\nengendered 1\nenghien 5\nengine 13\nengineer 12\nengineered 1\nengineering 2\nengineers 4\nengines 2\nengland 311\nenglanders 1\nengle 1\nenglish 211\nenglishman 24\nenglishmen 3\nengorged 1\nengorgement 3\nengrained 1\nengraved 5\nengrele 1\nengrossed 14\nengrossing 1\nengulfed 1\nengulfing 1\nenhance 5\nenhanced 6\nenhancing 1\nenigma 1\nenigmatical 1\nenjoin 2\nenjoined 1\nenjoining 1\nenjoy 24\nenjoyable 4\nenjoyed 35\nenjoying 17\nenjoyment 21\nenjoys 4\nenlarge 14\nenlarged 69\nenlargement 54\nenlargements 3\nenlarges 2\nenlarging 3\nenlighten 2\nenlightened 3\nenlighteners 1\nenlightenment 8\nenlist 3\nenlisted 9\nenlistment 1\nenliven 3\nenlivened 2\nenmeshed 1\nenmities 1\nenmity 5\nennemi 1\nenns 10\nennui 2\nenormous 73\nenormously 12\nenough 175\nenquire 1\nenquiry 1\nenraged 4\nenraptured 9\nenrich 2\nenriched 3\nenriches 4\nenriching 1\nenrolled 12\nenrollment 6\nensign 2\nenslaved 1\nensnared 1\nensue 22\nensued 17\nensues 25\nensuing 4\nensuit 1\nensure 14\nensures 3\nensuring 5\nentail 3\nentailed 3\nentailing 3\nentails 3\nentangle 1\nentangled 9\nentanglement 1\nentanglements 3\nentangling 1\nentendent 1\nentente 1\nenter 107\nentered 282\nentering 68\nenterprise 72\nenterprises 11\nenterprising 5\nenters 16\nentertain 12\nentertained 9\nentertaining 10\nentertainment 7\nenthusiasm 40\nenthusiasms 1\nenthusiast 3\nenthusiastic 17\nenthusiastically 3\nentice 1\nenticed 1\nenticingly 1\nention 1\nentire 63\nentirely 90\nentirety 7\nentitle 1\nentitled 15\nentitlement 1\nentitles 1\nentitling 1\nentity 10\nentr 2\nentrance 59\nentrances 1\nentreat 6\nentreated 6\nentreaties 7\nentreating 2\nentreaty 9\nentree 1\nentrench 1\nentrenched 6\nentrenchment 5\nentrenchments 8\nentrez 3\nentries 4\nentrust 2\nentrusted 29\nentrusting 2\nentrusts 1\nentry 21\nentweat 1\nenucleated 1\nenucleation 2\nenucleators 1\nenumerate 14\nenumerated 5\nenumeration 5\nenunciated 1\nenunciation 2\nenvelope 26\nenveloped 11\nenveloping 1\nenvied 2\nenvious 9\nenviously 1\nenvironment 6\nenvironmental 1\nenvirons 1\nenvisage 1\nenvisagez 1\nenvoy 9\nenvoys 2\nenvy 14\nenvying 1\nenwich 1\nenwrapped 1\nenzyme 1\nenzymes 1\neosinophile 3\neosinophilia 1\nepaulet 1\nepaulets 4\nepaulettes 3\nephraim 1\nepi 3\nepiblast 1\nepic 1\nepicritic 7\nepics 1\nepicurean 1\nepidemic 1\nepidermis 49\nepigastrium 1\nepigram 2\nepigrams 1\nepilation 1\nepilepsy 3\nepileptic 1\nepileptics 1\nepileptiform 1\nepilogue 2\nepineurium 1\nepiphany 1\nepiphyses 9\nepiphysial 25\nepiphysiolysis 2\nepiphysis 20\nepiphysitis 5\nepiscopal 1\nepiscopalian 2\nepiscopate 1\nepisode 11\nepisodes 2\nepispasticus 4\nepistaxis 2\nepistle 4\nepistles 1\nepithelial 30\nepithelioid 3\nepithelioma 47\nepitheliomas 3\nepitheliomatous 1\nepitheliomatus 1\nepithelionia 1\nepithelium 55\nepithet 3\nepithets 1\nepitrochlear 1\nepoch 16\nepochs 2\neprouver 1\nepulis 2\nequal 108\nequaled 2\nequaling 2\nequality 40\nequalled 2\nequally 77\nequals 3\nequation 2\nequations 2\nequator 1\nequestrian 1\nequilibrium 4\nequine 1\nequino 2\nequinoctial 3\nequip 3\nequipage 2\nequipages 1\nequipment 21\nequipped 10\nequitable 3\nequities 1\nequity 4\nequivalent 15\nequivocate 1\ner 5\nera 10\neradicate 1\neradicated 1\neradicating 1\neradication 1\nerased 1\nerases 1\nerb 5\nere 1\nerect 17\nerected 14\nerecting 1\nerection 5\nerector 1\nerfurt 6\nergot 5\nergotin 1\neric 1\nerie 14\nermine 1\nermishin 1\nermolov 32\nermolovs 1\nernest 1\nerode 1\neroded 6\nerodes 2\neroding 2\nerosion 22\nerpassed 1\nerr 2\nerrand 7\nerrands 1\nerrare 1\nerratic 9\nerratically 1\nerred 2\nerroneous 7\nerroneously 2\nerror 18\nerrors 16\nerudite 1\nerupt 4\nerupted 1\nerupting 1\neruption 19\neruptions 9\neruptive 1\nerupts 7\nerysipelas 33\nerysipelatous 1\nerythema 7\nerythematous 2\nerza 9\nes 3\nesaul 32\nescapade 3\nescape 96\nescaped 30\nescapes 30\nescaping 17\nesch 2\neschar 6\nescharotic 1\nescharotics 1\neschars 1\nescort 17\nescorted 5\nescorting 1\nesmarch 2\nesp 1\nespecial 3\nespecially 403\nespied 3\nespionage 4\nespousal 1\nespouse 1\nespoused 6\nesq 3\nessay 2\nessaying 1\nessayist 1\nessays 3\nessen 1\nessence 31\nessential 92\nessentially 17\nessentials 2\nessex 1\nest 29\nestablish 45\nestablished 129\nestablishes 1\nestablishing 22\nestablishment 40\nestablishments 7\nestate 88\nestates 59\nesteem 12\nesteemed 2\nesteeming 1\nesther 1\nesthonia 1\nestimable 2\nestimate 13\nestimated 16\nestimates 1\nestimating 3\nestimation 2\nestime 2\nestranged 1\nestrangement 6\net 19\netait 1\netat 1\netats 1\netc 21\neternal 26\neternally 3\neternity 9\netes 2\netext 6\nethel 1\nether 8\netherege 1\nethical 3\nethics 4\nethnic 1\nethnographic 1\nethyl 3\netiological 1\netiology 8\netiquette 3\neton 1\netranger 2\netre 4\nety 1\neucalyptus 2\neuer 1\neugene 6\neunuchs 1\neurope 153\neuropean 99\neuropeans 1\neusol 10\neustace 1\neustachian 2\neut 1\nev 1\neva 1\nevacuate 1\nevacuated 5\nevacuation 9\nevade 2\nevaded 3\nevaluate 1\nevaluation 1\nevanescent 9\nevangelists 1\nevans 1\nevaporating 5\nevaporation 5\nevasive 1\neve 30\neven 946\nevening 265\nevenings 10\nevenly 8\nevent 111\nevents 203\neventual 2\neventualities 3\neventuality 2\neventually 33\never 274\neverett 2\nevergreen 2\neverlasting 3\nevermore 1\neverted 9\nevery 650\neverybody 127\neveryday 14\neveryone 236\neverything 451\neverywhere 60\nevewy 1\nevewybody 1\nevewyone 1\nevewything 1\nevidence 79\nevidenced 2\nevidences 4\nevident 110\nevidently 374\nevil 55\nevildoer 1\nevils 18\nevince 2\nevinced 1\nevincing 1\nevoke 3\nevoked 17\nevoking 3\nevolution 15\nevolutionary 2\nevolutions 1\nevolve 3\nevolved 8\nevstafey 2\newing 1\nex 18\nexacerbations 5\nexact 26\nexacted 2\nexacting 6\nexactions 1\nexactitude 3\nexactly 47\nexactness 1\nexaggerate 2\nexaggerated 28\nexaggeration 4\nexalt 4\nexaltation 2\nexalted 13\nexalting 1\nexalts 1\nexam 1\nexamination 72\nexaminations 5\nexamine 22\nexamined 49\nexaminer 1\nexamines 4\nexamining 35\nexample 286\nexamples 23\nexasperated 7\nexasperating 2\nexasperation 6\nexcavated 1\nexcavating 1\nexcavation 2\nexcavations 2\nexcedens 1\nexceed 8\nexceeded 14\nexceeding 9\nexceedingly 32\nexceeds 4\nexcellence 4\nexcellency 128\nexcellent 62\nexcept 164\nexcepted 1\nexcepting 7\nexception 33\nexceptional 36\nexceptionally 7\nexceptions 15\nexcess 25\nexcesses 4\nexcessive 42\nexcessively 3\nexchange 36\nexchanged 28\nexchanges 1\nexchanging 15\nexchequer 1\nexcise 18\nexcised 20\nexcises 3\nexcising 10\nexcision 35\nexcitability 7\nexcitable 2\nexcite 7\nexcited 86\nexcitedly 8\nexcitement 62\nexcites 1\nexciting 18\nexclaim 3\nexclaimed 118\nexclaiming 4\nexclamation 10\nexclamations 4\nexclude 14\nexcluded 30\nexcludes 1\nexcluding 9\nexclusion 13\nexclusionist 1\nexclusions 3\nexclusive 10\nexclusively 21\nexcoriated 1\nexcoriations 1\nexcrement 1\nexcretory 2\nexcruciating 4\nexcursion 3\nexcursions 4\nexcusable 1\nexcuse 53\nexcused 4\nexcuses 6\nexcusing 2\nexecrable 1\nexecute 19\nexecuted 40\nexecuting 9\nexecution 36\nexecutioner 5\nexecutioners 1\nexecutions 6\nexecutive 53\nexecutor 1\nexemplar 1\nexemplary 4\nexempt 9\nexempted 1\nexempting 1\nexemption 2\nexemptions 2\nexercise 54\nexercised 17\nexercises 16\nexercising 6\nexert 8\nexerted 12\nexerting 4\nexertion 19\nexertions 3\nexerts 3\nexfoliation 2\nexhaled 1\nexhales 1\nexhaust 4\nexhausted 45\nexhausting 1\nexhaustion 12\nexhaustive 1\nexhibit 18\nexhibited 4\nexhibiting 3\nexhibition 2\nexhibits 6\nexhilarating 2\nexhort 2\nexhortation 2\nexhortations 1\nexile 11\nexiled 4\nexist 44\nexisted 41\nexistence 64\nexisting 34\nexists 29\nexit 18\nexophthalmos 3\nexorbitant 1\nexorcise 1\nexostoses 14\nexostosis 19\nexotic 2\nexotoses 1\nexpand 6\nexpanded 13\nexpanding 6\nexpands 1\nexpanse 8\nexpanses 1\nexpansile 8\nexpansion 24\nexpansions 1\nexpect 61\nexpectancies 1\nexpectancy 3\nexpectant 4\nexpectantly 1\nexpectation 18\nexpectations 12\nexpected 126\nexpecting 66\nexpects 5\nexpedient 8\nexpedite 1\nexpedition 31\nexpeditionary 3\nexpeditions 7\nexpeditiously 1\nexpel 4\nexpelled 6\nexpelling 1\nexpend 3\nexpended 4\nexpenditure 6\nexpenditures 8\nexpends 3\nexpense 33\nexpenses 21\nexpensive 16\nexperience 108\nexperienced 102\nexperiences 11\nexperiencing 9\nexperiment 27\nexperimental 8\nexperimentally 4\nexperimented 1\nexperimenting 2\nexperiments 14\nexpert 7\nexpertise 1\nexperts 2\nexpiate 2\nexpiation 1\nexpiration 7\nexpire 1\nexpired 3\nexpiring 3\nexplain 123\nexplained 60\nexplaining 25\nexplains 11\nexplanation 58\nexplanations 11\nexplanatory 3\nexpletives 2\nexplicit 4\nexplicitly 6\nexplique 1\nexplode 2\nexploded 2\nexploding 2\nexploit 12\nexploitation 1\nexploited 2\nexploits 11\nexploration 12\nexplorations 3\nexploratory 4\nexplore 5\nexplored 8\nexplorer 2\nexplorers 2\nexploring 10\nexplosion 5\nexplosions 3\nexplosive 1\nexplosives 5\nexport 14\nexportation 2\nexported 2\nexporting 3\nexports 6\nexpose 16\nexposed 80\nexposes 2\nexposing 14\nexposition 8\nexpostulated 1\nexpostulating 1\nexposure 49\nexposures 3\nexpound 4\nexpounded 3\nexpress 87\nexpressed 135\nexpresses 9\nexpressing 31\nexpression 321\nexpressionless 4\nexpressions 15\nexpressive 6\nexpressly 13\nexpulsion 5\nexpunge 1\nexpunging 1\nexquisite 6\nexquisitely 1\nexsiccat 1\nexsiccated 1\next 1\nextant 1\nextemporised 1\nextend 47\nextended 75\nextending 35\nextends 28\nextension 58\nextensions 1\nextensive 51\nextensively 8\nextensor 17\nextensors 11\nextent 99\nextenuate 1\nextenuating 1\nexterior 1\nexterminate 2\nextermination 4\nexterna 5\nexternal 100\nexternally 18\nexternals 1\nextinct 2\nextinction 3\nextinguish 1\nextinguished 5\nextinguishes 1\nextirpate 1\nextirpated 1\nextirpation 6\nextolled 1\nextolling 1\nextorted 2\nextortion 2\nextra 22\nextract 8\nextracted 5\nextraction 2\nextracts 2\nextraneous 4\nextraordinarily 7\nextraordinary 74\nextravagance 2\nextravagant 3\nextravasated 14\nextravasation 8\nextravasations 4\nextreme 72\nextremely 51\nextremes 4\nextremist 1\nextremists 2\nextremites 1\nextremities 27\nextremity 52\nextricate 3\nextricated 1\nextruded 4\nextrusion 3\nexuberant 6\nexudate 22\nexudates 1\nexudation 11\nexude 2\nexuded 1\nexudes 4\nexultantly 5\nexultation 2\nexulting 2\neye 110\neyeball 3\neyebrow 1\neyebrows 36\neyed 20\neyeglass 1\neyeglasses 1\neyelashes 1\neyelid 7\neyelids 10\neyes 939\neyford 9\neying 1\neykhen 2\neylau 5\nezekiah 2\nf 152\nfable 3\nfabric 3\nfabrication 1\nfabulous 1\nfabvier 6\nfacade 2\nface 1125\nfaced 53\nfaces 162\nfacet 1\nfaceted 2\nfacetious 1\nfachons 1\nfacial 9\nfacies 5\nfacilitate 9\nfacilitated 1\nfacilitating 2\nfacilities 9\nfacility 10\nfacing 41\nfact 291\nfaction 9\nfactions 6\nfactious 2\nfacto 2\nfactor 41\nfactories 29\nfactors 24\nfactory 24\nfactotum 1\nfacts 72\nfacultative 1\nfaculties 8\nfaculty 7\nfad 1\nfaddy 2\nfade 6\nfaded 9\nfades 2\nfading 1\nfads 2\nfaecal 2\nfagged 2\nfahrenheit 1\nfail 40\nfailed 63\nfailing 29\nfails 20\nfailure 39\nfailures 5\nfain 3\nfaint 19\nfainted 6\nfainter 3\nfaintest 1\nfainthearted 1\nfainting 7\nfaintly 6\nfaintness 2\nfaints 1\nfair 55\nfairbank 3\nfairbanks 3\nfairchild 1\nfaire 8\nfairer 2\nfairest 1\nfairfield 1\nfairies 1\nfairly 25\nfairness 4\nfairy 7\nfairyland 2\nfait 5\nfaites 1\nfaith 64\nfaithful 20\nfaithfully 9\nfaithless 1\nfaithlessness 1\nfaiwy 1\nfalaba 1\nfalcon 3\nfall 124\nfallacies 1\nfallacious 1\nfallacy 1\nfallen 72\nfalleth 1\nfallibility 1\nfalling 54\nfallopian 2\nfallow 2\nfalls 25\nfalse 64\nfalsehood 10\nfalsehoods 1\nfalsely 2\nfalsified 1\nfalsity 3\nfaltered 5\nfaltering 1\nfame 15\nfamed 2\nfameuse 1\nfamiliar 79\nfamiliarity 8\nfamilies 45\nfamily 210\nfamine 3\nfamished 3\nfamous 59\nfan 8\nfanatical 1\nfancied 14\nfancier 2\nfancies 14\nfanciful 3\nfancy 50\nfancywork 1\nfaneuils 1\nfangled 1\nfangs 3\nfanlight 1\nfanned 3\nfanning 3\nfanny 1\nfantastic 13\nfantasy 1\nfanwise 1\nfar 408\nfaradic 4\nfaraway 4\nfarce 1\nfarcy 7\nfare 7\nfared 1\nfareham 1\nfares 1\nfarewell 13\nfarintosh 2\nfarm 50\nfarmer 27\nfarmerettes 1\nfarmers 112\nfarmhouse 3\nfarmhouses 2\nfarming 18\nfarms 35\nfarnham 1\nfaro 1\nfarrand 1\nfarrington 1\nfarther 103\nfarthest 12\nfarthing 2\nfas 1\nfascia 41\nfasciae 11\nfascial 1\nfasciculated 1\nfascinate 3\nfascinating 13\nfascination 4\nfashion 49\nfashionable 13\nfashionably 2\nfashioned 15\nfashioning 1\nfashions 1\nfast 39\nfasted 1\nfasten 4\nfastened 18\nfasteners 1\nfastening 2\nfaster 27\nfastidious 1\nfasting 3\nfastness 1\nfat 89\nfatal 63\nfatale 1\nfatalism 1\nfatally 5\nfate 98\nfated 7\nfateful 10\nfates 1\nfather 533\nfatherland 33\nfatherless 1\nfatherly 1\nfathers 18\nfathom 8\nfathomed 2\nfatigue 11\nfatigued 2\nfatigues 2\nfats 1\nfatted 1\nfatten 1\nfattened 4\nfattening 1\nfattest 1\nfatty 23\nfauces 6\nfault 50\nfaultfinding 1\nfaults 7\nfaulty 1\nfaust 2\nfaut 4\nfavor 81\nfavorable 23\nfavorably 5\nfavored 42\nfavoring 9\nfavorite 44\nfavorites 3\nfavoritism 3\nfavors 11\nfavour 26\nfavourable 28\nfavourably 2\nfavoured 11\nfavouring 4\nfavourite 7\nfavours 10\nfawningly 1\nfax 1\nfe 8\nfear 166\nfeared 62\nfearful 7\nfearfully 1\nfearing 20\nfearless 6\nfearlessly 3\nfears 21\nfeasible 7\nfeast 8\nfeasting 2\nfeat 4\nfeather 20\nfeatherbeds 1\nfeathered 1\nfeathers 4\nfeats 1\nfeature 61\nfeatureless 2\nfeatures 191\nfeb 1\nfebrile 5\nfebruary 39\nfed 24\nfedchenko 1\nfederal 185\nfederalism 1\nfederalist 31\nfederalists 53\nfederals 1\nfederate 3\nfederated 2\nfederation 45\nfederations 3\nfederative 1\nfedeshon 1\nfedor 2\nfedorovich 1\nfedorovna 16\nfedotov 1\nfedya 6\nfee 29\nfeeble 44\nfeebleness 3\nfeebly 10\nfeed 10\nfeedback 1\nfeedeth 1\nfeeding 15\nfeel 161\nfeeling 362\nfeelings 78\nfeels 31\nfees 15\nfeet 179\nfeigned 6\nfeind 1\nfelicitations 1\nfelicities 1\nfelicity 1\nfelix 1\nfell 177\nfeller 1\nfelling 1\nfellow 233\nfellows 47\nfellowship 1\nfelo 1\nfelon 1\nfelonies 1\nfelony 6\nfelstein 1\nfelt 697\nfelted 1\nfelts 1\nfelty 1\nfemale 18\nfemales 5\nfemgalka 1\nfeminine 17\nfeminist 1\nfemme 5\nfemmes 1\nfemora 3\nfemoral 39\nfemorals 1\nfemoris 3\nfemur 66\nfence 24\nfenced 1\nfencer 1\nfences 4\nfenchurch 2\nfencing 8\nfenton 2\nfeoklitych 1\nfeoktist 2\nfera 3\nferapontov 19\nferdinand 9\nferguson 4\nfergusson 1\nferment 8\nferments 3\nferoce 2\nferocious 4\nferociously 1\nferocity 3\nferons 1\nferret 2\nferri 1\nferries 1\nferry 8\nferrymen 1\nfertile 17\nfertility 3\nfertilizes 1\nfervent 2\nfervently 2\nfervor 5\nfess 1\nfester 1\nfestering 3\nfestival 3\nfestive 4\nfestivities 3\nfestivity 1\nfetch 29\nfetched 9\nfetching 4\nfete 11\nfetes 2\nfettered 2\nfetters 1\nfeu 1\nfeudal 15\nfeudalism 2\nfever 75\nfeverish 24\nfeverishly 7\nfeverishness 1\nfevers 2\nfew 458\nfewer 16\nfewest 1\nfez 1\nff 190\nfiance 2\nfiancee 6\nfiat 1\nfibre 2\nfibres 64\nfibrillated 2\nfibrillation 1\nfibrils 1\nfibrin 16\nfibrinous 13\nfibro 14\nfibroblasts 12\nfibroid 8\nfibroids 3\nfibroma 32\nfibromas 4\nfibromatosis 24\nfibrosa 14\nfibrosis 6\nfibrositis 16\nfibrosum 7\nfibrous 103\nfibula 15\nfichte 2\nfichu 2\nfiction 3\nfictitious 2\nfiddle 1\nfidelity 4\nfidgeted 1\nfidgeting 1\nfield 212\nfieldglass 1\nfields 77\nfieldwork 1\nfiend 1\nfiends 1\nfierce 12\nfiercely 15\nfiery 8\nfiew 1\nfifteen 61\nfifteenth 19\nfifth 60\nfifths 5\nfiftieth 1\nfifty 94\nfig 320\nfigaro 1\nfight 96\nfighter 3\nfighting 67\nfights 2\nfigner 1\nfigs 12\nfigure 103\nfigured 5\nfigurehead 1\nfigures 50\nfilament 3\nfilaments 9\nfilaria 3\nfilarial 5\nfilbert 1\nfilched 1\nfile 22\nfiled 5\nfilename 3\nfiles 8\nfilez 2\nfili 9\nfilial 2\nfiliform 1\nfiling 2\nfilipino 4\nfilipinos 6\nfill 41\nfilled 120\nfiller 1\nfilling 30\nfillmore 5\nfills 12\nfilm 8\nfilms 3\nfilmy 1\nfils 1\nfilter 4\nfiltered 1\nfilters 1\nfilth 1\nfilthy 4\nfinal 66\nfinally 156\nfinance 25\nfinanced 3\nfinances 15\nfinancial 40\nfinancially 3\nfinancier 7\nfinanciers 7\nfinancing 6\nfind 294\nfinder 1\nfinding 60\nfindings 1\nfinds 23\nfine 175\nfined 3\nfinely 11\nfiner 6\nfines 4\nfinesse 1\nfinest 11\nfinger 122\nfingerboard 1\nfingered 4\nfingering 5\nfingers 146\nfingertips 2\nfinish 49\nfinished 96\nfinishing 21\nfinite 1\nfinland 3\nfinnish 2\nfinns 1\nfinsen 2\nfir 6\nfire 274\nfirearms 6\nfirebrand 1\nfired 36\nfirelight 2\nfiremen 1\nfireplace 5\nfires 38\nfireside 3\nfirewood 3\nfireworks 5\nfirhoff 2\nfiring 90\nfirm 141\nfirmament 3\nfirmer 6\nfirmly 73\nfirmness 20\nfirms 1\nfirs 3\nfirst 1177\nfirstly 3\nfiscal 6\nfish 21\nfished 1\nfisheries 5\nfisherman 2\nfishermen 2\nfishery 1\nfishes 3\nfishing 11\nfiske 14\nfission 4\nfissure 2\nfissured 3\nfissures 5\nfissuring 1\nfist 8\nfists 9\nfistula 13\nfistulae 5\nfistulas 1\nfit 52\nfitch 1\nfitful 1\nfitness 8\nfits 14\nfitted 23\nfitting 21\nfive 279\nfiver 2\nfix 27\nfixation 8\nfixed 147\nfixedly 15\nfixes 1\nfixing 18\nfixity 2\nfixture 1\nfjords 1\nflabby 5\nflaccid 5\nflag 31\nflagella 2\nflagellae 2\nflagged 3\nflagging 1\nflagrant 3\nflags 8\nflagstaff 2\nflail 4\nflair 1\nflakes 4\nflame 15\nflamed 4\nflames 23\nflaming 8\nflammes 1\nflanders 1\nflank 100\nflanked 1\nflanking 1\nflanks 6\nflannel 3\nflap 27\nflapped 3\nflapping 3\nflaps 8\nflare 1\nflared 11\nflares 1\nflaring 5\nflash 10\nflashed 17\nflashes 3\nflashing 4\nflask 5\nflat 34\nflatboat 2\nflatly 2\nflats 1\nflatten 2\nflattened 5\nflattening 3\nflatter 7\nflattered 17\nflattering 13\nflatters 1\nflattery 4\nflatulence 1\nflaubert 1\nflaunt 1\nflavor 3\nflavour 2\nflaw 4\nflaws 1\nflax 6\nflay 2\nflayed 1\nflaying 1\nflea 2\nfleas 3\nfleches 20\nfleck 1\nflecked 2\nfled 40\nflee 11\nfleecy 3\nfleeing 13\nfleet 24\nfleeting 3\nfleets 1\nfleissig 1\nflesh 26\nfleshless 2\nfleshy 4\nfletcher 1\nfleur 1\nflew 49\nflex 6\nflexed 32\nflexibility 2\nflexible 5\nflexibly 1\nflexile 1\nflexing 6\nflexion 18\nflexor 23\nflexors 2\nflexure 1\nflexures 3\nflick 1\nflicked 2\nflickering 3\nflicking 1\nflies 8\nflight 48\nflights 1\nfling 5\nflinging 3\nflings 1\nflint 5\nflints 4\nflirt 4\nflirtatiousness 1\nflirted 2\nflirting 1\nflitted 8\nflitting 1\nfloat 6\nfloated 8\nfloating 13\nflock 6\nflocked 2\nflocking 1\nflog 2\nflogged 6\nflogging 3\nflood 14\nflooded 8\nflooding 4\nfloods 2\nfloor 106\nflooring 2\nfloors 4\nflop 2\nflopped 4\nfloppy 1\nflora 9\nflorence 2\nflorid 2\nflorida 20\nfloridas 6\nflorists 1\nflotation 1\nfloundered 1\nfloundering 4\nflour 14\nflourish 11\nflourished 16\nflourishing 21\nflout 1\nflouted 1\nflow 48\nflowed 27\nflower 18\nflowered 1\nflowering 1\nflowerpots 1\nflowers 14\nflowing 20\nflown 3\nflows 6\nfluctuated 1\nfluctuates 1\nfluctuating 13\nfluctuation 19\nfluff 1\nfluffy 5\nfluid 100\nfluids 16\nflung 30\nflurried 5\nflurries 1\nflurry 1\nflurrying 1\nflush 12\nflushed 78\nflushing 15\nflustered 2\nflute 1\nflutter 2\nfluttered 6\nfluttering 8\nfly 39\nflying 35\nfn 1\nfo 4\nfoal 1\nfoam 4\nfoaming 2\nfoams 1\nfoch 3\nfoci 17\nfocus 37\nfocused 2\nfodder 7\nfoe 21\nfoes 10\nfoetal 5\nfoetid 3\nfoetus 3\nfog 23\nfoggy 3\nfogs 1\nfoh 1\nfoi 3\nfoibles 1\nfoie 1\nfoil 1\nfoka 3\nfold 23\nfolded 24\nfolding 8\nfolds 15\nfoliaceous 1\nfoliage 4\nfoliated 1\nfolio 1\nfolk 37\nfolks 10\nfollette 5\nfollicle 4\nfollicles 10\nfollicular 3\nfollow 117\nfollowed 329\nfollower 2\nfollowers 23\nfollowing 208\nfollows 67\nfolly 19\nfoment 2\nfomentation 6\nfomentations 11\nfomented 1\nfond 61\nfonder 4\nfondest 2\nfondly 2\nfondness 3\nfont 3\nfontanelle 1\nfontanelles 1\nfoo 1\nfood 75\nfoods 4\nfoodstuffs 1\nfool 52\nfooled 2\nfoolish 20\nfoolishly 1\nfoolishness 2\nfools 9\nfoolscap 2\nfoot 200\nfootball 2\nfootboard 1\nfootfall 2\nfootfalls 2\nfootgear 2\nfoothold 2\nfooting 15\nfootlights 1\nfootman 48\nfootmarks 3\nfootmen 31\nfootnotes 4\nfootpace 7\nfootpaths 1\nfootprints 1\nfootstep 6\nfootsteps 31\nfoppishness 1\nfor 6941\nforage 7\nforagers 1\nforaging 6\nforamen 4\nforays 1\nforbade 17\nforbear 1\nforbearance 1\nforbid 11\nforbidden 20\nforbidding 20\nforbids 1\nforce 239\nforced 76\nforceful 3\nforceps 15\nforcer 1\nforces 176\nforci 3\nforcible 10\nforcibly 11\nforcing 6\nford 7\nfordham 2\nfords 1\nfore 1\nforearm 48\nforearms 1\nforeboding 4\nforebodings 2\nforecast 5\nforecasting 1\nforecastle 1\nforecasts 1\nforeclosing 1\nforefather 2\nforefathers 1\nforefinger 7\nforefingers 1\nforefront 1\nforego 2\nforegoing 2\nforegone 1\nforeground 1\nforehead 66\nforeheads 2\nforeign 177\nforeigner 12\nforeigners 22\nforeleg 2\nforelegs 2\nforeman 5\nforemen 1\nforemost 16\nforenoon 1\nforepaws 1\nforerunner 1\nforerunners 2\nforesaw 9\nforesee 9\nforeseeing 3\nforeseen 22\nforesees 3\nforeshadowed 1\nforeshadowing 2\nforesight 12\nforest 76\nforestall 3\nforestalled 2\nforestalling 4\nforesters 1\nforestry 4\nforests 44\nforetaste 1\nforetell 1\nforetold 7\nforever 58\nforevermore 1\nforewarned 1\nforfeit 9\nforfeited 1\nforfeiture 1\nforfeitures 1\nforgathered 1\nforgave 4\nforge 12\nforged 4\nforger 1\nforgeries 1\nforgery 3\nforges 5\nforget 84\nforgetful 1\nforgetfulness 6\nforgets 8\nforgetting 31\nforging 2\nforgive 64\nforgiven 9\nforgiveness 16\nforgiving 3\nforgo 3\nforgot 27\nforgotten 64\nfork 3\nforks 2\nforlorn 5\nform 507\nformal 21\nformalin 4\nformalities 6\nformality 4\nformally 6\nformat 10\nformation 215\nformations 3\nformats 5\nforme 1\nformed 235\nformer 177\nformerly 77\nformication 1\nformidable 25\nforming 62\nforminsk 8\nformio 1\nformless 1\nforms 255\nformula 4\nformulate 3\nformulated 8\nformulating 2\nformulation 1\nforsake 2\nforsaken 4\nforsaking 1\nforsook 2\nfort 19\nforth 82\nforthcoming 9\nforthwith 3\nforties 2\nfortification 4\nfortifications 4\nfortified 14\nfortify 4\nfortifying 1\nfortitude 3\nfortnight 29\nfortnightly 1\nfortress 4\nfortresses 4\nforts 8\nfortuitously 2\nfortunate 21\nfortunately 16\nfortune 43\nfortunes 46\nforty 106\nforum 5\nforward 229\nforwarded 4\nforwards 18\nfossa 4\nfossae 2\nfossil 1\nfoster 6\nfostered 5\nfostering 1\nfouche 2\nfought 52\nfoul 20\nfoulis 1\nfound 549\nfoundation 86\nfoundations 22\nfounded 76\nfounder 4\nfounders 5\nfounding 8\nfoundling 2\nfoundries 1\nfoundry 1\nfountain 3\nfour 289\nfourchette 1\nfournier 1\nfours 3\nfourteen 29\nfourteenth 27\nfourth 78\nfourthly 3\nfourths 14\nfowl 3\nfowler 6\nfowls 6\nfox 23\nfoxes 1\nfoxy 1\nfr 5\nfraction 2\nfractions 1\nfracture 64\nfractured 9\nfractures 34\nfraenkel 5\nfraenum 2\nfragile 1\nfragilitas 4\nfragility 4\nfragment 16\nfragmentary 1\nfragments 21\nfragrance 5\nfragrant 4\nfrail 6\nfrailty 1\nframbesia 1\nframe 36\nframed 12\nframers 4\nframes 2\nframework 23\nframing 9\nfrancais 2\nfrancaise 1\nfrance 170\nfrances 1\nfranchise 5\nfranchises 5\nfrancis 22\nfrancisco 14\nfranco 1\nfrancs 2\nfrank 31\nfrankfort 2\nfranklin 54\nfranklins 1\nfrankly 23\nfrankness 9\nfrantic 4\nfrantically 4\nfranz 5\nfraser 3\nfraternal 1\nfraternity 2\nfraternizing 1\nfratricidal 1\nfraud 15\nfrauds 3\nfraudulent 2\nfraught 2\nfraulein 1\nfray 2\nfrayed 1\nfreak 3\nfreakish 1\nfreaks 1\nfreckled 3\nfred 1\nfrederick 8\nfree 421\nfreebody 1\nfreed 16\nfreedman 2\nfreedmen 15\nfreedom 172\nfreehold 24\nfreeholder 2\nfreeholders 10\nfreeholds 2\nfreeing 1\nfreely 67\nfreemason 7\nfreemasonry 20\nfreemasons 12\nfreemen 4\nfreer 1\nfrees 1\nfreesoil 1\nfreest 1\nfreewill 1\nfreeze 1\nfreezing 8\nfreight 16\nfremitus 1\nfremont 7\nfrench 1070\nfrenchie 1\nfrenchies 2\nfrenchified 1\nfrenchman 102\nfrenchmen 50\nfrenchwoman 12\nfrenchy 3\nfreneau 1\nfrenzied 1\nfrenzy 8\nfrequency 34\nfrequent 51\nfrequented 4\nfrequently 218\nfrere 2\nfresh 160\nfreshened 1\nfreshly 12\nfreshness 9\nfresno 2\nfret 4\nfretful 2\nfretted 1\nfriable 3\nfriant 6\nfriar 1\nfriction 19\nfriday 11\nfridge 1\nfried 1\nfriedland 5\nfriedlander 3\nfriedrich 1\nfriend 283\nfriendliest 1\nfriendliness 4\nfriendly 56\nfriends 156\nfriendship 44\nfriendships 3\nfrieze 10\nfrigate 3\nfright 18\nfrighten 10\nfrightened 145\nfrightening 4\nfrightful 8\nfrightfully 1\nfrigid 3\nfrill 3\nfrilled 1\nfringe 6\nfringed 1\nfringes 16\nfrisco 4\nfrise 1\nfritz 2\nfrivolity 2\nfrivolous 4\nfrivolously 1\nfro 16\nfrock 13\nfrocked 1\nfrocks 2\nfrog 3\nfrogged 1\nfrola 3\nfrolic 1\nfrolicking 1\nfrom 5709\nfront 359\nfrontal 11\nfronted 1\nfrontenac 1\nfrontier 71\nfrontiers 12\nfrontiersman 2\nfrontiersmen 5\nfronts 1\nfrost 37\nfrosted 1\nfrosts 4\nfrosty 7\nfrothingham 1\nfrothy 2\nfrowde 1\nfrown 23\nfrowned 43\nfrowning 49\nfrowningly 1\nfroze 1\nfrozen 17\nfrugal 3\nfruhstuck 1\nfruit 20\nfruitful 5\nfruition 1\nfruitless 5\nfruits 14\nfruschtique 1\nfrustrate 3\nfrustrated 1\nfrustration 1\nfrye 1\nft 2\nftp 5\nfuchsin 1\nfuck 1\nfucking 2\nfuel 8\nfugitive 10\nfugitives 11\nfugue 2\nfulfil 3\nfulfill 20\nfulfilled 21\nfulfilling 5\nfulfillment 9\nfulfilment 1\nfulfils 3\nfull 267\nfuller 12\nfullest 1\nfulling 1\nfullness 4\nfully 69\nfulminating 2\nfulness 1\nfulton 5\nfumbled 1\nfumbling 6\nfumed 1\nfumes 1\nfuming 1\nfun 25\nfunction 57\nfunctional 9\nfunctionary 1\nfunctionate 3\nfunctionating 1\nfunctions 22\nfund 14\nfundamental 21\nfundamentally 2\nfundamentals 1\nfunded 1\nfunding 13\nfundraising 3\nfunds 27\nfundus 1\nfuneral 12\nfungate 3\nfungated 1\nfungates 1\nfungating 9\nfungus 7\nfunke 3\nfunnel 1\nfunnier 1\nfunniest 2\nfunny 25\nfur 38\nfuries 1\nfurieuse 1\nfurious 9\nfuriously 6\nfurlough 3\nfurnace 4\nfurnaces 1\nfurnish 29\nfurnished 28\nfurnishes 7\nfurnishing 4\nfurniture 26\nfurred 1\nfurrow 3\nfurrowed 2\nfurrows 2\nfurry 1\nfurs 10\nfurther 138\nfurthermore 8\nfurthest 2\nfurtive 2\nfurtively 2\nfurunculus 2\nfury 19\nfuse 6\nfused 6\nfuses 1\nfusiform 12\nfusillade 1\nfusing 1\nfusion 6\nfuss 11\nfussed 1\nfussily 1\nfussing 1\nfussy 1\nfutile 15\nfutilities 1\nfutility 6\nfuture 126\nfwashing 1\nfwiend 4\nfwo 1\nfwom 6\ng 56\nga 1\ngabions 1\ngables 1\ngabriel 6\ngachina 1\ngadsden 4\ngag 2\ngage 4\ngaiety 14\ngaily 38\ngain 44\ngained 45\ngainer 1\ngainful 1\ngainfully 1\ngaining 14\ngains 20\ngait 8\ngaitered 1\ngaiters 4\ngal 1\ngalant 1\ngalaxy 1\ngale 6\ngalere 1\ngales 2\ngalicia 1\ngalilee 1\ngalitsyn 1\ngall 4\ngallant 12\ngallantly 2\ngallantry 1\ngallatin 2\ngalled 1\ngalleries 1\ngallery 11\ngalley 1\ngallicism 1\ngallicisms 1\ngalling 3\ngallon 1\ngallop 42\ngalloped 100\ngalloping 36\ngallops 1\ngalloway 1\ngallows 5\ngaloshes 2\ngalvanic 6\ngalvanised 1\ngalvanism 1\ngalvanometer 1\ngalveston 1\ngalyl 2\ngamble 1\ngambler 6\ngambling 6\ngambols 1\ngame 55\ngames 7\ngamut 1\ngang 10\nganges 1\nganglia 12\nganglion 29\nganglionic 5\ngangrene 169\ngangrenous 11\ngangs 2\ngangway 1\ngantlet 2\nganze 2\ngaol 3\ngap 47\ngape 7\ngaped 3\ngapes 1\ngaping 6\ngaps 1\ngarage 1\ngarb 1\ngarbs 1\ngarcon 2\ngarden 68\ngardener 8\ngardeners 1\ngardening 1\ngardens 11\ngare 1\ngarfield 9\ngargle 1\ngarlic 1\ngarment 5\ngarments 11\ngarnering 1\ngarnished 1\ngarre 2\ngarrett 1\ngarrison 11\ngarrisons 1\ngarrulous 1\ngarrulously 1\ngarter 1\ngarters 1\ngas 16\ngascon 1\ngasconades 1\ngascons 2\ngase 1\ngaseous 3\ngases 8\ngasfitters 2\ngash 2\ngaslight 1\ngasogene 1\ngasoline 1\ngasp 3\ngasped 11\ngaspee 3\ngasping 5\ngasps 1\ngasserian 2\ngastein 1\ngastric 5\ngastro 6\ngastrocnemius 3\ngate 65\ngates 34\ngateway 13\ngather 19\ngathered 59\ngathereth 1\ngathering 20\ngatherings 5\ngathers 2\ngauge 2\ngaul 2\ngaunt 5\ngaunter 1\ngauntlet 6\ngauze 70\ngauzy 1\ngave 442\ngavest 2\ngavril 1\ngay 35\ngaze 28\ngazed 94\ngazers 2\ngazette 6\ngazetteer 1\ngazettes 1\ngazing 67\ngbnewby 2\ngdp 1\ngdrard 1\ngear 4\ngeben 1\ngee 1\ngeese 18\ngeiser 1\ngelatin 6\ngelatinous 8\ngelding 3\ngem 3\ngems 15\ngen 1\ngendarme 1\ngendarmes 2\ngender 1\ngene 1\ngenealogical 4\ngenera 1\ngeneral 836\ngeneralisation 1\ngeneralised 11\ngeneralities 1\ngeneralization 3\ngeneralizations 1\ngeneralized 2\ngeneralizing 1\ngenerally 91\ngenerals 117\ngenerate 1\ngeneration 33\ngenerations 22\ngenerative 1\ngeneraux 1\ngenerosity 12\ngenerous 20\ngenerously 3\ngenesee 1\ngenesis 1\ngenet 5\ngenetic 1\ngeneva 5\ngenevese 1\ngenewal 1\ngenial 7\ngeniality 2\ngenii 1\ngenital 8\ngenitals 17\ngenito 1\ngenius 74\ngeniuses 2\ngenlis 6\ngenoa 4\ngenteel 1\ngentian 1\ngentile 1\ngentille 1\ngentle 58\ngentlefolk 2\ngentleman 99\ngentlemanly 1\ngentlemen 100\ngentleness 6\ngentlest 1\ngentlewoman 1\ngently 37\ngentry 19\ngenu 3\ngenug 1\ngenuine 15\ngenuinely 4\ngenus 1\ngeoffrey 1\ngeographic 1\ngeographical 9\ngeography 6\ngeological 2\ngeologists 1\ngeology 2\ngeometric 1\ngeometrical 2\ngeometry 6\ngeorge 150\ngeorges 2\ngeorgetown 1\ngeorgia 54\ngeorgian 2\ngerakov 1\ngerard 7\ngerasim 26\ngerm 7\ngermain 1\ngerman 196\ngermanic 1\ngermans 64\ngermantown 4\ngermany 69\ngermicides 2\ngerminal 1\ngermination 1\ngerms 3\ngerry 5\ngertrude 1\ngervais 4\ngervinus 2\ngesellschaft 1\ngesticulated 1\ngesticulating 8\ngesticulations 1\ngesture 60\ngestures 8\nget 468\ngets 22\ngetting 92\ngettysburg 7\ngewiss 1\nghastly 3\nghent 1\nghost 7\nghostly 1\nghosts 1\ngiant 28\ngiantism 2\ngiants 2\ngibb 1\ngibbon 4\ngibe 2\ngibraltar 3\ngibrard 1\ngibson 1\ngiddiness 4\ngiddy 3\ngideon 2\ngiemsa 1\ngifford 1\ngift 11\ngifted 8\ngifts 6\ngig 3\ngigantic 23\ngiggler 1\ngilbert 2\ngilded 1\ngillies 2\ngilman 2\ngilt 8\ngimlet 1\ngin 5\nginger 1\ngingerbread 3\ngipsies 7\ngipsy 1\ngirchik 1\ngird 1\ngirdle 3\ngirdled 2\ngirdles 1\ngirl 166\ngirlfriend 1\ngirlhood 2\ngirlish 8\ngirlishly 1\ngirls 71\ngirt 3\ngirth 10\ngirths 3\ngist 3\ngit 1\ngive 523\ngiven 364\ngives 88\ngiving 186\nglad 150\ngladden 1\ngladdening 2\nglade 4\ngladly 11\ngladness 3\ngladsome 1\ngladstone 2\nglairy 3\nglamour 3\nglance 91\nglanced 176\nglances 26\nglancing 98\ngland 52\nglanders 13\nglands 275\nglandulae 1\nglandular 16\nglans 6\nglare 5\nglared 2\nglaring 4\nglasgow 1\nglass 116\nglasses 31\nglassy 2\nglazed 7\ngleam 12\ngleamed 15\ngleaming 5\ngleaned 1\nglee 3\ngleeful 4\ngleefully 3\nglen 1\nglenoid 1\nglide 2\nglided 7\ngliding 7\nglimmer 4\nglimmered 3\nglimpse 18\nglimpses 6\nglinka 1\nglint 2\nglints 1\nglio 3\nglioma 4\ngliomatous 4\nglisten 1\nglistened 1\nglistening 8\nglitter 10\nglittered 16\nglittering 34\ngloat 2\nglobal 2\nglobe 16\nglobular 7\nglogau 2\ngloom 22\ngloomier 3\ngloomily 13\ngloomy 36\ngloria 1\nglories 2\nglorify 1\nglorious 11\nglory 49\ngloss 2\nglossal 1\nglossy 7\nglottis 4\ngloucester 1\nglove 16\ngloved 5\ngloves 29\nglow 22\nglowed 3\nglowing 14\nglued 4\nglum 1\nglumly 1\ngluteal 10\ngluteus 3\ngluttony 1\nglycerin 9\nglycerine 6\nglycogen 4\nglycosuria 6\ngnarled 3\ngnashed 1\ngnashing 1\ngnawing 3\ngnaws 1\ngo 905\ngoaded 1\ngoading 1\ngoal 28\ngoalkeeper 1\ngoals 2\ngoat 3\ngoats 1\ngoatskin 1\ngobble 1\ngobelin 1\ngod 363\ngoddaughter 1\ngoddess 2\ngodfather 4\ngodfrey 6\ngodfreys 4\ngodlike 1\ngodly 2\ngodmother 1\ngods 3\ngodson 2\ngoes 60\ngoeth 2\ngoing 376\ngoings 2\ngoitre 2\ngold 125\ngoldbach 1\ngolden 24\ngolf 1\ngolfer 2\ngoliath 4\ngolitsyn 6\ngolukhovski 1\ngomez 1\ngompers 8\ngone 240\ngong 1\ngonococcal 7\ngonococci 1\ngonococcus 3\ngonorrhoea 13\ngonorrhoeal 19\ngood 744\ngoodby 1\ngoodge 2\ngoodhearted 3\ngoodly 1\ngoodness 38\ngoods 81\ngoodwill 1\ngoodwins 1\ngoose 32\ngoot 3\ngorchakov 1\ngordon 3\ngorge 2\ngorgeous 1\ngorges 2\ngorilla 1\ngorki 9\ngory 3\ngosling 1\ngosp 1\ngospel 14\ngospels 4\ngossamer 1\ngossip 25\ngossiping 1\ngossips 3\ngossner 1\ngot 280\ngothic 2\ngott 1\ngotten 2\ngottsreich 1\ngouge 6\ngouged 1\ngout 12\ngouty 25\ngouvernement 1\ngouverneur 6\ngovern 14\ngoverned 20\ngoverneor 1\ngoverness 14\ngovernesses 11\ngoverning 16\ngovernment 698\ngovernmental 5\ngovernments 34\ngovernor 145\ngovernors 31\ngoverns 2\ngowers 1\ngown 53\ngowns 3\ngr 4\ngrab 1\ngrabbed 4\ngrabern 14\ngrabs 1\ngracchus 1\ngrace 21\ngraceful 11\ngracefully 6\ngraces 2\ngracieux 1\ngracilis 1\ngracious 29\ngraciously 9\ngrade 11\ngrades 7\ngradual 24\ngradually 89\ngraduate 4\ngraduated 6\ngraduates 1\ngrady 1\ngraecorum 1\ngraf 1\ngraft 18\ngrafted 3\ngrafting 55\ngrafts 36\ngraham 1\ngrain 56\ngrains 15\ngram 6\ngrammar 2\ngrammatical 1\ngranaries 2\ngranary 3\ngrand 81\ngrandchildren 1\ngranddad 6\ngranddaughter 2\ngrande 4\ngrandee 5\ngrandees 1\ngrandeur 12\ngrandfather 16\ngrandfathers 1\ngrandiloquent 1\ngrandiloquently 1\ngrandly 1\ngrandmother 5\ngrands 1\ngrandson 8\ngranger 2\ngrangers 6\ngranges 2\ngranite 1\ngranny 1\ngrant 61\ngranted 46\ngranting 18\ngrants 21\ngranular 7\ngranulating 11\ngranulation 82\ngranulations 60\ngranules 3\ngranuloma 2\ngranulomata 1\ngranulosum 1\ngrape 4\ngrapes 1\ngrapeshot 13\ngraph 1\ngraphics 1\ngrappled 1\ngras 1\ngrasp 36\ngrasped 17\ngrasping 14\ngrass 40\ngrasseyement 1\ngrasshoppers 1\ngrassland 1\ngrassy 1\ngrate 5\ngrated 2\ngrateful 24\ngratefully 13\ngratification 3\ngratified 2\ngratify 4\ngratifying 2\ngrating 10\ngratitude 20\ngratuitous 1\ngratuity 1\ngrave 49\ngravel 8\ngraveled 1\ngravely 11\ngraven 1\ngraver 2\ngraves 2\ngravesend 4\ngravest 1\ngravid 1\ngravitated 1\ngravitation 6\ngravity 27\ngray 89\ngrayish 1\ngraze 1\ngrazed 2\ngrazing 7\ngrease 4\ngreasy 8\ngreat 792\ngreatcoat 15\ngreatcoats 10\ngreater 143\ngreatest 72\ngreatly 58\ngreatness 24\ngrecian 1\ngrecque 2\ngreece 5\ngreed 1\ngreedily 6\ngreediness 2\ngreedy 4\ngreek 5\ngreeks 3\ngreeley 9\ngreen 65\ngreenback 6\ngreenbackers 6\ngreenbacks 12\ngreene 6\ngreenhouse 1\ngreenish 11\ngreenstick 2\ngreenwich 1\ngreet 9\ngreeted 27\ngreeting 24\ngreetings 12\ngregory 3\ngrekov 5\ngrenade 2\ngrenadier 6\ngrenadiers 8\ngrenville 10\ngrew 166\ngrewsome 1\ngrey 39\ngreyish 14\ngrice 1\ngrid 1\ngridneva 1\ngrief 47\ngrievance 6\ngrievances 15\ngrieve 7\ngrieved 13\ngrieving 2\ngrievous 6\ngriffe 3\ngriffiths 1\ngrim 13\ngrimace 12\ngrime 1\ngrimesby 8\ngrimke 1\ngrimly 1\ngrin 8\ngrind 3\ngrinder 2\ngrinding 2\ngrinned 2\ngrinning 4\ngrip 13\ngrippe 2\ngripped 3\ngripping 4\ngrist 1\ngrit 1\ngritti 1\ngritty 1\ngrizzled 9\ngrizzly 2\ngrm 7\ngrms 1\ngroan 11\ngroaned 15\ngroaning 5\ngroans 14\ngroat 1\ngrocer 1\ngroin 36\ngroom 29\ngroomed 4\ngrooms 2\ngroove 11\ngrooved 2\ngrooves 6\ngrooving 1\ngroping 2\ngros 1\ngross 28\ngrossich 1\ngrossly 4\ngrossvater 1\ngrosvenor 2\ngrotesque 3\nground 170\ngrounded 2\ngroundless 3\ngrounds 41\ngroup 139\ngrouped 5\ngrouping 2\ngroups 67\ngrove 3\ngrover 6\ngroves 1\ngrow 74\ngrowers 3\ngrowing 153\ngrowl 1\ngrowled 4\ngrowling 1\ngrown 100\ngrownup 2\ngrows 30\ngrowth 225\ngrowths 49\ngrs 2\ngrudge 11\ngrudged 2\ngrudging 2\ngruel 2\ngruesome 1\ngruff 2\ngruffly 1\ngrumble 1\ngrumbled 6\ngrumbling 4\ngrumous 2\ngrumpy 1\ngrunt 2\ngrunted 1\ngruntersdorf 1\ngrunth 4\ngrunting 2\ngrunts 1\ngruzinski 2\nguai 1\nguaiacol 1\nguam 3\nguarantee 16\nguaranteed 6\nguaranteeing 4\nguarantees 2\nguard 56\nguarded 7\nguardhouse 3\nguardian 5\nguardians 1\nguardianship 3\nguarding 3\nguards 93\nguardsman 8\nguardsmen 4\nguatemala 1\nguerre 2\nguerrilla 16\nguerrillas 3\nguess 17\nguessed 21\nguesses 1\nguessing 9\nguest 17\nguests 72\ngueules 2\nguewilla 1\nguffaw 1\nguiana 3\nguidance 13\nguide 24\nguided 17\nguideline 1\nguides 4\nguiding 5\nguild 1\nguile 1\nguilford 4\nguillotined 1\nguilt 14\nguiltlessness 1\nguilty 42\nguinea 6\nguineas 3\nguise 8\nguitar 10\ngulch 3\ngulf 13\ngulled 1\ngullet 3\ngullies 2\ngully 8\ngulp 2\ngulped 1\ngum 6\ngumboil 2\ngumma 36\ngummata 15\ngummatous 31\ngummed 1\ngums 8\ngun 63\ngunner 8\ngunners 2\ngunpowder 13\nguns 112\ngunshot 6\ngurgle 1\ngurgling 1\nguryev 2\ngush 1\ngushed 2\ngushers 1\ngushes 1\ngushing 1\ngust 2\ngustave 1\ngusto 1\ngut 14\ngutenberg 263\nguthrie 1\ngutta 1\ngutted 1\ngutter 2\nguttered 1\nguttering 1\ngutters 1\nguttural 2\nguy 2\ngwace 1\ngweat 1\ngwief 1\ngwiska 1\ngwovel 1\ngwown 1\ngwudge 1\ngymnastics 1\ngypsies 7\ngypsy 9\ngzhat 1\nh 79\nha 75\nhabeas 8\nhabeus 1\nhabit 55\nhabitat 2\nhabitation 2\nhabitations 1\nhabits 39\nhabitual 22\nhabitually 2\nhack 4\nhacked 1\nhacking 2\nhad 7383\nhadn 12\nhaemangioma 3\nhaematemesis 4\nhaematoma 19\nhaematuria 3\nhaemic 1\nhaemoglobin 2\nhaemolysis 1\nhaemophilia 11\nhaemophilic 7\nhaemophilics 1\nhaemophylics 1\nhaemoptysis 2\nhaemorrhage 153\nhaemorrhages 14\nhaemorrhagic 3\nhaemorrhoids 1\nhaemostasis 1\nhaemostatics 3\nhafiz 1\nhaggard 3\nhague 8\nhail 5\nhailed 7\nhair 234\nhairdressing 1\nhaired 31\nhairless 1\nhairs 15\nhairy 14\nhaiti 7\nhaitian 1\nhale 1\nhaled 1\nhalf 318\nhalfway 19\nhalifax 2\nhall 83\nhallo 2\nhallooing 1\nhalls 4\nhallucinations 1\nhallux 4\nhalo 3\nhalt 20\nhalted 28\nhalting 12\nhalves 5\nham 6\nhamburg 3\nhamilton 78\nhamlet 1\nhamlets 1\nhamlin 1\nhammer 4\nhammered 2\nhammering 5\nhammond 1\nhampden 1\nhamper 2\nhampered 3\nhampering 1\nhampshire 27\nhampton 1\nhamstrings 3\nhancocks 1\nhand 834\nhandbills 1\nhandcuffed 1\nhandcuffs 1\nhanded 80\nhandedness 1\nhandful 14\nhandicap 2\nhandicapped 5\nhandicapping 1\nhandicaps 2\nhandicraft 1\nhandicrafts 3\nhandiest 1\nhanding 14\nhandiwork 1\nhandkerchief 56\nhandkerchiefs 6\nhandle 21\nhandled 11\nhandleless 1\nhandley 6\nhandling 14\nhandrails 1\nhands 455\nhandsome 117\nhandsomely 2\nhandsomer 2\nhandsomest 1\nhandwriting 6\nhandy 5\nhaney 1\nhang 17\nhanged 16\nhanging 42\nhangings 1\nhangs 6\nhankey 1\nhanna 1\nhannah 2\nhannibal 1\nhanover 5\nhanoverian 1\nhanoverians 1\nhans 1\nhansom 6\nhansoms 1\nhappen 99\nhappened 208\nhappening 47\nhappens 64\nhappier 13\nhappiest 7\nhappily 21\nhappiness 143\nhappy 218\nharassed 3\nharassing 1\nharbingers 1\nharbor 9\nharbored 1\nharboring 2\nharbors 6\nharbour 2\nharboured 1\nhard 180\nhardenburg 1\nhardened 10\nhardening 1\nharder 19\nhardest 6\nhardhearted 2\nhardihood 1\nharding 12\nhardly 173\nhardness 5\nhardship 7\nhardships 6\nhardtack 1\nhardware 7\nhardy 8\nhare 36\nhares 2\nhark 2\nharlem 2\nharley 1\nharm 42\nharmed 2\nharmful 21\nharming 2\nharmless 7\nharmlessly 2\nharmonies 1\nharmonious 6\nharmonises 1\nharmonium 1\nharmonize 1\nharmonized 1\nharmony 15\nharms 2\nharness 27\nharnessed 11\nharnessing 1\nharold 1\nharp 8\nharper 5\nharpoon 2\nharried 3\nharrier 1\nharriet 9\nharris 4\nharrisburg 1\nharrison 25\nharrogate 2\nharrow 3\nharry 2\nharrying 1\nharsh 22\nharsher 1\nharshly 4\nhart 49\nhartford 13\nharvard 11\nharvest 13\nharvested 2\nharvesters 1\nharvesting 3\nharvests 5\nharvey 1\nhas 1603\nhasn 9\nhasp 1\nhast 8\nhaste 30\nhasten 10\nhastened 29\nhastening 12\nhastens 2\nhastily 56\nhastings 1\nhasty 7\nhat 105\nhata 2\nhatched 1\nhatchet 1\nhate 20\nhated 21\nhateful 3\nhatest 1\nhath 7\nhatherley 18\nhating 2\nhatred 25\nhats 10\nhatters 1\nhatty 3\nhaughty 4\nhaugwitz 1\nhaul 5\nhauled 1\nhaulers 1\nhauling 6\nhaunched 2\nhaunches 1\nhaunt 2\nhaunted 3\nhaute 1\nhavana 3\nhave 3493\nhaven 39\nhaversian 8\nhaving 673\nhavoc 4\nhawaii 15\nhawaiian 5\nhawk 5\nhawked 1\nhawkers 4\nhaworth 19\nhawthorne 2\nhay 42\nhayes 12\nhayfield 1\nhayfork 1\nhayling 1\nhayn 2\nhayne 7\nhays 1\nhazard 3\nhazarded 1\nhazardous 1\nhazards 3\nhaze 4\nhazel 7\nhaziness 2\nhe 12401\nhead 725\nheadache 16\nheaddress 3\nheaded 37\nheader 7\nheadgear 1\nheading 10\nheadings 1\nheadline 1\nheadlong 9\nheadmaster 1\nheadquarters 46\nheads 69\nheadstrong 1\nheadwaters 4\nheadway 1\nheah 1\nheal 40\nhealed 16\nhealers 1\nhealing 106\nheals 12\nhealth 120\nhealthy 60\nheap 17\nheaped 3\nheaping 5\nheaps 3\nhear 183\nheard 636\nhearer 2\nhearers 4\nhearing 93\nhearings 1\nhearken 1\nhears 11\nhearst 1\nheart 256\nhearted 5\nheartfelt 2\nhearth 1\nheartily 15\nheartless 6\nheartrending 1\nhearts 30\nhearty 12\nheat 83\nheated 15\nheath 2\nheathen 2\nheathens 1\nheather 2\nheating 1\nheave 4\nheaved 7\nheaven 70\nheavenly 7\nheavens 17\nheavers 1\nheavier 18\nheaviest 1\nheavily 62\nheaviness 3\nheaving 4\nheavy 139\nheberden 3\nhebrew 4\nhecker 1\nhectare 1\nhectic 8\nhedge 4\nhedges 2\nhedjaz 2\nheed 15\nheeded 1\nheeding 8\nheedless 6\nheel 21\nheeled 1\nheelless 1\nheels 29\nheh 2\nheight 36\nheightened 5\nheights 23\nheinous 1\nheir 10\nheiress 12\nheiresses 6\nheirs 8\nheld 287\nhelen 6\nhelena 5\nhelene 165\nhelicopter 1\nheligoland 1\nheliotherapy 2\nhell 4\nhellish 3\nhello 1\nhelm 1\nhelmet 3\nhelmets 1\nheloise 2\nhelp 230\nhelped 56\nhelper 2\nhelpful 8\nhelping 18\nhelpless 22\nhelplessly 7\nhelplessness 2\nhelpmeet 1\nhelps 5\nhelter 1\nhem 4\nhemiplegia 2\nhemisphere 8\nhemmed 7\nhemoplastin 1\nhemp 11\nhempen 2\nhen 6\nhence 32\nhenceforth 5\nhendricks 1\nhendrikhovna 21\nhenker 1\nhenri 1\nhenrietta 1\nhenry 51\nhepatic 2\nhepburn 4\nher 5284\nherald 2\nheralds 1\nherb 5\nherbert 2\nherbivora 1\nherculean 1\nhercules 4\nherd 15\nherder 1\nherds 3\nherdsman 2\nhere 691\nhereafter 2\nhereby 2\nhereditary 14\nhereford 2\nherefordshire 2\nherein 4\nhereinbefore 1\nhereof 1\nheresy 2\nheretofore 5\nhereunto 1\nheritage 6\nhermit 2\nhermitage 1\nhernia 13\nhernial 5\nherniated 1\nherniotomy 1\nhero 55\nheroes 25\nheroic 26\nheroically 1\nheroin 6\nheroine 1\nheroism 13\nherpes 2\nherr 3\nhers 30\nherself 341\nhesitate 4\nhesitated 17\nhesitating 16\nhesitation 20\nhesitations 1\nhesse 1\nhessian 4\nhessians 3\nheteroplastic 1\nhetty 1\nhetzelsdorf 1\nhew 1\nhewed 1\nhewins 1\nhewn 2\nhey 10\nhi 2\nhiccough 3\nhickory 2\nhid 28\nhidden 29\nhide 40\nhideous 10\nhides 3\nhiding 24\nhierarchy 4\nhieroglyph 2\nhieroglyphics 1\nhigh 290\nhigher 95\nhighest 81\nhighfalutin 1\nhighlight 2\nhighly 54\nhighness 49\nhighnesses 1\nhighroad 27\nhighroads 1\nhighway 5\nhighways 11\nhildreth 2\nhill 107\nhillock 3\nhills 93\nhillsdale 1\nhillside 2\nhillsides 1\nhilltop 1\nhilly 1\nhilt 3\nhilton 8\nhim 5230\nhimself 1158\nhind 9\nhindenburg 1\nhinder 14\nhindered 10\nhindering 4\nhinders 5\nhindmost 2\nhindquarters 3\nhindrance 11\nhindrances 1\nhindu 1\nhinge 1\nhinges 4\nhinsdale 1\nhint 13\nhinted 11\nhinting 2\nhints 12\nhip 47\nhippolyte 51\nhips 3\nhiram 1\nhire 5\nhired 7\nhirelings 1\nhiring 2\nhis 10034\nhise 1\nhiss 3\nhissed 4\nhissing 6\nhistological 4\nhistologically 1\nhistology 1\nhistorian 39\nhistorians 129\nhistoric 47\nhistorical 65\nhistorically 1\nhistories 17\nhistory 439\nhit 21\nhitched 1\nhither 5\nhitherto 23\nhits 1\nhittel 1\nhitting 5\nhive 21\nhives 2\nhm 10\nho 9\nhoar 5\nhoard 3\nhoarfrost 6\nhoarse 22\nhoarsely 8\nhoarseness 4\nhoax 1\nhobart 1\nhobbies 1\nhobbledehoy 1\nhobby 4\nhobnob 1\nhoch 4\nhochgeboren 1\nhockey 1\nhodder 1\nhodgkin 5\nhoes 1\nhoffman 2\nhofkriegsrath 7\nhofmarschal 1\nhofs 2\nhogarth 2\nhogs 2\nhohenlohe 1\nhohenzollern 1\nhoisted 1\nholborn 2\nhold 114\nholder 33\nholders 12\nholding 144\nholdings 6\nholds 5\nhole 18\nholes 7\nholiday 13\nholidays 6\nholies 1\nholiness 2\nhollabrunn 5\nholland 12\nhollow 52\nhollowed 1\nhollows 6\nholly 1\nholmes 467\nholocausts 1\nholt 1\nholy 52\nholyoke 1\nhomage 3\nhome 295\nhomeless 3\nhomelike 1\nhomely 8\nhomemakers 1\nhomeopaths 1\nhomer 1\nhomes 35\nhomestead 26\nhomesteaders 1\nhomesteads 14\nhomeward 4\nhomework 1\nhomicidal 2\nhomme 6\nhommes 2\nhomogeneous 3\nhomoplastic 3\nhomosexual 1\nhon 2\nhonduras 1\nhonest 23\nhonestly 7\nhonesty 2\nhoneur 1\nhoney 16\nhoneyed 1\nhoneymoon 3\nhoneymoons 1\nhongkong 1\nhonneur 6\nhonolulu 1\nhonor 183\nhonorable 21\nhonorably 1\nhonored 22\nhonoria 1\nhonoring 1\nhonors 18\nhonour 16\nhonourable 3\nhonoured 1\nhonours 2\nhonowably 1\nhood 14\nhooded 1\nhoof 2\nhoofs 24\nhook 7\nhooked 3\nhooker 6\nhooks 1\nhooped 1\nhoosier 1\nhop 1\nhope 149\nhoped 38\nhopeful 5\nhopefully 1\nhopeless 17\nhopelessly 9\nhopelessness 5\nhopes 41\nhoping 24\nhopkins 2\nhopping 2\nhorace 10\nhoratio 1\nhorde 2\nhordes 3\nhorizon 22\nhorizons 1\nhorizontal 5\nhorizontally 1\nhorn 18\nhorned 2\nhorner 13\nhornets 1\nhorns 12\nhorny 8\nhorrible 27\nhorribly 3\nhorrid 12\nhorrified 16\nhorrify 2\nhorror 64\nhorrors 12\nhors 3\nhorse 334\nhorseback 10\nhorsecloth 1\nhorsecloths 4\nhorseflesh 9\nhorseflies 1\nhorseman 6\nhorsemen 12\nhorses 262\nhorsey 2\nhorsham 10\nhorsley 2\nhosanna 1\nhosjeradek 2\nhosmer 25\nhospitable 6\nhospital 46\nhospitality 8\nhospitals 18\nhost 23\nhostage 1\nhostel 1\nhostelry 1\nhostess 20\nhostile 30\nhostilities 7\nhostility 23\nhosts 6\nhot 119\nhotch 1\nhotel 22\nhotels 4\nhothouse 3\nhothouses 2\nhotly 5\nhottest 1\nhough 1\nhound 7\nhounds 36\nhour 157\nhourra 1\nhours 166\nhourwich 1\nhouse 661\nhouseful 1\nhousehold 55\nhouseholders 1\nhouseholds 5\nhousekeeper 8\nhousekeeping 1\nhousemaid 9\nhousemaids 2\nhouses 117\nhousewife 3\nhousewives 2\nhousing 3\nhouston 10\nhovels 1\nhover 2\nhow 1315\nhoward 4\nhowe 6\nhowever 430\nhowitzers 3\nhowl 4\nhowling 6\nhowwible 1\nhoy 1\nhtm 1\nhtml 4\nhttp 29\nhubbub 3\nhubs 1\nhuckster 1\nhuddled 9\nhudson 15\nhue 12\nhuerta 3\nhuffed 1\nhug 1\nhuge 89\nhugged 5\nhugging 4\nhugh 7\nhughes 6\nhugo 1\nhuguenots 5\nhulbert 2\nhull 2\nhullo 7\nhum 25\nhuman 170\nhumane 7\nhumanitarian 1\nhumanity 53\nhumans 2\nhumanum 1\nhumble 13\nhumbled 1\nhumbler 1\nhumbly 3\nhumbug 5\nhumbugged 2\nhumdrum 1\nhume 2\nhumerus 43\nhumid 1\nhumidity 1\nhumiliate 2\nhumiliated 4\nhumiliating 14\nhumiliation 12\nhumiliations 1\nhumility 4\nhummed 3\nhumming 7\nhumor 16\nhumored 9\nhumoredly 2\nhumorist 1\nhumorous 2\nhumorously 1\nhumour 4\nhumoured 1\nhumours 1\nhump 1\nhunchback 1\nhunched 1\nhunching 1\nhundred 229\nhundredfold 1\nhundreds 48\nhundredth 5\nhundredweight 1\nhundwed 3\nhung 45\nhungarian 7\nhungary 12\nhunger 27\nhungrily 1\nhungry 30\nhunt 31\nhunted 7\nhunter 43\nhunterian 4\nhunters 13\nhunting 35\nhuntington 1\nhunts 2\nhuntsman 24\nhuntsmen 14\nhur 2\nhurled 4\nhurling 2\nhurrah 60\nhurrahs 2\nhurricane 1\nhurried 58\nhurriedly 74\nhurry 45\nhurrying 24\nhurt 34\nhurting 3\nhurts 8\nhusband 196\nhusbandmen 1\nhusbandry 2\nhusbands 13\nhush 6\nhushed 6\nhushing 1\nhuskily 1\nhusks 1\nhusky 3\nhussar 84\nhussars 106\nhussies 1\nhussy 1\nhustling 1\nhut 58\nhutchinson 15\nhuts 8\nhyaline 9\nhydatid 12\nhydatids 7\nhyde 1\nhydra 1\nhydrarg 1\nhydrarthrosis 1\nhydrate 1\nhydraulic 10\nhydraulics 1\nhydrocele 5\nhydrocephalus 1\nhydrochlorate 1\nhydrochloric 2\nhydrochloride 1\nhydrocyanic 1\nhydrogen 12\nhydrophobia 6\nhydrophobicus 1\nhydrops 31\nhygienic 2\nhygroma 10\nhymn 3\nhyoid 3\nhyoscin 1\nhyper 5\nhyperaemia 52\nhyperaemic 7\nhyperaesthesia 2\nhyperostosis 12\nhyperplasia 2\nhyperplastic 1\nhypersensitive 2\nhypertext 7\nhypertonus 2\nhypertrophic 6\nhypertrophied 10\nhypertrophies 1\nhypertrophy 6\nhypnotics 1\nhypochondria 1\nhypocrisy 1\nhypocrite 1\nhypodermic 10\nhypodermically 2\nhypogastric 2\nhypoglossal 3\nhypothesis 8\nhypothetical 1\nhysteria 2\nhysterical 12\ni 7687\nianovich 1\niberian 6\nibiblio 4\nibid 1\nice 29\nicebags 1\nicel 1\niceland 1\nices 3\nich 1\nichabod 1\nichorous 2\nichthyma 1\nichthyol 10\nici 2\nicon 43\nicons 29\nicteric 1\nicy 2\nid 1\nida 2\nidaho 8\nidea 141\nideal 25\nidealists 2\nideally 1\nideals 13\nideas 57\nidentical 12\nidentically 1\nidentification 8\nidentified 8\nidentify 9\nidentity 11\nideological 1\nideology 1\nideville 3\nidiocy 1\nidioms 1\nidiosyncrasies 2\nidiosyncrasy 1\nidiot 10\nidiotic 3\nidle 19\nidled 1\nidleness 12\nidler 1\nidlers 1\nidly 2\nidol 2\nidolatry 1\nidolized 1\nif 2373\nignat 4\nignatevna 1\nignatka 1\nignatovich 1\nignatych 1\nignatyevna 3\nigni 4\nignoble 2\nignominious 2\nignoramuses 1\nignorance 17\nignorant 12\nignore 5\nignored 3\nignores 1\nignoring 1\nignotum 1\nii 77\niii 91\nil 18\nilagin 25\nilagins 1\nilarionovich 6\nileum 1\niliac 30\niliacs 1\niliad 1\niligin 1\nilii 1\nilio 4\nilium 5\nill 138\nillegal 9\nillegally 3\nillegitimate 9\nillicit 1\nillimitable 1\nillinois 41\nilliteracy 5\nilliterate 2\nilliterates 2\nillness 47\nillnesses 2\nillogical 4\nills 3\nilluminate 1\nilluminated 8\nilluminati 1\nillumination 2\nilluminations 1\nillumined 3\nilluminism 3\nillusion 4\nillusory 3\nillustrate 9\nillustrated 19\nillustrates 1\nillustrating 5\nillustration 285\nillustrations 7\nillustrious 5\nilya 33\nilyin 39\nilyinka 1\nilynich 2\nilynichna 2\nilyushka 2\nimage 7\nimages 4\nimaginary 7\nimagination 50\nimaginations 1\nimaginative 3\nimagine 96\nimagined 48\nimagines 4\nimagining 16\nimaginings 1\nimbecile 5\nimbecility 2\nimbedded 1\nimbibe 1\nimbibed 1\nimbued 4\nimitate 7\nimitated 3\nimitates 1\nimitating 4\nimitation 7\nimitators 1\nimlay 1\nimmaculate 1\nimmature 2\nimmeasurable 5\nimmeasurably 3\nimmediate 57\nimmediately 182\nimmemorial 1\nimmense 77\nimmensely 4\nimmensity 1\nimmersed 4\nimmersing 1\nimmersion 6\nimmigrant 4\nimmigrants 42\nimmigration 66\nimminence 3\nimminent 7\nimmobile 1\nimmobilisation 3\nimmobilised 6\nimmobility 4\nimmoral 3\nimmortal 7\nimmortality 2\nimmortally 1\nimmovability 1\nimmovable 1\nimmovably 2\nimmune 3\nimmunise 1\nimmunised 2\nimmunities 3\nimmunity 12\nimmutability 1\nimmutable 3\nimmutably 2\nimp 1\nimpact 4\nimpacted 5\nimpaction 9\nimpair 6\nimpaired 26\nimpairing 1\nimpairment 20\nimpairs 1\nimpalpable 1\nimpart 4\nimparted 4\nimpartial 5\nimpartiality 1\nimpartially 1\nimparts 5\nimpassable 7\nimpassioned 6\nimpassive 5\nimpatience 16\nimpatient 15\nimpatiently 15\nimpeached 1\nimpeachment 9\nimpeachments 1\nimpede 1\nimpeded 5\nimpedes 2\nimpediment 1\nimpeding 1\nimpel 1\nimpelled 7\nimpelling 1\nimpels 1\nimpending 24\nimpenetrable 5\nimperative 6\nimperatively 1\nimperator 1\nimperceptible 5\nimperceptibly 7\nimperfect 16\nimperfecta 2\nimperfectly 18\nimperial 54\nimperialism 10\nimperialistic 2\nimperials 5\nimperilled 1\nimperious 2\nimpermeability 1\nimpersonal 1\nimpersonate 1\nimpertinent 4\nimperturbable 3\nimperturbably 1\nimpetigo 1\nimpetuosity 3\nimpetuous 6\nimpetuously 6\nimpetus 9\nimpinges 2\nimpious 1\nimplacable 1\nimplantation 5\nimplanted 6\nimplanting 4\nimplement 1\nimplementation 1\nimplements 3\nimplicate 12\nimplicated 25\nimplicates 5\nimplicating 5\nimplication 9\nimplicit 2\nimplicitly 2\nimplied 15\nimplies 10\nimplore 5\nimplored 8\nimploring 9\nimploringly 4\nimply 12\nimplying 4\nimpolite 1\nimpolitely 1\nimpoliteness 1\nimport 17\nimportance 117\nimportant 285\nimportantly 1\nimportation 18\nimported 9\nimporters 2\nimporting 2\nimports 11\nimportunities 1\nimportunity 1\nimpose 8\nimposed 36\nimposes 2\nimposing 17\nimpossibility 14\nimpossible 250\nimpost 1\nimpostor 2\nimpostors 1\nimposts 6\nimposture 1\nimpotence 5\nimpotent 3\nimpoverished 3\nimpracticable 16\nimpregnable 1\nimpregnated 5\nimpress 12\nimpressed 24\nimpresses 1\nimpressing 1\nimpression 67\nimpressionable 2\nimpressions 20\nimpressive 7\nimpressively 2\nimpressment 5\nimprint 1\nimprison 3\nimprisoned 12\nimprisonment 11\nimprobabilities 1\nimprobable 5\nimproper 9\nimproperly 3\nimpropriety 2\nimprove 20\nimproved 24\nimprovement 32\nimprovements 27\nimproves 4\nimproving 13\nimprovisations 1\nimprovised 3\nimprudence 2\nimprudent 1\nimprudently 1\nimpudence 3\nimpudent 2\nimpudently 2\nimpugned 1\nimpulse 21\nimpulses 16\nimpulsive 5\nimpulsively 1\nimpulsiveness 1\nimpunity 5\nimpure 2\nimpurity 1\nimputation 2\nimpute 1\nimputed 2\nin 22050\ninability 14\ninaccessibility 1\ninaccessible 5\ninaccurate 5\ninaction 2\ninactive 6\ninactivity 5\ninadequacy 2\ninadequate 7\ninadequately 1\ninadvertent 1\ninadvertently 1\ninadvisable 2\ninalienable 1\ninanition 1\ninapplicable 2\ninappropriate 3\ninappropriately 1\ninapt 1\ninarticulate 1\ninasmuch 3\ninattention 2\ninattentive 2\ninattentively 1\ninaudible 1\ninaudibly 3\ninaugural 6\ninaugurated 16\ninauguration 16\nincalculable 4\nincapable 16\nincapacitate 2\nincapacitated 1\nincapacitates 1\nincapacitating 1\nincapacity 7\nincarnate 2\nincautiously 2\nincendiaries 3\nincendiarism 2\nincendiarisms 1\nincendiary 4\nincense 2\nincensed 2\nincentive 1\ninception 2\nincessant 13\nincessantly 20\ninch 15\ninches 16\nincidence 8\nincident 27\nincidental 6\nincidentally 4\nincidents 14\nincise 2\nincised 23\nincising 5\nincision 46\nincisions 18\nincisive 3\nincisors 1\nincited 3\nincitement 1\nincites 1\ninciting 1\nincivility 1\ninclination 9\ninclinations 2\nincline 9\ninclined 21\ninclines 1\ninclining 2\ninclosure 1\ninclude 34\nincluded 43\nincludes 16\nincluding 85\ninclusion 2\ninclusive 2\nincognito 2\nincoherent 10\nincoherently 4\nincome 47\nincomes 12\nincommensurable 2\nincommensurate 1\nincomparably 2\nincompatibility 2\nincompatible 2\nincompetence 1\nincompetency 1\nincompetent 4\nincomplete 19\nincompletely 1\nincomprehensible 41\ninconceivable 6\ninconclusive 1\nincongruities 2\nincongruous 2\ninconsequent 1\ninconsequential 1\ninconsiderable 1\ninconsistency 1\ninconsistent 5\ninconsolable 1\ninconstancy 1\nincontestable 3\nincontestably 1\ninconvenience 21\ninconveniencing 1\ninconvenient 4\ninconveniently 1\nincorporate 3\nincorporated 11\nincorporating 1\nincorporation 3\nincorrect 4\nincorrectly 1\nincorrigible 2\nincrease 115\nincreased 139\nincreases 43\nincreasing 69\nincreasingly 4\nincredible 11\nincredibly 2\nincredulity 2\nincredulously 3\nincriminate 1\nincubating 1\nincubation 18\ninculpate 2\nincumbent 3\nincur 2\nincurable 1\nincurred 10\nincurring 2\nincursions 1\nincurved 1\nind 1\nindebted 8\nindebtedness 4\nindecent 1\nindecision 12\nindecisive 2\nindecorous 1\nindeed 139\nindefinable 2\nindefinite 27\nindefinitely 9\nindefiniteness 1\nindemnify 5\nindemnities 1\nindemnity 4\nindentations 1\nindentured 12\nindentures 1\nindependence 151\nindependency 1\nindependent 73\nindependently 25\nindescribable 2\nindestructible 2\nindex 23\nindexes 3\nindexing 1\nindia 26\nindian 46\nindiana 27\nindianapolis 1\nindianians 1\nindians 47\nindicate 31\nindicated 88\nindicates 19\nindicating 29\nindication 34\nindications 16\nindicative 2\nindicator 1\nindicted 1\nindicting 1\nindictment 7\nindictments 1\nindies 19\nindifference 26\nindifferent 31\nindifferently 5\nindigenous 1\nindigestion 4\nindignant 4\nindignantly 3\nindignation 6\nindignities 1\nindignity 1\nindigo 2\nindirect 13\nindirection 1\nindirectly 14\nindiscreetly 1\nindiscretion 4\nindiscretions 1\nindiscriminately 1\nindispensable 9\nindisposition 6\nindissoluble 3\nindistinct 5\nindistinctly 4\nindistinguishable 2\ninditing 1\nindividu 1\nindividual 119\nindividuality 4\nindividually 4\nindividuals 32\nindolence 5\nindolent 21\nindolently 3\nindomitable 1\nindoor 1\nindoors 6\nindorsed 6\nindorsement 1\nindrawing 1\nindubitable 6\nindubitably 5\ninduce 23\ninduced 46\ninducement 1\ninducements 1\ninduces 5\ninducing 13\ninduction 11\nindulge 7\nindulged 5\nindulgence 9\nindulgent 4\nindulgently 2\nindulging 2\nindurated 29\ninduration 29\nindustrial 98\nindustrialism 2\nindustrialized 1\nindustrially 1\nindustries 64\nindustrious 9\nindustry 136\nineffective 1\nineffectiveness 1\nineffectives 1\nineffectual 1\nineffectually 1\ninefficiency 1\ninelegant 1\nineligible 1\ninequalities 4\ninequality 2\ninequitable 1\ninert 4\ninertia 2\ninertiae 1\ninevitability 51\ninevitable 61\ninevitably 32\ninexhaustible 4\ninexorable 5\ninexperience 1\ninexperienced 6\ninexplicable 6\ninexpressible 1\ninextricable 2\ninextricably 1\ninfallible 3\ninfamies 1\ninfamous 9\ninfamy 1\ninfancy 5\ninfant 17\ninfantile 3\ninfantry 84\ninfantryman 3\ninfantrymen 5\ninfants 24\ninfantwy 2\ninfatuations 2\ninfect 9\ninfected 106\ninfecting 5\ninfection 366\ninfections 24\ninfectious 3\ninfective 66\ninfects 3\ninfer 3\ninference 2\ninferences 4\ninferior 18\ninferiority 1\ninfernal 2\ninferred 5\ninfested 1\ninfidelity 1\ninfiltrate 4\ninfiltrated 8\ninfiltrates 2\ninfiltration 24\ninfiltrations 1\ninfinite 28\ninfinitely 16\ninfinitesimal 2\ninfinitesimally 2\ninfinitesimals 2\ninfinity 5\ninfirmaries 1\ninfirmary 2\ninfirmity 1\ninflamed 53\ninflames 1\ninflammable 3\ninflammation 93\ninflammations 10\ninflammatory 48\ninflated 1\ninflation 5\ninflict 7\ninflicted 25\ninfliction 1\ninflicts 1\ninflow 2\ninfluence 138\ninfluenced 21\ninfluences 23\ninfluencing 3\ninfluential 6\ninfluenza 3\ninflux 4\ninfolding 1\ninform 32\ninformal 2\ninformality 1\ninformally 1\ninformant 1\ninformation 73\ninformed 52\ninformer 1\ninforming 11\ninforms 2\ninfra 3\ninfraction 1\ninfractions 1\ninframaxillary 1\ninfraspinous 1\ninfrastructure 1\ninfrequent 4\ninfrequently 13\ninfringe 1\ninfringed 3\ninfringement 7\ninfringements 1\ninfringers 1\ninfringes 1\ninfuriated 2\ninfusion 2\ninfusions 3\ning 3\ningenious 9\ningenuity 8\ningest 1\ningested 1\ningesting 1\ningestion 1\ningram 2\ningratiate 2\ningratiating 4\ningratiatingly 1\ningratitude 6\ningredient 1\ningress 1\ningrowing 5\ningrowth 3\ninguinal 19\ninhabit 1\ninhabitant 7\ninhabitants 80\ninhabited 6\ninhalation 4\ninhale 1\ninhaled 6\ninhaling 3\ninherent 11\ninherently 1\ninheres 1\ninherit 7\ninheritance 16\ninheritances 3\ninherited 51\ninhibit 6\ninhibiting 1\ninhibition 1\ninhuman 2\ninhumane 1\ninhumanity 1\ninhumanly 1\ninimical 3\ninimically 1\ninimitable 2\ninimitably 1\niniquities 1\niniquity 1\ninitial 19\ninitially 1\ninitials 7\ninitiate 4\ninitiated 10\ninitiating 2\ninitiation 2\ninitiative 21\ninitiatives 1\ninitiator 1\ninject 2\ninjected 34\ninjecting 5\ninjection 60\ninjections 25\ninjudicious 2\ninjunction 12\ninjunctions 6\ninjure 6\ninjured 55\ninjuries 108\ninjuring 6\ninjurious 13\ninjuriously 3\ninjury 130\ninjustice 13\nink 14\ninkpot 1\ninkstand 2\ninlaid 3\ninland 7\ninman 1\ninmate 1\ninmates 2\ninmost 1\ninn 26\ninnards 1\ninnate 4\ninner 60\ninnermost 1\ninnervated 2\ninnervation 4\ninnkeeper 7\ninnkeepers 1\ninnocence 10\ninnocent 72\ninnocently 3\ninnocuous 2\ninnombrables 2\ninnominate 11\ninnovation 2\ninnovations 4\ninnovative 1\ninns 3\ninnumerable 38\ninnyard 2\ninoculated 4\ninoculation 22\ninoculations 1\ninoperable 3\ninoperative 1\ninopportune 1\ninordinate 1\ninput 1\ninquest 5\ninquire 19\ninquired 46\ninquirer 1\ninquires 1\ninquiries 21\ninquiring 21\ninquiringly 33\ninquiry 43\ninquisition 2\ninquisitive 7\ninquisitively 2\ninroads 2\ninsane 18\ninsanely 2\ninsanity 7\ninscribe 1\ninscribed 2\ninscription 5\ninscrutable 2\ninsect 4\ninsects 8\ninsecure 1\ninsecurity 1\ninsensate 1\ninsensibility 7\ninsensible 1\ninsensibly 2\ninsensitive 13\ninsensitiveness 1\ninseparable 3\ninseparably 1\ninsert 5\ninserted 22\ninserting 1\ninsertion 12\ninsertions 1\ninside 43\ninsider 1\ninsidious 16\ninsidiously 4\ninsight 8\ninsignia 1\ninsignificance 11\ninsignificant 30\ninsincere 6\ninsincerity 1\ninsinuating 2\ninsist 10\ninsisted 59\ninsistence 8\ninsistent 1\ninsistently 1\ninsisting 7\ninsists 2\ninsolence 3\ninsolent 10\ninsoluble 9\ninsolubly 1\ninsomnia 1\ninsontium 2\ninspect 11\ninspected 5\ninspecting 5\ninspection 18\ninspector 31\ninspiration 11\ninspire 8\ninspired 19\ninspires 3\ninspiring 3\ninspirited 1\ninspissated 1\ninst 2\ninstal 1\ninstall 1\ninstallation 2\ninstalled 4\ninstallment 5\ninstallments 1\ninstalls 1\ninstance 50\ninstances 25\ninstant 101\ninstantaneously 4\ninstantly 46\ninstants 1\ninstead 137\ninstep 1\ninstigating 1\ninstigation 2\ninstigator 1\ninstilled 1\ninstinct 22\ninstinctive 4\ninstinctively 14\ninstincts 5\ninstitute 2\ninstituted 15\ninstitutes 1\ninstituting 1\ninstitution 21\ninstitutional 1\ninstitutions 34\ninstruct 4\ninstructed 16\ninstructing 3\ninstruction 12\ninstructions 46\ninstructive 10\ninstructor 4\ninstrument 35\ninstrumental 1\ninstruments 21\ninsubordination 2\ninsufferable 1\ninsufficiency 1\ninsufficient 17\ninsufficiently 2\ninsular 2\ninsulated 2\ninsulating 2\ninsult 19\ninsulted 11\ninsulting 2\ninsults 4\ninsuperable 2\ninsupportable 1\ninsurance 7\ninsure 3\ninsured 1\ninsurgency 2\ninsurgent 1\ninsurgents 4\ninsurmountably 1\ninsurrection 13\ninsurrectionary 1\ninsurrectionists 1\ninsurrections 3\ninsusceptible 1\nintact 20\nintake 1\nintangible 4\nintegral 3\nintegrate 1\nintegrated 1\nintegrating 1\nintegration 2\nintegrity 9\nintegument 9\nintellect 18\nintellects 2\nintellectual 41\nintelligence 15\nintelligent 20\nintelligently 2\nintelligible 5\nintemperance 4\nintend 8\nintendant 1\nintended 58\nintending 12\nintends 5\nintense 34\nintensely 2\nintensified 8\nintensify 1\nintensifying 1\nintensity 11\nintensive 4\nintent 13\nintention 66\nintentional 1\nintentionally 5\nintentions 20\nintently 30\nintentness 1\nintents 1\ninter 7\ninteract 1\ninteraction 6\ninteractions 1\ninteractive 1\nintercarpal 2\nintercede 3\ninterceded 1\nintercellular 2\nintercept 3\nintercepted 1\nintercepting 2\ninterchange 2\ninterchangeable 1\nintercolonial 4\ninterconnected 1\nintercostal 4\nintercourse 17\nintercurrent 3\ninterest 222\ninterested 65\ninteresting 71\ninterests 118\ninterface 1\ninterfere 49\ninterfered 20\ninterference 80\ninterferes 10\ninterfering 19\ninterim 2\ninterior 56\ninterjected 3\ninterlacing 1\ninterlarding 1\ninterlines 1\ninterlocking 1\ninterlocutor 1\ninterlopers 1\nintermediacy 1\nintermediary 3\nintermediate 10\ninterminable 1\ninterminglings 1\nintermission 1\nintermit 1\nintermittent 8\nintermittently 1\nintermuscular 5\ninternal 92\ninternally 1\ninternational 46\ninternet 1\ninternode 1\ninterossei 2\ninterosseous 6\ninterphalangeal 2\ninterplay 2\ninterpose 2\ninterposed 7\ninterposition 1\ninterpret 4\ninterpretation 11\ninterpretations 2\ninterpreted 8\ninterpreter 14\ninterpreting 2\ninterregnum 1\ninterrogative 2\ninterrogatively 2\ninterrupt 9\ninterrupted 107\ninterrupting 10\ninterruption 5\nintersect 1\nintersecting 1\ninterspersed 1\ninterstate 21\ninterstices 1\ninterstitial 9\nintertarsal 1\nintertwined 1\ninterval 32\nintervals 39\nintervene 8\nintervened 5\nintervenes 1\nintervening 9\nintervention 25\nintervertebral 2\ninterview 36\ninterviews 2\ninterwoven 1\nintestate 1\nintestinal 16\nintestine 24\nintestines 1\nintima 10\nintimacy 17\nintimate 53\nintimated 1\nintimately 11\nintimating 3\nintimation 1\nintimidate 1\nintimidated 6\nintimidating 1\nintimidation 8\nintimite 1\ninto 2124\nintolerable 12\nintolerably 2\nintolerant 1\nintonation 6\nintonations 4\nintothe 1\nintoxicated 7\nintoxicating 3\nintoxicatingly 1\nintoxication 13\nintoxications 1\nintra 35\nintracranial 6\nintractable 5\nintracystic 2\nintravenous 3\nintravenously 1\nintrench 1\nintrenched 5\nintrepid 2\nintricacy 1\nintricate 6\nintrigue 11\nintriguer 4\nintrigues 19\nintriguing 4\nintrinsic 3\nintroduce 23\nintroduced 81\nintroduces 1\nintroducing 13\nintroduction 31\nintrospect 1\nintrospective 3\nintrude 2\nintruder 2\nintruding 2\nintrusion 7\nintrusions 1\nintrusted 7\nintubation 6\nintuition 4\nintuitions 1\ninunction 5\ninured 1\ninvade 18\ninvaded 18\ninvaders 4\ninvades 6\ninvading 19\ninvalid 15\ninvalidity 3\ninvaluable 8\ninvariable 5\ninvariably 20\ninvasion 43\ninvasions 2\ninvective 1\ninveighed 2\ninvent 10\ninvented 13\ninventing 1\ninvention 9\ninventions 2\ninventive 1\ninventor 3\ninventories 1\ninventors 2\ninverse 4\ninversion 2\ninverted 3\ninvest 3\ninvested 18\ninvestigate 4\ninvestigated 3\ninvestigation 25\ninvestigations 7\ninvestigator 1\ninvesting 3\ninvestment 5\ninvestments 6\ninvestor 3\ninvestors 1\ninveterate 1\ninvigorating 1\ninvincibility 2\ninvincible 5\ninviolable 1\ninviolate 1\ninvisible 22\ninvitation 18\ninvitations 4\ninvite 9\ninvited 44\ninvites 1\ninviting 18\ninvitingly 1\ninvoke 1\ninvoked 1\ninvolucrum 4\ninvoluntarily 78\ninvoluntary 27\ninvoluted 1\ninvolution 1\ninvolve 22\ninvolved 107\ninvolvement 16\ninvolves 21\ninvolving 18\ninvulnerable 1\ninward 8\ninwardly 3\ninwards 5\niodi 1\niodide 12\niodides 6\niodine 30\niodism 1\niodoform 43\niogel 13\nion 1\niota 1\niowa 20\niowans 1\nipatka 1\nipecacuanha 1\nirascibility 1\nirate 1\nire 1\nireland 15\nirene 18\niridium 2\nirina 1\niris 3\nirish 48\nirishman 1\nirishmen 1\niritis 9\nirksome 3\niron 78\nironic 11\nironical 11\nironically 16\nirons 1\nirony 26\nirrational 5\nirrationally 1\nirreconcilable 1\nirreconcilables 1\nirreconcilably 1\nirrecoverable 3\nirredeemably 1\nirrefutable 4\nirregular 50\nirregularities 1\nirregularity 5\nirregularly 15\nirregulars 2\nirrelevant 2\nirreparable 2\nirrepressible 14\nirrepressibly 1\nirreproachable 6\nirreproachably 2\nirresistible 22\nirresistibly 11\nirresolute 4\nirresolutely 3\nirresolution 2\nirrespective 2\nirresponsibility 2\nirresponsible 2\nirresponsive 1\nirrevocability 1\nirrevocable 4\nirrevocably 2\nirrigate 1\nirrigated 4\nirrigating 1\nirrigation 23\nirritability 11\nirritable 16\nirritably 6\nirritant 12\nirritants 8\nirritate 4\nirritated 19\nirritating 14\nirritation 64\nirritations 1\nirritative 2\nirs 3\nirving 2\nis 9774\nisa 4\nisaac 1\nisabel 1\nisaiah 1\nischaemia 3\nischaemic 6\nischial 5\nischias 2\nischium 1\nishmael 1\nisland 75\nislands 33\nisle 3\nisles 1\nislets 3\nism 1\nismail 3\nismaylov 2\nisn 52\niso 2\nisolate 2\nisolated 21\nisolation 8\nisrael 2\niss 2\nissuance 7\nissue 101\nissued 58\nissues 38\nissuing 10\nist 1\nisthmus 3\nit 10681\nitalian 33\nitalians 5\nitalicized 1\nitaly 26\nitchiness 1\nitching 8\nitchy 1\nitem 5\nitems 4\nitinerant 1\niting 1\nits 1635\nitself 273\niv 55\nivan 9\nivanich 2\nivanovich 34\nivanovna 22\nivanovs 1\nivanushka 5\nivanych 9\nivory 14\nivy 3\nix 28\nj 92\nja 1\njabber 1\njabbered 2\njabbering 2\njabez 9\njacinto 2\njack 8\njackdaw 3\njacket 34\njackets 2\njacks 1\njackson 92\njacksonian 24\njacob 4\njacobin 3\njacobins 3\njacques 1\njacquot 2\njaded 1\njaffa 1\njagged 2\njail 9\njailed 1\njails 2\njake 1\njam 3\njamaica 2\njamais 1\njames 84\njamestown 9\njammed 5\njan 1\njane 2\njanet 1\njanuary 41\njapan 21\njapanese 14\njar 5\njarring 2\njason 2\njaundice 2\njauntily 6\njaunty 3\njaw 36\njaws 18\njay 18\njazz 1\nje 17\njealo 1\njealous 22\njealousies 9\njealously 1\njealousy 18\njean 1\njeans 1\njeered 2\njeff 1\njefferson 125\njeffersonian 13\njeffersonians 1\njehovah 1\njelly 8\njem 4\njena 5\njenks 1\njennies 1\njennings 2\njenny 2\njeopardized 1\njeopardy 5\njephro 2\njeremiah 2\njerk 6\njerked 14\njerkily 2\njerkin 1\njerking 3\njerkings 1\njerks 1\njerky 5\njerome 3\njersey 42\njerusalem 7\njest 17\njested 3\njesters 1\njesting 10\njestingly 2\njests 5\njesuit 4\njesus 11\njet 4\njets 4\njeune 2\njew 3\njewel 13\njeweller 1\njewellery 2\njewels 5\njewish 4\njews 9\njezail 1\njigger 2\njim 2\njimmy 1\njingle 2\njingling 9\njoan 1\njob 11\njobbing 1\njobert 3\njobs 2\njockey 1\njoconde 1\njocose 1\njocular 3\njocularity 1\njocularly 1\njoe 1\njoel 1\njohn 149\njohnny 1\njohnson 22\njohnston 1\njoin 62\njoined 76\njoining 19\njoins 3\njoint 382\njointly 3\njoints 171\njoke 36\njoked 3\njokes 12\njoking 19\njokingly 1\njolies 1\njoliet 4\njollification 1\njolly 4\njolt 1\njolted 10\njolting 5\njonathan 6\njones 24\njordan 1\njose 1\njoseph 42\njoshua 2\njosiah 3\njostle 2\njostled 5\njostling 3\njot 2\njottings 1\njourn 1\njournal 8\njournalism 2\njournalist 4\njournalists 4\njournals 2\njourney 69\njourneyed 4\njourneying 1\njourneys 7\njove 3\njovial 4\njowl 2\njoy 89\njoyful 49\njoyfully 38\njoylessly 1\njoyous 25\njoyously 6\njoyousness 1\njoys 15\njr 2\njuan 3\njubilant 1\njudah 1\njudas 1\njudge 45\njudged 10\njudgement 2\njudges 33\njudgeships 1\njudging 21\njudgment 33\njudgments 1\njudicial 29\njudiciary 11\njudicious 3\njudiciously 2\njudith 1\njudy 1\njug 6\njugoslavia 1\njugs 1\njugular 13\njuice 5\njuices 2\njuiciness 1\njulia 6\njulian 2\njulie 71\njuliet 1\njulius 1\njulner 1\njuly 40\njumble 1\njump 16\njumped 50\njumper 2\njumping 13\njumps 2\njunction 49\njunctions 17\njuncture 6\njune 44\njungle 3\njunior 3\njuniper 3\njunot 5\njupiter 1\njuridical 2\njurisdiction 17\njurisprudence 9\njurist 1\njury 25\njuryman 1\njust 767\njustice 85\njustices 2\njusticiable 1\njustifiability 1\njustifiable 2\njustification 16\njustifications 6\njustified 19\njustify 21\njustifying 5\njustinian 1\njustly 6\njustness 1\njusto 1\njutted 1\njutting 1\njuvenile 1\nk 33\nka 1\nkaftans 1\nkaiser 5\nkakistocracy 1\nkalamazoo 1\nkalaw 1\nkalb 3\nkalisch 1\nkaluga 27\nkamenka 3\nkamenski 7\nkamensky 1\nkammer 2\nkann 2\nkansas 28\nkarabakh 2\nkaragina 12\nkaragins 9\nkarataev 64\nkaray 16\nkari 1\nkarl 10\nkarlovich 1\nkarp 12\nkarpushka 2\nkashmir 2\nkaska 1\nkaskaskia 2\nkate 5\nkatherine 1\nkatie 6\nkaysarov 10\nkazan 6\nke 2\nkearney 1\nkeen 32\nkeener 4\nkeenest 3\nkeenly 14\nkeenness 2\nkeep 142\nkeeper 19\nkeepers 1\nkeeping 56\nkeeps 11\nkeg 2\nkeith 3\nkeloid 14\nkempis 1\nkempt 1\nken 5\nkendall 1\nkennelman 1\nkennelmen 1\nkenneth 1\nkensington 1\nkent 5\nkentuckians 1\nkentucky 62\nkeogh 1\nkepler 1\nkept 251\nkeratitis 6\nkeratoma 1\nkeratomata 1\nkerchief 11\nkerchiefs 1\nkerseys 1\nkettle 5\nkettles 1\nkey 26\nkeyboard 2\nkeyhole 2\nkeys 13\nkhamovniki 3\nkhan 1\nkhandrikov 1\nkharsivan 4\nkhvostikov 4\nkibitka 1\nkick 6\nkicked 2\nkicking 1\nkicks 1\nkid 2\nkidnap 1\nkidnapped 1\nkidnapping 2\nkidney 21\nkidneys 11\nkiev 18\nkikin 1\nkilburn 3\nkill 57\nkilled 146\nkiller 2\nkilling 28\nkills 2\nkilometre 1\nkin 3\nkinaesthetic 1\nkind 202\nkinder 3\nkindest 2\nkindhearted 6\nkindle 4\nkindled 10\nkindlier 1\nkindliness 4\nkindling 4\nkindly 86\nkindness 16\nkindred 3\nkinds 29\nkinetic 1\nking 238\nkingdom 26\nkingdoms 2\nkingly 1\nkings 27\nkinship 1\nkinsman 3\nkinsmen 2\nkinswoman 1\nkirghiz 2\nkiril 5\nkirilovich 6\nkirilych 8\nkirk 1\nkirsten 5\nkiselev 1\nkishenev 1\nkiss 47\nkissed 123\nkisses 5\nkissing 38\nkit 5\nkitchen 19\nkitchens 5\nkite 1\nkits 2\nkitten 7\nkittenish 1\nkitty 1\nklan 6\nklapp 14\nklebs 4\nklumpke 3\nklux 7\nklyucharev 6\nkm 1\nknack 1\nknaggs 1\nknapsack 7\nknapsacks 8\nknave 2\nknaves 2\nkneaded 1\nkneading 1\nknee 171\nkneel 3\nkneeling 8\nknees 55\nknell 1\nknelt 9\nknew 496\nknife 42\nknight 7\nknights 23\nknit 14\nknitted 8\nknitting 10\nknives 7\nknob 2\nknobs 1\nknock 18\nknocked 26\nknocking 8\nknockings 1\nknocks 2\nknoll 41\nknot 16\nknots 3\nknotted 2\nknotty 1\nknouted 2\nknow 1048\nknowing 97\nknowledge 71\nknown 411\nknows 102\nknox 2\nknuckle 3\nknuckles 1\nknyazkovo 3\nkobelnitz 3\nkocher 4\nkochubey 13\nkoko 1\nkollezski 2\nkolocha 16\nkolya 1\nkolyazin 3\nkomarov 1\nkomoneno 1\nkondratevna 1\nkonig 2\nkonigsberg 1\nkonovnitsyn 18\nkonyusheny 2\nkopeks 1\nkopf 2\nkorchevo 3\nkorniki 1\nkosciusko 3\nkoslovski 1\nkosoy 2\nkostroma 3\nkoutouzov 2\nkovno 1\nkozlovski 17\nkramm 2\nkrasnaya 2\nkrasnoe 22\nkremenchug 1\nkremlin 29\nkrems 14\nkrieg 1\nkriegs 2\nkrishna 1\nkrug 1\nku 7\nkudrino 1\nkuragin 67\nkuragina 2\nkuragins 3\nkurakin 3\nkurbski 1\nkursk 1\nkurskies 1\nkutafyev 2\nkutaysov 3\nkutuzov 530\nkuz 1\nkuzmich 14\nkuzminichna 24\nkvas 1\nkvass 2\nkwudener 1\nkyphosis 2\nl 68\nla 55\nlab 1\nlabel 3\nlabelled 1\nlabels 3\nlabia 6\nlabium 2\nlabor 328\nlaboratories 1\nlaboratory 6\nlabored 13\nlaborer 5\nlaborers 22\nlaboring 4\nlaborious 7\nlaboriously 5\nlabors 19\nlabour 10\nlaboured 3\nlabourer 3\nlabourers 1\nlabouring 2\nlabours 1\nlabyrinth 4\nlace 11\nlaced 2\nlacerated 19\nlacerating 2\nlaceration 9\nlack 33\nlacked 13\nlackey 5\nlackeys 2\nlacking 14\nlacks 2\nlaconic 2\nlacrymal 1\nlactate 1\nlactation 3\nlacteals 1\nlactic 1\nlad 70\nladder 7\nladen 10\nladies 103\nlads 38\nlady 177\nladykins 1\nladyship 1\nlafa 1\nlafayette 5\nlaggards 1\nlagged 7\nlagging 5\nlaguna 1\nlaid 186\nlain 6\nlair 1\nlaissez 1\nlaity 2\nlake 27\nlakes 13\nlamb 2\nlambach 1\nlambkin 1\nlambs 1\nlambskin 2\nlame 5\nlamely 2\nlameness 2\nlament 5\nlamentable 1\nlamentation 1\nlamentations 1\nlamented 7\nlamenting 3\nlaments 1\nlamina 2\nlaminated 16\nlamp 37\nlamps 8\nlancashire 1\nlancaster 4\nlance 2\nlancers 1\nlances 3\nlancet 1\nlanciers 1\nlancinating 2\nland 279\nlandau 4\nlanded 15\nlandgrave 1\nlanding 19\nlandlady 5\nlandless 4\nlandlord 14\nlandlordism 1\nlandlords 6\nlandmarks 1\nlandowner 16\nlandowners 5\nlands 76\nlandscape 3\nlandslide 1\nlane 27\nlanes 2\nlanfrey 1\nlangeron 13\nlangham 1\nlanguage 61\nlanguages 8\nlanguid 7\nlanguidly 4\nlanguished 1\nlanguor 5\nlank 2\nlannes 5\nlanolin 3\nlanoline 2\nlanskoy 2\nlantern 14\nlanterns 6\nlaocoon 1\nlap 11\nlaparotomy 3\nlapse 8\nlapsed 3\nlapsing 1\nlarge 483\nlargely 29\nlarger 101\nlargest 25\nlargish 1\nlark 1\nlarks 2\nlarrey 3\nlarry 1\nlarvae 1\nlaryngeal 2\nlarynx 25\nlas 1\nlascar 12\nlaser 1\nlash 8\nlashed 5\nlashes 5\nlashing 1\nlassies 2\nlassitude 3\nlast 565\nlasted 31\nlasting 16\nlastly 13\nlasts 10\nlata 4\nlatane 5\nlatch 3\nlate 165\nlatecomers 1\nlately 22\nlateness 1\nlatent 14\nlater 334\nlateral 30\nlateralis 1\nlaterally 9\nlatest 17\nlathe 9\nlather 2\nlathering 1\nlatin 17\nlatissimus 2\nlatitude 2\nlatrines 1\nlatter 129\nlatterly 9\nlatvia 1\nlauck 1\nlaudanum 2\nlaugh 70\nlaughed 101\nlaughers 1\nlaughing 115\nlaughingly 4\nlaughingstock 3\nlaughlin 1\nlaughs 2\nlaughter 79\nlaunch 4\nlaunched 15\nlaunching 1\nlaura 3\nlaurel 3\nlaurels 3\nlauriston 6\nlava 1\nlavater 1\nlavender 1\nlavish 3\nlavishly 1\nlavra 3\nlavrushka 38\nlavwuska 1\nlaw 432\nlawbreaking 1\nlawford 1\nlawful 16\nlawfully 3\nlawfulness 1\nlawless 5\nlawlessness 1\nlawmakers 1\nlawn 14\nlawrence 6\nlaws 233\nlawsuit 3\nlawton 1\nlawyer 16\nlawyers 13\nlax 2\nlaxity 6\nlay 295\nlayer 51\nlayers 22\nlaying 27\nlayman 1\nlayout 1\nlays 4\nlazarchuk 1\nlazarev 12\nlazily 6\nlaziness 1\nlazy 5\nlb 1\nle 55\nlea 1\nlead 137\nleaded 1\nleaden 1\nleadenhall 5\nleader 53\nleaders 136\nleadership 58\nleading 115\nleads 32\nleadville 1\nleaf 7\nleaflet 2\nleaflets 3\nleafy 1\nleague 53\nleagues 5\nleak 1\nleakage 8\nleaking 3\nlean 12\nleaned 39\nleaning 55\nleap 4\nleaped 10\nleaping 3\nleaps 9\nleapt 2\nlearn 38\nlearned 100\nlearner 1\nlearning 33\nlearns 2\nlearnt 1\nlease 3\nleased 2\nleases 2\nleash 12\nleashes 3\nleasing 1\nleast 194\nleather 35\nleatherhead 4\nleathery 1\nleave 300\nleavenworth 2\nleaves 38\nleaving 132\nlebanon 1\nlech 2\nlecky 2\nlecture 4\nlecturer 1\nlectures 6\nled 196\nledderhose 1\nledge 5\nledger 6\nledgers 1\nlediard 1\nlee 27\nleech 3\nleeches 4\nleeds 1\nleft 834\nleg 145\nlegacy 2\nlegal 52\nlegalized 2\nlegalizing 1\nlegally 9\nlegations 1\nlegend 4\nlegends 1\nlegged 11\nleggings 1\nlegible 1\nlegion 6\nlegislation 61\nlegislative 31\nlegislator 1\nlegislators 2\nlegislature 79\nlegislatures 68\nlegitimate 15\nlegitimation 1\nlegitimist 1\nlegitimists 2\nlegree 1\nlegs 118\nleipsic 1\nleishman 1\nleisler 1\nleisure 17\nleisurely 9\nleiter 2\nleland 2\nlelorgne 3\nlelya 3\nlemarrois 1\nlembert 1\nlemon 6\nlemonade 2\nlemons 1\nlen 4\nlency 2\nlend 11\nlender 2\nlenders 2\nlending 3\nlends 3\nlength 63\nlengthen 2\nlengthened 3\nlengthening 7\nlengths 5\nlengthy 3\nlenient 2\nleniently 1\nlenity 1\nlenox 1\nlens 12\nlenses 1\nlent 21\nlentelli 1\nlenten 1\nleo 6\nleon 1\nleonine 1\nleontiasis 3\nleopard 1\nleper 1\nleppich 5\nleprosy 4\nleprous 1\nles 18\nlesion 102\nlesions 159\nleslie 1\nless 367\nlessen 2\nlessened 3\nlessening 1\nlessens 1\nlesseps 1\nlesser 24\nlesson 11\nlessons 21\nlest 25\nlestrade 38\nlet 506\nletashovka 1\nlethal 2\nlethargy 1\nlets 7\nletter 290\nletters 108\nletting 43\nleucaemia 2\nleucin 1\nleucocyte 2\nleucocytes 57\nleucocythaemia 4\nleucocytosis 39\nleucopenia 3\nleucoplakia 2\nleukaemia 1\nlevee 5\nlevel 53\nleveled 2\nleveling 2\nlevellers 1\nlevelling 2\nlevels 1\nlever 3\nlevers 4\nlevi 1\nleviathan 1\nlevied 4\nlevies 1\nlevity 1\nlevy 4\nlevying 3\nlewis 5\nlexical 1\nlexington 8\nli 1\nliabilities 1\nliability 27\nliable 146\nliaison 1\nliar 6\nliberal 38\nliberalism 1\nliberality 1\nliberally 1\nliberals 3\nliberate 4\nliberated 10\nliberating 1\nliberation 5\nliberator 2\nliberia 1\nliberties 11\nliberty 78\nlibrarian 1\nlibraries 3\nlibrary 13\nlice 3\nlicence 1\nlicense 40\nlicensed 6\nlicenses 4\nlicensing 3\nlicentiousness 1\nlichen 3\nlichtenfels 1\nlichtenstein 1\nlick 2\nlicked 2\nlicking 2\nlicks 1\nlid 14\nlidded 1\nlids 8\nlie 89\nliebchen 1\nlied 5\nlies 86\nlieu 7\nlieutenant 27\nlieutenants 2\nlife 878\nlifeless 12\nlifelessly 2\nlifespan 1\nlifestyle 1\nlifetime 4\nliffs 1\nlift 32\nlifted 72\nlifting 35\nlifts 2\nligament 22\nligaments 25\nligamentum 2\nligate 1\nligated 7\nligating 3\nligation 52\nligature 40\nligatures 10\nlight 278\nlighted 16\nlighten 3\nlightened 1\nlighter 9\nlightest 2\nlighthearted 5\nlightheartedly 1\nlighthorse 1\nlighting 16\nlightly 41\nlightness 4\nlightning 13\nlights 22\nligne 1\nlike 1080\nliked 75\nlikelier 1\nlikelihood 2\nlikely 78\nlikened 4\nlikeness 5\nlikes 8\nlikewise 30\nlikhachev 7\nliking 9\nlilac 7\nlilies 1\nliliuokalani 1\nlily 2\nlimb 217\nlimbed 1\nlimbered 1\nlimbers 4\nlimbo 1\nlimbs 67\nlime 23\nlimes 1\nlimestone 2\nlimit 35\nlimitation 19\nlimitations 12\nlimited 80\nlimiting 5\nlimitless 2\nlimits 23\nlimonade 2\nlimp 8\nlimped 2\nlimpet 2\nlimping 6\nlimply 1\nlimps 1\nlincoln 83\nline 248\nlineage 1\nlinear 2\nlined 32\nlinen 23\nlinens 2\nliners 2\nlines 133\nlinger 3\nlingered 8\nlingering 3\nlingo 1\nlingual 2\nlinguistic 1\nliniment 2\nlinimentum 1\nlining 24\nlink 12\nlinked 12\nlinking 4\nlinks 13\nlinoleum 1\nlinseed 1\nlinsey 1\nlinstocks 2\nlint 13\nlinz 1\nlion 3\nlions 1\nlip 56\nlipetsk 1\nlipoid 1\nlipoma 32\nlipomas 3\nlipomatosis 7\nlipped 2\nlipping 6\nlips 146\nliquefaction 13\nliquefied 3\nliquefies 2\nliquefy 3\nliquefying 1\nliquid 10\nliquor 13\nliquors 2\nlis 1\nlisa 1\nlise 30\nlisp 1\nlisping 3\nlispingly 1\nlist 48\nlisted 3\nlisten 100\nlistened 156\nlistener 3\nlisteners 6\nlistening 89\nlistens 2\nlister 8\nlisterian 3\nlisting 4\nlistless 12\nlistlessly 1\nlistlessness 1\nlists 9\nlit 74\nlitany 1\nlitashevka 1\nlitchfield 1\nliteracy 3\nliteral 1\nliterally 7\nliterary 42\nliterate 1\nliterature 16\nlithe 1\nlithuania 1\nlitigants 1\nlitigation 1\nlitre 1\nlitter 3\nlittered 5\nlittle 1001\nlive 128\nlived 113\nlivelier 6\nliveliest 2\nlivelihood 10\nliveliness 3\nlively 20\nliver 40\nliveried 3\nliveries 1\nliverpool 6\nlivery 2\nlives 60\nlivid 14\nliving 135\nlivingston 7\nlivingstons 2\nlivonian 1\nliza 1\nll 427\nllewellyn 1\nlloyd 10\nlo 1\nload 8\nloaded 28\nloading 5\nloads 3\nloaf 4\nloafer 3\nloafing 1\nloam 1\nloan 10\nloans 13\nloath 1\nloathe 1\nloathed 1\nloathing 3\nloathsome 3\nlobby 3\nlobingier 1\nlobnoe 3\nlobster 1\nlobulated 8\nlobulation 2\nlobules 2\nlocal 192\nlocalisation 5\nlocalise 1\nlocalised 43\nlocalising 1\nlocalities 1\nlocality 14\nlocally 11\nlocate 1\nlocated 24\nlocating 1\nlocation 8\nlocations 6\nlock 33\nlocke 6\nlocked 27\nlocket 2\nlocking 13\nlocks 6\nlockup 1\nlocomotion 1\nlocomotive 10\nlocomotor 6\nloculi 1\nlocus 1\nlodes 1\nlodge 86\nlodged 12\nlodger 2\nlodges 11\nlodging 8\nlodgings 11\nlodgment 7\nlodi 1\nloffler 4\nloftiest 1\nloftily 1\nloftiness 2\nlofty 29\nlog 20\nlogement 1\nlogging 1\nlogic 11\nlogical 21\nlogician 1\nlogin 1\nlogs 8\nloi 1\nloin 1\nloins 1\nloitering 1\nlolled 2\nlolling 1\nlombard 1\nlome 4\nlondon 76\nlondoners 1\nlone 9\nlonelier 1\nloneliness 4\nlonely 13\nlonesome 1\nlong 991\nlonged 23\nlonger 232\nlongest 2\nlongfellow 3\nlonging 7\nlongitude 2\nlongitudinal 5\nlongitudinally 2\nlongshoremen 1\nlongtemps 1\nlongus 14\nloofah 1\nlook 567\nlooked 760\nlooking 489\nlookout 7\nlooks 88\nloom 2\nloomed 5\nlooming 2\nloop 4\nloophole 1\nloopholes 1\nloops 10\nloose 90\nloosed 3\nloosely 10\nloosened 4\nlooseness 1\nloosening 1\nloot 3\nlooted 6\nlooters 2\nlooting 11\nloots 1\nlope 3\nlopped 1\nlopukhin 3\nlopukhins 1\nloquacious 1\nloquacity 1\nlord 132\nlording 1\nlordling 1\nlords 13\nlordship 4\nlore 1\nlorgnette 4\nlorrain 11\nlorraine 2\nlorry 1\nlos 3\nlose 51\nloses 18\nlosing 43\nloss 143\nlosses 26\nlost 224\nlot 35\nlothman 1\nlotion 19\nlotions 8\nlots 8\nlotteries 2\nlottery 1\nloud 64\nlouder 32\nloudest 4\nloudly 46\nlouis 44\nlouisa 4\nlouise 4\nlouisiana 62\nlouisville 3\nlounge 4\nlounged 3\nloungers 2\nlounging 5\nlouse 1\nlout 1\nlovayski 1\nlove 484\nloved 128\nlovejoy 1\nloveliness 1\nlovely 30\nlover 26\nlovers 9\nloves 21\nloving 42\nlovingly 2\nlow 131\nlowed 1\nlowell 13\nlower 196\nlowered 33\nlowering 19\nlowers 1\nlowest 17\nlowliest 1\nlowly 1\nlows 1\nloyal 20\nloyalist 1\nloyalists 10\nloyally 4\nloyalty 16\nlozenge 1\nlozenges 1\nltd 1\nluargol 2\nlubomirski 1\nlubricant 1\nlubyanka 3\nlucca 2\nlucia 1\nlucid 2\nlucidum 1\nluck 28\nluckily 1\nluckless 3\nlucky 15\nlucrative 10\nlucretia 1\nlucy 4\nludicrous 1\nluetin 2\nluff 1\nluggage 7\nlui 4\nluke 1\nlukich 1\nlull 2\nlumbago 8\nlumbar 6\nlumber 14\nlumbering 2\nlumbo 2\nlumbricals 5\nlumen 27\nluminous 11\nlump 12\nlumps 2\nlunatic 8\nlunatics 3\nlunch 17\nlunched 1\nluncheon 2\nlunches 2\nlunching 1\nlunchtime 1\nlung 8\nlungs 23\nlunule 2\nlupus 38\nlurched 3\nlurching 1\nlure 8\nlured 6\nlurid 5\nluring 3\nlurked 2\nlurking 5\nlush 1\nlusitania 5\nlust 5\nluster 1\nlustre 2\nlustrous 1\nlusty 1\nluteum 1\nluther 1\nlutheran 1\nlutherans 1\nluthers 1\nluxations 1\nluxemburg 1\nluxuriant 2\nluxuriantly 1\nluxuries 4\nluxurious 8\nluxuriously 1\nluxury 8\nluzon 2\nlvovich 1\nlvovna 1\nly 1\nlyadov 2\nlydia 2\nlying 118\nlymph 194\nlymphadenitis 13\nlymphadenoma 9\nlymphangiectasis 5\nlymphangio 2\nlymphangioma 12\nlymphangiomas 2\nlymphangioplasty 3\nlymphangitic 1\nlymphangitis 23\nlymphatic 25\nlymphatics 38\nlympho 9\nlymphocytes 8\nlymphocytosis 2\nlymphoid 3\nlymphorrhagia 2\nlynch 1\nlynn 2\nlyon 3\nlyons 1\nlyre 1\nlyric 1\nlyrical 1\nlysander 7\nlysol 1\nlyubim 1\nm 170\nma 31\nmabel 1\nmac 1\nmacaulay 5\nmacdonald 39\nmacerated 8\nmaceration 2\nmacewen 10\nmacheve 2\nmachinations 1\nmachine 39\nmachinery 27\nmachines 3\nmack 22\nmacked 1\nmackenna 1\nmackes 1\nmackintosh 1\nmaclachan 1\nmacmillan 2\nmacrophages 2\nmacular 1\nmad 36\nmadagascar 2\nmadam 23\nmadame 43\nmadcap 1\nmaddened 1\nmaddening 2\nmade 1007\nmadeira 3\nmademoiselle 142\nmadere 1\nmadero 3\nmadison 44\nmadly 7\nmadman 4\nmadmen 1\nmadmoiselle 1\nmadness 5\nmadonna 1\nmadrid 8\nmadura 5\nmagazine 5\nmagazines 5\nmagdalenes 2\nmagellan 2\nmaggie 3\nmaggot 1\nmaggoty 1\nmagic 10\nmagical 4\nmagically 1\nmagician 3\nmagistrate 9\nmagistrates 2\nmagna 2\nmagnanimity 15\nmagnanimous 9\nmagnanimously 1\nmagnate 4\nmagnates 8\nmagnesium 2\nmagnet 1\nmagnetic 2\nmagnificence 3\nmagnificent 12\nmagnifico 1\nmagnified 1\nmagnifying 3\nmagnitski 12\nmagnitude 13\nmagnolia 1\nmagnum 2\nmagyars 1\nmahan 1\nmahogany 4\nmaid 87\nmaiden 15\nmaidens 1\nmaids 30\nmaidservant 5\nmaidservants 3\nmail 9\nmails 5\nmaim 1\nmaimed 3\nmain 109\nmaine 21\nmainframe 1\nmainland 3\nmainly 75\nmains 1\nmainspring 2\nmainstream 1\nmaintain 48\nmaintained 40\nmaintaining 15\nmaintains 6\nmaintenance 10\nmais 5\nmaison 3\nmaistre 1\nmaitre 1\nmaitresse 1\nmaize 1\nmajestic 24\nmajestically 3\nmajesties 1\nmajesty 102\nmajor 78\nmajora 1\nmajority 121\nmajus 1\nmakar 19\nmakarin 8\nmakarka 2\nmakarovna 3\nmake 504\nmakeev 4\nmaker 4\nmakers 9\nmakes 54\nmaketh 1\nmaking 217\nmakings 1\nmakins 1\nmaksim 1\nmal 3\nmala 1\nmalacia 4\nmaladies 1\nmalady 6\nmalaise 2\nmalakhov 1\nmalaria 3\nmalarial 1\nmalasha 7\nmalay 1\nmalbrook 1\nmalcontent 1\nmalcontents 1\nmale 40\nmalefactors 1\nmales 17\nmalevolence 4\nmalevolent 4\nmalevolently 2\nmalformation 1\nmalformations 1\nmalgre 1\nmalheureux 1\nmalice 3\nmalicious 3\nmaliciously 2\nmalign 1\nmalignancy 12\nmalignant 88\nmalignantly 1\nmalignity 1\nmalingerers 1\nmall 1\nmallei 3\nmallein 2\nmalleoli 2\nmalleolus 9\nmallet 5\nmallets 2\nmalnutrition 1\nmalo 8\nmalodorous 2\nmalpighii 4\nmalt 1\nmalta 2\nmalum 2\nmalvinas 1\nmalvintseva 7\nmaman 2\nmameluke 1\nmamma 117\nmammae 3\nmammal 1\nmammary 4\nmammas 1\nmammoth 2\nmamonov 7\nmamontov 1\nman 1652\nmanage 27\nmanaged 63\nmanagement 48\nmanager 19\nmanageress 1\nmanagerial 1\nmanagers 6\nmanages 3\nmanaging 6\nmanchester 5\nmanchuria 1\nmandate 1\nmandatories 1\nmandatory 2\nmandible 11\nmandibular 5\nmane 9\nmanes 2\nmaneuver 7\nmaneuvered 2\nmaneuvers 21\nmanfully 1\nmange 1\nmanger 1\nmangled 1\nmanhattan 1\nmanhood 22\nmania 6\nmaniac 2\nmanifessto 1\nmanifest 29\nmanifestation 16\nmanifestations 44\nmanifested 6\nmanifesting 1\nmanifestly 1\nmanifesto 15\nmanifestoes 2\nmanifests 10\nmanifold 3\nmanila 9\nmanipulate 1\nmanipulated 1\nmanipulates 1\nmanipulation 5\nmanipulations 3\nmankind 36\nmanless 1\nmanly 13\nmann 1\nmanna 1\nmanned 4\nmanner 135\nmanners 22\nmanning 1\nmanoeuvered 1\nmanoeuvre 1\nmanoevered 1\nmanor 5\nmanorial 3\nmanors 8\nmanpower 1\nmanque 1\nmanservant 2\nmansfeld 1\nmansfield 1\nmansion 5\nmansions 2\nmantelpiece 6\nmantilla 3\nmantle 8\nmantles 1\nmanual 19\nmanufactory 1\nmanufacture 19\nmanufactured 7\nmanufacturer 8\nmanufacturers 21\nmanufactures 43\nmanufacturing 39\nmanure 5\nmanured 1\nmanures 1\nmanuscript 6\nmanuscripts 3\nmany 609\nmap 38\nmapped 2\nmapping 1\nmaps 7\nmarat 1\nmarathon 1\nmaraude 1\nmarauder 3\nmarauders 9\nmarauding 4\nmarbank 2\nmarble 10\nmarbled 1\nmarbury 5\nmarch 135\nmarched 24\nmarches 10\nmarching 29\nmarco 1\nmarcus 2\nmare 5\nmarechaux 1\nmarengo 1\nmargaret 2\nmargaux 1\nmargin 28\nmarginal 2\nmargins 34\nmaria 5\nmarian 1\nmarie 11\nmarietta 3\nmarin 1\nmarina 2\nmarine 9\nmariners 3\nmarines 4\nmarion 3\nmaritime 5\nmarius 1\nmark 38\nmarked 138\nmarkedly 8\nmarker 2\nmarket 52\nmarketing 1\nmarkets 47\nmarking 5\nmarkings 1\nmarkov 7\nmarks 19\nmarlborough 1\nmarm 1\nmarne 1\nmaroon 4\nmarque 2\nmarquette 5\nmarquis 3\nmarquise 2\nmarred 1\nmarriage 96\nmarriageable 3\nmarriages 6\nmarried 107\nmarries 1\nmarrow 78\nmarry 95\nmarrying 32\nmars 3\nmarseilles 2\nmarsh 3\nmarshal 66\nmarshaled 2\nmarshall 34\nmarshalls 1\nmarshals 26\nmarshes 1\nmarshy 2\nmarston 1\nmartha 2\nmartial 16\nmartialed 2\nmartin 7\nmartineau 5\nmartinet 1\nmartinists 1\nmartyr 5\nmartyrdom 3\nmartyrlike 1\nmartyrs 1\nmarvel 1\nmarveled 1\nmarveling 1\nmarvellous 2\nmarvelous 3\nmarvelously 1\nmarvels 2\nmarx 1\nmarxian 1\nmary 705\nmarya 113\nmaryland 41\nmasculine 9\nmash 2\nmasha 8\nmashka 3\nmask 12\nmasked 2\nmason 28\nmasonic 18\nmasonry 4\nmasons 9\nmass 101\nmassachusetts 117\nmassacre 11\nmassacred 2\nmassacres 1\nmassage 28\nmassaged 7\nmassasoit 1\nmasse 2\nmasses 70\nmasseter 2\nmassive 12\nmast 2\nmaster 141\nmastered 4\nmastering 3\nmasterly 10\nmasterpiece 1\nmasters 37\nmastery 7\nmastication 4\nmastiff 2\nmastitis 3\nmastoid 18\nmasts 2\nmat 3\nmatas 8\nmatch 41\nmatched 1\nmatches 7\nmatchless 2\nmatchmaker 1\nmatchmaking 4\nmate 5\nmater 2\nmaterial 74\nmaterially 9\nmaterials 35\nmaternal 4\nmates 4\nmathematical 4\nmathematically 2\nmathematician 1\nmathematicians 1\nmathematics 11\nmather 1\nmatheson 1\nmathilde 1\nmatins 2\nmatrena 8\nmatreshka 1\nmatrevna 1\nmatrimonial 1\nmatrix 11\nmatron 2\nmats 2\nmatt 1\nmatted 6\nmatter 365\nmattered 3\nmatters 136\nmatthew 4\nmatting 1\nmattock 1\nmattress 1\nmature 6\nmatured 5\nmaturing 1\nmaturity 13\nmatveich 1\nmatvevna 5\nmaude 1\nmaudlin 1\nmaudsley 1\nmaurice 1\nmauritius 1\nmautern 1\nmavra 26\nmavrushka 2\nmawkish 2\nmawr 1\nmax 2\nmaxilla 6\nmaxillae 1\nmaxillary 5\nmaxim 4\nmaximilian 2\nmaxims 1\nmaximum 21\nmaximus 2\nmaxwell 1\nmay 2551\nmaybe 8\nmayest 1\nmayflower 3\nmayo 3\nmayonnaise 1\nmayor 15\nmayors 2\nmazurka 11\nmazuwka 1\nmb 13\nmccarthy 37\nmccarthys 3\nmccauley 2\nmcclellan 3\nmcclintock 1\nmccormick 2\nmcculloch 4\nmcduffie 2\nmcfarlane 1\nmckinley 38\nmclaughlin 1\nmcmaster 10\nmcquire 1\nmd 1\nme 1920\nmead 2\nmeade 3\nmeadow 18\nmeadows 8\nmeager 6\nmeagre 1\nmeal 15\nmeals 5\nmean 98\nmeanest 1\nmeaning 115\nmeaningful 1\nmeaningless 18\nmeaninglessly 1\nmeanings 1\nmeanly 3\nmeanness 3\nmeans 253\nmeant 113\nmeantime 17\nmeanwhile 45\nmeany 1\nmeasles 4\nmeasurable 1\nmeasure 93\nmeasured 25\nmeasurement 2\nmeasures 179\nmeasuring 7\nmeat 15\nmeatal 1\nmeats 2\nmeatus 6\nmechanical 35\nmechanically 12\nmechanicks 1\nmechanics 24\nmechanism 12\nmeckel 1\nmecklenburgers 1\nmed 2\nmedal 4\nmedals 4\nmeddle 6\nmeddler 1\nmeddling 2\nmedia 7\nmediaeval 1\nmedial 30\nmedially 3\nmedian 24\nmediastinal 1\nmediastinum 2\nmediate 1\nmediation 4\nmediator 2\nmediators 1\nmedical 22\nmedicinal 4\nmedicinally 1\nmedicine 27\nmedicines 4\nmedico 1\nmedieval 1\nmeditate 2\nmeditated 1\nmeditating 5\nmeditation 6\nmeditations 1\nmeditative 2\nmeditatively 2\nmediterranean 5\nmedium 44\nmedius 1\nmedulla 15\nmedullary 28\nmedullated 3\nmedvedev 1\nmedyn 1\nmeek 8\nmeekest 1\nmeekly 10\nmeekness 2\nmeet 170\nmeeting 118\nmeetings 28\nmeets 3\nmeg 1\nmein 1\nmeinen 1\nmelaena 3\nmelan 2\nmelancholia 2\nmelancholie 1\nmelancholy 32\nmelanin 4\nmelanotic 18\nmelbourne 1\nmele 1\nmelk 1\nmellow 2\nmelodious 1\nmelodramatically 1\nmelody 4\nmelon 8\nmelt 5\nmelted 13\nmelting 11\nmelts 1\nmelyukov 2\nmelyukova 2\nmelyukovka 4\nmelyukovs 7\nmember 50\nmembers 157\nmembership 4\nmembra 1\nmembrane 154\nmembranes 24\nmembranosus 3\nmembranous 3\nmeme 1\nmemento 2\nmemoir 1\nmemoirs 5\nmemorable 21\nmemoranda 1\nmemorandum 9\nmemorial 2\nmemorials 3\nmemories 31\nmemory 55\nmemphis 3\nmen 1145\nmenace 16\nmenaced 2\nmenacing 13\nmenacingly 1\nmenard 1\nmend 3\nmendacious 1\nmended 3\nmendicant 1\nmendicants 1\nmending 2\nmendota 1\nmenendez 1\nmeningeal 1\nmeningen 1\nmeninges 2\nmeningitis 10\nmeningocele 1\nmenisci 2\nmeniscus 1\nmenservants 2\nmental 37\nmentality 1\nmentally 20\nmenthol 1\nmention 46\nmentioned 66\nmentioning 9\nmentions 2\nmenu 1\nmercantile 6\nmercenaries 1\nmerchandise 4\nmerchant 41\nmerchantability 2\nmerchantibility 2\nmerchantmen 3\nmerchants 54\nmerci 3\nmercies 2\nmerciful 6\nmercifully 2\nmerciless 2\nmercilessly 2\nmercurial 5\nmercury 36\nmercy 42\nmere 79\nmeredith 1\nmerely 189\nmerest 4\nmerge 6\nmerged 17\nmerger 1\nmergers 2\nmerges 1\nmerging 6\nmeridian 1\nmerit 24\nmerite 1\nmerited 1\nmeritorious 1\nmerits 11\nmerrier 3\nmerriest 4\nmerrily 22\nmerrimac 3\nmerriment 7\nmerritt 1\nmerry 56\nmerrymaking 2\nmerryweather 12\nmerveille 1\nmesalliance 1\nmesdames 1\nmesenteric 3\nmesentery 2\nmesh 1\nmeshchanski 1\nmeshcherski 2\nmeshes 5\nmeshkov 1\nmeshwork 3\nmesial 1\nmesoblastic 1\nmesopotamia 1\nmesquite 1\nmess 10\nmessage 46\nmessages 6\nmessenger 25\nmessengers 1\nmessieurs 3\nmessrs 1\nmet 544\nmetabolism 2\nmetacarpal 9\nmetacarpals 2\nmetacarpi 2\nmetacarpo 3\nmetacarpus 1\nmetal 34\nmetallic 16\nmetals 3\nmetamorphosis 1\nmetaphor 1\nmetaphorically 1\nmetaphysical 1\nmetaphysics 3\nmetaphysis 2\nmetaplastic 2\nmetastases 13\nmetastasis 11\nmetastatic 6\nmetatarsal 8\nmetatarso 3\nmetatarsus 1\nmetchnikoff 5\nmete 1\nmeted 1\nmetempsychosis 1\nmetes 1\nmethinks 1\nmethod 141\nmethode 1\nmethodical 1\nmethodically 1\nmethodology 1\nmethods 92\nmethylated 6\nmethylene 1\nmetier 1\nmetivier 14\nmetre 1\nmetronome 1\nmetropolis 6\nmetropolitan 6\nmetternich 3\nmettle 1\nmettlesome 2\nmeuse 3\nmews 3\nmexican 39\nmexicans 3\nmexico 69\nmeyer 1\nmi 3\nmice 3\nmichael 69\nmichaud 22\nmichel 5\nmichigan 23\nmicro 18\nmicrobes 1\nmicrococci 2\nmicrococcus 2\nmicrophages 2\nmicrophone 1\nmicroscope 3\nmicroscopic 3\nmicroscopical 7\nmicroscopically 1\nmid 6\nmidday 12\nmiddle 192\nmiddlesex 1\nmiddling 1\nmidfield 1\nmidges 1\nmidian 2\nmidnight 28\nmidst 50\nmidsummer 1\nmidway 4\nmidwife 5\nmidwinter 2\nmien 2\nmifflin 1\nmight 536\nmightier 2\nmightily 1\nmighty 30\nmigrate 5\nmigrated 4\nmigration 32\nmigrations 3\nmigratory 4\nmihiel 2\nmike 1\nmikhaylovich 3\nmikhaylovna 131\nmikhelson 1\nmikolka 1\nmikulicz 1\nmikulino 4\nmilan 5\nmilashka 1\nmild 50\nmilder 9\nmildest 3\nmildly 5\nmildness 5\nmile 32\nmileage 1\nmiles 110\nmiliary 1\nmilitant 2\nmilitarism 1\nmilitarist 1\nmilitary 228\nmilitarymen 1\nmilitia 44\nmilitiaman 2\nmilitiamen 29\nmilk 29\nmilka 13\nmilking 1\nmilky 4\nmill 18\nmillar 5\nmillard 3\nmilldam 1\nmille 1\nmillennium 3\nmiller 5\nmilliamperes 3\nmillimetre 1\nmillimetres 1\nmilliners 1\nmillion 72\nmillionaire 3\nmillionaires 5\nmillionairess 1\nmillions 84\nmillionth 1\nmillis 1\nmillpool 1\nmills 39\nmiloradovich 20\nmiloradoviches 1\nmilton 1\nmilwaukee 2\nmimetic 4\nmimi 3\nmimicked 5\nmimicking 1\nmin 1\nmind 341\nminded 21\nmindedly 9\nmindedness 9\nmindful 5\nminds 27\nmine 62\nmined 4\nminer 8\nmineral 11\nminerals 8\nminers 19\nmines 22\nmingle 4\nmingled 32\nmingling 11\nminiature 4\nminiaturist 2\nminimal 1\nminimise 2\nminimize 1\nminimizing 1\nminims 6\nminimum 22\nmining 18\nminion 1\nminister 74\nministerial 1\nministers 34\nministry 14\nminnesingers 3\nminnesota 13\nminor 29\nminora 1\nminorca 1\nminority 13\nmint 1\nmintage 1\nmints 2\nminuit 1\nminus 1\nminute 83\nminutely 9\nminutemen 1\nminuteness 2\nminutes 146\nminutest 6\nmio 2\nmiracle 5\nmiracles 1\nmiraculous 2\nmiriam 1\nmironov 1\nmirror 18\nmirrorlike 3\nmirrors 10\nmirth 5\nmirthful 1\nmirthless 2\nmisadventure 1\nmiscalculated 1\nmiscarriage 2\nmiscarriages 1\nmiscarried 1\nmischance 1\nmischief 6\nmischievous 5\nmisconduct 1\nmiscreant 1\nmisdeeds 1\nmisdemeanors 1\nmisdirected 2\nmiserable 13\nmisericorde 1\nmisery 18\nmisfortune 33\nmisfortunes 15\nmisgivings 6\nmisha 2\nmishka 4\nmisinformed 1\nmisjudged 1\nmislead 1\nmisleading 4\nmisled 4\nmismanaged 1\nmismanagement 1\nmisplaced 1\nmisrepeated 1\nmisrule 1\nmiss 112\nmissed 28\nmisses 2\nmisshapen 6\nmissile 4\nmissiles 2\nmissing 28\nmission 34\nmissionaries 11\nmissionary 1\nmissions 3\nmissis 1\nmississippi 78\nmissouri 58\nmisspelled 1\nmissy 1\nmist 41\nmistake 39\nmistaken 59\nmistakes 15\nmistaking 4\nmister 2\nmistook 1\nmistress 24\nmistresses 3\nmistrustfully 2\nmistrusting 1\nmists 1\nmisty 10\nmisunderstand 1\nmisunderstanding 7\nmisunderstandings 6\nmisunderstood 1\nmitchell 6\nmitenka 16\nmitigate 2\nmitigates 1\nmitka 5\nmitrich 3\nmitrofanych 1\nmitya 3\nmiwacle 1\nmiwonov 1\nmix 4\nmixed 62\nmixing 2\nmixture 13\nmlle 1\nmm 1\nmmm 1\nmo 1\nmoan 10\nmoaned 6\nmoaning 13\nmoans 6\nmob 26\nmobbed 1\nmobbing 1\nmobile 3\nmobility 15\nmobilized 3\nmobilizing 2\nmobs 5\nmock 3\nmocked 1\nmocking 6\nmockingly 1\nmode 18\nmodel 13\nmodeled 2\nmodeling 2\nmodels 1\nmoderate 31\nmoderately 5\nmoderating 1\nmoderation 10\nmodern 49\nmodes 2\nmodest 13\nmodestly 4\nmodesty 8\nmodification 10\nmodifications 8\nmodified 21\nmodify 6\nmodule 1\nmohawk 2\nmohawks 2\nmoines 1\nmoist 63\nmoistened 5\nmoisture 10\nmokhavaya 1\nmokhovaya 1\nmolars 2\nmolasses 12\nmold 2\nmoldavia 4\nmoldavian 1\nmolded 1\nmolders 4\nmole 15\nmolecular 4\nmolecule 1\nmoles 9\nmolested 1\nmolibre 1\nmolle 1\nmolliten 1\nmolluscum 7\nmomburg 1\nmoment 487\nmomenta 1\nmomentarily 1\nmomentary 13\nmomentous 7\nmoments 56\nmomentum 10\nmon 54\nmonarch 22\nmonarchical 4\nmonarchies 2\nmonarchist 1\nmonarchists 1\nmonarchs 14\nmonarchy 21\nmonasteries 2\nmonastery 9\nmonday 17\nmondays 1\nmonetary 6\nmoney 326\nmoneyed 1\nmonger 1\nmongrel 1\nmonica 3\nmonitor 4\nmonitoring 1\nmonitress 2\nmonk 8\nmonkey 6\nmonkeys 3\nmonks 3\nmonmouth 4\nmonocrat 1\nmonogram 4\nmonograms 3\nmonograph 3\nmonologue 1\nmonomaniac 1\nmononuclear 2\nmonopolies 10\nmonopolists 1\nmonopolized 1\nmonopolizers 1\nmonopoly 15\nmonosyllable 1\nmonosyllables 4\nmonotonous 11\nmonotony 3\nmonro 1\nmonroe 47\nmonseigneur 5\nmonsieur 45\nmonster 11\nmonsters 2\nmonstrosity 2\nmonstrous 7\nmontagu 3\nmontague 3\nmontana 16\nmontcalm 1\nmontdidier 1\nmontesquieu 2\nmontgomery 4\nmonth 64\nmonthly 8\nmonths 130\nmontmorencys 1\nmontreal 4\nmonument 6\nmonuments 7\nmood 51\nmoodily 2\nmoods 5\nmoody 1\nmoon 24\nmoonless 1\nmoonlight 18\nmoonshine 3\nmoor 3\nmoore 12\nmoorhof 2\nmop 5\nmopping 2\nmoral 51\nmorale 1\nmorality 6\nmorally 9\nmorals 5\nmoran 13\nmorand 5\nmoravian 1\nmoravians 2\nmorbid 15\nmorcar 4\nmore 1997\nmoreau 5\nmorel 17\nmoreover 73\nmorgan 6\nmorgen 2\nmori 1\nmoribund 1\nmorio 4\nmorley 1\nmormon 3\nmormons 10\nmorning 337\nmornings 3\nmoroccan 1\nmorocco 3\nmorose 14\nmorosely 7\nmoroseness 1\nmoroseyka 2\nmorphin 9\nmorrant 1\nmorris 16\nmorrises 2\nmorrison 2\nmorristown 1\nmorrow 22\nmorse 4\nmorsel 1\nmorsels 1\nmort 2\nmortal 14\nmortality 6\nmortally 6\nmortals 1\nmortar 2\nmortem 5\nmortemart 9\nmortgage 8\nmortgaged 2\nmortgages 7\nmortier 6\nmortification 4\nmortified 7\nmortify 1\nmortifying 1\nmortimer 1\nmorton 1\nmosaic 2\nmoschcowitz 1\nmoscou 5\nmoscovite 1\nmoscovites 5\nmoscow 723\nmoses 5\nmosetig 2\nmoskowa 2\nmoskva 8\nmoslem 1\nmosque 2\nmosquee 1\nmosquito 1\nmosquitoes 2\nmoss 6\nmost 908\nmostly 11\nmot 7\nmother 312\nmotherland 1\nmotherless 1\nmotherly 2\nmothers 12\nmotif 1\nmotile 5\nmotion 60\nmotioned 2\nmotionless 35\nmotions 2\nmotivate 1\nmotivation 1\nmotive 17\nmotives 14\nmotley 3\nmotor 29\nmotorist 1\nmotorway 1\nmots 2\nmott 1\nmottled 1\nmottling 1\nmotto 5\nmould 4\nmoulded 4\nmoulton 4\nmound 3\nmounds 1\nmounseer 1\nmount 17\nmountain 17\nmountainous 2\nmountains 27\nmounted 43\nmounting 10\nmourn 1\nmourned 1\nmournful 11\nmournfully 3\nmourning 8\nmouse 6\nmousseline 1\nmoustache 3\nmoustached 1\nmouth 164\nmouthed 4\nmouthpiece 1\nmouths 11\nmouton 3\nmovable 17\nmove 101\nmoved 248\nmovement 347\nmovements 115\nmoves 24\nmovie 1\nmoving 143\nmowed 1\nmowers 1\nmowing 4\nmown 6\nmoyens 1\nmoyka 1\nmozhaysk 25\nmr 360\nmrs 59\nms 2\nmt 1\nmuch 671\nmucin 1\nmucius 1\nmuckrakers 2\nmuckraking 2\nmuco 3\nmucoid 3\nmucous 96\nmucus 1\nmud 36\nmuddle 3\nmuddled 3\nmuddles 4\nmuddling 1\nmuddy 19\nmuddying 1\nmudrov 1\nmuff 1\nmuffled 6\nmufti 1\nmug 2\nmugwump 2\nmugwumps 3\nmuir 2\nmule 2\nmules 2\nmulled 1\nmulti 2\nmultilocular 5\nmultimedia 1\nmultinuclear 2\nmultiple 95\nmultiplication 3\nmultiplicity 4\nmultiplied 8\nmultiply 8\nmultiplying 3\nmultitude 8\nmultitudes 1\nmultitudinous 2\nmumbled 2\nmumbling 4\nmummers 11\nmummification 3\nmummy 7\nmunched 2\nmunching 7\nmundane 2\nmundi 1\nmunich 1\nmunicipal 18\nmunicipalities 3\nmunicipality 4\nmunificent 1\nmunition 4\nmunitions 6\nmunro 3\nmurat 53\nmurder 30\nmurdered 10\nmurderer 11\nmurderers 2\nmurdering 2\nmurderous 5\nmurders 6\nmurfreesboro 1\nmurky 1\nmurmur 16\nmurmured 18\nmurmurs 4\nmurphy 8\nmurray 1\nmuscle 152\nmuscles 204\nmuscovites 3\nmuscovy 1\nmuscular 74\nmuscularis 1\nmuscularly 3\nmusculo 8\nmuse 1\nmuseum 21\nmuseums 3\nmushroom 5\nmushrooms 3\nmusic 56\nmusical 9\nmusician 4\nmusicians 5\nmusket 19\nmusketeer 2\nmusketeers 1\nmusketoon 2\nmusketry 21\nmuskets 22\nmuslin 5\nmuss 1\nmust 955\nmustache 45\nmustached 2\nmustaches 11\nmustard 6\nmuster 3\nmustered 7\nmustn 14\nmusty 1\nmutation 1\nmutations 1\nmute 5\nmuter 1\nmutilans 1\nmutilated 2\nmutilation 1\nmutineers 1\nmutinous 1\nmutiny 3\nmutter 4\nmuttered 74\nmuttering 23\nmutterings 1\nmutton 11\nmutual 20\nmutually 7\nmuzzle 8\nmuzzled 1\nmy 2249\nmyasnitski 2\nmycetoma 7\nmycotic 1\nmyelia 1\nmyelin 5\nmyelitis 3\nmyeloid 1\nmyeloma 28\nmyelomatosis 1\nmyo 2\nmyoma 8\nmyomas 1\nmyositis 12\nmyriads 1\nmyself 227\nmysteries 9\nmysterious 38\nmysteriously 3\nmystery 39\nmystic 7\nmystical 5\nmysticism 3\nmyth 3\nmythological 1\nmythology 1\nmytishchi 12\nmyxo 4\nmyxoma 10\nmyxomatous 8\nn 62\nna 3\nnaevi 10\nnaevoid 6\nnaevus 27\nnag 2\nnail 60\nnails 32\nnaiv 1\nnaive 25\nnaively 8\nnaivete 4\nnaked 25\nname 262\nnamed 38\nnamely 45\nnames 29\nnamesake 2\nnaming 4\nnan 1\nnancy 1\nnankeen 1\nnap 8\nnape 5\nnaphthol 1\nnapkin 11\nnapkins 1\nnaples 13\nnapoleon 607\nnapoleonic 16\nnapoleons 4\nnarcotisation 1\nnares 1\nnarragansett 2\nnarrate 2\nnarrated 4\nnarrating 2\nnarration 2\nnarrative 25\nnarratives 2\nnarrator 3\nnarrators 1\nnarrow 61\nnarrowed 8\nnarrowing 11\nnarrowings 1\nnarrowly 6\nnarrows 1\nnaryshkin 4\nnaryshkina 1\nnaryshkins 1\nnasal 21\nnascent 1\nnashville 5\nnasi 3\nnaso 3\nnastasya 7\nnasty 12\nnataisha 1\nnatal 2\nnatalia 1\nnatalie 14\nnataly 5\nnatalya 2\nnatasha 1212\nnates 1\nnathanael 1\nnathaniel 4\nnatiform 2\nnation 169\nnational 285\nnationalism 23\nnationalist 3\nnationalists 1\nnationalities 9\nnationality 10\nnationalized 4\nnationalizing 1\nnationally 1\nnations 103\nnative 39\nnatives 12\nnativity 2\nnatural 145\nnaturalists 2\nnaturalization 1\nnaturalized 2\nnaturally 59\nnature 170\nnatured 34\nnaturedly 6\nnatures 2\nnaught 5\nnaughty 4\nnausea 4\nnautical 1\nnaval 41\nnavigable 3\nnavigation 16\nnavigators 1\nnavvies 1\nnavvy 1\nnavy 38\nnay 3\nnays 2\nnd 6\nne 12\nneapolitans 1\nnear 293\nnearby 2\nneared 1\nnearer 84\nnearest 50\nnearing 8\nnearly 176\nnearness 11\nneat 8\nneatly 11\nneatness 2\nnebraska 24\nnebulous 1\nnecessarily 31\nnecessary 327\nnecessitate 4\nnecessitates 5\nnecessitating 2\nnecessities 4\nnecessity 86\nneck 203\nnecked 2\nnecklace 4\nnecklaces 1\nnecks 8\nnecktie 1\nnecrosed 8\nnecroses 1\nnecrosis 51\nnecrotic 3\nned 2\nnee 1\nneed 160\nneeded 79\nneedful 5\nneeding 1\nneedle 40\nneedles 24\nneedless 2\nneedlessly 3\nneedling 6\nneedn 3\nneeds 43\nneedy 1\nnefarious 1\nneffer 1\nnegation 2\nnegative 27\nnegatived 1\nneglect 14\nneglected 19\nneglecting 3\nnegligence 10\nnegligent 1\nnegligently 1\nnegligible 5\nnegotiate 12\nnegotiated 7\nnegotiates 1\nnegotiating 3\nnegotiation 11\nnegotiations 33\nnegotiator 2\nnegro 22\nnegroes 27\nnehmen 1\nneighbor 28\nneighborhood 11\nneighborhoods 1\nneighboring 20\nneighbors 28\nneighbour 3\nneighbourhood 17\nneighbouring 14\nneighbours 5\nneighed 2\nneighing 2\nneihardt 2\nneilsen 1\nneisser 1\nneithah 1\nneither 168\nnelson 1\nneo 5\nneonatorum 2\nneoplasm 2\nneoplasms 1\nnephew 26\nnephews 1\nnephritis 1\nnephroma 1\nnerve 324\nnerves 149\nnervorum 1\nnervous 54\nnervously 8\nnervousness 2\nneskuchny 1\nness 1\nnest 7\nnestlings 1\nnests 2\nnesvitski 71\nnet 28\nnether 1\nnetherland 2\nnetherlands 1\nnets 1\nnetwork 13\nneuralgia 19\nneuralgic 6\nneurasthenia 1\nneurectomy 2\nneuritis 21\nneuro 23\nneuroglia 1\nneurolemma 5\nneurolysis 2\nneuroma 24\nneuromas 4\nneuromata 1\nneuromatosa 3\nneuron 3\nneuropathic 6\nneuroses 2\nneurotic 5\nneutral 15\nneutralise 5\nneutralised 1\nneutralising 4\nneutrality 16\nneutrals 3\nneutrophile 3\nnevada 13\nneve 2\nnever 593\nneverovski 1\nnevertheless 39\nneville 19\nnew 1211\nnewark 2\nnewburyport 1\nnewby 2\nnewcastle 1\nnewcomer 17\nnewcomers 8\nnewer 3\nnewest 1\nnewfoundland 1\nnewlands 2\nnewly 40\nnewness 1\nnewport 3\nnews 224\nnewsboys 1\nnewsletter 7\nnewsletters 2\nnewsmonger 1\nnewspaper 21\nnewspapers 31\nnewton 4\nnewtown 1\nnext 277\nnexus 1\nney 10\nnez 2\nni 2\nniagara 2\nnibbled 2\nnicaragua 6\nnice 53\nnicely 9\nnicer 1\nnicest 1\nniceties 1\nniches 1\nnicholas 635\nnicht 2\nnick 1\nnickel 1\nnickname 4\nnicknamed 4\nnidus 2\nniece 21\nnieces 1\nniemen 21\nnigel 1\nnigger 1\nnigh 5\nnight 385\nnightcap 11\nnightfall 1\nnightingales 1\nnightly 1\nnightmare 4\nnights 22\nnightshirt 1\nnighttime 1\nnikanorovich 1\nnikita 4\nnikitenko 1\nnikitski 2\nnikolaevich 5\nnikolenka 12\nnikolievich 1\nnikolievna 4\nnikolski 1\nnikulins 1\nnile 3\nnimble 2\nnimrod 1\nnina 1\nnine 64\nnineteen 5\nnineteenth 22\nnineties 1\nninety 7\nninth 9\nnip 2\nnipper 1\nnipple 6\nnipples 1\nnippon 1\nnitrate 7\nnitric 4\nnitrogen 3\nnitrogenous 1\nnizhegorod 4\nnizhni 8\nnl 1\nnm 1\nno 2348\nnoah 1\nnobility 31\nnoble 48\nnobleman 11\nnoblemen 5\nnobler 1\nnobles 9\nnoblesse 1\nnoblest 7\nnobodies 1\nnobody 36\nnocturnal 6\nnocturne 1\nnocturnes 1\nnod 8\nnodded 46\nnodding 12\nnode 6\nnodes 9\nnodosum 2\nnods 2\nnodular 14\nnodularly 2\nnodulated 3\nnodule 10\nnodules 38\nnoel 1\nnoguchi 3\nnoise 38\nnoised 1\nnoiseless 6\nnoiselessly 11\nnoisily 8\nnoisome 1\nnoisy 10\nnom 2\nnoma 3\nnomenclature 2\nnominal 8\nnominally 6\nnominate 5\nnominated 22\nnominating 9\nnomination 14\nnominee 3\nnon 41\nnonchalance 1\nnonchalantly 1\nnoncommissioned 12\nnonconformist 1\nnondescript 1\nnone 110\nnonentity 1\nnonetheless 1\nnonhuman 1\nnonintervention 1\nnonmilitary 1\nnonmoral 1\nnonobservance 4\nnonperformance 1\nnonproprietary 2\nnonreceipt 1\nnonrecognition 2\nnonsense 86\nnook 2\nnoon 8\nnoonday 1\nnoose 1\nnor 280\nnorfolk 2\nnorm 1\nnormal 109\nnormalize 1\nnormalized 1\nnormally 11\nnorman 1\nnormandy 1\nnorth 227\nnortheast 4\nnortherly 2\nnorthern 96\nnortherners 1\nnorthumberland 1\nnorthward 5\nnorthwest 48\nnorthwesterly 2\nnorthwestern 3\nnorton 8\nnorway 3\nnorwood 2\nnos 1\nnose 103\nnosed 11\nnoses 6\nnostitz 2\nnostrils 6\nnot 6626\nnotabilities 3\nnotable 5\nnotables 3\nnotably 15\nnotch 2\nnote 115\nnotebook 9\nnoted 17\nnotepaper 2\nnotes 64\nnoteworthy 6\nnothing 646\nnothingness 2\nnotice 98\nnoticeable 16\nnoticeably 4\nnoticed 191\nnotices 8\nnoticing 57\nnotified 1\nnotifies 3\nnotify 1\nnotifying 1\nnoting 10\nnotion 16\nnotions 8\nnotochord 1\nnotorious 8\nnotoriously 2\nnotre 3\nnotres 1\nnotwithstanding 9\nnought 1\nnoun 2\nnourish 7\nnourished 14\nnourishing 7\nnourishment 13\nnous 8\nnov 1\nnova 1\nnovarsenbillon 1\nnovel 20\nnovelist 2\nnovels 5\nnovelty 9\nnovember 41\nnovgorod 3\nnovice 1\nnovices 2\nnovikov 1\nnovo 3\nnovocain 3\nnovocaine 1\nnovoe 2\nnovosiltsev 5\nnow 1697\nnowadays 18\nnowhere 24\nnoxa 1\nnoxious 1\nnuclear 6\nnucleated 2\nnuclei 4\nnucleinate 2\nnucleus 6\nnudged 3\nnudging 2\nnueces 2\nnuisance 8\nnuisances 2\nnull 11\nnullification 35\nnullified 2\nnullifiers 2\nnullifies 1\nnullify 3\nnullifying 2\nnumb 3\nnumbed 1\nnumber 301\nnumbered 8\nnumbering 3\nnumbers 65\nnumbness 7\nnumerical 5\nnumerically 2\nnumerous 50\nnumskull 1\nnun 3\nnunnery 3\nnuns 2\nnur 1\nnurse 70\nnursed 7\nnursemaids 1\nnursery 22\nnurses 9\nnursing 13\nnurtured 1\nnut 10\nnutrient 4\nnutriment 2\nnutrition 16\nnuts 6\nnutshell 1\nny 1\nnymphe 1\no 257\noak 30\noaks 3\noakshott 7\noar 1\noars 1\noasis 1\noatfield 2\noath 26\noaths 5\noats 15\nobdurate 4\nobedience 14\nobedient 5\nobediently 4\nober 1\noberlin 2\nobese 1\nobey 29\nobeyed 9\nobeying 7\nobeys 2\nobject 103\nobjected 13\nobjection 7\nobjectionable 5\nobjections 19\nobjective 4\nobjectives 1\nobjectors 1\nobjects 18\nobligation 17\nobligations 37\nobligatory 2\noblige 8\nobliged 32\nobliges 1\nobliging 2\nobligingly 1\noblique 4\nobliquely 2\nobliquity 1\nobliterans 2\nobliterate 4\nobliterated 17\nobliterates 3\nobliterating 4\nobliteration 14\nobliterative 1\noblivion 5\noblivious 5\nobnoxious 7\nobolenski 6\nobregon 1\nobs 1\nobscure 13\nobscured 6\nobscurely 1\nobscures 1\nobscurities 1\nobscurity 7\nobsequious 1\nobsequiously 2\nobservance 4\nobservant 5\nobservantly 2\nobservation 39\nobservations 13\nobserve 37\nobserved 131\nobserver 13\nobservers 6\nobserves 3\nobserving 21\nobsessed 1\nobsolete 4\nobstacle 12\nobstacles 6\nobstinacy 7\nobstinate 13\nobstinately 5\nobstruct 4\nobstructed 10\nobstructing 3\nobstruction 13\nobtain 42\nobtainable 6\nobtained 75\nobtaining 18\nobtains 3\nobtrude 1\nobtruded 1\nobturator 2\nobtuseness 1\nobviate 2\nobviates 1\nobvious 68\nobviously 38\noccasion 51\noccasional 24\noccasionally 89\noccasioned 7\noccasions 16\noccident 1\noccipital 5\nocciput 2\nocclude 3\noccluded 9\noccludes 8\noccluding 6\nocclusion 9\nocclusive 1\noccupancy 1\noccupant 5\noccupants 1\noccupation 52\noccupational 1\noccupations 26\noccupied 116\noccupiers 1\noccupies 3\noccupy 24\noccupying 12\noccur 203\noccuring 1\noccurred 121\noccurrence 67\noccurrences 7\noccurring 25\noccurs 153\nocean 14\noceanic 1\nochakov 1\noct 1\noctavo 1\noctober 51\noctogenarians 1\nocular 2\noculi 1\noculomotor 1\nodd 9\noddly 1\nodds 1\node 1\noder 3\nodessa 3\nodious 5\nodium 2\nodontoma 12\nodontomas 3\nodor 6\nodour 20\nodyntsova 1\noe 2\noedema 72\noedematous 26\noesophagus 5\noestreicher 1\noeuvre 2\noeuvres 3\nof 40025\noff 634\noffahd 1\noffence 4\noffences 2\noffend 6\noffended 36\noffender 3\noffenders 10\noffending 3\noffense 17\noffenser 1\noffenses 2\noffensive 29\noffensively 2\noffer 57\noffered 87\noffering 24\nofferings 2\noffers 14\noffhand 3\noffice 131\nofficer 463\nofficers 316\noffices 37\nofficial 91\nofficially 9\nofficials 33\nofficiating 1\nofficier 1\nofficious 1\noffset 11\noffshoots 2\noffspring 8\noft 2\noften 443\noftener 6\noftenest 6\nogden 1\nogg 21\noglethorpe 2\noh 410\nohio 92\noho 1\noil 39\noiled 1\noils 1\noily 4\nointment 18\nointments 3\nojibways 1\nok 1\noka 2\nokay 2\noklahoma 15\nold 1180\noldenburg 12\nolder 45\noldest 6\nole 1\noleate 3\nolecranon 8\nolga 2\nolin 1\nolive 7\noliver 2\nolmutz 22\nolney 1\nom 1\nomaha 1\nomelet 1\nomen 4\nomens 1\nomental 3\nomentum 3\nominous 10\nominously 1\nomission 4\nomit 6\nomitted 9\nomitting 5\nomne 1\nomnipotence 1\nomnipresent 1\nomniscience 1\non 6643\nonce 569\noncoming 1\none 3371\nonerous 3\nones 77\noneself 17\nong 1\nonion 2\nonions 1\nonline 15\nonlooker 1\nonlookers 5\nonly 1873\nonrush 1\nonset 37\nonslaught 1\nont 1\nonterkoff 1\nonto 71\nonufrich 1\nonward 2\nonwards 6\nonya 1\nonychia 10\noo 9\nooh 11\noooh 1\nooze 4\noozes 1\noozing 11\nop 8\nopacities 2\nopal 1\nopaque 2\nopecacano 1\nopen 325\nopened 217\nopening 146\nopenings 11\nopenly 24\nopenness 1\nopens 7\nopenshaw 16\nopenwork 1\nopera 11\noperable 1\noperate 20\noperated 8\noperatic 1\noperating 33\noperation 214\noperational 1\noperations 78\noperative 53\noperator 5\noperators 1\nophthalmia 5\nophthalmic 5\nophthalmoscope 1\nophthalmoscopic 1\nopiates 2\nopinion 218\nopinions 39\nopisthotonos 2\nopium 23\nopponens 1\nopponent 23\nopponents 30\nopportune 4\nopportunities 18\nopportunity 66\noppose 14\nopposed 54\nopposing 20\nopposite 80\nopposition 96\noppress 4\noppressed 18\noppression 11\noppressive 8\noppressively 1\noppressors 2\nopsonic 2\nopsonin 1\nopsonins 3\nopt 1\noptic 1\noptical 1\noptimism 2\noptimistic 1\noption 2\noptional 1\nopulence 3\nor 5352\noracle 1\noral 2\norange 23\noranges 1\noration 3\norations 6\norator 10\norators 9\noratory 3\norb 3\norbit 20\norbital 5\norchard 1\norchards 1\norchestra 12\nord 3\nordain 2\nordained 3\nordains 1\nordeal 2\norder 404\nordered 148\norderers 2\nordering 7\norderlies 14\norderly 48\norders 223\nordinance 14\nordinances 2\nordinarily 6\nordinary 102\nordinated 1\nordnance 3\nordre 5\nordynka 1\nore 3\noregon 37\noreille 1\norel 12\nores 2\norg 26\norgan 16\norganic 13\norganically 1\norganisation 7\norganisational 1\norganise 1\norganised 10\norganiser 1\norganism 39\norganismal 1\norganisms 125\norganization 42\norganizational 1\norganizations 14\norganize 7\norganized 69\norganizer 2\norganizing 9\norgans 58\norgies 3\norient 7\noriental 13\norientalis 2\norientals 1\norientation 1\norifice 9\norifices 2\norigin 78\noriginal 93\noriginality 6\noriginally 12\noriginate 25\noriginated 10\noriginates 23\noriginating 10\noriginator 5\norigins 6\noris 7\norlando 2\norleans 31\norlov 16\norlovs 1\normstein 2\nornament 4\nornamental 3\nornaments 3\norphan 4\norphanage 2\norphans 3\norsha 5\northodox 9\northopaedic 1\northotonos 2\noryzoidea 2\nos 3\noscar 1\noscillated 1\noscillates 1\noscillating 1\noscillation 1\nossea 3\nosseous 20\nossible 2\nossificans 4\nossification 36\nossifications 2\nossified 6\nossify 1\nossifying 38\nossis 2\nossium 4\nostend 3\nostensible 1\nostensibly 1\nostentatiously 1\nosteo 17\nosteoblasts 6\nosteochondritis 2\nosteoclasts 1\nosteogenesis 2\nosteogenetic 1\nosteoid 2\nosteoma 20\nosteomalacia 10\nosteomas 3\nosteomyelitis 79\nosteophytes 4\nosteoporosis 3\nosteopsathyrosis 3\nosteosarcoma 1\nosteosclerosis 1\nosteotomies 3\nosteotomy 1\nostermann 8\nostitis 12\nostlers 2\nostralitz 1\nostrich 3\nostrogorski 1\nostrolenka 1\nostrovna 3\nother 1502\nothers 410\notherwise 71\notis 9\notkupshchik 2\notorrhoea 1\notradnoe 33\notto 1\nottoman 3\nou 3\noublie 1\noudinot 1\nought 115\nouh 2\noui 1\nounce 13\nounces 7\nour 1066\nours 35\nourselves 78\nousting 1\nout 1987\noutbreak 14\noutbreaks 2\noutbuildings 1\noutburst 14\noutbursts 3\noutcast 1\noutcome 35\noutcries 1\noutcry 2\noutdated 3\noutdistanced 1\noutdo 1\noutdoing 1\noutdone 4\noutdoor 3\nouter 29\noutfit 4\noutfits 1\noutflank 7\noutflanked 1\noutflanking 2\noutflankings 1\noutflow 2\noutgallop 1\noutgrowth 3\noutgrowths 4\nouthouse 1\nouthouses 1\nouting 1\noutlaw 1\noutlawed 4\noutlaws 2\noutlays 3\noutlet 12\noutlets 1\noutline 26\noutlined 6\noutlines 5\noutlining 1\noutlive 2\noutlived 2\noutlook 10\noutlooks 2\noutlying 10\noutnumbered 2\noutpost 4\noutposts 16\noutput 13\noutrage 2\noutraged 1\noutrageous 2\noutrages 4\noutraging 1\noutran 1\noutre 2\noutright 12\noutrivaled 1\noutset 13\noutside 110\noutsider 2\noutsiders 1\noutsides 1\noutskirts 7\noutspoken 5\noutspread 4\noutstanding 15\noutstretched 10\noutstripped 3\noutstripping 2\noutstrips 1\noutturned 2\noutvying 1\noutward 9\noutwardly 2\noutwards 3\noutweigh 2\noutweighs 1\noval 11\novale 1\novarian 3\novary 10\novations 1\noven 7\novens 1\nover 1282\noverall 4\noveralls 2\noverbalance 1\noverbalancing 1\noverbear 1\noverbearing 1\noverboard 2\noverboots 1\noverborne 4\noverburdened 1\novercame 7\novercast 1\noverclean 2\novercoat 26\novercoats 7\novercome 32\novercoming 5\novercrowded 1\novercrowding 2\noverdid 1\noverdue 1\noverestimated 3\noverfat 1\noverfed 1\noverflow 2\noverflowed 5\noverflowing 9\novergrown 8\novergrowth 25\novergrowths 3\noverhanging 2\noverhauled 5\noverhauling 1\noverhead 6\noverhear 4\noverheard 8\noverhearing 1\noverhung 1\noverjoyed 1\noverlaid 1\noverland 9\noverlap 3\noverlapping 4\noverlay 1\noverlie 1\noverloaded 1\noverlook 3\noverlooked 13\noverlooking 2\noverlying 51\novernight 2\noverpayment 1\noverpowered 3\noverpowering 4\noverran 1\noverresist 2\noverriding 1\noverrule 1\noverruled 1\noverrun 2\noversea 1\noverseas 6\noverseen 1\noverseer 6\noverseers 2\novershadow 2\novershadowed 3\novershadowing 1\novershoes 1\noversight 1\noverstepped 1\noverstocked 1\noverstrained 2\noverstretched 1\noverstretching 2\noverstrung 1\novert 4\novertake 12\novertaken 8\novertakes 1\novertaking 7\noverthrow 20\noverthrowing 2\noverthrown 9\novertook 16\novertopped 2\noverture 2\novertures 1\noverturn 1\noverturned 3\noverturning 1\noverview 1\noverwhelm 5\noverwhelmed 9\noverwhelming 4\noverwhelmingly 1\noverwork 1\novo 1\novoid 2\novum 1\nowe 20\nowed 14\nowen 1\nowes 1\nowing 47\nowl 2\nown 785\nowned 17\nowner 32\nowners 44\nownership 29\nowning 7\nowns 7\nox 2\noxaluria 2\noxaluric 1\noxen 5\noxford 11\noxfordshire 1\noxidation 2\noxide 2\noxidising 1\noxygen 17\noxygenated 3\noxygenation 2\noz 1\nozaena 1\nozheg 3\nozoena 2\nozone 1\np 66\npa 15\npace 40\npaced 36\npaces 38\npachy 1\npachydermatocele 1\npachymeningitis 1\npacific 79\npacification 3\npacifier 1\npacify 2\npacifying 2\npacing 26\npack 31\npackage 3\npackages 1\npacked 40\npacker 1\npacket 11\npackets 1\npackhorse 1\npacking 34\npacks 7\npad 20\npadded 3\npaddington 7\npaddle 3\npadlocked 1\npadlocks 1\npadre 1\npads 7\npagan 1\npage 59\npageboy 1\npagenstecher 1\npages 18\npaget 17\npago 2\npagodas 1\npagodes 1\npahlen 1\npaid 106\npail 2\npails 1\npain 303\npaine 20\npained 7\npainful 84\npainfully 26\npainless 16\npainlessly 4\npains 42\npainstaking 5\npainstakingly 3\npaint 10\npainted 33\npainter 3\npainters 1\npainting 6\npaintings 2\npair 40\npairs 8\npakhra 4\npal 4\npalace 33\npalaces 3\npalatal 2\npalate 16\npale 165\npaleness 1\npaler 7\npalestine 1\npalings 2\npall 2\npallet 1\npalliated 1\npalliation 1\npalliative 4\npallid 3\npallida 5\npallidum 3\npallor 11\npalm 34\npalmar 10\npalmaris 3\npalmer 3\npalms 6\npalpable 10\npalpably 2\npalpated 4\npalpating 3\npalpation 8\npalpebral 1\npalpitating 3\npals 1\npalsies 1\npalsy 5\npalter 1\npaltry 2\npampered 1\npamphlet 5\npamphleteer 1\npamphleteers 1\npamphlets 14\npan 4\npanama 24\npancake 3\npancras 1\npancreas 2\npane 2\npanel 6\npanelled 1\npanelling 1\npanes 3\npang 3\npangs 1\npanic 20\npanics 3\npanins 1\npanoply 1\npanorama 4\npans 1\npanted 3\npanting 13\npantry 5\npapa 50\npapal 1\npaper 177\npapers 114\npaperweight 2\npaperwork 5\npapier 1\npapillae 6\npapillary 4\npapilloma 12\npapillomas 2\npapillomatous 1\npapular 6\npapule 4\npapules 9\npaquelin 3\npar 5\npara 1\nparables 1\nparade 20\nparaded 1\nparades 3\nparading 2\nparadise 2\nparadol 1\nparadoxical 1\nparaffin 21\nparagraph 34\nparagraphs 10\nparaissent 1\nparait 1\nparaldehyde 2\nparallel 17\nparallelogram 1\nparallels 1\nparalysed 19\nparalyses 4\nparalysis 75\nparalytic 4\nparalyze 4\nparalyzed 6\nparalyzing 4\nparamandibular 1\nparameter 1\nparamore 2\nparamount 2\nparapet 5\nparaphrase 1\nparaplegia 5\nparasite 3\nparasites 4\nparasitic 7\nparce 1\nparcel 5\nparceled 1\nparceling 1\nparcels 4\nparched 6\nparchment 7\nparchments 1\npardon 21\npardoned 1\npardonner 1\npardons 3\npared 2\nparent 19\nparental 3\nparents 43\nparesis 2\npari 1\nparietal 4\nparietes 2\nparing 7\nparis 80\nparish 8\nparisian 3\nparisienne 1\nparity 3\npark 15\nparker 6\nparking 1\nparkman 4\nparlance 1\nparley 1\nparleys 2\nparliament 65\nparliamentary 9\nparliaments 2\nparlor 2\nparlour 1\nparma 1\nparodying 1\nparole 3\nparoling 1\nparonychia 1\nparotid 9\nparotitis 2\nparoxysm 4\nparoxysmal 2\nparoxysms 5\nparquet 4\nparqueted 1\nparr 2\nparrot 5\nparry 1\nparson 1\nparsonage 1\nparsons 1\npart 704\npartake 3\npartakes 2\nparted 22\npartial 23\npartiality 3\npartially 10\nparticipant 4\nparticipants 1\nparticipate 4\nparticipated 3\nparticipates 1\nparticipating 1\nparticipation 14\nparticle 5\nparticles 10\nparticular 92\nparticularly 174\nparticulars 11\npartie 1\nparties 99\nparting 8\npartisan 11\npartisans 4\npartisanship 4\npartite 1\npartition 7\npartitions 2\npartly 56\npartner 34\npartners 7\npartnership 4\npartnerships 3\nparts 296\nparturition 2\nparty 298\npas 23\npashette 1\npass 154\npassage 110\npassages 18\npasse 1\npassed 367\npassenger 8\npassengers 12\npassers 3\npasses 22\npassing 134\npassion 35\npassionate 32\npassionately 23\npassions 29\npassive 32\npassively 2\npassport 4\npassports 4\npassu 1\npassword 4\npast 223\npaste 11\npasteur 5\npastilles 1\npastime 5\npastor 2\npastoral 1\npasturage 1\npasture 4\npastured 1\npastures 2\npasty 1\npat 3\npatch 14\npatches 48\npatchwork 1\npate 1\npatella 12\npatellae 1\npatellar 3\npatent 7\npatentee 1\npaternal 7\npaternity 1\npaterson 4\npatersons 1\npath 100\npathetic 18\npathetically 1\npathfinder 1\npathfinders 1\npathogenic 17\npathognomic 1\npathognomonic 1\npathological 36\npathologist 2\npathologists 1\npathology 8\npathos 1\npaths 9\npathway 2\npatience 26\npatient 383\npatiently 5\npatients 59\npatriarch 2\npatrick 10\npatriot 18\npatriotic 22\npatriotically 2\npatriotism 19\npatriotisme 2\npatriots 15\npatrol 8\npatrolled 2\npatrolling 1\npatrols 2\npatron 4\npatronage 9\npatroness 2\npatronizing 4\npatrons 2\npatroons 1\npatte 1\npatted 14\npatter 1\npattered 2\npattern 7\npatterns 1\npatties 1\npatting 7\npatty 1\npaul 16\npaula 1\npaulucci 14\npauncefote 1\npaunch 1\npauper 2\npaupers 1\npause 40\npaused 79\npauses 2\npausing 9\npauvre 6\npaved 3\npavement 17\npavilion 3\npavlograd 20\npavlograds 9\npavlovich 4\npavlovna 152\npaw 2\npawed 1\npawing 2\npawn 2\npawnbroker 6\npawns 1\npaws 1\npawtucket 1\npaxson 11\npay 128\npayable 5\npaying 38\npaymaster 2\npayment 39\npayments 13\npayne 4\npays 5\npe 2\npea 14\npeace 227\npeaceable 1\npeaceably 3\npeaceful 30\npeacefully 8\npeacetime 2\npeaches 1\npeak 4\npeaked 4\npeaks 3\npeal 2\npeals 2\npeanuts 1\npear 3\npearl 4\npearls 9\npearly 2\npeas 3\npeasant 78\npeasantry 1\npeasants 127\npebble 1\npebbles 1\npeche 1\npeck 2\npecked 1\npectoral 10\npectoralis 3\npectorals 1\npectoris 2\npeculation 2\npeculiar 84\npeculiarities 12\npeculiarity 9\npeculiarly 14\npecuniary 3\npedal 1\npedantic 2\npedantically 1\npeddler 1\npeddlers 1\npedestal 3\npedestrian 2\npedestrians 2\npedicle 5\npediculosis 1\npedunculated 13\npeeled 1\npeeling 2\npeep 2\npeeped 7\npeeping 3\npeer 4\npeerage 1\npeered 5\npeeress 1\npeering 12\npeers 2\npeevishly 1\npeg 4\npeggy 1\npegs 5\npeking 3\npelageya 16\npelisses 1\npellet 2\npellets 8\npellicle 2\npelt 1\npelvic 6\npelvis 30\npemberton 1\npen 25\npenal 1\npenalized 3\npenalizing 1\npenalties 10\npenalty 3\npenance 1\npence 4\npencil 10\npencils 2\npending 7\npendulous 4\npendulum 1\npenetrans 1\npenetrate 11\npenetrated 10\npenetrating 18\npenetration 2\npeninsula 1\npenis 16\npenitence 1\npenitent 2\npenitentiary 1\npenn 14\npenned 3\npennies 6\npenniless 1\npenns 1\npennsylvania 95\npenny 7\npens 5\npension 3\npensioner 1\npensioners 1\npensions 9\npensive 6\npensively 5\npent 1\npenthouse 2\npenthouses 1\npentonville 1\npenza 6\npeons 2\npeople 899\npeopled 4\npeoples 45\npepper 2\npeppered 2\npequots 2\nper 86\nperambulator 1\nperceive 14\nperceived 6\nperceives 1\nperceiving 1\npercent 1\npercentage 5\nperceptible 14\nperceptibly 5\nperception 13\nperceptions 1\nperch 4\npercha 1\nperchance 1\nperched 5\nperchloride 2\npercolating 1\npercussed 1\npercussing 1\npercussion 4\npercy 2\nperdere 1\nperdicaris 2\npere 4\nperemptorily 3\nperemptory 2\nperfect 39\nperfecting 4\nperfection 14\nperfectly 45\nperfidiousness 1\nperforate 5\nperforated 12\nperforates 7\nperforating 16\nperforation 8\nperforations 6\nperform 27\nperformance 16\nperformances 4\nperformed 56\nperformer 3\nperforming 15\nperfume 5\nperfumed 5\nperhaps 208\nperi 33\npericardium 2\nperichondritis 2\nperichondrium 2\npericranium 1\nperiglandular 1\nperil 7\nperilous 4\nperilously 1\nperils 7\nperimuscular 1\nperineum 5\nperineuritis 2\nperineurium 2\nperiod 203\nperiodic 6\nperiodical 1\nperiodically 4\nperiodicals 1\nperiodicity 1\nperiods 35\nperiosteal 39\nperiosteally 2\nperiosteum 76\nperiostitis 7\nperipheral 40\nperiphery 9\nperiphlebitis 2\nperish 21\nperished 22\nperishes 3\nperishing 9\nperistalsis 1\nperitendinous 1\nperitoneal 15\nperitoneum 10\nperitonitis 6\nperivascular 2\nperkhushkovo 2\npermanent 64\npermanently 20\npermanganate 1\npermeate 2\npermeated 9\npermeates 1\npermeation 7\npermissible 3\npermission 52\npermit 31\npermits 5\npermitted 22\npermitting 6\npermutations 1\npernetti 2\npernicious 4\npernio 2\nperoneal 9\nperonei 5\nperoneus 2\nperonskaya 14\nperoxide 10\nperpendicular 1\nperpetrated 4\nperpetrators 2\nperpetual 17\nperpetually 1\nperpetuate 2\nperpetuating 1\nperplex 2\nperplexed 12\nperplexing 10\nperplexity 29\nperry 5\npersecution 6\nperseverance 5\npersevered 6\npersevering 4\nperseveringly 1\npershing 6\npersia 2\npersian 10\npersist 20\npersisted 5\npersistence 15\npersistent 40\npersistently 7\npersisting 2\npersists 11\nperson 185\npersonage 16\npersonages 14\npersonal 91\npersonalities 3\npersonality 16\npersonally 37\npersonate 1\npersonen 1\npersonification 3\npersonified 1\npersonnel 2\npersons 119\nperspective 3\nperspiration 13\nperspire 1\nperspired 4\nperspiring 15\npersuade 14\npersuaded 14\npersuading 2\npersuasion 3\npersuasions 2\npersuasiveness 2\npertaining 2\npertinaciously 1\npertinently 2\nperturb 1\nperturbation 1\nperturbed 9\nperu 4\nperusal 1\npervade 1\npervaded 3\npervades 1\nperverse 1\nperversion 1\npervious 1\npes 2\npest 1\npestered 2\npestering 1\npestewing 1\npesthouse 1\npestilence 1\npet 17\npetal 1\npetenka 1\npeter 52\npetered 1\npeterhof 1\npeterkin 1\npeters 1\npetersbourg 1\npetersburg 247\npetersfield 1\npeterson 11\npetisenfans 1\npetit 4\npetite 1\npetition 33\npetitioned 4\npetitioner 2\npetitioners 3\npetitioning 4\npetitions 15\npetrarch 1\npetrified 2\npetrifying 2\npetrol 2\npetroleum 1\npetropol 1\npetrous 1\npetrov 2\npetrovich 3\npetrovna 3\npetrusha 2\npetrushka 1\npets 1\npetted 4\npetticoat 3\npetticoats 2\npettifogging 1\npettiness 2\npetting 1\npetty 17\npetulance 1\npetulantly 2\npetya 268\npeu 2\npeuples 2\npeur 2\npew 7\npfeiler 1\npfuel 47\npg 6\npgdp 4\npglaf 16\nphaeton 3\nphagedaena 5\nphagedaenic 4\nphagocytes 13\nphagocytic 2\nphagocytosis 6\nphalangeal 8\nphalanges 11\nphalanx 21\nphantasm 1\nphantom 1\nphantoms 1\npharmacopoeial 1\npharyngeal 8\npharyngitis 1\npharynx 16\nphase 21\nphases 9\npheasant 1\nphenomena 37\nphenomenon 13\nphil 1\nphiladelphia 65\nphilanthropic 1\nphilanthropist 1\nphilanthropy 7\nphilip 8\nphilippe 2\nphilippine 14\nphilippines 29\nphillips 7\nphilology 1\nphilosopher 7\nphilosophers 5\nphilosophic 5\nphilosophical 4\nphilosophically 1\nphilosophies 1\nphilosophize 1\nphilosophizing 2\nphilosophy 18\nphimosis 5\nphlebitic 1\nphlebitis 19\nphlebolith 1\nphleboliths 1\nphlegmasia 2\nphlegmon 2\nphlegmonous 1\nphlyctenular 1\nphoebe 1\nphoenix 2\nphone 2\nphosphates 1\nphosphorus 1\nphotius 2\nphoto 1\nphotograph 41\nphotographer 1\nphotographic 1\nphotographs 6\nphotography 4\nphotophobia 1\nphrase 34\nphrased 5\nphrases 14\nphrenic 4\nphthisis 3\nphysical 59\nphysically 22\nphysician 6\nphysics 5\nphysiognomy 2\nphysiological 15\nphysiology 6\npiano 4\npick 20\npicked 39\npickens 1\npicket 12\npickets 3\npicking 15\npickled 2\npicnic 1\npicric 6\npicture 28\npictured 16\npictures 22\npicturesque 7\npicturesquely 1\npicturesqueness 1\npicturing 7\npie 5\npiebald 1\npiece 61\npiecemeal 1\npieces 28\npiedmont 1\npiedmontese 1\npier 3\npierce 13\npierced 9\npiercing 14\npiercingly 6\npierre 1964\npiers 2\npies 1\npiety 3\npig 9\npigeon 4\npigeonholes 1\npigeons 1\npigment 16\npigmentation 14\npigmented 19\npigments 1\npigmy 1\npigs 2\npigtail 1\npike 6\npikestaff 1\npile 9\npiled 8\npiles 6\npilgrim 9\npilgrimage 3\npilgrimages 1\npilgrims 20\npiling 2\npill 1\npillage 8\npillaged 3\npillaging 4\npillar 4\npillars 6\npillow 28\npillows 14\npills 6\npilot 3\npiloted 2\npilots 1\npimple 1\npimples 1\npin 18\npince 2\npinch 11\npinched 4\npinchot 1\npinckney 3\npinckneys 1\npine 9\npineapple 1\npineapples 2\npining 2\npink 27\npinkish 4\npinnacle 1\npinnacles 1\npinned 1\npinning 2\npins 5\npint 6\npints 4\npioneer 13\npioneering 3\npioneers 33\npious 1\npipe 56\npipes 16\npiping 2\npips 12\npiquant 1\npiquet 1\npiracies 1\npirate 3\npirates 4\npirie 1\npistil 1\npistol 51\npistols 9\npiston 2\npit 15\npitch 16\npitched 11\npitcher 1\npitchfork 1\npitching 1\npiteous 14\npiteously 7\npithy 1\npiti 18\npitiable 7\npitied 14\npities 1\npitiful 15\npitiless 4\npits 4\npitt 15\npittance 1\npitted 6\npitting 4\npittsburgh 10\npituitary 3\npity 75\npitying 2\npizarro 1\nplacarded 1\nplacated 2\nplace 673\nplaced 182\nplacement 1\nplacenta 1\nplacental 1\nplaces 89\nplacid 2\nplacing 28\nplague 5\nplagued 2\nplaid 1\nplain 108\nplainer 4\nplainly 39\nplainness 7\nplains 13\nplaintiff 1\nplaintive 5\nplaintively 1\nplait 7\nplaited 5\nplaiting 2\nplaits 3\nplan 159\nplane 5\nplaned 1\nplanes 4\nplanet 3\nplanets 5\nplank 4\nplanked 1\nplanking 1\nplanks 12\nplanned 15\nplanner 1\nplanning 15\nplannings 1\nplans 85\nplant 12\nplantagenet 1\nplantar 3\nplantaris 3\nplantation 18\nplantations 27\nplanted 16\nplanter 18\nplanters 59\nplanting 61\nplants 10\nplashed 1\nplasma 6\nplaster 19\nplastered 2\nplasterers 2\nplastic 4\nplastun 1\nplat 1\nplate 19\nplateau 3\nplateful 1\nplatelets 1\nplates 15\nplatform 52\nplatforms 10\nplating 1\nplatino 2\nplatitudes 1\nplato 1\nplatoche 3\nplaton 26\nplatonic 1\nplatoon 4\nplatoons 1\nplatosha 1\nplatov 12\nplatovs 1\nplatt 9\nplattsburgh 1\nplaudits 1\nplausible 6\nplay 95\nplayed 60\nplayer 8\nplayers 6\nplayfellow 1\nplayful 6\nplayfully 3\nplayfulness 2\nplaying 59\nplaymate 2\nplays 17\nplea 20\nplead 2\npleaded 6\npleading 5\npleadingly 1\npleads 1\npleas 7\npleasant 96\npleasanter 4\npleasantest 1\npleasantly 15\nplease 172\npleased 95\npleases 7\npleasing 9\npleasurable 1\npleasure 139\npleasures 13\npledge 10\npledged 8\npledges 2\nplenary 1\nplentiful 7\nplenty 23\nplethoric 1\npleura 11\npleural 2\npleurisy 2\npleurodynia 3\npleurosthotonos 2\npleurs 1\nplexiform 4\nplexus 20\nplexuses 2\npliable 2\npliant 1\nplied 3\nplight 12\nplighted 2\nplodding 1\nplood 1\nplot 12\nplots 5\nplotted 2\nplottings 1\nplough 1\nploughed 1\nplover 1\nplow 9\nplowed 6\nplowing 1\nplowland 1\nplowmen 2\nplows 5\npluck 3\nplucked 6\nplucking 2\nplug 2\nplugged 1\nplugging 1\nplugs 1\npluie 1\nplum 1\nplumage 2\nplumb 1\nplumber 5\nplumbers 1\nplume 4\nplumed 2\nplumes 12\nplump 32\nplumped 3\nplumper 1\nplums 4\nplunder 10\nplundered 6\nplunderers 3\nplundering 4\nplunge 4\nplunged 15\nplunging 5\nplunies 1\nplural 3\nplurality 1\nplus 5\nplush 3\nplutarch 4\nplutocracy 1\nply 1\nplying 1\nplymouth 9\npm 1\npmb 1\npneumo 4\npneumococcal 7\npneumococci 2\npneumococcus 6\npneumonia 14\npo 3\npobox 4\npocahontas 1\npock 1\npocket 51\npocketbook 2\npocketbooks 1\npockets 19\npockmarked 7\npodgy 3\npodnovinsk 1\npodnovinski 1\npodolian 1\npodolsk 3\npoem 6\npoems 3\npoet 4\npoetic 19\npoetical 1\npoetry 10\npoets 3\npoignant 1\npoint 223\npointed 90\npointedly 2\npointer 1\npointing 88\npoints 83\npoison 19\npoisoned 5\npoisoner 1\npoisoning 27\npoisonings 1\npoisonous 4\npoisons 6\npoker 3\npokers 1\npoking 2\npoklonny 6\npokrovka 2\npokrovsk 3\npoky 1\npoland 26\npolar 1\npole 22\npolemic 1\npoleon 1\npoles 11\npolice 94\npoliceman 18\npolicies 68\npolicy 116\npoliomyelitis 5\npolish 46\npolished 10\npolite 19\npolitely 12\npoliteness 17\npolitic 3\npolitical 260\npolitically 2\npolitician 9\npoliticians 17\npolitics 116\npolk 14\npoll 3\npollard 2\npolled 9\npollen 3\npollicis 6\npolling 1\npolls 10\npollution 1\npolly 1\npolonaise 5\npoltava 2\npoly 3\npolygamy 6\npolyglot 1\npolymer 1\npolymorph 2\npolymorpho 5\npolynuclear 3\npolypi 2\npolypoidal 1\npolypus 3\npolytechnic 1\npolyvalent 3\npomade 1\npomaded 6\npomerania 2\npomp 5\npomposity 1\npompous 2\npon 3\nponcet 1\npond 20\nponder 1\npondered 16\npondering 2\nponderous 3\npondicherry 5\nponds 6\nponiatowski 6\nponies 1\npont 2\npontiac 1\npontoon 1\npony 4\npooh 3\npool 26\npooling 1\npools 5\npoor 129\npoorer 7\npoorest 3\npoorhouse 1\npoorly 5\npop 3\npope 11\npopes 2\npopliteal 30\npopped 3\npopping 2\npoppy 1\npoppyseed 1\npopulace 5\npopular 133\npopularity 9\npopularization 1\npopularly 11\npopulated 1\npopulation 100\npopulations 7\npopulism 4\npopulist 8\npopulistic 1\npopulists 12\npopulous 8\nporch 90\nporches 1\npores 1\nporfirio 1\nporing 1\npork 3\nporous 10\nporridge 10\nport 19\nportable 3\nportages 3\nportal 2\nportend 1\nportent 1\nportentous 1\nporter 25\nporters 3\nportfolio 11\nportion 122\nportionless 1\nportions 56\nportly 6\nportmanteau 3\nportmanteaus 4\nporto 25\nportrait 33\nportraits 3\nportray 1\nports 43\nportsdown 1\nportsmouth 1\nportugal 5\nportuguese 1\npose 21\nposed 1\nposen 1\nposes 1\nposition 432\npositions 25\npositive 44\npositively 13\nposnyakov 1\npossess 19\npossessed 35\npossesses 9\npossessing 5\npossession 55\npossessions 15\npossessor 9\npossibilite 1\npossibilities 7\npossibility 89\npossible 339\npossibly 34\npost 117\npostage 1\npostal 4\npostcard 1\nposted 21\nposter 1\nposterior 31\nposterity 13\nposters 2\nposthouses 1\npostilion 3\npostilions 1\nposting 1\npostmark 4\npostmarks 1\npostmaster 10\npostpone 6\npostponed 4\npostponement 1\nposts 22\npostulant 1\npostulated 1\npostulates 1\npostulating 1\npostural 1\nposture 6\npostures 2\npot 8\npotash 7\npotassium 14\npotato 11\npotatoes 13\npotch 1\npotemkin 3\npotemkins 2\npotent 7\npotentates 1\npotential 2\npotentially 1\npotier 1\npotman 1\npotocka 1\npotomac 3\npots 3\npotsdam 4\npott 1\npotters 2\npottery 1\npouch 6\npouched 3\npouches 11\npouching 4\npoughkeepsie 1\npoultice 6\npoultices 5\npoultry 2\npounce 1\npounced 3\npound 7\npounds 26\npoupart 5\npour 20\npoured 33\npouring 9\npouting 2\npovarskaya 5\npovarskoy 6\npoverty 26\npowdah 1\npowder 44\npowdered 16\npowdering 1\npowders 5\npowdery 1\npowell 1\npower 548\npowerful 73\npowerfully 4\npowerless 14\npowerlessness 1\npowers 149\npowhatan 1\npox 1\npp 308\npracticable 5\npractical 62\npractically 32\npractice 95\npracticed 5\npractices 8\npracticing 2\npractise 2\npractised 9\npractitioner 2\nprague 1\nprairie 6\nprairies 6\npraise 16\npraised 13\npraises 3\npraiseworthy 2\npraising 3\npranced 3\nprancing 1\nprank 5\npranks 1\npraskovya 1\nprater 2\nprattle 1\npratzen 17\npray 79\nprayed 26\nprayer 42\nprayerful 1\nprayers 15\npraying 7\npre 15\npreach 7\npreached 10\npreacher 3\npreachers 2\npreaching 4\npreamble 3\nprearranged 5\npreble 2\nprecarious 3\nprecaution 9\nprecautionary 1\nprecautions 14\nprecede 7\npreceded 19\nprecedent 7\nprecedents 3\nprecedes 5\npreceding 18\npreceptor 1\nprecepts 2\nprechistenka 1\nprecious 38\nprecipice 1\nprecipitance 1\nprecipitate 2\nprecipitated 11\nprecipitating 2\nprecise 13\nprecisely 24\nprecision 14\npreclude 2\nprecluding 1\nprecursor 4\npredator 1\npredecessor 5\npredecessors 2\npredestination 1\npredestined 9\npredetermined 3\npredicament 1\npredict 2\npredictable 1\npredicted 3\nprediction 4\npredictions 4\npredilection 3\npredispose 2\npredisposed 2\npredisposes 6\npredisposing 2\npredisposition 3\npredominance 7\npredominant 2\npredominantly 1\npredominate 10\npredominated 2\npredominates 3\npreening 1\npreface 3\nprefect 2\nprefer 21\npreferable 3\npreferably 9\npreference 10\npreferments 1\npreferred 36\npreferring 2\nprefers 2\nprefix 2\npreformed 1\npregnancies 3\npregnancy 8\npregnant 12\nprehistoric 2\npreis 1\nprejudice 6\nprejudiced 1\nprejudices 7\npreliminaries 3\npreliminary 17\nprelude 4\npremature 4\npremeditation 1\npremier 2\npremiers 3\npremise 1\npremises 12\npremium 2\npremonition 1\nprendergast 2\npreobrazhensk 11\npreobrazhenskis 2\npreoccupation 5\npreoccupations 1\npreoccupied 23\npreopinant 1\npreparation 33\npreparations 44\npreparatory 5\nprepare 46\nprepared 138\nprepares 1\npreparing 50\nprepatellar 11\npreponderance 1\npreposterous 4\nprepuce 24\nprerogative 5\nprerogatives 4\npresage 1\npresaging 1\npresbyterians 4\nprescribe 6\nprescribed 23\nprescribes 1\nprescribing 3\nprescription 2\nprescriptions 2\npresence 217\npresent 329\npresentable 1\npresentation 7\npresentations 1\npresented 119\npresentiment 8\npresenting 16\npresently 13\npresentment 1\npresents 63\npreservation 11\npreserve 35\npreserved 17\npreserver 1\npreserves 3\npreserving 2\npreside 3\npresided 3\npresidency 21\npresident 371\npresidential 33\npresidents 15\npresiding 2\npresidt 1\npresnya 1\npress 81\npressed 122\npresses 8\npressing 66\npressure 235\nprestige 9\npreston 1\npresumably 8\npresume 13\npresuming 1\npresumption 5\npresumptive 1\npresumptuous 2\npresupposable 1\npretence 3\npretend 8\npretended 18\npretending 15\npretends 2\npretense 7\npretension 1\npretensions 8\npretentiously 1\npreternaturally 1\npretext 27\npretexts 3\nprettier 7\nprettiest 3\nprettily 2\npretty 85\npreur 1\npreussisch 4\nprevail 9\nprevailed 16\nprevailing 4\nprevails 3\nprevalence 1\nprevalent 5\nprevent 134\nprevented 44\npreventing 31\nprevention 16\npreventive 5\nprevents 15\nprevious 67\npreviously 55\nprey 14\npreyed 1\npreying 5\nprice 45\npriceless 3\nprices 45\nprick 5\npricked 3\npricking 4\npride 41\nprided 1\npriding 2\npried 1\npriest 32\npriesthood 1\npriests 14\nprim 2\nprima 1\nprimacy 2\nprimaries 3\nprimarily 9\nprimary 152\nprime 11\nprimeval 1\nprimiparae 1\nprimitive 7\nprimogeniture 2\nprimordial 1\nprince 1935\nprincely 4\nprinces 11\nprincess 919\nprincesse 2\nprincesses 19\nprinceton 4\nprincipal 32\nprincipally 12\nprincipals 2\nprincipe 1\nprincipes 1\nprinciple 56\nprinciples 82\npringle 2\nprint 50\nprinted 27\nprinter 3\nprinters 7\nprinting 15\nprints 2\nprior 9\npriority 2\nprishprish 1\nprison 22\nprisoner 60\nprisoners 122\nprisons 6\npritchard 1\nprivacy 3\nprivat 1\nprivate 93\nprivateers 7\nprivately 5\nprivates 3\nprivation 5\nprivations 3\nprivatisation 1\nprivatization 1\nprivilege 14\nprivileged 4\nprivileges 30\nprize 10\nprized 4\nprizes 4\nprizing 1\npro 7\nprobability 12\nprobable 27\nprobably 147\nprobation 1\nprobe 15\nprobed 2\nprobing 3\nproblem 76\nproblematical 1\nproblems 78\nprocedure 25\nprocedures 6\nproceed 18\nproceeded 17\nproceeding 12\nproceedings 18\nproceeds 8\nprocess 219\nprocesses 35\nprocessing 6\nprocession 9\nprocessions 2\nprocessor 1\nprocessors 2\nprochain 2\nproclaim 2\nproclaimed 17\nproclaiming 6\nproclamation 45\nproclamations 4\nprocrastinator 1\nprocure 6\nprocured 8\nprocuring 1\nprodded 2\nprodigal 1\nprodigiosus 1\nprodigious 1\nprodigiously 1\nprodigy 1\nproduce 120\nproduced 132\nproducer 1\nproducers 6\nproduces 23\nproducing 41\nproduct 18\nproduction 45\nproductions 2\nproductive 2\nproductivity 2\nproducts 28\nprof 3\nprofane 1\nprofess 3\nprofesse 1\nprofessed 6\nprofessedly 1\nprofessing 2\nprofession 22\nprofessional 28\nprofessionally 1\nprofessions 8\nprofessor 9\nprofessors 2\nproficient 1\nprofile 6\nprofit 24\nprofitability 1\nprofitable 7\nprofited 4\nprofiteer 1\nprofiting 2\nprofits 29\nprofligacy 1\nprofligate 3\nprofound 49\nprofoundest 2\nprofoundly 17\nprofunda 3\nprofundity 4\nprofundus 1\nprofuse 20\nprofusely 4\nprofusion 3\nprogenitors 1\nprogeny 1\nprognosis 34\nprogram 43\nprogramme 3\nprogramming 1\nprograms 2\nprogress 103\nprogressed 2\nprogresses 8\nprogressing 4\nprogression 5\nprogressive 53\nprogressively 1\nprogressives 5\nprogressivism 1\nprohibit 3\nprohibited 17\nprohibiting 4\nprohibition 18\nprohibitionists 1\nprohibitions 1\nprohibitive 3\nproject 288\nprojected 10\nprojectiles 8\nprojecting 21\nprojection 9\nprojections 3\nprojects 26\nprokhor 1\nprokofy 2\nproletarian 1\nproliferate 5\nproliferated 3\nproliferates 3\nproliferating 3\nproliferation 12\nproliferative 4\nprolific 1\nprolong 6\nprolongation 1\nprolongations 3\nprolonged 61\npromenade 1\npromenades 1\npromener 1\nprominence 10\nprominences 3\nprominent 76\nprominently 5\npromise 67\npromised 80\npromises 15\npromising 8\npromissory 2\npromo 2\npromote 19\npromoted 22\npromoter 3\npromoters 7\npromotes 1\npromoting 12\npromotion 19\npromotions 2\nprompt 14\nprompted 9\nprompter 1\nprompting 1\npromptings 1\npromptitude 1\npromptly 23\npronated 4\npronation 2\npronator 4\nprone 12\npronged 1\npronounce 9\npronounced 21\npronouncing 6\npronunciation 1\nproof 30\nproofread 7\nproofreading 4\nproofs 14\nproosia 1\nprop 2\npropaganda 6\npropagandists 1\npropagated 2\npropagation 1\nproper 48\nproperly 21\nproperties 7\nproperty 137\nprophecy 11\nprophesied 4\nprophesy 1\nprophet 3\nprophetic 1\nprophets 2\nprophylactic 2\nprophylaxis 8\npropitious 1\nproportion 72\nproportional 1\nproportionate 3\nproportionately 2\nproportioned 1\nproportions 11\npropos 3\nproposal 39\nproposals 15\npropose 25\nproposed 92\nproposes 3\nproposing 9\nproposition 16\npropositions 1\npropound 1\npropounded 1\npropounding 1\npropped 5\nproprietary 24\nproprieties 4\nproprietor 18\nproprietors 16\npropriety 9\nproptosis 1\nprosaic 1\nproscription 1\nproscriptions 1\nprose 5\nprosecute 5\nprosecuted 4\nprosecution 11\nprosecutions 3\nprospect 19\nprospecting 1\nprospective 4\nprospectors 4\nprospects 3\nprosper 4\nprosperity 25\nprosperous 17\nprostate 8\nprostatectomy 1\nprostatitis 1\nprostrate 8\nprostrated 2\nprostration 2\nprotargol 1\nprotect 41\nprotected 21\nprotecting 13\nprotection 63\nprotectionist 1\nprotectionists 1\nprotective 53\nprotector 2\nprotectorate 7\nprotectorates 1\nprotectors 1\nprotectress 1\nprotects 5\nprotege 4\nprotegee 3\nproteids 2\nprotein 4\nproteins 3\nproteolytic 1\nprotest 19\nprotestant 5\nprotestants 6\nprotestation 1\nprotested 25\nprotesting 8\nprotests 37\nproto 1\nprotocol 4\nprotopathic 10\nprotoplasm 10\nprotracted 1\nprotrude 3\nprotruded 5\nprotrudes 1\nprotruding 7\nprotrusion 4\nproud 44\nproudly 9\nprove 82\nproved 80\nprovender 1\nproverb 5\nproverbe 1\nproverbs 2\nproves 20\nprovide 47\nprovided 88\nprovidence 22\nprovider 1\nprovides 4\nproviding 33\nprovince 48\nprovinces 42\nprovincial 35\nprovincialism 3\nprovincials 7\nproving 15\nprovision 46\nprovisional 2\nprovisioned 1\nprovisioning 2\nprovisions 52\nproviso 6\nprovisons 1\nprovocation 2\nprovocative 2\nprovocatively 2\nprovoke 3\nprovoked 7\nprovokes 1\nprovoking 1\nprovost 1\nprowess 3\nprowl 1\nprowling 2\nproximal 17\nproximally 1\nproximity 15\nprozorovski 2\nprudence 4\nprudent 2\nprudently 1\nprusse 6\nprussia 39\nprussian 17\nprussians 5\npryanichnikov 2\nprying 2\nprzazdziecka 1\nprzebyszewski 4\npsalm 1\npsalms 2\npsammoma 2\npseud 1\npseudo 11\npshaw 2\npsoas 11\npsoriasis 2\npsychiatric 1\npsychic 1\npsychological 4\npsychologist 1\npsychology 2\nptolemaic 2\npua 1\npub 6\npuberty 6\npubes 2\npubis 1\npublic 288\npublican 11\npublication 8\npublications 2\npublicist 1\npublicists 1\npublicity 5\npublicly 5\npublish 4\npublished 18\npublisher 4\npublishers 4\npublishing 4\npucker 1\npuckered 20\npuckering 10\npudding 5\npuddles 3\npuerperal 3\npuerperium 1\npuff 11\npuffed 5\npuffing 12\npuffs 5\npuffy 6\npugachev 2\npuget 1\npuhse 1\npulaski 3\npulex 1\npull 23\npulled 57\npulley 6\npulleys 2\npulling 29\npullman 7\npulls 1\npulmonary 9\npulp 4\npulpit 3\npulpits 1\npulsate 3\npulsates 1\npulsatile 5\npulsating 15\npulsation 38\npulse 49\npulsed 1\npulses 4\npultaceous 2\npultusk 6\npump 5\npumped 1\npumps 1\npunch 9\npunched 4\npunctate 2\npunctilious 2\npunctually 1\npunctuation 6\npuncture 18\npunctured 25\npunctures 8\npuncturing 1\npungent 4\npunish 26\npunished 21\npunishes 3\npunishing 4\npunishment 21\npunishments 3\npunitive 7\npunt 1\npuny 2\npupil 18\npupils 16\npuppet 3\npuppy 1\npurchase 50\npurchased 15\npurchaser 4\npurchasers 5\npurchases 9\npurchasing 4\npure 54\npurely 20\npurer 2\npurest 4\npurgation 1\npurge 2\npurged 2\npurges 2\npurification 17\npurified 13\npurify 7\npurifying 6\npuris 2\npuritan 10\npuritanism 3\npuritans 20\npurity 18\npurloined 2\npurple 29\npurplish 3\npurport 4\npurpose 121\npurposely 12\npurposes 50\npurpura 2\npurpurea 1\npurpuric 1\npurse 28\npurses 3\npursing 3\npursuance 2\npursuant 1\npursue 13\npursued 33\npursuers 2\npursues 1\npursuing 10\npursuit 23\npursuits 7\npurulent 35\npurves 2\npurveyor 1\npus 155\npush 19\npushed 81\npushes 2\npushing 39\npushkin 1\npustular 2\npustule 15\npustules 11\nput 435\nputnam 1\nputrefaction 5\nputrefactive 6\nputrefying 1\nputrid 4\nputs 3\nputtee 1\nputting 73\nputty 2\npuzzle 5\npuzzled 14\npuzzling 2\npwh 1\npwiests 1\npwince 3\npwoceed 1\npwomoted 1\npwonounce 1\npwovince 1\npwovisions 1\npyaemia 27\npyaemic 8\npyelitis 1\npylorus 1\npyocyanase 1\npyocyaneus 4\npyogenes 5\npyogenic 112\npyosalpynx 1\npyramid 1\npyramids 2\npyrexia 6\nq 5\nqu 8\nquadratus 1\nquadriceps 6\nquadrilateral 1\nquahtehmasteh 1\nquaint 3\nquaker 2\nquakers 6\nqualification 11\nqualifications 22\nqualified 6\nqualify 2\nqualifying 1\nqualities 24\nquality 19\nqualms 1\nquand 5\nquanti 1\nquantitative 1\nquantities 15\nquantity 40\nquantum 1\nquarante 2\nquarrel 32\nquarreled 10\nquarreling 2\nquarrelling 2\nquarrels 10\nquarry 3\nquart 2\nquarte 1\nquarter 46\nquartered 12\nquartering 8\nquarterly 1\nquartermaster 17\nquartermasters 3\nquarters 72\nquartette 1\nquartier 2\nquasi 2\nquatre 2\nquavering 1\nquay 2\nque 16\nquebec 10\nqueen 20\nqueenless 3\nqueens 1\nqueer 15\nqueerly 1\nquell 2\nquelle 1\nquelled 1\nquench 3\nquenched 1\nqueried 1\nquerulous 4\nquerulousness 1\nquery 3\nquest 15\nquestion 348\nquestionable 3\nquestionably 1\nquestioned 23\nquestioning 27\nquestioningly 4\nquestionings 1\nquestionnaire 1\nquestions 181\nquests 1\nqueue 1\nqui 8\nquick 81\nquickened 2\nquickening 3\nquickens 1\nquicker 19\nquickest 1\nquickly 182\nquickness 6\nquid 1\nquiescent 7\nquiet 118\nquieted 1\nquieter 5\nquietest 2\nquietly 79\nquill 5\nquilt 16\nquilts 1\nquincey 1\nquincy 12\nquinine 5\nquinsy 2\nquire 1\nquires 1\nquit 14\nquite 502\nquitrent 5\nquitrents 1\nquits 1\nquitted 7\nquitting 1\nquiver 6\nquivered 16\nquivering 18\nquixotic 1\nquizzical 2\nquizzing 1\nquod 1\nquoique 2\nquoits 1\nquorum 5\nquos 1\nquota 2\nquotas 5\nquotation 2\nquotations 1\nquote 4\nquoted 3\nquotes 1\nquoth 1\nquoting 3\nr 53\nra 1\nrabbi 1\nrabbit 8\nrabbits 1\nrabble 7\nrabid 4\nrabies 5\nrace 42\nraced 1\nracemosum 3\nraces 9\nrachel 1\nrachitis 3\nracial 2\nracing 5\nracism 1\nrack 6\nracked 1\nracking 1\nraconteur 1\nradial 22\nradialis 4\nradiance 4\nradiant 24\nradiantly 4\nradiate 1\nradiated 5\nradiates 1\nradiating 5\nradiation 1\nradiations 1\nradical 29\nradicalism 2\nradically 1\nradicals 11\nradio 2\nradiogram 29\nradiograms 3\nradium 51\nradius 11\nradzivilov 1\nraevski 21\nraevskis 1\nraft 9\nrafters 1\nrafts 1\nrag 6\nrage 22\nraged 4\nrages 1\nragged 14\nraging 6\nrags 9\nrah 1\nraid 7\nraided 2\nraider 1\nrail 11\nrailed 2\nrailing 3\nrailings 4\nraillery 1\nrailroad 16\nrailroads 9\nrails 7\nrailway 73\nrailways 110\nraiment 1\nrain 39\nrainbow 1\nraindrops 1\nrainfall 1\nraining 3\nrains 2\nrainy 5\nraise 52\nraised 212\nraisers 3\nraises 2\nraising 77\nraisins 5\nraison 1\nraisuli 2\nrake 4\nrakes 3\nraleigh 2\nrallied 6\nrally 4\nrallying 2\nralph 2\nram 7\nramballe 19\nrambling 1\nramblings 1\nrameau 3\nramify 3\nrampart 5\nramrod 4\nramrods 1\nrams 3\nramshackle 1\nran 322\nranch 7\nranchers 2\nranches 4\nranching 1\nranchman 1\nranchmen 1\nrancor 1\nrandolph 5\nrandolphs 1\nrandom 8\nrang 29\nrange 39\nranged 7\nranger 3\nrangers 5\nranges 15\nranging 6\nrank 45\nranker 2\nranks 98\nransack 1\nransacked 2\nransom 1\nranula 2\nranvier 1\nrapacious 1\nrape 2\nrapid 96\nrapidity 47\nrapidly 197\nrapier 5\nrapiers 1\nrapp 10\nrapped 1\nrapt 3\nrapture 14\nraptures 2\nrapturous 21\nrapturously 10\nrare 83\nrarefaction 5\nrarefied 6\nrarefying 4\nrarely 86\nrarer 6\nrarity 3\nras 1\nrascal 7\nrascality 2\nrascally 2\nrascals 7\nrasgulyay 1\nrash 7\nrashers 1\nrashes 1\nrashness 1\nrat 13\nrate 67\nrates 48\nrath 1\nrather 219\nraths 1\nratification 39\nratified 26\nratifies 1\nratify 7\nratifying 4\nrating 2\nratio 11\nratiocination 1\nration 3\nrational 8\nrationally 1\nrations 4\nrats 2\nrattle 17\nrattled 13\nrattling 6\nraum 1\nravage 1\nravaged 2\nravages 1\nraved 1\nraveled 1\nraven 1\nravenous 1\nravens 1\nravine 9\nravines 1\nraving 1\nravish 1\nraw 58\nray 40\nraymond 1\nraynaud 6\nrays 87\nrazed 1\nrazor 3\nrazumovski 1\nrazumovskis 5\nrd 10\nre 189\nreabsorbed 3\nreach 85\nreached 220\nreaches 35\nreaching 58\nreact 5\nreacted 4\nreacting 2\nreaction 96\nreactionary 10\nreactions 6\nreactive 7\nreactor 1\nreacts 1\nread 219\nreadable 13\nreader 13\nreaders 11\nreadily 96\nreadiness 20\nreading 114\nreadjusted 3\nreadjusting 1\nreadjustment 1\nreadmit 1\nreadmitted 1\nreads 9\nready 230\nreaffirmed 1\nreal 102\nrealise 8\nrealised 3\nrealising 3\nrealism 2\nrealistic 2\nrealities 1\nreality 30\nrealization 1\nrealize 37\nrealized 50\nrealizes 1\nrealizing 15\nreally 272\nrealm 22\nrealms 2\nreams 1\nreannexation 2\nreap 2\nreaped 3\nreaper 2\nreaping 4\nreappear 2\nreappearance 3\nreappeared 9\nrear 30\nreared 9\nrearguard 10\nrearing 1\nrearrange 2\nrearranged 2\nrearrangement 1\nrearranging 3\nreason 191\nreasonable 29\nreasonableness 4\nreasonably 9\nreasoned 5\nreasoner 6\nreasoning 41\nreasons 64\nreassembled 1\nreasserted 1\nreassigned 1\nreasson 2\nreassure 10\nreassured 6\nreassuring 2\nreaumur 1\nreawaken 1\nreawakened 1\nreawakening 1\nreawoke 1\nrebates 2\nrebecca 1\nrebel 2\nrebellion 29\nrebellious 1\nrebels 9\nrebirth 1\nreborn 1\nrebound 1\nrebuffs 2\nrebuild 5\nrebuilding 3\nrebuilt 1\nrebuke 5\nrebukes 1\nrebuking 1\nrec 1\nrecalcitrant 3\nrecall 37\nrecalled 52\nrecalling 21\nrecalls 2\nrecanted 1\nrecaptured 2\nrecast 1\nrecede 1\nreceded 6\nreceding 2\nreceipt 13\nreceipts 4\nreceive 95\nreceived 280\nreceiver 4\nreceives 16\nreceiving 54\nrecent 54\nrecently 30\nreception 58\nreceptions 8\nreceptive 2\nreceptor 1\nrecess 6\nrecesses 8\nrecession 2\nrecipe 1\nrecipient 1\nrecipients 1\nreciprocal 2\nreciprocated 1\nreciprocity 3\nrecital 1\nrecitation 1\nrecitations 1\nrecite 4\nrecited 2\nreciting 3\nreckless 11\nrecklessly 2\nrecklessness 1\nrecklinghausen 5\nreckon 8\nreckoned 26\nreckoning 11\nreckons 1\nreclaim 1\nreclaimed 1\nreclamation 11\nreclining 1\nrecognisable 4\nrecognise 17\nrecognised 63\nrecognises 1\nrecognising 6\nrecognition 33\nrecognitions 1\nrecognizable 2\nrecognize 54\nrecognized 83\nrecognizes 6\nrecognizing 35\nrecoil 5\nrecoiled 1\nrecoils 1\nrecollect 4\nrecollected 2\nrecollection 23\nrecollections 8\nrecommence 1\nrecommenced 4\nrecommend 9\nrecommendation 9\nrecommendations 2\nrecommended 31\nrecommending 1\nrecommends 10\nrecompense 7\nreconcile 6\nreconciled 7\nreconciliation 8\nreconciling 1\nreconnaissance 1\nreconnaissante 1\nreconnoiter 1\nreconnoitered 2\nreconnoitering 1\nreconsider 3\nreconsideration 1\nreconsidered 4\nreconstructed 1\nreconstruction 42\nreconstructive 1\nrecord 41\nrecorded 26\nrecorder 1\nrecording 1\nrecords 25\nrecounted 5\nrecounting 3\nrecounts 1\nrecourse 23\nrecover 30\nrecovered 32\nrecovering 12\nrecovers 5\nrecovery 51\nrecreation 5\nrecreational 1\nrecreations 1\nrecross 2\nrecrudescence 3\nrecruit 5\nrecruited 1\nrecruiting 5\nrecruitment 2\nrecruits 12\nrectal 7\nrectangular 1\nrectified 2\nrectify 4\nrectitude 2\nrecto 1\nrector 1\nrectum 22\nrectus 1\nrecumbent 2\nrecuperate 1\nrecuperative 2\nrecur 18\nrecurred 9\nrecurrence 17\nrecurrences 1\nrecurrent 20\nrecurring 3\nrecurs 8\nrecurvatum 1\nrecurved 1\nrecycle 1\nred 288\nreddaway 2\nreddened 4\nreddening 4\nredder 4\nreddish 15\nredeem 4\nredeemable 1\nredeemed 5\nredeeming 1\nredemption 5\nredemptioner 1\nredemptioners 1\nrediscovered 1\nredistribute 3\nredistributing 7\nredistribution 5\nredness 20\nredolent 1\nredouble 2\nredoubled 5\nredoubt 33\nredoubts 2\nredounded 3\nredoute 3\nredress 8\nredressing 1\nredstone 1\nreduce 21\nreduced 41\nreduces 3\nreducing 9\nreduction 21\nreductions 5\nredundancy 1\nredundant 5\nreed 4\nreeds 4\nreef 1\nreek 1\nreeked 1\nreelection 5\nreeled 1\nreeling 1\nreenacted 2\nreestablish 3\nreestablished 3\nreestablishes 1\nreexamined 1\nrefer 9\nreferable 6\nreferee 1\nreference 44\nreferences 33\nreferendum 17\nreferendums 1\nreferral 1\nreferred 67\nreferring 19\nrefers 7\nrefill 2\nrefilling 1\nrefills 1\nrefine 1\nrefined 13\nrefinement 3\nrefinements 5\nrefineries 1\nrefining 1\nrefitting 1\nrefixing 1\nreflect 17\nreflected 40\nreflecting 8\nreflection 23\nreflections 18\nreflex 8\nreflexes 2\nreflexly 2\nreflux 1\nrefolded 1\nreform 59\nreformation 5\nreformed 2\nreformer 2\nreformers 23\nreforming 2\nreforms 13\nrefractory 4\nrefrain 20\nrefrained 12\nrefraining 3\nrefresh 1\nrefreshed 7\nrefreshing 3\nrefreshingly 1\nrefreshment 4\nrefreshments 2\nrefrigerans 2\nrefrigeration 2\nrefrigerator 1\nrefuge 13\nrefugee 1\nrefugees 2\nrefund 30\nrefusal 30\nrefuse 42\nrefused 72\nrefuses 4\nrefusing 18\nrefutation 1\nrefutations 1\nrefute 1\nrefuted 1\nrefutes 1\nrefuting 4\nregain 14\nregained 7\nregains 2\nregal 1\nregard 87\nregarded 110\nregarding 25\nregardless 19\nregards 16\nregatta 1\nregency 2\nregenerate 3\nregenerated 6\nregenerating 2\nregeneration 38\nregent 2\nregicide 3\nregime 10\nregiment 230\nregimental 48\nregiments 36\nregion 117\nregional 7\nregions 38\nregister 7\nregistered 10\nregistering 2\nregisters 1\nregistrar 2\nregistration 7\nregistry 1\nregret 24\nregretful 2\nregretfully 3\nregrets 4\nregrettable 2\nregretted 18\nregretting 5\nregular 76\nregularity 5\nregularizing 1\nregularly 9\nregulars 11\nregulate 16\nregulated 6\nregulates 1\nregulating 12\nregulation 30\nregulations 19\nregulatory 1\nregurgitation 2\nrehabilitation 2\nreharnessed 1\nrehearsal 1\nrehearsing 1\nreheat 1\nreid 1\nreign 38\nreigned 8\nreigning 3\nreigns 4\nreimbursed 1\nrein 11\nreined 9\nreinforce 2\nreinforced 2\nreinforcement 1\nreinforcements 10\nreining 2\nreins 20\nreinspected 1\nreinstate 1\nreinstated 2\nreinstating 1\nreiterated 3\nreiteration 1\nreject 4\nrejected 35\nrejecting 1\nrejection 7\nrejects 2\nrejoice 10\nrejoiced 9\nrejoices 2\nrejoicing 12\nrejoin 8\nrejoinder 8\nrejoinders 1\nrejoined 13\nrejoining 1\nrejuvenated 1\nrelapse 20\nrelapsed 4\nrelapses 8\nrelapsing 12\nrelate 21\nrelated 45\nrelates 5\nrelating 19\nrelation 139\nrelations 149\nrelationship 9\nrelationships 2\nrelative 25\nrelatively 13\nrelatives 10\nrelax 3\nrelaxation 5\nrelaxed 14\nrelaxes 2\nrelaxing 2\nrelay 4\nrelays 4\nrelease 28\nreleased 16\nreleasing 3\nrelent 1\nrelentless 10\nrelentlessly 2\nrelevance 1\nrelevant 3\nrelevantly 1\nreliability 1\nreliable 20\nreliance 15\nrelic 3\nrelics 8\nrelied 4\nrelief 66\nrelieve 20\nrelieved 25\nrelieves 2\nrelieving 6\nreligion 35\nreligions 2\nreligious 54\nrelinquish 2\nrelinquishing 2\nrelish 4\nrelishing 1\nrelit 3\nrelive 1\nrelived 1\nreload 1\nreloaded 1\nreluctance 9\nreluctant 16\nreluctantly 24\nrely 11\nrelying 3\nremain 141\nremainder 12\nremained 231\nremaining 40\nremains 73\nremanded 1\nremark 51\nremarkable 77\nremarkably 24\nremarked 169\nremarking 6\nremarks 46\nremarriage 2\nremarry 1\nremedied 6\nremedies 18\nremedy 25\nremedying 3\nremember 161\nremembered 120\nremembering 23\nremembers 6\nremembrance 6\nremind 9\nreminded 25\nreminder 6\nreminders 3\nreminding 4\nreminds 2\nreminiscence 2\nreminiscences 9\nremission 1\nremissions 2\nremits 1\nremittent 1\nremitting 1\nremnant 5\nremnants 2\nremonstrance 1\nremonstrances 2\nremonstrated 2\nremorse 14\nremorseless 1\nremorselessly 1\nremortgaged 1\nremote 19\nremoteness 1\nremotest 3\nremount 1\nremounted 1\nremounts 4\nremovable 2\nremoval 108\nremovals 2\nremove 53\nremoved 178\nremoving 43\nremunerative 1\nrenaissance 2\nrenal 6\nrenamed 2\nrender 28\nrendered 34\nrendering 14\nrenders 6\nrendezvous 1\nrending 4\nrenegade 2\nrenew 14\nrenewal 10\nrenewed 32\nrenominated 3\nrenominating 1\nrenomination 2\nrenounce 10\nrenounced 7\nrenouncing 6\nrenovation 1\nrenown 1\nrenowned 2\nrensselaer 1\nrent 19\nrental 1\nrented 2\nrenter 1\nrenters 1\nrentes 1\nrenting 4\nrentrez 1\nrents 8\nreoccupation 2\nreopened 6\nreopening 4\nreorganized 2\nrep 15\nrepacked 1\nrepacking 1\nrepaid 5\nrepair 78\nrepaired 6\nrepairing 2\nrepairs 4\nreparation 2\nreparations 2\nreparative 19\nrepartee 1\nrepassed 1\nrepast 1\nrepay 10\nrepayment 2\nrepeal 24\nrepealed 10\nrepeat 25\nrepeated 210\nrepeatedly 24\nrepeating 47\nrepeats 1\nrepel 6\nrepelled 2\nrepellent 3\nrepelling 2\nrepent 5\nrepentance 3\nrepented 3\nrepenting 1\nrepents 1\nrepertoire 1\nrepetition 10\nreplace 19\nreplaced 55\nreplacement 21\nreplaces 6\nreplacing 5\nreplaited 1\nreplaiting 1\nreplenished 1\nrepletion 1\nreplied 320\nreplies 18\nreply 166\nreplying 28\nrepnin 6\nreport 87\nreported 52\nreportedly 1\nreporter 4\nreporting 11\nreports 54\nrepose 7\nreposed 2\nreprehensible 3\nrepresent 16\nrepresentation 28\nrepresentations 3\nrepresentative 39\nrepresentatives 96\nrepresented 42\nrepresenting 23\nrepresents 8\nrepress 8\nrepressed 5\nrepressing 4\nrepression 1\nreprieves 2\nreprimand 3\nreprimanded 3\nreprimanding 1\nreprinted 3\nreprisal 2\nreproach 37\nreproached 16\nreproaches 8\nreproachful 5\nreproachfully 16\nreproaching 3\nreproche 1\nreproduce 2\nreproduced 9\nreproduces 1\nreproducing 1\nreproduction 3\nreproductive 1\nreproof 1\nreproved 3\nreproving 1\nreprovingly 1\nreptile 1\nrepublic 56\nrepublican 176\nrepublicanism 3\nrepublicans 146\nrepublics 2\nrepudiate 2\nrepudiated 9\nrepudiating 1\nrepudiation 1\nrepugnance 2\nrepugnant 5\nrepulsed 13\nrepulsion 7\nrepulsive 7\nrepulsively 1\nrepurchasing 1\nreputable 1\nreputation 28\nreputations 1\nrepute 3\nreputed 2\nrequest 40\nrequested 4\nrequesting 2\nrequests 4\nrequire 29\nrequired 92\nrequirement 3\nrequirements 21\nrequires 13\nrequiring 11\nrequisite 10\nrequisitions 1\nreread 4\nrescind 2\nrescinded 1\nrescinding 2\nrescript 6\nrescue 14\nrescued 9\nresearch 36\nresearcher 1\nresearches 5\nresect 6\nresected 11\nresecting 8\nresection 12\nresections 3\nresemblance 12\nresemblances 2\nresemble 32\nresembled 8\nresembles 26\nresembling 52\nresent 3\nresented 12\nresentful 1\nresenting 1\nresentment 12\nresentments 1\nreservation 5\nreservationists 1\nreservations 5\nreserve 32\nreserved 15\nreserves 10\nreserving 4\nreservoir 1\nreside 2\nresided 3\nresidence 11\nresidences 1\nresident 7\nresidential 1\nresidents 8\nresiding 3\nresidual 3\nresidue 2\nresidues 2\nresign 3\nresignation 10\nresigned 7\nresignedly 1\nresigning 2\nresin 2\nresist 33\nresistance 47\nresistant 4\nresisted 7\nresisting 7\nresistless 1\nresists 5\nresolute 43\nresolutely 20\nresolution 57\nresolutions 26\nresolve 14\nresolved 34\nresolves 2\nresolving 2\nresonance 3\nresonant 1\nresort 11\nresorted 8\nresorting 1\nresorts 1\nresounded 13\nresounding 4\nresource 11\nresourceful 5\nresources 56\nrespect 77\nrespectability 1\nrespectable 14\nrespected 22\nrespectful 23\nrespectfully 42\nrespecting 15\nrespective 17\nrespectively 10\nrespects 22\nrespiration 23\nrespirations 1\nrespiratory 6\nrespite 4\nrespond 9\nresponded 20\nrespondent 1\nresponding 3\nresponds 1\nresponse 21\nresponses 1\nresponsibilities 6\nresponsibility 41\nresponsible 32\nresponsive 1\nrest 209\nrestarted 1\nrestatement 1\nrestaurant 5\nrested 28\nrestful 1\nrestfully 1\nresting 26\nrestitution 1\nrestive 6\nrestless 32\nrestlessly 3\nrestlessness 10\nrestoration 36\nrestore 28\nrestored 40\nrestoring 10\nrestrain 39\nrestrained 11\nrestraining 9\nrestrains 1\nrestraint 18\nrestraints 9\nrestrict 5\nrestricted 28\nrestricting 3\nrestriction 14\nrestrictions 23\nrestrictive 8\nrests 17\nresult 386\nresultant 10\nresulted 27\nresulting 123\nresults 229\nresume 11\nresumed 21\nresumes 1\nresuming 3\nresumption 10\nresurrection 1\nretail 2\nretailer 1\nretailing 1\nretain 31\nretained 41\nretainers 2\nretaining 9\nretains 6\nretaken 2\nretaliate 3\nretaliated 2\nretaliation 8\nretaliations 1\nretard 1\nretarded 3\nretarding 1\nrete 4\nretell 1\nretelling 1\nretention 10\nreticent 3\nreticular 1\nreticulated 3\nreticule 9\nretina 2\nretinitis 1\nretinue 2\nretinues 1\nretire 29\nretired 43\nretirement 13\nretires 3\nretiring 10\nretort 2\nretorted 6\nretorts 1\nretraced 1\nretracing 2\nretract 6\nretracted 5\nretracting 1\nretraction 9\nretracts 2\nretraite 1\nretreat 94\nretreated 18\nretreating 24\nretreats 3\nretribution 1\nretrieve 1\nretrieved 2\nretrieving 1\nretro 6\nretrogressing 1\nretrogression 2\nretrospection 1\nretuned 1\nreturn 190\nreturned 194\nreturning 68\nreturns 33\nreuben 1\nreunion 7\nreunite 1\nreunited 2\nrev 5\nreveal 15\nrevealed 48\nrevealing 8\nreveals 5\nrevelation 8\nreveled 1\nrevelers 1\nrevellers 1\nrevelry 1\nrevels 2\nrevenge 8\nrevenue 39\nrevenues 9\nreverberate 1\nreverberated 4\nreverberating 1\nreverberation 1\nreverdin 2\nrevered 1\nreverence 4\nreverend 1\nreverent 2\nreverential 1\nreverently 1\nreverie 7\nreveries 1\nreversal 3\nreverse 11\nreversed 4\nreverses 6\nrevert 1\nreverted 2\nreverting 1\nreviendra 3\nreview 47\nreviewed 6\nreviewing 4\nreviews 6\nrevise 2\nrevised 5\nrevising 3\nrevision 18\nrevisions 1\nrevival 7\nrevive 2\nrevived 7\nreviving 2\nrevoir 11\nrevoked 3\nrevolt 26\nrevolted 2\nrevolting 2\nrevolution 202\nrevolutionary 52\nrevolutionists 7\nrevolutions 11\nrevolve 2\nrevolved 1\nrevolver 8\nrevolvers 1\nrevolves 1\nrevolving 1\nrevulsion 1\nreward 34\nrewarded 8\nrewarding 3\nrewards 17\nrewritten 1\nrhabdomyoma 3\nrhapsodies 1\nrhetor 24\nrhetoric 3\nrheumatic 14\nrheumatism 25\nrheumatoid 3\nrhine 12\nrhinebeck 1\nrhinophyma 2\nrhipheus 1\nrhode 33\nrhodes 16\nrhomboids 1\nrhyme 2\nrhymes 1\nrhythm 3\nrhythmic 6\nrhythmical 2\nrhythmically 5\nri 1\nrib 8\nribbed 1\nribbon 19\nribbons 10\nribs 16\nricans 1\nrice 23\nrich 92\nrichard 6\nrichardson 1\nricher 12\nriches 10\nrichest 10\nrichly 3\nrichmond 8\nrichness 2\nrickets 25\nrickety 14\nrico 24\nricord 1\nrid 42\nridden 33\nriddle 2\nride 54\nrider 16\nriderless 1\nriders 8\nrides 6\nridge 5\nridges 2\nridicule 19\nridiculed 5\nridiculing 2\nridiculous 17\nridiculously 1\nriding 71\nrien 1\nrife 2\nrifle 12\nrifled 2\nrifles 2\nrift 3\nrifts 1\nrigged 3\nrigging 2\nright 710\nrighted 3\nrighteous 2\nrighteousness 4\nrightful 3\nrighting 1\nrightless 1\nrightly 7\nrights 168\nrigid 22\nrigidity 13\nrigidly 6\nrigor 14\nrigors 4\nrim 4\nrimes 2\nring 55\nringing 32\nringleader 1\nrings 17\nringworm 1\nrinsed 4\nrinsing 1\nrio 2\nriot 11\nrioted 1\nrioters 1\nrioting 7\nriotous 5\nriots 6\nrip 1\nripe 6\nripened 2\nripley 3\nripon 1\nrippling 1\nrire 1\nrise 240\nrisen 30\nriser 1\nrisers 1\nrises 24\nrising 84\nrisk 75\nrisked 5\nrisking 2\nrisks 14\nrisky 1\nrisus 2\nritchie 1\nrite 4\nritual 2\nrituals 1\nrival 15\nrivaled 3\nrivaling 1\nrivalries 2\nrivalry 6\nrivals 10\nriver 112\nriverbank 1\nriverbanks 1\nrivers 20\nriverside 12\nrives 1\nrivet 2\nriveted 3\nriveters 1\nrivulet 2\nroad 260\nroadless 1\nroads 44\nroadside 3\nroadsides 1\nroadway 2\nroam 2\nroamed 1\nroaming 1\nroan 2\nroans 4\nroar 25\nroared 9\nroaring 3\nroast 8\nroasted 2\nroasting 3\nrob 5\nrobbed 7\nrobber 5\nrobberies 5\nrobbers 1\nrobbery 17\nrobbing 4\nrobe 2\nrobed 1\nrobert 26\nroberts 2\nrobertson 1\nrobes 2\nrobespierre 1\nrobin 1\nrobinson 5\nrobs 1\nrobust 6\nrochester 1\nrock 6\nrocked 3\nrockefeller 5\nrockefellers 1\nrocket 5\nrockies 4\nrocking 3\nrocks 3\nrocky 6\nrod 10\nrode 227\nrodent 25\nrods 5\nroe 1\nroger 6\nrogers 5\nrogozhski 2\nrogue 5\nrogues 2\nroguet 2\nroguish 1\nrohans 1\nroi 9\nrole 42\nroles 2\nroll 26\nrolled 41\nroller 1\nrolling 22\nrolls 1\nroman 8\nromance 12\nromances 1\nromans 3\nromantic 11\nrome 12\nromper 1\nromping 1\nronde 1\nrontgen 13\nroof 33\nroofed 3\nroofless 1\nroofs 18\nrook 8\nroom 960\nroomier 1\nrooms 86\nroosevelt 91\nroot 24\nrooted 5\nroots 12\nrope 15\nropes 10\nrosa 1\nrosary 2\nrose 243\nrosebushes 1\nrosenkampf 1\nroseola 2\nroseoles 2\nroses 4\nrosier 1\nross 14\nrostopchin 124\nrostopchine 2\nrostov 776\nrostova 29\nrostovs 160\nrosy 30\nrot 1\nrotary 1\nrotate 1\nrotated 6\nrotating 2\nrotation 7\nroth 1\nrotted 2\nrotten 8\nrotterdam 1\nrotund 1\nrotundum 1\nrou 2\nrouged 1\nrough 45\nroughened 2\nrougher 2\nroughly 9\nroughness 5\nroughs 3\nround 556\nroundabout 1\nrounded 35\nrounder 1\nrounding 1\nroundly 5\nrounds 4\nrouse 8\nroused 24\nrousing 4\nrousseau 5\nrout 2\nroute 26\nrouted 6\nroutes 14\nroutine 23\nroux 1\nrover 1\nrovers 1\nrow 26\nrowdy 1\nrowe 1\nrowing 2\nrows 28\nroy 1\nroyal 111\nroyale 1\nroyalist 3\nroyalties 8\nroyalty 13\nroyaute 1\nroylott 21\nroylotts 2\nrrrr 1\nrub 3\nrubbed 32\nrubber 29\nrubbers 2\nrubbing 25\nrubbish 15\nrubbishy 1\nrubbles 1\nruble 15\nrubles 71\nrubs 1\nruby 3\nrucastle 38\nrucastles 4\nruddy 7\nrude 15\nrudely 6\nrudeness 5\nrudenesses 1\nruder 1\nrudiments 2\nrudolf 1\nrue 1\nrueful 1\nruefully 3\nruffian 3\nruffians 1\nruffle 3\nruffled 1\nruffling 2\nrug 10\nrugay 8\nrugayushka 2\nrugby 1\nrugged 1\nrugs 3\nruin 48\nruined 48\nruining 3\nruinous 11\nruins 12\nrule 121\nruled 14\nruler 20\nrulers 19\nrules 58\nruling 12\nrulings 2\nrum 17\nrumania 3\nrumble 4\nrumbled 1\nrumbling 2\nruminated 1\nrummaged 5\nrumor 10\nrumored 5\nrumors 23\nrumour 3\nrumours 3\nrumpled 1\nrumyantsev 8\nrumyantsovs 1\nrun 145\nrunaway 7\nrung 4\nrunner 3\nrunners 5\nrunning 140\nruns 27\nrupia 4\nrupture 86\nruptured 18\nruptures 9\nrupturing 2\nrural 11\nrurik 1\nruse 4\nrush 35\nrushed 114\nrushes 5\nrushing 20\nrusse 9\nrussell 7\nrussen 2\nrussia 193\nrussian 461\nrussians 148\nrussie 1\nrusso 6\nrust 2\nrustan 1\nrustchuk 1\nrustic 3\nrustle 17\nrustled 1\nrustling 7\nrustomjee 1\nrusty 4\nrut 2\nruth 1\nrutherford 1\nruthless 6\nruthlessly 1\nrutledge 2\nruts 4\nruza 1\nryazan 22\nryazana 1\nryder 12\nrye 18\nryefield 5\nrykonty 2\ns 5636\nsa 4\nsaar 1\nsabastiani 1\nsabbath 3\nsaber 42\nsabered 1\nsabers 14\nsabine 3\nsable 9\nsabre 9\nsabretache 6\nsabretaches 1\nsac 73\nsaccharatus 1\nsaccular 1\nsacculated 14\nsachiez 1\nsack 8\nsacked 4\nsackful 1\nsacks 4\nsacral 3\nsacrament 9\nsacramento 1\nsacre 2\nsacred 21\nsacredness 2\nsacree 1\nsacrifice 66\nsacrificed 13\nsacrifices 12\nsacrificing 9\nsacrilege 2\nsacrilegious 1\nsacristan 1\nsacro 5\nsacrospinalis 1\nsacrum 9\nsacs 3\nsad 91\nsadden 1\nsaddened 1\nsadder 2\nsaddest 1\nsaddle 41\nsaddlebow 2\nsaddlecloth 2\nsaddled 10\nsaddles 10\nsadly 19\nsadness 16\nsadovaya 1\nsafe 47\nsafeguard 11\nsafeguarded 3\nsafeguarding 2\nsafeguards 4\nsafely 11\nsafer 7\nsafes 1\nsafest 2\nsafety 37\nsaffron 2\nsafi 1\nsagacious 3\nsagacity 2\nsage 4\nsagebrush 1\nsagely 1\nsages 1\nsagittal 2\nsaid 3464\nsail 8\nsailed 7\nsailing 13\nsailings 1\nsailor 6\nsailors 22\nsails 2\nsaint 15\nsainte 2\nsaints 9\nsait 4\nsake 97\nsal 2\nsalad 2\nsalamanca 2\nsalaries 3\nsalary 13\nsale 25\nsalem 1\nsales 10\nsalesman 10\nsalicylate 3\nsalicylates 6\nsalicylic 8\nsalient 5\nsaline 25\nsaliva 8\nsalivary 4\nsalivation 1\nsalkindsohn 1\nsalle 3\nsallies 2\nsallow 25\nsally 3\nsalmon 5\nsalol 1\nsalomoni 1\nsalon 9\nsalons 3\nsaloon 1\nsalt 34\nsaltanov 3\nsalter 1\nsaltpeter 2\nsalts 14\nsaltykov 3\nsalut 1\nsalutary 3\nsalutation 1\nsalute 9\nsaluted 5\nsaluting 1\nsalvarsan 7\nsalvation 13\nsalve 1\nsalver 6\nsalzeneck 2\nsam 6\nsame 1052\nsameness 1\nsamoa 6\nsamoan 7\nsamoset 1\nsamovar 21\nsample 8\nsamples 1\nsampson 3\nsamson 2\nsamuel 26\nsan 20\nsanctified 1\nsanctifying 1\nsanction 9\nsanctioned 4\nsanctioning 1\nsanctity 2\nsanctuary 5\nsand 16\nsandbag 1\nsands 4\nsandstone 1\nsandwich 2\nsandwiched 2\nsandy 3\nsane 1\nsang 34\nsanguinary 3\nsanguine 5\nsanious 3\nsanitary 3\nsanitation 2\nsank 35\nsans 4\nsanta 14\nsantiago 1\nsanto 10\nsap 2\nsaphena 14\nsaphenous 9\nsaphrophytes 1\nsapping 1\nsappy 2\nsapraemia 12\nsaprophytic 1\nsaragossa 1\nsarah 4\nsarasate 1\nsaratoga 5\nsaratov 1\nsarcasm 4\nsarcastic 12\nsarcastically 6\nsarco 1\nsarcoma 139\nsarcomas 8\nsarcomata 1\nsarcomatous 7\nsardinian 2\nsardonic 1\nsardonically 1\nsardonicus 2\nsargent 1\nsartorius 2\nsash 3\nsasha 2\nsashes 1\nsat 403\nsatan 1\nsatchels 1\nsate 1\nsatellite 1\nsatellites 4\nsatin 10\nsatire 5\nsatires 2\nsatirical 1\nsatirist 1\nsatisfaction 67\nsatisfactorily 8\nsatisfactory 42\nsatisfied 60\nsatisfies 1\nsatisfy 15\nsatisfying 6\nsaturated 6\nsaturday 10\nsaturdays 2\nsatyr 1\nsauce 4\nsaucepan 1\nsaucer 5\nsaucy 1\nsauerkraut 1\nsaul 1\nsauntering 1\nsausage 11\nsausages 1\nsaute 3\nsavage 19\nsavagely 6\nsavageness 1\nsavages 4\nsavannah 11\nsavants 1\nsavary 4\nsave 110\nsaved 51\nsavelich 7\nsaves 1\nsaving 32\nsavings 9\nsavior 4\nsaviour 10\nsavishna 3\nsavor 1\nsavored 1\nsavoring 1\nsavory 4\nsavostyanov 1\nsaw 599\nsawdust 1\nsawies 1\nsawing 1\nsawmills 2\nsawn 2\nsaws 1\nsaxe 7\nsaxon 6\nsaxons 2\nsaxony 2\nsay 755\nsaying 270\nsayings 7\nsays 146\nsca 1\nscab 11\nscabbard 1\nscabbards 1\nscabs 3\nscaevola 1\nscaffold 2\nscaffolding 6\nscala 1\nscalawags 1\nscald 1\nscalds 6\nscale 45\nscalenus 1\nscalers 1\nscales 6\nscalp 25\nscalping 1\nscaly 4\nscamp 1\nscampered 1\nscan 1\nscandal 19\nscandalous 2\nscandals 5\nscandinavia 3\nscandinavian 1\nscandinavians 5\nscanned 8\nscanning 9\nscant 4\nscantily 1\nscanty 10\nscapegrace 2\nscapegraces 1\nscapula 22\nscapular 3\nscar 89\nscarce 6\nscarcely 65\nscarcity 4\nscare 3\nscared 19\nscarf 12\nscarify 1\nscarlatinal 4\nscarlet 22\nscarpa 3\nscarred 3\nscarring 3\nscars 35\nscarves 3\nscathing 2\nscatter 6\nscattered 53\nscattering 4\nscatters 1\nscenario 1\nscene 49\nscenery 5\nscenes 12\nscent 17\nscented 6\nscenting 2\nscepter 3\nsceptic 1\nsceptre 1\nschafer 6\nschaudinn 1\nschedule 5\nschedules 1\nschelling 2\nscheme 25\nschemer 1\nschemes 12\nscheming 1\nscherbinin 3\nscherer 7\nschimmelbusch 1\nschism 1\nschlappanitz 4\nschley 2\nschlosser 2\nschmidt 8\nschnapps 1\nschneider 2\nscholar 3\nscholars 2\nscholarship 2\nschon 17\nschonbrunn 4\nschool 33\nschoolbook 1\nschoolboy 8\nschooled 2\nschoolhouses 3\nschoolmaster 5\nschoolroom 3\nschools 28\nschooner 2\nschoss 16\nschubert 2\nschurz 3\nschuyler 2\nschuylkill 1\nschwa 1\nschwachen 1\nschwann 1\nschwartzenberg 1\nschwarzenberg 1\nsciatic 20\nsciatica 8\nscience 60\nsciences 15\nscientific 12\nscientist 2\nscientists 1\nscintillating 3\nscirrhous 3\nscissors 19\nsclavo 4\nsclerosed 8\nsclerosis 32\nsclerotic 2\nscold 3\nscolded 1\nscolding 3\nscoliosis 6\nscoliotica 2\nscoop 2\nscope 7\nscopolamin 1\nscorbutic 3\nscorbutics 1\nscorched 4\nscorching 4\nscore 17\nscored 4\nscores 3\nscoring 1\nscorn 6\nscorned 2\nscornful 3\nscornfully 3\nscorning 1\nscot 2\nscotch 34\nscotfree 1\nscotia 1\nscotland 16\nscots 1\nscott 24\nscottish 3\nscoundrel 25\nscoundrels 9\nscoundwel 1\nscoundwels 1\nscour 1\nscoured 1\nscourge 2\nscout 2\nscouted 1\nscouting 3\nscouts 9\nscow 1\nscowl 1\nscowled 2\nscowling 6\nscows 1\nscraggy 2\nscramble 2\nscrambled 2\nscrap 6\nscrape 6\nscraped 21\nscraping 16\nscraps 2\nscratch 13\nscratched 5\nscratches 1\nscratching 8\nscrawl 1\nscrawled 5\nscream 14\nscreamed 37\nscreaming 8\nscreams 13\nscreen 14\nscreened 5\nscreening 5\nscreens 4\nscrew 11\nscrewed 15\nscrewing 10\nscrews 1\nscribble 1\nscribbled 2\nscribes 1\nscript 1\nscripture 2\nscriptures 7\nscrofulous 1\nscrotal 1\nscrotum 19\nscrub 1\nscrubbed 1\nscruff 2\nscrunching 1\nscruple 3\nscruples 4\nscrupulous 2\nscrupulously 1\nscrutinize 2\nscrutinized 4\nscrutinizing 5\nscrutinizingly 1\nscrutiny 9\nscudding 1\nscuffle 4\nsculler 2\nscullery 1\nscullions 1\nsculptor 1\nsculpture 2\nscummed 1\nscurf 1\nscurry 1\nscurrying 1\nscurvy 13\nscut 2\nscuttle 1\nscythe 1\nscythia 1\nscythian 2\nsd 1\nse 3\nsea 82\nseaboard 30\nseacoast 4\nseager 1\nseal 15\nsealed 15\nsealing 8\nseals 3\nseaman 3\nseamanship 2\nseamed 1\nseamen 9\nseams 2\nseaport 1\nseaports 2\nsearch 59\nsearched 13\nsearches 3\nsearching 31\nsearchingly 3\nseared 2\nsears 1\nseas 37\nseashore 1\nseaside 1\nseason 17\nseasonable 1\nseasonal 2\nseasoned 3\nseasons 3\nseat 170\nseated 51\nseating 4\nseats 21\nseattle 1\nsebaceous 28\nsecede 2\nseceded 4\nseceding 2\nsecession 26\nsecessionist 1\nsecluded 5\nseclusion 4\nsecond 280\nsecondarily 3\nsecondary 148\nsecondly 20\nseconds 28\nsecourable 1\nsecrecy 18\nsecret 81\nsecretariat 1\nsecretaries 4\nsecretary 52\nsecrete 1\nsecreted 2\nsecretest 1\nsecreting 11\nsecretion 12\nsecretions 5\nsecretive 2\nsecretly 10\nsecretory 3\nsecrets 16\nsect 8\nsectarianism 1\nsection 117\nsectional 15\nsectionalism 3\nsections 54\nsector 2\nsects 3\nsecular 5\nsecure 74\nsecured 48\nsecurely 6\nsecurer 2\nsecuring 32\nsecurities 4\nsecurity 21\nsedan 1\nsedate 2\nsedately 2\nsedateness 1\nsedatives 1\nsedentary 1\nsedgwick 1\nsediment 1\nsedition 17\nseditious 1\nsedmoretzki 1\nseduced 1\nseducer 2\nseductive 1\nseduisante 1\nsedulously 2\nsedyablyaka 1\nsee 1101\nseed 15\nseedless 1\nseeds 7\nseedy 2\nseeing 207\nseek 38\nseeker 4\nseekers 9\nseeking 36\nseeks 5\nseem 116\nseemed 695\nseeming 8\nseemingly 8\nseemliness 1\nseems 134\nseen 444\nseers 2\nsees 26\nseethed 1\nseething 3\nsegment 19\nsegments 6\nseigneur 2\nsein 1\nseine 1\nseize 31\nseized 114\nseizes 4\nseizing 32\nseizure 15\nseizures 1\nseldom 76\nselect 25\nselected 49\nselecting 9\nselection 12\nselections 2\nselective 2\nselenium 3\nself 218\nselfish 9\nselfishness 3\nseligman 2\nselivanov 1\nsell 30\nselle 1\nseller 5\nsellers 1\nselling 16\nselvedges 1\nsemantic 1\nsemblance 2\nsemen 1\nsemenov 8\nsemenova 2\nsemenovna 5\nsemenovsk 16\nsemi 18\nsemicircle 5\nsemicircles 2\nsemicircular 1\nsemicouncil 1\nsemidark 1\nsemidarkness 2\nsemifluid 1\nsemiliterate 1\nsemilunar 8\nseminal 1\nseminar 1\nseminarists 1\nseminary 2\nseminude 1\nsemiopen 1\nsemple 1\nsenate 114\nsenator 45\nsenatorial 1\nsenators 45\nsend 99\nsenders 1\nsending 38\nsends 8\nseneca 3\nsenegal 1\nsenile 18\nsenility 2\nsenior 19\nseniority 7\nseniors 1\nsenor 1\nsens 1\nsensation 73\nsensational 3\nsensationalism 2\nsensations 9\nsense 103\nsenseless 37\nsenselessly 2\nsenselessness 1\nsenses 11\nsensibility 41\nsensible 13\nsensibly 3\nsensing 1\nsensitive 35\nsensitiveness 3\nsensitivity 1\nsensori 1\nsensory 9\nsensual 3\nsent 319\nsentence 26\nsentenced 4\nsentences 7\nsentiment 36\nsentimental 4\nsentimentality 1\nsentimentally 1\nsentiments 14\nsentinel 12\nsentinelles 1\nsentinels 9\nsentry 2\nseparable 1\nseparate 69\nseparated 75\nseparately 15\nseparates 15\nseparating 14\nseparation 51\nseparatist 1\nseparatists 1\nsepsis 10\nsept 2\nsepta 7\nseptember 44\nseptic 49\nsepticaemia 15\nsepticaemic 1\nseptique 2\nseptum 3\nsequel 14\nsequelae 4\nsequence 13\nsequestra 8\nsequestrated 3\nsequestration 1\nsequestrectomy 3\nsequestrum 42\nsera 9\nserait 1\nserajevo 1\nserbia 7\nserbian 1\nserbs 1\nserene 39\nserenely 3\nserenity 5\nserf 16\nserfdom 1\nserfs 80\nsergeant 40\nsergeants 5\nsergeevich 3\nserges 1\nsergey 15\nsergius 2\nserics 1\nseries 128\nserious 141\nseriously 63\nseriousness 5\nsermon 1\nsermons 3\nsero 6\nserous 46\nserpent 5\nserpentine 8\nserpiginous 2\nserpukhov 1\nserrated 1\nserratus 5\nserried 3\nserum 53\nserums 3\nseruvaru 1\nservant 46\nservants 88\nserve 64\nserved 63\nserver 1\nserves 15\nservice 223\nserviceable 3\nservices 38\nservile 9\nservility 2\nserving 37\nservitude 28\nses 2\nsesame 1\nseslavin 2\nsessile 5\nsession 13\nsessions 9\nset 325\nseton 2\nsetons 1\nsets 11\nsettee 1\nsetter 2\nsetting 38\nsettings 1\nsettle 42\nsettled 110\nsettlement 72\nsettlements 24\nsettler 1\nsettlers 37\nsettles 3\nsettling 16\nsevastyanych 1\nseven 132\nseventeen 10\nseventeenth 14\nseventh 19\nsevenths 1\nseventies 2\nseventy 20\nseveral 373\nseverally 1\nseverance 2\nsevere 173\nsevered 10\nseverely 29\nseverer 1\nsevering 4\nseverity 44\nsevern 1\nsevier 2\nseville 1\nsevres 2\nsew 1\nseward 11\nsewed 1\nsewene 1\nsewing 5\nsewn 5\nsex 11\nsexe 1\nsexes 3\nsexless 1\nsexual 5\nsexuality 1\nsexually 1\nsez 1\nsg 1\nshabbiest 1\nshabbily 1\nshabby 9\nshade 35\nshaded 4\nshades 6\nshading 6\nshadow 58\nshadows 19\nshadowy 1\nshady 3\nshaft 71\nshafter 3\nshafts 13\nshag 4\nshaggy 15\nshah 1\nshak 1\nshake 14\nshaken 11\nshakes 1\nshakespeare 1\nshaking 50\nshako 7\nshakos 8\nshale 1\nshall 735\nshallow 10\nshallowness 1\nshalt 2\nsham 2\nshame 32\nshamefaced 7\nshamefacedly 1\nshameful 10\nshamefully 5\nshameless 2\nshamelessly 1\nshamshevo 10\nshan 15\nshanties 1\nshantung 1\nshanty 2\nshape 62\nshaped 50\nshapeless 2\nshapely 3\nshapes 3\nshaping 7\nshapovalov 1\nshare 69\nshared 25\nshareholder 1\nshares 3\nsharing 23\nsharp 83\nsharpen 1\nsharpened 4\nsharpening 4\nsharper 7\nsharpest 2\nsharply 43\nsharpness 2\nsharpshooter 1\nsharpshooters 11\nshatter 2\nshattered 14\nshatters 1\nshave 3\nshaved 11\nshaven 19\nshaving 6\nshavings 2\nshaw 2\nshawl 22\nshawls 2\nshays 4\nshcherbatov 1\nshcherbaty 4\nshcherbinin 6\nshcherbitov 1\nshe 3946\nsheaf 1\nsheath 69\nsheathed 2\nsheaths 60\nsheaves 3\nshed 74\nshedding 6\nsheds 5\nsheen 1\nsheep 24\nsheepish 1\nsheepskin 8\nsheer 8\nsheet 29\nsheets 8\nshelf 8\nshell 41\nshelled 7\nshellfire 1\nshelling 3\nshells 10\nshelter 19\nsheltered 2\nshelters 3\nshelves 3\nshenandoah 1\nshenkii 1\nshepherd 3\nshepherdesses 1\nshepherds 2\nsheridan 1\nsheriff 1\nsherlock 101\nsherman 21\nsherren 6\nsherry 2\nshetland 1\nshevardino 29\nshew 1\nshied 1\nshield 8\nshielding 1\nshift 6\nshifted 5\nshiftily 1\nshiftiness 1\nshifting 14\nshifts 1\nshilling 4\nshillings 5\nshiloh 2\nshimmering 2\nshine 4\nshines 1\nshineth 1\nshining 40\nshiningly 1\nshinn 1\nshinshin 29\nshinshina 1\nshiny 9\nship 73\nshipboard 1\nshipbuilder 1\nshipbuilders 2\nshipbuilding 5\nshipment 1\nshipments 2\nshipowners 4\nshipped 5\nshipper 1\nshippers 12\nshipping 21\nships 64\nshipwreck 1\nshipwrights 2\nshipyards 2\nshirley 1\nshirt 50\nshirtlike 1\nshirts 8\nshishkov 3\nshit 1\nshitov 1\nshiver 8\nshivering 12\nshivers 2\nshock 87\nshocked 9\nshocking 1\nshocks 1\nshod 6\nshoe 11\nshoemakers 3\nshoes 38\nsholto 1\nsholtos 1\nshone 41\nshook 70\nshoot 15\nshooting 12\nshoots 7\nshop 29\nshopkeeper 2\nshopkeepers 6\nshopman 3\nshopping 2\nshops 22\nshore 11\nshores 9\nshorn 2\nshort 236\nshortage 1\nshortcomings 1\nshorten 2\nshortened 6\nshortening 11\nshorter 11\nshortest 1\nshortly 27\nshortness 4\nshortsighted 5\nshot 95\nshots 26\nshould 1297\nshoulder 116\nshouldered 9\nshouldering 3\nshoulders 125\nshouldn 17\nshout 23\nshouted 254\nshouting 109\nshouts 52\nshove 6\nshoved 1\nshovel 6\nshoveled 1\nshoves 1\nshoving 4\nshow 213\nshowed 149\nshower 4\nshowered 2\nshowering 1\nshowing 104\nshowmen 1\nshown 113\nshows 50\nshowy 2\nshrank 10\nshrapnel 1\nshred 2\nshreddy 2\nshreds 4\nshrewd 14\nshrewdest 1\nshrewdly 3\nshrewdness 1\nshrewsbury 1\nshriek 7\nshrieked 14\nshrieking 2\nshrieks 6\nshrill 13\nshrillest 1\nshrilly 2\nshrimp 1\nshrine 6\nshrines 3\nshrink 5\nshrinkage 1\nshrinking 3\nshrinks 3\nshriveled 11\nshrivelled 5\nshrivelling 1\nshrivels 2\nshrouded 2\nshrub 1\nshrubbery 2\nshrug 3\nshrugged 35\nshrugging 13\nshrunk 4\nshudder 10\nshuddered 10\nshudders 1\nshuffled 1\nshuffling 6\nshun 1\nshunned 1\nshut 40\nshuts 2\nshutter 4\nshuttered 2\nshutters 16\nshutting 2\nshuya 1\nshy 21\nshying 2\nshyly 12\nshyness 5\nsi 5\nsiam 1\nsiberia 9\nsibilant 1\nsic 2\nsicca 3\nsicily 1\nsick 53\nsickened 1\nsickening 3\nsickle 4\nsickly 6\nsickness 13\nsickroom 1\nside 511\nsideboard 6\nsided 5\nsidedly 1\nsidelights 2\nsidelong 5\nsides 172\nsidewalk 1\nsideways 12\nsidled 2\nsidney 2\nsidorov 4\nsidorych 2\nsiege 8\nsifted 1\nsifting 1\nsigh 38\nsighed 57\nsighing 17\nsighs 6\nsight 129\nsighted 11\nsightedness 1\nsights 2\nsigismond 1\nsign 99\nsignal 25\nsignaler 1\nsignalers 1\nsignaling 1\nsignalled 1\nsignals 1\nsignature 9\nsignatures 3\nsignboard 2\nsignboards 2\nsigned 40\nsigner 1\nsigners 1\nsignet 2\nsignificance 89\nsignificant 39\nsignificantly 17\nsignifies 1\nsignify 3\nsignifying 2\nsigning 5\nsigns 98\nsila 2\nsilas 2\nsilence 136\nsilenced 5\nsilencing 1\nsilent 188\nsilently 72\nsilesian 1\nsilhouette 1\nsilhouetted 1\nsilk 50\nsilken 2\nsilks 3\nsilkworm 2\nsill 17\nsilliness 1\nsilly 13\nsilver 128\nsilvered 1\nsilverware 2\nsilvery 4\nsimilar 129\nsimilarity 2\nsimilarly 19\nsimon 56\nsimple 139\nsimplehearted 1\nsimpler 10\nsimplest 14\nsimpleton 1\nsimpletons 1\nsimplicity 30\nsimplifies 1\nsimplify 1\nsimplifying 1\nsimply 91\nsimpson 1\nsimulate 14\nsimulated 3\nsimulates 2\nsimulating 4\nsimultaneous 4\nsimultaneously 29\nsin 23\nsince 260\nsincere 22\nsincerely 20\nsincerity 9\nsinclair 1\nsinew 2\nsinews 3\nsinewy 6\nsinful 4\nsinfulness 1\nsing 36\nsinged 2\nsinger 6\nsingers 15\nsinging 49\nsingle 173\nsinglehanded 2\nsingleness 2\nsingles 2\nsingly 12\nsings 4\nsingsong 3\nsingular 36\nsingularity 1\nsingularly 2\nsinister 16\nsink 13\nsinking 21\nsinks 1\nsinned 3\nsinner 4\nsinners 5\nsinning 2\nsins 10\nsinuous 2\nsinus 56\nsinuses 48\nsioux 3\nsip 2\nsipped 1\nsipping 3\nsir 177\nsird 1\nsire 32\nsirin 1\nsismondi 1\nsister 144\nsisters 16\nsistine 1\nsit 89\nsite 32\nsites 9\nsits 6\nsitting 269\nsittings 1\nsitu 3\nsituate 1\nsituated 59\nsituation 87\nsituations 33\nsitz 1\nsivtsev 2\nsix 176\nsixteen 31\nsixteenth 11\nsixth 51\nsixties 1\nsixty 30\nsize 184\nsized 3\nsizes 2\nskein 2\nskeleton 35\nskelter 1\nskeptically 2\nskepticism 1\nskeptics 1\nsketch 9\nsketched 3\nsketches 2\nskewers 2\nski 1\nskiagram 10\nskiagrams 15\nskiagraphy 3\nskies 1\nskilful 1\nskill 34\nskilled 21\nskillful 16\nskillfully 8\nskin 579\nskinned 2\nskinny 2\nskins 4\nskipped 1\nskipper 2\nskippers 1\nskirmish 1\nskirmishers 4\nskirmishes 1\nskirmishing 6\nskirt 17\nskirted 5\nskirts 8\nskirving 1\nskits 1\nskittish 1\nskittles 2\nskull 71\nskullcap 1\nsky 68\nskylight 4\nskyline 1\nskyward 1\nslab 4\nslabs 2\nslack 4\nslacken 2\nslackened 2\nslackening 4\nslackens 1\nslackness 1\nslafe 1\nslain 6\nslam 3\nslammed 11\nslamming 2\nslander 2\nslandered 1\nslang 2\nslanting 8\nslap 2\nslapped 3\nslapping 4\nslash 2\nslashed 3\nslate 3\nslater 1\nslaughter 6\nslaughtered 3\nslaughtering 1\nslav 1\nslave 78\nslaveholder 2\nslaveholders 2\nslaveholding 2\nslavery 211\nslaves 92\nslavey 1\nslavish 1\nslay 7\nslaying 2\nsledge 1\nsleek 5\nsleeker 2\nsleep 113\nsleeper 3\nsleepers 2\nsleepily 1\nsleepiness 1\nsleeping 33\nsleepless 15\nsleeplessness 4\nsleeps 3\nsleepy 20\nsleeve 27\nsleeves 30\nsleigh 39\nsleighs 11\nslender 26\nslenderest 1\nslept 35\nsleuth 1\nslew 3\nslice 5\nslices 1\nslid 2\nslide 4\nslidell 1\nsliding 3\nslight 114\nslighted 3\nslighter 3\nslightest 25\nslightly 84\nslim 13\nslime 1\nsling 2\nslinging 1\nslink 2\nslip 24\nslipped 30\nslipper 3\nslippered 3\nslippers 10\nslippery 5\nslipping 20\nslips 5\nslit 6\nslits 1\nslitting 2\nsloane 1\nsloat 1\nslobbering 1\nsloboda 4\nslogan 7\nslogans 2\nsloop 2\nsloops 1\nslop 1\nslope 21\nslopes 5\nsloping 6\nslot 1\nsloth 2\nslough 30\nsloughed 2\nsloughing 15\nsloughs 23\nsloughy 3\nslovaks 1\nslovenly 1\nslow 65\nslowed 1\nslower 4\nslowing 2\nslowly 133\nslowness 3\nsluggish 2\nsluggishly 2\nsluiceways 1\nslumber 3\nslumbering 2\nslump 1\nslums 4\nslung 3\nslur 3\nslurred 1\nslurring 2\nslut 2\nsly 16\nslyboots 1\nsmack 5\nsmacked 3\nsmacking 2\nsmall 527\nsmaller 51\nsmallest 12\nsmalley 1\nsmallish 1\nsmallpox 1\nsmart 24\nsmarten 1\nsmartened 1\nsmarter 1\nsmartest 1\nsmarting 2\nsmartly 5\nsmartness 2\nsmash 4\nsmashed 10\nsmasher 1\nsmashing 1\nsmear 2\nsmeared 13\nsmearing 2\nsmell 50\nsmelled 6\nsmelling 5\nsmells 1\nsmelt 4\nsmelter 1\nsmelters 2\nsmelting 1\nsmile 426\nsmiled 158\nsmiles 18\nsmiling 161\nsmilingly 24\nsmirched 1\nsmite 3\nsmith 21\nsmithereens 1\nsmiths 5\nsmithy 1\nsmitten 1\nsmock 3\nsmoke 144\nsmoked 11\nsmokeless 1\nsmoker 1\nsmokers 2\nsmokes 2\nsmoking 17\nsmoldering 2\nsmolensk 102\nsmolyaninov 2\nsmooth 57\nsmoothed 10\nsmoother 1\nsmoothing 9\nsmoothly 11\nsmoothness 2\nsmote 4\nsmother 1\nsmothered 2\nsmudge 1\nsmuggled 3\nsmugglers 3\nsmuggling 3\nsmythe 2\nsn 1\nsnack 1\nsnacks 1\nsnaffle 1\nsnail 1\nsnake 13\nsnakes 6\nsnakish 1\nsnap 9\nsnapped 6\nsnapping 4\nsnare 1\nsnarl 2\nsnarled 3\nsnatch 8\nsnatched 15\nsnatches 4\nsnatching 6\nsneer 6\nsneered 2\nsneering 2\nsniff 1\nsniffed 4\nsniffing 6\nsnigger 1\nsnipped 1\nsniveling 1\nsnore 1\nsnored 1\nsnoring 6\nsnort 4\nsnorted 9\nsnorting 3\nsnout 3\nsnow 86\nsnowballs 1\nsnowbanks 1\nsnowed 1\nsnowflakes 1\nsnows 2\nsnowy 5\nsnub 6\nsnuff 11\nsnuffbox 26\nsnuffboxes 2\nsnuffing 1\nsnuffles 4\nsnuffling 1\nsnug 4\nsnuggery 2\nsnuggling 1\nsnugly 1\nso 3017\nsoak 2\nsoaked 17\nsoaking 1\nsoames 1\nsoap 7\nsoar 1\nsoared 1\nsoaring 1\nsob 19\nsobbed 13\nsobbing 25\nsober 7\nsobered 1\nsoberly 1\nsobs 41\nsoccer 1\nsocial 81\nsocialism 8\nsocialist 9\nsocialistic 6\nsocialists 14\nsocially 3\nsocieties 18\nsociety 169\nsociological 1\nsociology 1\nsock 2\nsocket 5\nsockets 1\nsocks 1\nsocrates 1\nsoda 17\nsodden 12\nsodium 5\nsofa 84\nsofas 1\nsoft 185\nsoften 14\nsoftened 28\nsoftening 14\nsoftens 2\nsofter 10\nsoftly 42\nsoftness 7\nsoftware 8\nsoie 1\nsoil 93\nsoiled 2\nsoilers 1\nsoiling 1\nsoils 1\nsoiree 5\nsoirees 5\nsojourn 3\nsokolniki 8\nsokolnitz 4\nsokolov 3\nsol 1\nsolace 1\nsolar 3\nsold 49\nsoldau 1\nsolder 1\nsoldier 215\nsoldierly 2\nsoldiers 411\nsole 70\nsolecism 1\nsoled 1\nsolely 19\nsolemn 55\nsolemnity 12\nsolemnly 23\nsoles 4\nsolfa 1\nsolfeggio 1\nsolicit 8\nsolicitation 3\nsolicitations 1\nsolicited 3\nsolicitor 3\nsolicitude 6\nsolid 41\nsolidarity 2\nsolidification 1\nsolidified 2\nsolidity 1\nsolids 1\nsolitary 26\nsolitude 18\nsoll 1\nsolo 1\nsolomon 6\nsolution 109\nsolutions 4\nsolvable 1\nsolve 18\nsolved 19\nsolvent 1\nsolvents 1\nsolving 3\nsomber 2\nsomberly 1\nsombre 6\nsome 1536\nsomebody 21\nsomeday 6\nsomehow 13\nsomeone 160\nsomerset 1\nsomething 683\nsometime 1\nsometimes 425\nsomewhat 46\nsomewhere 57\nsommes 1\nsomnambulist 1\nson 343\nsonata 3\nsong 38\nsongs 14\nsongstress 1\nsonorous 5\nsons 43\nsont 2\nsontnya 1\nsonya 447\nsoon 421\nsooner 33\nsoot 3\nsoothe 5\nsoothed 3\nsoothing 16\nsoothingly 1\nsooty 1\nsophia 4\nsophie 5\nsophism 1\nsophisticated 1\nsophy 1\nsoporific 1\nsorbier 1\nsorbonne 1\nsordes 3\nsordid 4\nsore 81\nsorely 5\nsores 43\nsorrel 2\nsorrow 60\nsorrowful 9\nsorrowfully 3\nsorrows 6\nsorry 77\nsort 91\nsorted 1\nsorter 2\nsorting 5\nsorts 23\nsot 1\nsoto 1\nsots 1\nsottish 1\nsought 89\nsoul 168\nsouled 1\nsoulless 1\nsouls 17\nsound 219\nsounded 32\nsounder 2\nsounding 6\nsoundly 1\nsoundness 4\nsounds 94\nsount 1\nsoup 12\nsoups 1\nsour 4\nsource 97\nsources 31\nsoured 1\nsous 2\nsoused 1\nsoutenir 1\nsouth 318\nsouthampton 3\nsoutheast 4\nsoutherly 1\nsouthern 196\nsoutherner 1\nsoutherners 3\nsoutherton 1\nsouthward 6\nsouthwest 17\nsouthwestern 1\nsouvenir 1\nsouverain 1\nsouza 2\nsov 2\nsovereign 82\nsovereigns 18\nsovereignties 2\nsovereignty 28\nsoviet 1\nsow 4\nsowed 2\nsowing 6\nsown 5\nsows 1\nsoyez 1\nsoyna 1\nspace 65\nspaces 37\nspacious 2\nspaciously 1\nspade 2\nspadefuls 2\nspades 1\nspain 74\nspake 1\nspan 4\nspangled 1\nspaniard 1\nspaniards 5\nspanish 66\nspanned 1\nspanning 2\nspare 27\nspared 12\nspares 1\nsparing 2\nsparingly 1\nspark 7\nsparkle 4\nsparkled 5\nsparkles 1\nsparkling 15\nsparks 10\nsparrow 4\nsparrows 1\nspas 3\nspasm 17\nspasmodic 4\nspasmodically 5\nspasms 23\nspasski 1\nspastic 3\nspat 2\nspatial 1\nspattered 2\nspaulding 8\nspeak 255\nspeaker 25\nspeakers 5\nspeaking 185\nspeaks 11\nspear 3\nspears 1\nspecial 159\nspecialise 1\nspecialised 2\nspecialist 8\nspecialists 1\nspecialized 3\nspecially 45\nspecie 12\nspecies 14\nspecific 37\nspecifically 5\nspecification 1\nspecified 9\nspecify 1\nspecifying 1\nspecimen 14\nspecimens 4\nspeciously 1\nspeck 4\nspeckled 5\nspeckles 1\nspectacle 16\nspectacled 3\nspectacles 41\nspectacular 5\nspectator 3\nspectators 4\nspecter 1\nspecters 2\nspectrum 1\nspeculating 1\nspeculation 6\nspeculative 4\nspeculator 5\nspeculators 7\nsped 1\nspeech 82\nspeeches 13\nspeechless 1\nspeed 31\nspeedily 12\nspeeding 2\nspeedy 9\nspell 9\nspellbound 3\nspelled 1\nspelling 4\nspells 1\nspence 3\nspend 32\nspending 12\nspends 1\nspendthrift 1\nspenser 1\nspent 111\nsperanski 79\nspermaceti 1\nspermatic 4\nsphagnum 2\nspheno 1\nsphere 31\nspheres 6\nspherical 1\nsphincters 1\nsphinx 4\nsphinxes 1\nspice 1\nspicule 1\nspicules 7\nspider 2\nspiders 1\nspies 9\nspike 2\nspikes 1\nspiking 1\nspill 1\nspilled 4\nspilt 1\nspin 3\nspina 1\nspinae 1\nspinal 40\nspinati 4\nspindle 10\nspindles 5\nspine 35\nspines 2\nspinners 1\nspinning 15\nspinous 2\nspinster 1\nspinsters 1\nspiral 7\nspire 2\nspirilla 4\nspirit 167\nspirited 12\nspirits 42\nspiritual 34\nspirituality 3\nspiritually 1\nspirituelle 1\nspirituous 1\nspirochaeta 4\nspirochaete 15\nspirochaetes 6\nspironema 2\nspit 2\nspite 117\nspiteful 6\nspitefully 1\nspitting 2\nspittoon 1\nsplash 4\nsplashed 6\nsplashing 14\nspleen 11\nsplendid 77\nsplendidly 11\nsplendor 1\nsplendour 2\nsplenic 2\nsplint 17\nsplinter 4\nsplintered 1\nsplintering 1\nsplinters 5\nsplints 21\nsplit 15\nsplitter 2\nsplitting 2\nspluttered 3\nspluttering 1\nspoil 10\nspoiled 18\nspoiling 7\nspoils 20\nspoilsmen 2\nspokane 1\nspoke 218\nspoken 92\nspokesman 6\nspokesmen 8\nspoliation 1\nsponge 7\nsponged 6\nsponges 1\nsponging 3\nspongiopilene 1\nspongy 22\nsponsor 5\nsponsored 1\nsponsors 3\nsponsorship 2\nspontaneity 1\nspontaneous 19\nspontaneously 9\nspool 1\nspools 1\nspoon 36\nspoonfuls 1\nspoons 1\nsporadic 1\nspore 3\nspores 15\nsporing 1\nsporothrix 1\nsporotrichosis 4\nsport 7\nsporting 5\nsports 2\nsportsman 6\nsportsmen 3\nsporulation 2\nspot 76\nspotless 1\nspots 12\nspotswood 1\nspotted 12\nspouse 2\nspouting 1\nsprain 18\nsprained 3\nsprains 2\nsprang 62\nsprawled 1\nsprawling 2\nspray 4\nsprayed 2\nspraying 1\nsprays 1\nspread 193\nspreading 62\nspreads 53\nspree 2\nsprees 2\nsprig 1\nspring 70\nspringfield 3\nspringing 12\nsprings 17\nspringtime 2\nsprinkle 1\nsprinkled 7\nsprinkling 2\nsprinter 2\nsprout 1\nsprouted 2\nsprouting 3\nspruce 1\nsprung 12\nspun 9\nspur 4\nspurned 3\nspurred 8\nspurring 3\nspurs 23\nspurting 1\nsputum 3\nspy 14\nspyer 1\nspyglass 1\nspying 1\nsq 1\nsquad 3\nsquadron 66\nsquadrons 5\nsquadwon 1\nsqualid 1\nsquamous 9\nsquander 1\nsquanto 1\nsquare 70\nsquared 2\nsquarely 5\nsquares 5\nsquat 1\nsquatted 5\nsquatter 5\nsquatters 4\nsquatting 8\nsquaw 1\nsqueaked 4\nsqueaking 4\nsqueaky 2\nsquealed 1\nsquealing 1\nsqueals 1\nsqueeze 5\nsqueezed 11\nsqueezing 6\nsquire 2\nsquires 1\nsquirrel 4\nst 147\nsta 1\nstab 8\nstabbed 2\nstabbing 2\nstability 4\nstable 27\nstables 4\nstabling 1\nstabs 5\nstaccato 3\nstacked 2\nstacks 2\nstadium 1\nstael 6\nstaff 144\nstaffs 5\nstag 1\nstage 108\nstagecoach 5\nstagecoaches 2\nstages 45\nstagger 4\nstaggered 13\nstaggering 12\nstagnant 4\nstagnating 1\nstagnation 2\nstaid 7\nstain 23\nstained 35\nstaining 7\nstains 8\nstair 11\nstaircase 13\nstaircases 1\nstairs 31\nstairway 1\nstake 24\nstaked 5\nstakes 2\nstaking 1\nstalactite 1\nstale 4\nstalk 3\nstalked 1\nstall 5\nstallion 2\nstallions 1\nstalls 18\nstalwart 1\nstammered 5\nstammering 1\nstamp 46\nstamped 9\nstampede 2\nstamping 3\nstamps 4\nstance 1\nstanch 6\nstand 89\nstandard 54\nstandardized 3\nstandards 23\nstandi 1\nstanding 218\nstandpoint 7\nstands 19\nstandstill 2\nstanford 2\nstanley 1\nstanton 3\nstanwood 2\nstanza 1\nstaphylococcal 5\nstaphylococci 9\nstaphylococcus 19\nstaple 4\nstaples 10\nstar 24\nstarch 2\nstarched 1\nstare 5\nstared 24\nstares 1\nstaring 18\nstark 10\nstarless 1\nstarlight 1\nstarring 1\nstarry 8\nstars 31\nstart 67\nstarted 96\nstarting 50\nstartings 2\nstartle 3\nstartled 18\nstartling 14\nstarts 4\nstarvation 11\nstarve 5\nstarved 2\nstarving 9\nstarwise 1\nstasis 5\nstate 664\nstatecraft 4\nstated 29\nstatehood 10\nstateliness 2\nstately 9\nstatement 42\nstatements 9\nstates 981\nstatesman 10\nstatesmanlike 1\nstatesmanship 2\nstatesmen 34\nstatic 3\nstating 5\nstation 52\nstationary 16\nstationed 32\nstationmasters 1\nstations 10\nstatistical 2\nstatisticians 2\nstatistics 5\nstatue 8\nstatues 2\nstatuesque 2\nstature 5\nstatus 30\nstatute 4\nstatutes 4\nstatutory 2\nstay 74\nstayed 39\nstaying 35\nstays 2\nstead 2\nsteadfast 1\nsteadfastly 2\nsteadily 41\nsteadings 1\nsteady 36\nsteal 6\nstealing 3\nsteals 1\nstealth 1\nstealthily 7\nsteam 30\nsteamboat 5\nsteamboats 4\nsteamed 2\nsteamer 7\nsteamers 1\nsteaminess 1\nsteaming 2\nsteamship 3\nsteamships 2\nsteed 1\nsteel 30\nsteely 1\nsteep 12\nsteer 4\nsteered 1\nsteffens 1\nstein 8\nsteins 1\nstellate 2\nstem 5\nstemmed 1\nstems 2\nstench 1\nstencil 2\nstenographic 1\nstenosis 2\nstentorian 1\nstep 139\nstepan 2\nstepanovich 1\nstepanych 1\nstepdaughter 2\nstepfather 21\nstephen 6\nstephens 2\nstepmother 5\nstepmothers 1\nsteppe 3\nstepped 62\nsteppes 5\nstepping 29\nsteps 188\nstepsons 1\nstereoscopic 1\nstereotyped 1\nsterile 9\nsterilisation 9\nsterilise 2\nsterilised 43\nsteriliser 6\nsterility 1\nsterlet 2\nsterlets 1\nsterling 5\nstern 65\nsternal 1\nsterne 1\nsterner 2\nsternly 42\nsternness 1\nsterno 13\nsternum 18\nsteshka 1\nstethoscope 2\nsteuben 2\nsteve 1\nstevedore 1\nstevens 3\nstevenson 2\nstew 1\nsteward 39\nstewards 7\nstewart 3\nstick 36\nsticking 11\nsticks 5\nsticky 5\nstiff 20\nstiffen 1\nstiffened 3\nstiffly 5\nstiffness 34\nstifle 7\nstifled 5\nstifles 2\nstifling 2\nstigmata 1\nstile 2\nstiles 2\nstill 922\nstillness 15\nstills 1\nstimulant 2\nstimulants 4\nstimulate 6\nstimulated 15\nstimulating 13\nstimulatingly 1\nstimulation 8\nstimuli 5\nstimulus 10\nsting 9\nstinginess 1\nstinging 9\nstingy 4\nstink 2\nstinking 1\nstint 2\nstinted 1\nstipulated 2\nstipulates 1\nstipulating 1\nstipulation 1\nstir 35\nstirling 1\nstirred 28\nstirring 19\nstirrup 8\nstirrups 2\nstirs 2\nstitch 11\nstitched 5\nstitches 17\nstitching 2\nstock 33\nstocked 2\nstockholders 5\nstocking 9\nstockinged 1\nstockings 17\nstockman 1\nstocks 17\nstockton 1\nstoffel 1\nstoke 11\nstole 3\nstolen 23\nstolypin 4\nstomach 43\nstomatitis 3\nstone 72\nstoned 5\nstoner 19\nstones 13\nstonily 1\nstony 6\nstood 383\nstool 5\nstools 3\nstoop 3\nstooped 17\nstooping 16\nstop 99\nstoper 6\nstopford 1\nstoppage 1\nstopped 210\nstopping 33\nstops 5\nstorage 3\nstore 12\nstored 6\nstoreroom 2\nstorerooms 2\nstores 30\nstoried 2\nstories 44\nstoring 2\nstorm 33\nstormcloud 2\nstormed 9\nstorming 1\nstorms 5\nstormy 8\nstory 133\nstoughton 1\nstout 62\nstouter 6\nstoutest 2\nstoutly 3\nstoutness 2\nstove 7\nstoves 1\nstowe 4\nstraggler 1\nstragglers 8\nstraggling 7\nstraggly 1\nstraight 124\nstraighten 6\nstraightened 9\nstraightening 2\nstraightens 1\nstraighter 1\nstraightforward 3\nstrain 34\nstrained 14\nstraining 18\nstrains 11\nstrait 3\nstraitened 1\nstraits 4\nstralsund 1\nstrand 5\nstrands 5\nstrange 220\nstrangely 24\nstrangeness 2\nstranger 46\nstrangers 15\nstrangest 4\nstrangle 2\nstrangulated 4\nstrangulation 1\nstrap 5\nstrapped 1\nstrapping 2\nstraps 3\nstrata 1\nstrategic 18\nstrategical 1\nstrategically 1\nstrategics 2\nstrategist 2\nstrategy 12\nstrathpeffer 2\nstratified 1\nstratum 5\nstrauch 1\nstraw 21\nstrawberries 2\nstrawberry 1\nstray 4\nstrayed 4\nstraying 2\nstreak 3\nstreaked 2\nstreaks 6\nstream 76\nstreamed 13\nstreamers 2\nstreaming 6\nstreamlet 2\nstreams 11\nstreatham 4\nstreet 180\nstreets 73\nstrength 183\nstrengthen 21\nstrengthened 19\nstrengthening 4\nstrengthens 2\nstrenuous 8\nstrenuously 2\nstreptcoccic 1\nstreptococcal 5\nstreptococci 18\nstreptococcic 3\nstreptococcus 13\nstreptothrix 3\nstress 10\nstressed 1\nstressing 3\nstretch 15\nstretched 52\nstretcher 13\nstretchers 14\nstretches 9\nstretching 42\nstrewed 1\nstrewn 4\nstriated 1\nstricken 10\nstrict 34\nstricter 3\nstrictest 1\nstrictly 17\nstrictness 2\nstricture 3\nstride 4\nstrident 1\nstrides 8\nstriding 2\nstridulous 1\nstrife 9\nstrike 39\nstriker 1\nstrikers 1\nstrikes 19\nstriking 59\nstrikingly 2\nstring 12\nstringent 2\nstringently 1\nstrings 7\nstrip 15\nstriped 9\nstripes 9\nstripped 15\nstrippers 1\nstripping 5\nstrips 13\nstrive 6\nstriven 3\nstriving 6\nstrivings 1\nstrode 10\nstrogonov 2\nstroke 31\nstroked 7\nstrokes 4\nstroking 9\nstroll 3\nstrolled 4\nstrolling 1\nstroma 8\nstromilova 1\nstrong 168\nstronger 49\nstrongest 13\nstronghold 2\nstrongholds 1\nstrongly 41\nstrophanthin 1\nstrophanthus 1\nstroud 1\nstrove 7\nstruck 145\nstructural 10\nstructurally 3\nstructure 41\nstructures 43\nstruggle 76\nstruggled 15\nstruggles 7\nstruggling 20\nstrumming 1\nstrut 1\nstruthers 2\nstrychnin 10\nstuart 5\nstuarts 2\nstubble 7\nstubborn 12\nstubbornly 3\nstubby 1\nstuck 20\nstud 3\nstudded 3\nstudent 12\nstudents 6\nstudied 17\nstudies 27\nstudio 2\nstudious 2\nstudy 144\nstudying 11\nstuff 11\nstuffed 6\nstuffs 1\nstuffy 3\nstumble 1\nstumbled 14\nstumbling 9\nstump 23\nstumps 6\nstumpy 1\nstung 3\nstunned 1\nstunning 1\nstunted 1\nstupefaction 1\nstupefied 1\nstupefying 1\nstupendous 2\nstupid 57\nstupider 1\nstupidest 3\nstupidity 11\nstupidly 1\nstupor 1\nsturdily 1\nsturdy 10\nstuttering 1\nstuyvesant 1\nstwaight 2\nstwuck 1\nsty 1\nstyle 18\nstyled 4\nstylet 2\nstylish 1\nstyptics 4\nsuave 1\nsuavely 2\nsub 23\nsubacute 2\nsubaltern 2\nsubcalcanean 1\nsubcapsular 1\nsubcarbonate 1\nsubclavian 20\nsubcrural 1\nsubcutaneous 121\nsubcutaneously 3\nsubdeltoid 1\nsubdivision 3\nsubdivisions 2\nsubdue 4\nsubdued 10\nsubduing 1\nsubjacent 11\nsubject 185\nsubjected 30\nsubjecting 1\nsubjection 8\nsubjective 4\nsubjects 67\nsubjugated 1\nsubjugates 1\nsubjugation 1\nsublieutenancy 1\nsublimate 8\nsublime 8\nsublimed 1\nsublimis 1\nsublimity 1\nsublingual 1\nsubmarine 13\nsubmarines 7\nsubmaxillary 6\nsubmental 2\nsubmerged 3\nsubmission 20\nsubmissive 10\nsubmissively 7\nsubmit 31\nsubmits 2\nsubmitted 27\nsubmitting 9\nsubmucous 4\nsubnormal 2\nsubordinate 10\nsubordinates 4\nsubordination 5\nsubperiosteal 2\nsubscapular 2\nsubscapularis 2\nsubscribe 6\nsubscribed 5\nsubscribers 1\nsubscription 5\nsubscriptions 1\nsubsequent 28\nsubsequently 26\nsubserous 2\nsubserve 4\nsubservience 2\nsubside 11\nsubsided 11\nsubsides 10\nsubsidiary 3\nsubsidies 3\nsubsiding 4\nsubsidized 3\nsubsidy 1\nsubsist 1\nsubsistence 3\nsubsisting 1\nsubstance 49\nsubstances 26\nsubstantial 9\nsubstantially 2\nsubstantiate 1\nsubstantive 1\nsubstitute 14\nsubstituted 11\nsubstitutes 2\nsubstituting 4\nsubstitution 1\nsubstitutions 1\nsubsynovial 2\nsubterranean 1\nsubtle 24\nsubtleties 1\nsubtly 2\nsubtracted 1\nsubungual 8\nsuburb 7\nsuburban 3\nsuburbs 1\nsubversion 1\nsubversive 3\nsubvert 1\nsubverted 1\nsubverting 1\nsubways 1\nsucceed 16\nsucceeded 34\nsucceeding 6\nsucceeds 5\nsuccess 93\nsuccesses 10\nsuccessful 56\nsuccessfully 25\nsuccession 19\nsuccessive 17\nsuccessively 1\nsuccessor 17\nsuccessors 3\nsuccinct 1\nsuccor 3\nsuccour 1\nsuccumb 12\nsuccumbing 1\nsuccumbs 1\nsuch 1436\nsuck 3\nsucked 4\nsucking 1\nsuckling 2\nsucks 1\nsuction 24\nsudan 1\nsudden 79\nsuddenly 496\nsuddenness 1\nsue 4\nsued 1\nsuez 3\nsuffer 55\nsufferance 1\nsuffered 63\nsufferer 6\nsuffering 112\nsufferings 25\nsuffers 19\nsuffice 6\nsufficed 3\nsuffices 2\nsufficiency 2\nsufficient 75\nsufficiently 32\nsuffocating 1\nsuffocation 5\nsuffragan 1\nsuffrage 115\nsuffrages 2\nsuffragists 9\nsuffused 5\nsugar 51\nsugary 1\nsuggest 24\nsuggested 69\nsuggesting 13\nsuggestion 24\nsuggestions 7\nsuggestive 11\nsuggestiveness 1\nsuggests 10\nsuicidal 5\nsuicide 10\nsuis 4\nsuit 25\nsuitability 1\nsuitable 31\nsuitably 2\nsuitcase 1\nsuite 79\nsuited 15\nsuites 7\nsuitor 8\nsuitors 5\nsuits 8\nsukharev 6\nsukhtelen 2\nsulcus 2\nsulking 2\nsulky 1\nsullen 4\nsullenly 4\nsullivan 1\nsulph 1\nsulphate 5\nsulphates 1\nsulphide 1\nsulphonal 1\nsulphur 8\nsulphuric 2\nsultan 1\nsultry 1\nsum 53\nsummarily 4\nsummarise 2\nsummarises 1\nsummarize 3\nsummarized 1\nsummarizing 1\nsummary 16\nsummed 6\nsummer 61\nsummertime 1\nsummit 4\nsummits 2\nsummon 7\nsummoned 35\nsummoning 4\nsummons 11\nsummonses 1\nsumner 6\nsumptuous 2\nsums 20\nsumter 5\nsun 82\nsunbeam 2\nsunbeams 1\nsunburned 5\nsunburnt 1\nsunday 19\nsundays 8\nsundered 1\nsundial 5\nsundials 1\nsundry 1\nsunflower 1\nsung 7\nsunk 27\nsunken 10\nsunlight 10\nsunny 6\nsunrise 3\nsunset 5\nsunshine 21\nsup 1\nsuper 4\nsuperabundance 1\nsuperadded 14\nsuperb 8\nsuperbe 1\nsupercilious 1\nsuperciliousness 1\nsuperficial 95\nsuperficially 4\nsuperfluity 2\nsuperfluous 10\nsuperhuman 2\nsuperintended 2\nsuperintendent 14\nsuperintending 1\nsuperior 41\nsuperiority 12\nsuperiors 7\nsupermarket 1\nsupernatural 3\nsupernaturally 1\nsupernumerary 1\nsuperscribed 1\nsuperscripted 1\nsuperscription 1\nsupersede 1\nsuperseded 9\nsupersensitiveness 2\nsuperstition 3\nsuperstitions 2\nsuperstitious 2\nsuperstitiousness 1\nsupervene 6\nsupervened 1\nsupervenes 4\nsupervise 6\nsupervised 1\nsupervising 2\nsupervision 20\nsupervisor 1\nsupervisors 1\nsupinate 1\nsupinated 2\nsupination 2\nsupinator 2\nsupinators 3\nsupine 2\nsupineness 2\nsupper 64\nsuppers 4\nsuppert 2\nsupping 1\nsupplanted 3\nsupplants 1\nsupple 7\nsupplement 7\nsupplementary 3\nsupplemented 18\nsupplementing 2\nsuppleness 1\nsuppliant 1\nsupplication 1\nsupplied 36\nsupplier 2\nsuppliers 1\nsupplies 60\nsupply 84\nsupplying 11\nsupport 104\nsupported 39\nsupporter 4\nsupporters 10\nsupporting 16\nsupports 6\nsuppose 59\nsupposed 45\nsupposedly 1\nsupposes 1\nsupposing 21\nsupposition 8\nsuppositions 2\nsuppress 14\nsuppressed 17\nsuppressing 4\nsuppression 5\nsuppurate 4\nsuppurates 3\nsuppurating 3\nsuppuration 148\nsuppurations 5\nsuppurative 31\nsupra 14\nsupraorbital 1\nsuprarenin 1\nsupremacy 28\nsupreme 74\nsur 2\nsure 123\nsurely 24\nsurest 3\nsurf 1\nsurface 279\nsurfaces 74\nsurg 7\nsurge 1\nsurgeon 43\nsurgeons 15\nsurgery 42\nsurgical 66\nsurgically 2\nsurging 1\nsurlier 1\nsurly 3\nsurmise 5\nsurmised 1\nsurmises 5\nsurmounted 3\nsurmounting 1\nsurname 1\nsurnames 1\nsurpassed 3\nsurpassing 3\nsurpliced 1\nsurplus 11\nsurprise 107\nsurprised 80\nsurprising 15\nsurprisingly 3\nsurrender 37\nsurrendered 24\nsurrendering 5\nsurrenders 1\nsurrey 5\nsurround 12\nsurrounded 104\nsurrounding 100\nsurroundings 43\nsurrounds 7\nsurvey 10\nsurveyed 5\nsurveying 4\nsurveyor 3\nsurveyors 1\nsurveys 1\nsurvival 4\nsurvive 18\nsurvived 8\nsurvives 5\nsurviving 2\nsurvivor 3\nsusan 5\nsusceptible 7\nsushchevski 1\nsuspect 12\nsuspected 26\nsuspecting 3\nsuspects 2\nsuspend 6\nsuspended 14\nsuspending 1\nsuspense 6\nsuspension 2\nsuspensions 1\nsuspicion 21\nsuspicions 6\nsuspicious 11\nsusquehanna 3\nsussex 1\nsustain 15\nsustained 28\nsustaining 5\nsustenance 1\nsutherland 11\nsutler 4\nsutlers 3\nsutter 1\nsutton 2\nsuture 37\nsutured 11\nsutures 28\nsuturing 3\nsuvara 1\nsuvorov 20\nsuvorovs 3\nsvayka 1\nsventsyani 5\nswab 2\nswabbed 1\nswabbing 3\nswabs 4\nswag 1\nswagger 3\nswaggerer 1\nswaggering 1\nswaggeringly 1\nswain 2\nswallow 13\nswallowed 10\nswallowing 9\nswam 2\nswamp 6\nswamped 1\nswamps 6\nswan 2\nswandam 8\nswank 1\nswap 1\nswarm 7\nswarmed 4\nswarming 5\nswarthy 6\nswash 1\nsway 11\nswayed 28\nswaying 31\nsways 2\nswear 12\nswearing 1\nswears 1\nsweat 19\nsweated 1\nsweating 12\nsweats 1\nswede 1\nsweden 5\nswedes 5\nswedish 7\nsweep 16\nsweeping 16\nsweeps 1\nsweet 35\nsweetened 1\nsweeter 2\nsweetest 2\nsweetheart 6\nsweetish 1\nsweetly 7\nsweetness 4\nsweets 6\nswell 5\nswelled 5\nswelling 167\nswellings 22\nswells 3\nswept 38\nswerved 3\nswerves 1\nswerving 2\nswift 30\nswifter 1\nswiftly 38\nswiftness 5\nswim 6\nswimmer 1\nswimming 5\nswims 1\nswindle 1\nswindled 1\nswindling 2\nswindon 1\nswine 1\nswing 13\nswinging 17\nswish 2\nswishing 1\nswiss 6\nswitch 2\nswitched 1\nswitches 1\nswitzerland 8\nswollen 58\nswoon 2\nswooped 2\nswooping 2\nsword 42\nswords 10\nswordsman 1\nswore 7\nsworn 6\nswung 14\nsychophants 1\nsycosis 1\nsydney 2\nsyllable 7\nsyllables 2\nsyllabus 7\nsylvan 1\nsylvis 1\nsymbiosis 1\nsymbol 6\nsymbolic 2\nsymbolized 2\nsymbols 7\nsyme 3\nsymmes 1\nsymmetrical 16\nsymmetrically 5\nsymmetry 7\nsympathetic 22\nsympathetically 4\nsympathies 11\nsympathize 5\nsympathized 9\nsympathizers 6\nsympathy 57\nsymphysis 2\nsymptom 21\nsymptoms 171\nsynchondrosis 1\nsynchronously 1\nsyncopal 1\nsyncope 16\nsyndicalism 1\nsyndrome 1\nsynod 3\nsynonymous 5\nsynonyms 1\nsynostosis 4\nsynovia 2\nsynovial 98\nsynovitis 33\nsyntactic 1\nsynthesis 2\nsyphilis 170\nsyphilitic 151\nsyphiloma 2\nsyria 1\nsyrian 1\nsyringe 10\nsyringes 2\nsyringo 1\nsyringomyelia 3\nsyrupy 1\nsystem 241\nsystematic 12\nsystematically 2\nsystems 13\nsystole 1\nsystolic 5\nt 1318\nta 6\ntabernacle 2\ntabes 9\ntabetic 1\ntable 296\ntableaux 1\ntables 19\ntablet 2\ntabletop 1\ntablets 1\ntabor 1\ntabulate 1\ntache 2\ntacit 3\ntaciturn 7\ntaciturnity 1\ntack 3\ntacked 1\ntacking 2\ntackle 5\ntackled 1\ntact 14\ntactful 2\ntactic 1\ntactical 3\ntactician 2\ntactics 7\ntactile 1\ntactless 1\ntaenia 3\ntafa 2\ntaft 36\ntag 2\ntags 2\ntail 40\ntailed 3\ntailing 1\ntailless 1\ntailor 7\ntailors 2\ntails 4\ntaint 5\ntake 616\ntaken 438\ntakeover 1\ntakes 153\ntaketh 1\ntakh 1\ntaking 304\ntakings 3\ntale 21\ntalent 18\ntalented 1\ntalents 9\ntales 17\ntalk 287\ntalkative 4\ntalked 105\ntalker 1\ntalkers 1\ntalking 203\ntalks 15\ntall 74\ntaller 4\ntalleyrand 5\ntallied 1\ntallish 1\ntallow 9\ntalma 1\ntambov 1\ntame 1\ntamed 1\ntammany 3\ntampico 1\ntaney 4\ntangerine 1\ntangible 5\ntangle 3\ntangled 8\ntank 2\ntankerville 1\ntanks 1\ntantalizing 1\ntantamount 2\ntante 1\ntap 10\ntape 2\ntaper 5\ntapering 2\ntapers 4\ntapes 2\ntapestries 1\ntapestry 1\ntapped 10\ntapping 16\ntar 7\ntaras 3\ntarbell 2\ntardy 2\ntarget 5\ntariff 124\ntariffs 19\ntarred 1\ntarry 1\ntarrying 1\ntarsal 4\ntarso 1\ntarsus 5\ntartar 10\ntarutino 32\ntasha 2\ntask 49\ntasks 3\ntassel 1\ntasseled 1\ntaste 23\ntasted 6\ntastes 8\ntat 1\ntatarinova 5\ntatawinova 2\ntate 1\ntatterdemalions 1\ntattered 16\ntattle 1\ntattoo 3\ntattooed 1\ntattooing 3\ntaught 21\ntaunt 1\ntaunted 5\ntaunts 2\ntaurida 4\ntaussig 1\ntaut 1\ntavel 1\ntavern 14\ntaverns 4\ntawny 2\ntax 84\ntaxation 36\ntaxed 5\ntaxes 63\ntaxi 1\ntaxing 5\ntaxpayer 2\ntaxpayers 5\ntaxpaying 2\ntaylor 11\nte 1\ntea 107\nteach 27\nteacher 10\nteachers 14\nteaching 18\nteachings 2\nteam 8\nteamster 2\ntear 24\ntearful 5\ntearfully 1\ntearing 22\ntearless 1\ntears 172\ntearworn 1\ntease 3\nteased 1\nteasing 2\nteaspoonful 1\nteatime 2\ntechnical 12\ntechnically 2\ntechnique 3\ntechnological 1\ntechnology 1\ntecumseh 2\nted 2\nteddy 1\ntedious 6\ntedium 1\nteemed 1\nteenage 1\nteenager 1\nteeth 76\nteetotaler 1\ntelangiectasis 4\ntelecommunication 1\ntelegram 6\ntelegraph 8\ntelegraphs 1\ntelephone 6\ntelescope 4\ntelevision 1\ntell 492\nteller 1\ntelling 75\ntells 20\ntelly 1\ntelyanin 31\ntemerity 2\ntemper 38\ntemperament 5\ntemperamental 1\ntemperance 7\ntemperate 4\ntemperature 103\ntemperatures 4\ntempered 7\ntempest 3\ntempestuous 1\ntemple 22\ntemples 18\ntemporal 8\ntemporarily 21\ntemporary 31\ntempore 1\ntemporize 1\ntemporized 1\ntemporo 4\ntemps 3\ntempt 2\ntemptation 10\ntemptations 8\ntempted 4\ntempting 4\ntempts 1\nten 219\ntenable 1\ntenacious 4\ntenaciously 4\ntenacity 3\ntenant 4\ntenantry 3\ntenants 7\ntend 52\ntended 6\ntendencies 15\ntendency 85\ntender 88\ntendered 2\ntenderly 17\ntenderness 96\ntenders 1\ntending 5\ntendinitis 3\ntendinous 1\ntendo 7\ntendon 129\ntendons 72\ntendre 2\ntends 48\ntenement 3\ntenements 1\ntenets 1\ntenfold 6\ntenn 3\ntennessee 49\ntennis 5\ntennyson 1\nteno 13\ntenor 6\ntenotomy 5\ntens 16\ntense 23\ntensely 4\ntensile 1\ntension 40\ntent 24\ntentacles 1\ntenth 19\ntenths 5\ntents 9\ntenure 21\ntepid 1\nteratoma 4\nterence 1\nterentich 4\nterenty 5\nteres 3\nterm 133\ntermed 15\nterminal 24\nterminals 1\nterminate 6\nterminated 5\nterminates 3\nterminating 1\ntermination 12\nterminations 6\nterminus 1\nterms 148\nterrace 2\nterraced 1\nterrain 1\nterrestrial 3\nterrible 195\nterribly 22\nterrific 6\nterrified 16\nterrify 1\nterrifying 5\nterritorial 18\nterritories 43\nterritory 114\nterror 57\nterrorising 1\nterrorist 1\nterrors 1\nterse 1\ntersely 1\ntertiary 46\ntest 53\ntestament 4\ntested 16\ntestes 1\ntesticle 4\ntestified 1\ntestify 3\ntestily 2\ntestimonials 1\ntestimony 7\ntesting 6\ntestis 3\ntests 7\ntetani 1\ntetanic 12\ntetanus 42\ntetany 2\ntete 9\ntethered 3\ntetragenus 2\nteutonic 3\ntexan 2\ntexans 2\ntexas 63\ntext 26\ntextbook 3\ntextile 10\ntextiles 2\ntexts 7\ntexture 6\nth 51\nthabor 3\nthaler 1\nthames 2\nthan 1206\nthank 105\nthanked 19\nthankful 4\nthanking 2\nthankless 1\nthanks 39\nthanksgiving 6\nthat 12512\nthatch 1\nthatched 2\nthaw 2\nthawing 2\nthe 80030\ntheah 1\ntheater 25\ntheaters 6\ntheatre 4\ntheatrical 4\ntheatrically 1\ntheatricals 4\nthebes 1\nthecal 3\nthecally 1\nthee 26\ntheft 3\nthefts 1\ntheir 2955\ntheirs 14\nthem 2241\ntheme 8\nthemes 3\nthemselves 304\nthen 1558\nthence 10\nthenceforth 1\ntheodore 28\ntheodosia 5\ntheological 3\ntheology 8\ntheoretical 5\ntheoreticians 2\ntheories 21\ntheorise 1\ntheorist 4\ntheorists 3\ntheory 79\ntherapeutic 9\ntherapeutics 2\ntherapist 1\ntherapy 1\nthere 2972\nthereafter 4\nthereby 32\ntherefore 186\ntherefrom 2\ntherein 6\nthereof 26\nthereon 1\ntheresa 3\nthereto 1\nthereupon 6\ntherewith 2\nthermal 1\nthermalgia 1\nthermalgic 2\nthermo 5\nthermogene 1\nthermometer 7\nthermopylae 2\nthese 1231\nthesis 2\nthey 3938\nthick 77\nthickened 34\nthickening 27\nthickenings 3\nthickens 2\nthicker 5\nthickest 1\nthicket 4\nthickly 8\nthickness 15\nthicknesses 1\nthief 12\nthierry 3\nthiers 13\nthiersch 4\nthieves 8\nthigh 39\nthighbone 1\nthighs 2\nthimble 1\nthin 166\nthine 3\nthing 303\nthings 321\nthink 557\nthinker 4\nthinkers 4\nthinking 137\nthinks 25\nthinly 1\nthinned 4\nthinner 10\nthinness 2\nthinning 1\nthins 1\nthird 239\nthirdly 8\nthirds 43\nthirst 13\nthirsty 5\nthirteen 32\nthirteenth 11\nthirties 2\nthirtieth 3\nthirty 123\nthis 4063\nthither 8\nthomas 33\nthompson 1\nthomson 9\nthoracic 25\nthorax 19\nthoreau 1\nthorn 2\nthorns 4\nthorough 14\nthoroughbred 5\nthoroughfare 2\nthoroughly 45\nthoroughness 1\nthose 1201\nthou 42\nthough 650\nthought 902\nthoughtful 20\nthoughtfully 11\nthoughtfulness 1\nthoughtless 4\nthoughtlessly 1\nthoughts 125\nthousand 259\nthousands 93\nthousandth 4\nthrashed 1\nthrashing 3\nthread 16\nthreadbare 1\nthreadneedle 2\nthreads 9\nthreat 11\nthreaten 10\nthreatened 38\nthreatening 26\nthreateningly 10\nthreatens 7\nthreats 7\nthree 584\nthreefold 3\nthrees 4\nthreescore 1\nthresh 2\nthreshing 4\nthreshold 19\nthresholds 1\nthrew 96\nthrice 8\nthrifty 3\nthrill 16\nthrilled 2\nthrilling 6\nthrive 2\nthriving 6\nthroat 67\nthroats 4\nthrob 2\nthrobbed 2\nthrobbing 9\nthrombi 4\nthrombo 4\nthrombosed 3\nthrombosis 39\nthrombotic 2\nthrombus 24\nthrone 26\nthrones 2\nthrong 12\nthronged 6\nthronging 2\nthrongs 2\nthrottle 2\nthrottling 1\nthrough 815\nthroughout 78\nthrow 48\nthrowing 46\nthrown 92\nthrows 7\nthrummed 1\nthrumming 1\nthrust 42\nthrusting 8\nthrusts 1\nthud 10\nthudded 1\nthudding 1\nthuerassa 2\nthumb 51\nthumbs 2\nthumped 1\nthumping 3\nthunder 9\nthunderclaps 2\nthundercloud 1\nthundered 4\nthundering 1\nthunderstorm 1\nthunderstorms 1\nthurlow 1\nthursday 7\nthursdays 3\nthus 212\nthwaites 3\nthwart 1\nthwash 1\nthwee 3\nthwough 1\nthwow 1\nthy 47\nthymus 1\nthyreo 1\nthyreoid 21\nthyself 7\nti 7\ntiara 1\ntiberius 1\ntibia 61\ntibiae 4\ntibial 10\ntibialis 2\ntic 3\ntick 1\nticket 9\ntickets 4\nticking 1\ntickle 1\ntickled 1\ntickling 3\ntidal 1\ntide 33\ntides 1\ntidied 4\ntidiness 1\ntiding 2\ntidings 5\ntidy 4\ntie 15\ntied 40\ntiens 1\ntier 5\ntierce 1\ntiers 1\nties 24\ntiger 3\ntigers 1\ntight 30\ntighten 2\ntightened 3\ntightening 1\ntighter 3\ntightly 22\ntightness 3\ntikhon 82\ntil 2\ntilde 3\ntilden 6\ntile 1\ntiled 1\ntiling 1\ntill 216\ntillage 4\ntilled 15\ntiller 2\ntillers 3\ntilling 3\ntillman 1\ntilsit 16\ntilt 1\ntilted 3\ntilting 2\ntim 1\ntimber 15\ntimbered 1\ntimbers 3\ntime 1529\ntimed 1\ntimely 7\ntimes 236\ntimetable 1\ntimid 31\ntimidity 4\ntimidly 36\ntiming 1\ntimofeevich 1\ntimofeevna 2\ntimokhin 30\ntimothee 1\ntimothy 3\ntin 7\ntincture 6\ntinder 1\ntinel 4\ntinge 6\ntinged 1\ntingle 1\ntingling 17\ntiniest 1\ntinker 1\ntinned 1\ntinsel 1\ntint 11\ntinted 9\ntints 1\ntiny 20\ntip 8\ntippecanoe 5\ntipplers 1\ntips 16\ntipsy 13\ntiptoe 24\ntiptoes 2\ntire 3\ntired 40\ntiredness 2\ntireless 6\ntires 1\ntiresome 7\ntiresomely 1\ntis 5\ntissue 579\ntissues 293\ntit 7\ntitanic 2\ntiti 1\ntitle 39\ntitles 7\ntittle 1\ntitus 2\ntm 128\nto 28766\ntoast 9\ntoastmaster 1\ntoasts 2\ntobacco 48\ntobacconist 1\ntocchi 1\ntocqueville 4\ntoday 93\ntoe 36\ntoes 51\ntogether 260\ntoi 2\ntoil 14\ntoilet 7\ntoilets 3\ntoiling 3\ntoils 4\ntoken 11\ntokens 1\ntokyo 3\ntold 490\ntolerable 4\ntolerably 1\ntolerant 1\ntolerate 2\ntolerated 8\ntoleration 12\ntoll 29\ntolled 1\ntoller 15\ntollers 1\ntolls 1\ntolly 17\ntolstoi 1\ntolstoy 13\ntom 4\ntomahawk 1\ntomato 3\ntomb 3\ntomboy 1\ntombs 1\ntombstones 1\ntomfoolery 1\ntommy 1\ntomorrow 112\ntomowwow 3\ntompkins 1\nton 7\ntone 166\ntoned 4\ntones 32\ntongs 1\ntongue 66\ntongues 6\ntonic 3\ntonics 4\ntonight 16\ntonnage 4\ntonne 1\ntons 9\ntonsil 4\ntonsillar 2\ntonsillitis 2\ntonsils 7\ntonus 1\ntony 1\ntoo 548\ntook 573\ntool 7\ntools 13\ntoombs 3\ntooth 27\ntoothed 1\ntoothless 3\ntop 42\ntopcheenko 1\ntopeka 1\ntophi 3\ntopic 11\ntopical 8\ntopics 34\ntopped 3\ntops 3\ntopsy 3\ntorban 1\ntorch 6\ntorches 1\ntore 18\ntories 17\ntormasov 3\ntorment 6\ntormented 35\ntormenting 11\ntorments 5\ntorn 60\ntornado 1\ntorpedoed 1\ntorpedoes 1\ntorrent 2\ntorrents 1\ntorsion 5\ntorticollis 3\ntortoise 7\ntortuous 13\ntorture 8\ntortured 10\ntortures 1\ntorturing 3\ntory 5\ntorzhok 6\ntoss 4\ntossed 13\ntossing 7\ntotal 35\ntotaled 3\ntotally 9\ntottenham 4\ntottering 1\ntouch 72\ntouche 1\ntouched 78\ntouches 2\ntouching 41\ntouchingly 2\ntouchpans 1\ntough 8\ntoujours 1\ntoulon 4\ntour 12\ntoured 1\ntourism 1\ntourist 1\ntourments 1\ntournament 3\ntourniquet 26\ntourniquets 1\ntousled 2\ntout 12\ntow 1\ntoward 331\ntowards 82\ntowel 6\ntowels 4\ntower 9\ntowered 1\ntowering 2\ntowers 3\ntown 174\ntowns 78\ntownsfolk 2\ntownshend 13\ntownship 4\ntownships 1\ntownsman 1\ntownsmen 1\ntoxaemia 18\ntoxaemias 1\ntoxaemic 1\ntoxic 19\ntoxin 13\ntoxins 51\ntoy 7\ntoying 2\ntoys 2\ntoyshop 1\ntproo 2\ntr 1\ntra 2\ntrabeculae 2\ntrabecular 5\ntrace 36\ntraceable 1\ntraced 13\ntraces 23\ntrachea 5\ntracheal 2\ntracheotomy 6\ntracing 3\ntrack 32\ntrackless 1\ntracks 17\ntract 9\ntractable 1\ntraction 8\ntracts 7\ntrade 217\ntraded 3\ntrademark 31\ntrader 3\ntraders 18\ntrades 11\ntradesman 9\ntradesmen 12\ntradespeople 2\ntrading 25\ntradition 13\ntraditional 4\ntraditionally 1\ntraditions 19\ntrafalgar 3\ntraffic 22\ntragedies 1\ntragedy 9\ntragic 9\ntrail 17\ntrailed 1\ntrailer 3\ntrailing 3\ntrails 12\ntrain 57\ntrained 23\ntrainee 1\ntrainer 1\ntraining 16\ntrainmen 2\ntrains 21\ntrait 7\ntraitor 20\ntraitorous 1\ntraitors 15\ntraits 3\ntrajectory 1\ntrakh 1\ntrammeled 1\ntramp 12\ntramped 1\ntramping 2\ntrample 1\ntrampled 10\ntrampling 5\ntrance 2\ntranquil 21\ntranquility 2\ntranquille 2\ntranquillity 19\ntranquillize 1\ntranquillized 1\ntranquilly 1\ntrans 2\ntransact 1\ntransaction 15\ntransactions 7\ntranscend 1\ntranscribe 5\ntranscriber 2\ntranscription 6\ntransfer 20\ntransference 10\ntransferences 1\ntransferred 52\ntransferring 3\ntransfers 3\ntransfigured 2\ntransfixed 2\ntransfixes 1\ntransform 3\ntransformation 16\ntransformed 23\ntransformer 1\ntransforming 3\ntransfusion 7\ntransgressed 1\ntransgresses 1\ntransgressions 1\ntransient 8\ntransit 2\ntransition 13\ntransitional 1\ntransitions 2\ntransitory 1\ntranslate 4\ntranslated 8\ntranslating 2\ntranslation 3\ntranslations 1\ntranslator 1\ntranslucent 7\ntranslucently 1\ntransmissible 1\ntransmission 8\ntransmit 14\ntransmitted 21\ntransmitting 4\ntransmoskva 1\ntransmuted 1\ntransparent 11\ntransparently 1\ntranspired 2\ntransplant 1\ntransplantation 13\ntransplanted 9\ntransplanting 3\ntransport 29\ntransportation 21\ntransported 7\ntransportee 1\ntransporting 3\ntransports 5\ntransshipments 1\ntransshipped 1\ntransudation 2\ntransudes 1\ntransuding 1\ntransverse 17\ntransversely 1\ntransylvania 3\ntrap 42\ntrapezius 4\ntrappers 4\ntrappings 1\ntraps 2\ntrash 3\ntrata 1\ntrauma 10\ntraumatic 50\ntraumatism 4\ntraun 1\ntravail 3\ntravel 29\ntraveled 13\ntraveler 19\ntravelers 11\ntraveling 20\ntravelled 8\ntraveller 4\ntravellers 2\ntravelling 4\ntravels 4\ntraverse 1\ntraversed 4\ntray 8\ntreacheries 1\ntreacherous 1\ntreachery 14\ntread 12\ntreading 6\ntreadmill 1\ntreason 23\ntreasonable 4\ntreasure 19\ntreasured 1\ntreasurer 3\ntreasures 2\ntreasuries 2\ntreasury 38\ntreat 31\ntreated 95\ntreaties 21\ntreating 22\ntreatise 1\ntreatises 3\ntreatment 464\ntreatments 1\ntreats 2\ntreaty 113\ntreble 2\ntrebled 1\ntree 42\ntreeless 2\ntrees 51\ntreetops 1\ntrefoil 1\ntremble 5\ntrembled 27\ntremblement 1\ntrembles 1\ntrembling 49\ntremendous 10\ntremens 4\ntremor 7\ntremors 4\ntremulous 8\ntrench 18\ntrenchant 1\ntrenches 4\ntrend 8\ntrendelenburg 3\ntrent 1\ntrenton 5\ntrepak 2\ntrephine 5\ntrephined 1\ntrepidation 3\ntrepoff 1\ntreponema 1\ntres 4\ntresor 1\ntrespass 1\ntrespasser 1\ntrespasses 1\ntresses 2\ntrestle 1\ntrevelyan 2\ntrial 38\ntrials 5\ntriangle 6\ntriangles 1\ntriangular 2\ntribe 4\ntribes 6\ntribesmen 1\ntribunal 9\ntribunals 4\ntribune 3\ntributaries 5\ntributary 1\ntribute 17\ntributes 2\ntriceps 4\ntrichiniasis 1\ntrick 17\ntricked 3\ntrickery 1\ntrickle 1\ntrickled 3\ntrickles 1\ntricks 5\ntricky 1\ntried 225\ntries 5\ntrifacial 1\ntrifies 1\ntrifle 11\ntrifled 1\ntrifles 16\ntrifling 12\ntrigeminal 4\ntrigeminus 1\ntrigger 4\ntrigone 3\ntrilled 1\ntrilling 1\ntrillion 5\ntrills 1\ntrim 5\ntrimly 1\ntrimmed 8\ntrimming 1\ntrincomalee 1\ntrinity 4\ntrional 1\ntrip 12\ntripartite 2\ntriple 2\ntripped 1\ntripping 4\ntrips 1\ntrismus 5\ntrite 1\ntriumph 60\ntriumphal 2\ntriumphant 16\ntriumphantly 9\ntriumphed 2\ntriumphs 4\ntrivial 38\ntriviality 1\ntrocar 3\ntrochanter 7\ntrochanteric 1\ntrochlear 3\ntrod 3\ntrodden 15\ntroitsa 8\ntrolley 1\ntrollope 2\ntroop 2\ntrooped 1\ntrooper 2\ntroopers 1\ntroops 319\ntrop 1\ntrophic 20\ntrophies 3\ntrophy 4\ntropical 10\ntropics 2\ntrot 22\ntrotted 7\ntrotter 3\ntrotting 2\ntrouble 57\ntroubled 17\ntroubles 25\ntroublesome 10\ntroubling 5\ntrough 3\ntroughs 1\ntroupe 1\ntrouser 4\ntrousers 21\ntrousseau 4\ntrout 2\ntrouvez 1\ntrove 1\ntrowel 4\ntroy 3\ntroyka 13\ntroykas 5\ntruce 17\ntruck 1\ntrue 205\ntruer 1\ntruly 18\ntrumbull 1\ntrumpet 3\ntrumpeters 2\ntrumpets 1\ntruncated 1\ntrunila 2\ntrunk 73\ntrunks 50\ntruss 1\ntrust 68\ntrusted 16\ntrustee 2\ntrustees 11\ntrustful 1\ntrustfulness 1\ntrusting 3\ntrusts 57\ntrustworthy 2\ntrusty 3\ntruth 115\ntruthful 2\ntruthfully 1\ntruths 3\ntry 87\ntrying 181\ntrypanosomiasis 1\ntsar 56\ntsarevich 12\ntsarevo 4\ntsaritsin 1\ntsars 3\ntserkov 3\ntshausen 1\ntss 1\ntt 1\ntu 4\ntub 4\ntubal 1\ntube 45\ntubercle 65\ntubercles 3\ntubercular 1\ntuberculin 8\ntuberculosis 77\ntuberculous 241\ntuberosity 4\ntubes 13\ntubman 1\ntubs 7\ntubular 5\ntubules 2\ntubulo 3\ntuchkov 6\ntuck 2\ntucked 12\ntucking 3\ntucson 2\ntudor 1\ntuesday 5\ntuesdays 1\ntuffier 1\ntuft 4\ntufts 7\ntug 4\ntugendbund 5\ntugged 9\ntugging 2\ntula 8\ntumble 3\ntumbled 5\ntumbler 7\ntumblerful 1\ntumblerfuls 1\ntumblers 3\ntumbling 1\ntumor 2\ntumour 223\ntumours 189\ntumult 2\ntumultuous 2\ntumultuously 1\ntune 15\ntuned 4\ntunes 1\ntunic 2\ntunica 13\ntunics 1\ntuning 1\ntunnel 4\ntunneled 1\ntunnels 2\nturbid 2\nturbinate 1\nturbine 1\nturbulence 2\nturbulent 2\nturenne 2\nturf 3\nturk 3\nturkey 20\nturkish 12\nturks 6\nturmoil 10\nturn 188\nturned 502\nturner 25\nturning 208\nturnover 1\nturns 26\nturpentine 6\nturreted 1\nturrets 2\nturtle 2\nturvy 2\ntuscans 1\ntuscaroras 1\ntushin 75\ntut 11\ntutelage 5\ntutolmin 3\ntutor 17\ntutoring 1\ntutors 9\ntutti 1\ntutuila 3\ntver 7\ntverskaya 1\ntverskoy 2\ntwaddle 1\ntwain 1\ntwanging 1\ntwansports 1\ntwas 3\ntweasuwy 1\ntweed 6\ntwelfth 11\ntwelve 43\ntwelvemonth 2\ntwenties 1\ntwentieth 19\ntwenty 272\ntwice 84\ntwicks 1\ntwig 1\ntwigs 3\ntwilight 7\ntwin 4\ntwinges 1\ntwinkle 2\ntwinkled 5\ntwinkling 4\ntwins 4\ntwirled 4\ntwirling 2\ntwist 14\ntwisted 21\ntwisting 10\ntwists 1\ntwitch 6\ntwitched 15\ntwitches 1\ntwitching 17\ntwitchings 3\ntwitter 1\ntwo 1138\ntwofold 3\ntwopence 2\ntwos 3\ntwot 1\ntwue 1\ntwy 3\ntxt 8\nty 1\ntying 8\ntyler 15\ntympanitic 1\ntympanum 1\ntyne 1\ntype 87\ntypes 33\ntypewrite 1\ntypewriter 3\ntypewriting 4\ntypewritist 1\ntypewritten 6\ntyphoid 21\ntyphosus 2\ntyphus 3\ntypical 31\ntypically 3\ntyrannical 4\ntyranny 9\ntyrant 3\ntyre 1\ntyrosin 1\ntz 1\nu 25\nudder 1\nuffa 1\nugh 3\nuglier 1\nugliness 1\nugly 11\nuhlan 3\nuhlans 28\nukase 4\nukraine 3\nukrainian 2\nukranian 1\nulcer 158\nulcerans 1\nulcerate 10\nulcerated 15\nulcerates 3\nulcerating 4\nulceration 53\nulcerative 4\nulcers 119\nulm 12\nulna 7\nulnae 2\nulnar 17\nulnaris 3\nulster 6\nulsters 1\nulterior 1\nultimate 16\nultimately 29\nultimatum 1\nultra 2\nulysses 3\nulyulyu 6\nulyulyuing 2\nulyulyulyu 2\nulyulyulyulyu 1\numbilical 2\numbilicus 3\numbrella 5\nun 19\nunabashed 3\nunabated 1\nunable 146\nunabsorbable 2\nunacceptable 2\nunaccompanied 1\nunaccountable 3\nunaccustomed 7\nunacknowledged 1\nunacquainted 2\nunaffected 6\nunaided 1\nunalienable 1\nunalterable 1\nunalterably 1\nunaltered 3\nunamiable 1\nunanimity 1\nunanimous 10\nunanimously 3\nunanswerable 3\nunanswered 2\nunappreciated 1\nunapproachability 1\nunapproachable 2\nunarmed 4\nunassailable 1\nunattainable 5\nunattended 5\nunattractive 2\nunattractively 1\nunauthorized 1\nunavailing 1\nunavenged 1\nunavoidable 10\nunaware 8\nunawares 4\nunbearable 2\nunbecoming 2\nunbelief 1\nunbent 1\nunborn 1\nunbounded 1\nunbreakable 1\nunbroken 16\nunbrushed 1\nunburned 2\nunbuttoned 12\nunbuttoning 1\nunbuttressed 1\nuncalled 3\nuncanny 1\nuncarpeted 1\nunceasing 2\nunceasingly 5\nuncertain 30\nuncertainties 2\nuncertainty 17\nunchanged 15\nunchanging 7\nunchangingly 1\nunclasped 1\nunclasping 1\nunclaspings 1\nuncle 135\nunclean 2\nunclear 1\nunclothed 1\nunclouded 2\nuncomfortable 25\nuncommon 29\nuncommonly 2\nuncomplaining 1\nuncomplainingly 1\nuncomplicated 6\nuncomprehended 2\nuncompromising 6\nunconcern 3\nunconcerned 2\nunconcernedly 3\nunconciously 1\nunconciousness 1\nunconditional 3\nunconditionally 2\nunconditioned 2\nunconfirmed 1\nuncongenial 1\nunconnected 2\nunconquerable 1\nunconscious 24\nunconsciously 29\nunconsciousness 3\nunconsidered 1\nunconstitutional 16\nuncontrollable 4\nuncontrollably 1\nuncontrolled 3\nunconvinced 2\nuncorded 2\nuncourteous 1\nuncouth 2\nuncover 2\nuncovered 12\nuncrossing 1\nunction 5\nuncultivated 1\nuncut 1\nund 2\nundah 1\nundated 1\nundaunted 4\nundecided 13\nundefended 1\nundefinable 3\nundefined 4\nundemocratic 2\nunder 963\nunderclothes 1\nunderclothing 6\nundercurrents 3\nunderdone 1\nunderfoot 2\nundergo 44\nundergoes 18\nundergoing 12\nundergone 9\nundergraduate 1\nunderground 8\nundergrowth 1\nunderline 4\nunderlip 1\nunderlying 19\nundermine 6\nundermined 5\nundermining 5\nunderneath 9\nundersell 1\nundersized 1\nunderstand 412\nunderstandable 3\nunderstanding 78\nunderstands 7\nunderstood 222\nundertake 16\nundertaken 16\nundertakers 1\nundertakes 1\nundertaking 24\nundertakings 7\nundertone 1\nundertones 1\nundertook 9\nundervalued 2\nunderwood 46\nundeserved 2\nundeservedly 1\nundesirable 8\nundetermined 1\nundeveloped 2\nundid 1\nundifferentiated 2\nundignified 1\nundiluted 3\nundiscerning 2\nundisciplined 1\nundisguised 1\nundismayed 2\nundisputed 1\nundisturbed 13\nundivided 2\nundo 5\nundoing 3\nundone 5\nundoubted 10\nundoubtedly 31\nundreamed 1\nundress 9\nundressed 12\nundressing 13\nundue 8\nundulating 1\nundulations 1\nunduly 11\nundyed 1\nune 8\nunearthed 1\nuneasily 18\nuneasiness 11\nuneasy 15\nunelected 1\nunembarrassed 1\nunemployed 3\nunemployment 4\nunending 3\nunendurable 1\nunenforceability 2\nunenforced 2\nunentrenched 3\nunequal 6\nunequaled 1\nunequally 3\nunequivocal 1\nunerring 1\nunerringly 1\nunescorted 1\nuneven 13\nunevenly 3\nunevoked 1\nunexecuted 4\nunexpected 45\nunexpectedly 57\nunexpectedness 2\nunexpended 1\nunexplained 3\nunexplored 3\nunexposed 1\nunexpressed 2\nunfailingly 2\nunfair 10\nunfairly 1\nunfaithful 1\nunfamiliar 13\nunfastened 6\nunfathomable 5\nunfavorable 8\nunfavourable 7\nunfeigned 1\nunfenced 1\nunfettered 2\nunfinished 9\nunfit 5\nunfits 1\nunflinching 1\nunfold 1\nunfolded 5\nunfolding 4\nunfordable 1\nunforeseen 6\nunfortunate 36\nunfortunately 11\nunfortunates 2\nunfounded 1\nunfriendly 4\nunfrocked 1\nunfulfilled 1\nunfurled 1\nungainly 3\nungenerous 1\nungenerously 1\nungodly 1\nungovernable 1\nungraceful 2\nungrateful 7\nunguarded 2\nunhampered 1\nunhappily 3\nunhappiness 3\nunhappy 34\nunharness 2\nunharnessed 3\nunhealthy 14\nunheard 6\nunheeded 2\nunheroic 1\nunhesitating 2\nunhesitatingly 1\nunhindered 2\nunhinged 1\nunhooked 1\nunicorn 1\nunified 1\nuniform 123\nuniformed 2\nuniformity 6\nuniformly 7\nuniforms 34\nunifying 1\nunilateral 6\nunilocular 1\nunimpaired 1\nunimpeachable 2\nunimportance 3\nunimportant 12\nuninflamed 1\nuninfluenced 1\nuninitiated 1\nuninjured 5\nuninstructed 1\nunintelligible 7\nunintended 1\nunintentional 2\nunintentionally 3\nuninterested 1\nuninteresting 2\nuninterrupted 3\nuninterruptedly 2\nuninvited 1\nunion 273\nunionism 3\nunionist 2\nunionists 7\nunions 53\nunique 14\nunison 1\nunit 10\nunite 36\nunited 561\nunites 3\nuniting 15\nunits 13\nunity 19\nunivers 1\nuniversal 37\nuniversally 7\nuniverse 11\nuniversities 7\nuniversity 31\nunjust 10\nunjustifiable 1\nunjustly 5\nunkempt 1\nunkind 4\nunknown 87\nunknowns 1\nunlawful 10\nunlearned 2\nunleashed 1\nunless 94\nunlicensed 1\nunlicked 1\nunlifting 1\nunlike 46\nunlikely 8\nunlimbered 4\nunlimited 8\nunlink 2\nunload 3\nunloaded 3\nunloading 3\nunlocked 8\nunlocking 3\nunloosed 1\nunlucky 6\nunmade 1\nunmarred 1\nunmarried 9\nunmarry 1\nunmask 1\nunmeaningly 1\nunmelted 1\nunmercifully 1\nunmilitary 1\nunmindful 2\nunmistakable 2\nunmistakably 1\nunmixed 1\nunmoved 3\nunna 2\nunnamed 3\nunnatural 37\nunnaturally 14\nunnaturalness 1\nunnecessarily 1\nunnecessary 30\nunnerved 1\nunnoticed 14\nunobliterated 1\nunobservant 3\nunobserved 6\nunobtrusive 1\nunobtrusively 2\nunoccupied 6\nunofficial 6\nunofficially 1\nunopened 2\nunopposed 1\nunorganized 1\nunpack 1\nunpacked 1\nunpacking 1\nunpaid 4\nunpapered 1\nunparalleled 3\nunpardoned 1\nunplaited 1\nunplastered 2\nunpleasant 53\nunpleasantly 14\nunpleasantness 5\nunpolished 1\nunpopular 2\nunpopularity 2\nunpracticed 1\nunprecedented 5\nunpretentious 1\nunprofitable 2\nunprovoked 1\nunpunished 2\nunqualified 2\nunquestionable 3\nunquestionably 3\nunquestioning 1\nunravel 2\nunraveled 1\nunravelled 1\nunravelling 1\nunreal 2\nunreaped 1\nunreasonable 11\nunreasonably 1\nunreasoning 9\nunrecognisable 1\nunrecognizable 2\nunrecorded 1\nunreduced 1\nunregulated 1\nunrelated 2\nunremitting 1\nunrepaired 1\nunrest 8\nunrestrainable 1\nunrestrained 1\nunrestricted 2\nunripe 1\nunrolling 1\nunsaddling 1\nunsanitary 1\nunsatisfactory 10\nunsatisfied 1\nunscrupulous 1\nunseat 1\nunseemly 7\nunseen 16\nunselfishly 1\nunsettled 5\nunshakable 4\nunshaken 2\nunshapely 1\nunshaven 2\nunsheathed 1\nunsheathing 1\nunsightliness 1\nunsightly 9\nunskilful 1\nunskilled 2\nunsmiling 1\nunsociable 1\nunsoldierly 1\nunsolicited 4\nunsolved 5\nunsound 3\nunsoundly 1\nunsparing 2\nunsparingly 1\nunspent 1\nunspoilt 1\nunspoken 1\nunstable 3\nunsteady 6\nunstinted 2\nunstrapping 1\nunstriped 1\nunsuccessful 8\nunsuitable 8\nunsuited 3\nunsurpassable 1\nunsuspected 2\nunswervingly 1\nunsymmetrically 1\nunsympathizing 1\nunsystematic 1\nuntamed 1\nuntaxed 1\nunteachable 1\nunterkunft 4\nunthinkable 7\nuntidiness 1\nuntidy 1\nuntied 2\nuntil 325\nuntilled 2\nuntimely 3\nuntiring 1\nunto 7\nuntold 3\nuntouched 5\nuntrained 2\nuntreated 6\nuntried 1\nuntroubled 3\nuntrue 7\nuntrustworthy 1\nuntruth 3\nunturned 2\nuntying 1\nununited 1\nunused 2\nunusual 32\nunusually 12\nunutterable 1\nunvarying 1\nunveiling 1\nunvexed 3\nunwanted 1\nunwary 1\nunweaned 1\nunwelcome 1\nunwell 9\nunwilling 12\nunwillingly 1\nunwillingness 2\nunwinding 2\nunwise 3\nunwittingly 2\nunwonted 2\nunwontedly 1\nunworthiness 1\nunworthy 13\nunwound 2\nunwounded 5\nunwrapped 1\nunwrinkled 2\nunwritten 5\nunyielding 2\nup 2284\nupbraid 2\nupbraided 1\nupbraiding 2\nupbringing 1\nupbuilding 1\nupdate 1\nupdated 4\nupgrade 1\nupheaval 4\nupheld 3\nuphill 6\nuphold 5\nupholder 1\nupholding 4\nupholds 1\nupkeep 2\nupland 6\nuplands 3\nuplifted 7\nuplifting 1\nuplifts 1\nupon 1111\nupper 130\nuppermost 4\nupraised 2\nupright 8\nuprightness 1\nuprising 12\nuprisings 5\nuproar 4\nuprush 1\nupset 26\nupsetting 3\nupside 4\nupstairs 27\nupstream 1\nupswing 1\nupward 18\nupwards 21\nurachus 1\nurate 4\nurates 4\nuratic 1\nurban 6\nurbanity 1\nurchin 1\nurea 2\nureter 1\nureters 2\nurethra 9\nurethral 3\nurethritis 3\nurge 10\nurged 51\nurgency 4\nurgent 13\nurgently 5\nurges 1\nurging 16\nuric 1\nurica 2\nurinary 9\nurine 30\nurope 3\nurticaria 1\nurticarial 1\nuruguay 1\nurusov 1\nus 684\nusage 10\nuse 320\nused 276\nuseful 73\nusefulness 6\nuseless 48\nuselessly 8\nuselessness 2\nuser 8\nusers 4\nuses 9\nusher 1\nushered 8\nushering 2\nusing 48\nusual 178\nusually 529\nusurpation 1\nusurpations 2\nusurped 1\nusurper 3\nusvyazh 1\nut 4\nutah 21\nutensils 2\nuterine 11\nutero 1\nuterus 16\nutf 1\nutilise 1\nutilised 1\nutilities 10\nutility 7\nutilize 1\nutilized 2\nutilizes 1\nutilizing 1\nutitsa 6\nutmost 18\nutopian 2\nutter 41\nutterance 6\nutterances 1\nuttered 58\nuttering 18\nutterly 21\nuttermost 5\nutters 1\nuvarka 3\nuvarov 9\nuvula 1\nv 51\nva 7\nvacancies 13\nvacancy 10\nvacant 10\nvacantly 3\nvacated 3\nvacation 1\nvaccination 2\nvaccine 17\nvaccines 13\nvacillating 2\nvacillation 1\nvacuous 2\nvacuum 1\nvagabond 2\nvagabonds 1\nvagaries 1\nvagina 5\nvaginal 3\nvaginitis 1\nvagrancy 1\nvagrant 2\nvagrants 1\nvague 39\nvaguely 15\nvagueness 1\nvagus 4\nvain 30\nvainglorious 1\nvainly 20\nval 1\nvale 1\nvalentine 1\nvalet 44\nvalets 5\nvalgum 1\nvalgus 5\nvaliant 8\nvaliantly 1\nvalid 10\nvalidity 4\nvalise 1\nvallandigham 2\nvalley 78\nvalleys 11\nvalor 9\nvalour 1\nvalse 2\nvalses 2\nvaluable 33\nvaluables 3\nvaluation 1\nvalue 106\nvalued 15\nvalueless 2\nvalues 7\nvaluev 5\nvaluevo 6\nvalve 6\nvalves 20\nvalvular 3\nvan 19\nvancouver 1\nvandalia 1\nvanderbilts 2\nvanguard 17\nvanilla 6\nvanish 8\nvanished 35\nvanishes 3\nvanishing 7\nvanities 1\nvanity 18\nvanka 1\nvanquish 4\nvanquished 10\nvanquishing 1\nvantage 2\nvanya 1\nvapor 1\nvapour 1\nvara 2\nvariable 16\nvariance 5\nvariant 1\nvariation 8\nvariations 16\nvarices 1\nvaricocele 1\nvaricose 42\nvaricosity 4\nvaried 12\nvariegated 1\nvaries 55\nvarieties 111\nvariety 83\nvarious 155\nvariously 8\nvarix 33\nvarnish 3\nvarnished 1\nvarum 1\nvarus 2\nvarvarka 1\nvary 56\nvarying 34\nvas 1\nvasa 1\nvascular 44\nvascularised 1\nvascularity 6\nvase 1\nvaselin 1\nvaseline 7\nvases 1\nvasilchikov 1\nvasilevich 2\nvasilevna 1\nvasili 243\nvasilich 10\nvasilisa 1\nvasilyevich 3\nvaska 16\nvaso 6\nvasomotor 1\nvasorum 1\nvassal 1\nvassalage 1\nvassar 3\nvast 48\nvastus 1\nvat 1\nvault 8\nve 153\nveal 1\nvector 1\nveered 2\nvegetable 5\nvegetables 6\nvegetarian 1\nvegetation 3\nvegetative 1\nvehemence 6\nvehement 4\nvehemently 6\nvehicle 14\nvehicles 21\nveil 16\nveiled 11\nvein 116\nveins 134\nveldt 4\nvell 2\nvelocity 9\nvelvet 18\nvelvets 1\nvelvety 5\nvena 3\nvenae 1\nvenal 1\nvenango 2\nvendor 1\nvenerable 7\nveneration 4\nvenereal 12\nvenesection 3\nvenetian 2\nvenezuela 15\nvenezuelan 8\nvengeance 8\nvenial 2\nvenice 3\nvenner 1\nvenom 3\nvenomous 4\nvenomously 1\nvenosum 3\nvenous 57\nvent 12\nventer 1\nventilate 1\nventilated 1\nventilator 14\nventilators 1\nventral 1\nventricle 1\nventricles 1\nventure 17\nventured 30\nventures 1\nventuring 2\nventurous 1\nvenue 2\nvenules 1\nvenus 1\nver 2\nvera 75\nveranda 8\nverb 2\nverbal 7\nverbally 1\nverbatim 1\nverbs 1\nverdict 11\nverdure 4\nvere 2\nvereshchagin 24\nverge 8\nvergennes 3\nverging 2\nveriest 1\nverified 1\nverifies 1\nverify 2\nverifying 1\nverily 2\nveritable 3\nverlegt 1\nverlust 1\nvermont 12\nvernal 1\nvernon 4\nverona 1\nveronal 1\nverrons 1\nverruca 2\nverrucosus 2\nversa 5\nversailles 3\nverse 8\nversed 2\nverser 2\nverses 22\nversion 10\nversions 3\nverso 1\nversus 5\nvert 1\nvertebra 2\nvertebrae 20\nvertebral 19\nvertex 1\nvertical 6\nvertically 5\nvery 1340\nvesenny 4\nvesenya 3\nvesical 1\nvesication 2\nvesicle 1\nvesicles 7\nvesico 1\nvesna 1\nvespers 3\nvespertime 1\nvessel 137\nvessels 249\nvest 5\nvestas 1\nvested 21\nvestibule 11\nvestige 2\nvestiges 1\nvesting 2\nvestment 1\nvestments 2\nvestries 1\nvestry 1\nvests 1\nveteran 5\nveterans 8\nveterinarians 2\nveterinary 3\nveto 9\nvetoed 6\nvetoes 1\nvetoing 1\nveux 1\nvewy 8\nvex 3\nvexation 26\nvexations 1\nvexatious 3\nvexed 21\nvexing 1\nvi 37\nvia 3\nviable 2\nviands 2\nvibrated 2\nvibrating 3\nvibration 2\nvibratory 1\nvibrion 2\nvicar 2\nvice 58\nviceroy 1\nvices 2\nvicinity 49\nvicious 18\nviciously 2\nvicissitudes 3\nvicksburg 3\nvicomte 43\nvictim 18\nvictimized 1\nvictims 9\nvictoire 1\nvictor 8\nvictoria 6\nvictories 19\nvictorieuses 1\nvictorious 16\nvictoriously 1\nvictors 3\nvictory 131\nvictuals 1\nvideo 2\nvie 3\nvienna 51\nviennese 3\nviens 2\nvient 1\nvierge 1\nvieux 1\nview 179\nviewed 21\nviewer 1\nviewing 7\nviewpoint 1\nviews 64\nvif 1\nviflyanka 2\nvight 1\nvigil 1\nvigilance 4\nvigilant 2\nvigilantes 1\nvigor 13\nvigorous 40\nvigorously 24\nvigour 1\nvii 34\nviii 39\nviktorovna 1\nvilas 1\nvile 16\nvileness 4\nvilest 3\nviliya 1\nvilkavisski 2\nvill 3\nvilla 8\nvillage 160\nvillager 1\nvillagers 1\nvillages 38\nvillain 14\nvillainies 1\nvillains 7\nvillainy 1\nvillas 2\nville 4\nvilleneuve 2\nvilli 1\nvillier 1\nvillous 3\nvilna 32\nvinaigrette 1\nvincennes 2\nvincent 10\nvindicate 1\nvindicated 3\nvindicating 2\nvindication 6\nvindictive 6\nvindictively 1\nvine 1\nvinegar 3\nvines 1\nvinesse 1\nvineyards 1\nviolate 3\nviolated 9\nviolates 3\nviolating 4\nviolation 16\nviolations 4\nviolators 1\nviolence 49\nviolent 30\nviolently 14\nviolet 8\nviolin 8\nviolins 1\nviper 2\nvirchow 6\nvirgil 1\nvirgin 17\nvirginal 1\nvirginia 148\nvirginian 1\nvirginians 1\nvirginias 1\nvirile 3\nvirtual 1\nvirtually 5\nvirtue 56\nvirtues 14\nvirtuous 15\nvirulence 19\nvirulent 16\nvirulently 2\nvirus 32\nvis 1\nvisage 1\nviscera 14\nvisceral 1\nviscid 3\nviscous 2\nvise 2\nvish 1\nvisibility 1\nvisible 60\nvisibly 3\nvision 12\nvisionary 1\nvisions 3\nvisit 81\nvisitation 1\nvisited 28\nvisiting 12\nvisitor 74\nvisitors 69\nvisits 11\nvisloukhovo 2\nvista 2\nvistas 1\nvistula 6\nvisual 2\nvisualized 1\nvital 41\nvitality 41\nvitally 1\nvitamin 1\nvitebsk 8\nvitiated 1\nvitreous 1\nvitriol 1\nvittorio 1\nvituperation 1\nviva 1\nvivacity 3\nvivandiere 1\nvivants 1\nvivarika 1\nvivat 4\nvive 19\nvivid 11\nvividly 25\nvividness 3\nviz 1\nvizard 1\nvladimir 5\nvladimirovich 10\nvlas 1\nvo 1\nvocabulary 3\nvocal 3\nvocation 8\nvocational 3\nvodka 24\nvogel 2\nvogels 1\nvogue 7\nvoice 462\nvoiced 4\nvoices 149\nvoid 21\nvoila 5\nvoir 4\nvoisinage 2\nvoit 1\nvol 81\nvolatile 4\nvolcanic 2\nvolcano 3\nvolga 1\nvolition 3\nvolkmann 5\nvolkonski 12\nvolkonsky 1\nvolley 4\nvolleys 1\nvols 27\nvoltage 1\nvoltaire 5\nvoltaires 1\nvoltorn 1\nvolume 30\nvolumes 6\nvoluminous 1\nvoluntarily 6\nvoluntary 17\nvolunteer 7\nvolunteered 2\nvolunteering 1\nvolunteers 22\nvomer 1\nvomit 1\nvomited 1\nvomiting 18\nvon 11\nvoracious 1\nvoraciously 1\nvoronezh 18\nvorontsovo 2\nvortex 2\nvos 1\nvot 2\nvote 110\nvoted 22\nvoter 4\nvoters 43\nvotes 60\nvoting 6\nvotive 1\nvotre 2\nvoucher 1\nvouching 1\nvouchsafe 1\nvoulez 1\nvoulu 2\nvous 33\nvousmemes 1\nvow 5\nvowed 3\nvows 2\nvoyage 12\nvoyages 1\nvoyez 1\nvoyna 2\nvoyons 2\nvozdvizhenka 7\nvrazhek 1\nvrazhok 1\nvrbna 1\nvreatening 1\nvs 9\nvue 1\nvulcanite 1\nvulgar 5\nvulgaris 1\nvulgarity 1\nvulnerable 2\nvult 1\nvulva 4\nvulvo 1\nvy 1\nvyazemski 1\nvyazma 20\nvyazmitinov 5\nvying 1\nw 70\nwa 1\nwabash 1\nwad 2\nwadding 2\nwaddled 1\nwaddling 5\nwade 1\nwaded 2\nwading 1\nwafers 2\nwafted 1\nwafting 1\nwag 5\nwage 17\nwaged 13\nwager 3\nwagered 1\nwages 50\nwagged 2\nwagging 1\nwaggish 1\nwaggled 1\nwaggon 3\nwaging 3\nwagon 27\nwagoners 1\nwagons 38\nwagram 3\nwags 2\nwail 9\nwailed 5\nwailing 5\nwaise 1\nwaising 1\nwaist 17\nwaistcoat 22\nwaisted 1\nwaists 1\nwait 127\nwaited 51\nwaiter 7\nwaiting 183\nwaitresses 1\nwaits 1\nwaived 1\nwake 27\nwaked 3\nwaken 2\nwakened 1\nwakens 1\nwakes 2\nwaking 19\nwaldo 1\nwales 1\nwalk 75\nwalked 100\nwalker 2\nwalking 71\nwalks 10\nwall 190\nwallachia 2\nwallachian 1\nwalled 3\nwallenstein 1\nwallerian 1\nwallet 4\nwallflower 1\nwalling 3\nwallowed 1\nwalls 72\nwalnut 6\nwalnuts 1\nwalpole 3\nwalsall 1\nwalsingham 1\nwalt 1\nwalter 2\nwaltz 4\nwan 1\nwand 1\nwander 10\nwandered 15\nwanderer 1\nwanderers 1\nwandering 14\nwanderings 2\nwanders 1\nwaned 1\nwaning 3\nwant 323\nwanted 213\nwanting 12\nwanton 4\nwantonly 1\nwantonness 1\nwants 39\nwaps 1\nwar 881\nwarburton 1\nward 13\nwarding 1\nwardrobe 7\nwardrop 4\nwards 7\nware 3\nwarehouse 4\nwarehouses 3\nwares 3\nwarfare 41\nwarily 1\nwarlike 10\nwarm 75\nwarman 1\nwarmed 9\nwarmer 6\nwarmest 5\nwarming 4\nwarmly 21\nwarmth 13\nwarn 11\nwarne 1\nwarned 18\nwarning 32\nwarnings 6\nwarns 1\nwarp 2\nwarped 1\nwarrant 15\nwarranted 3\nwarranties 13\nwarrants 4\nwarranty 9\nwarren 6\nwarring 4\nwarrior 11\nwarriors 6\nwars 67\nwarsaw 6\nwarship 3\nwarships 4\nwart 5\nwartime 4\nwarts 15\nwarty 7\nwary 3\nwas 11410\nwascal 1\nwash 20\nwashed 23\nwasherwomen 1\nwashing 23\nwashington 166\nwashingtons 1\nwasn 14\nwasps 2\nwassermann 9\nwast 1\nwastage 1\nwaste 23\nwasted 20\nwasteful 2\nwasteland 1\nwastes 2\nwasting 16\nwat 1\nwatch 51\nwatchdog 1\nwatched 58\nwatches 1\nwatchful 6\nwatchhouse 4\nwatching 44\nwatchmaker 1\nwatchman 9\nwatchword 3\nwater 187\nwatered 4\nwatering 3\nwaterloo 9\nwaterproof 4\nwaters 30\nwaterway 1\nwaterways 6\nwatery 11\nwatson 83\nwatt 3\nwattle 15\nwave 26\nwaved 29\nwaver 1\nwavered 3\nwavering 8\nwaves 16\nwaving 18\nwavy 5\nwax 22\nwaxed 1\nwaxen 2\nwaxy 7\nway 859\nwayfaring 1\nwaylaid 3\nwayne 1\nways 52\nwayside 2\nwayward 1\nwe 1906\nwead 1\nweady 2\nweak 85\nweaken 7\nweakened 12\nweakening 6\nweakens 1\nweaker 24\nweakly 2\nweakness 48\nweaknesses 6\nweal 3\nweally 2\nwealth 77\nwealthier 1\nwealthiest 1\nwealthy 31\nweaned 1\nweapon 24\nweapons 12\nwear 30\nwearer 1\nwearied 5\nwearily 7\nweariness 12\nwearing 87\nwearisome 4\nwears 4\nweary 52\nweason 1\nweather 42\nweathercock 2\nweave 2\nweaver 4\nweavers 2\nweaving 6\nweb 21\nwebbed 1\nwebbing 3\nwebster 29\nweceipt 2\nweceives 1\nwecollect 1\nweconciliation 1\nwecwuits 1\nwed 1\nwedded 1\nwedding 38\nwedge 3\nwedged 3\nwedlock 1\nwednesday 13\nwee 3\nweed 5\nweeden 2\nweeds 1\nweedy 1\nweek 95\nweekend 1\nweekly 5\nweeks 117\nweep 25\nweepers 1\nweeping 19\nwefused 1\nwegiment 2\nwegular 1\nweib 1\nweigh 4\nweighed 10\nweighing 5\nweighs 3\nweight 70\nweighted 2\nweightiest 1\nweights 4\nweighty 7\nweign 2\nweimar 1\nweir 2\nweird 4\nwelcome 18\nwelcomed 22\nwelcomes 2\nwelcoming 1\nweld 2\nwelded 2\nwelfare 53\nwell 1198\nwelled 2\nwellesley 1\nwelling 1\nwellington 2\nwells 5\nwelsh 2\nwelt 2\nwen 1\nwench 1\nwenches 1\nwendell 5\nwens 11\nwent 1008\nweported 1\nwept 27\nwerden 2\nwere 4289\nweren 8\nwert 1\nwesel 1\nwest 286\nwestaway 2\nwestbury 1\nwestern 117\nwesterners 2\nwesthouse 2\nwestminster 2\nwestphail 1\nwestphalians 2\nwestward 30\nwet 60\nwetched 3\nwethersfield 2\nwetted 1\nwetting 1\nwetu 1\nweturn 1\nwetweating 2\nweyant 2\nweyl 1\nweyler 2\nweyrother 39\nwh 1\nwhale 3\nwharf 5\nwharves 5\nwhat 3011\nwhatever 114\nwhatnot 1\nwhatnots 1\nwhatsoever 8\nwheal 1\nwheals 2\nwheat 38\nwheatfields 1\nwheedled 1\nwheel 21\nwheeled 4\nwheeler 6\nwheeling 4\nwheels 47\nwhen 2923\nwhence 23\nwhenever 38\nwhere 977\nwhereabouts 4\nwhereas 11\nwhereby 8\nwherefore 2\nwherein 4\nwhereof 4\nwhereupon 1\nwherever 23\nwhether 357\nwhetstone 2\nwhew 6\nwhich 4842\nwhichever 3\nwhiff 5\nwhiffs 1\nwhifling 1\nwhig 18\nwhigs 36\nwhile 768\nwhilst 7\nwhim 6\nwhims 2\nwhimsical 3\nwhine 2\nwhined 2\nwhining 3\nwhip 40\nwhipcord 3\nwhipped 5\nwhippers 3\nwhipping 1\nwhips 8\nwhirl 6\nwhirled 4\nwhirling 7\nwhirlpool 1\nwhirlwind 2\nwhirr 2\nwhirring 2\nwhishing 1\nwhiskered 1\nwhiskers 13\nwhiskey 1\nwhisky 14\nwhisper 51\nwhispered 97\nwhispering 19\nwhispers 12\nwhist 1\nwhistle 28\nwhistled 13\nwhistles 2\nwhistling 27\nwhit 3\nwhite 353\nwhitelaw 1\nwhiten 1\nwhiteness 7\nwhitening 1\nwhiter 2\nwhites 14\nwhitewashed 4\nwhither 8\nwhitish 2\nwhitlow 26\nwhitman 2\nwhitney 10\nwhittier 3\nwhittington 1\nwhizz 2\nwhizzed 1\nwhizzing 1\nwho 3050\nwhoa 2\nwhoever 15\nwhole 744\nwholeheartedly 1\nwholesale 6\nwholesome 4\nwholly 15\nwhom 489\nwhomever 2\nwhose 188\nwhoso 1\nwhosoever 1\nwhy 674\nwiberd 1\nwick 3\nwicked 15\nwickedness 3\nwicker 1\nwicket 4\nwid 1\nwidal 1\nwidden 1\nwide 105\nwidely 65\nwiden 2\nwidened 9\nwidening 3\nwider 17\nwidespread 24\nwidest 5\nwidow 10\nwidower 4\nwidows 5\nwidth 6\nwie 1\nwield 1\nwielded 3\nwielder 2\nwielders 1\nwielding 1\nwields 1\nwiesbaden 2\nwiewiorowski 1\nwife 367\nwig 5\nwight 7\nwigless 1\nwigmore 1\nwigs 2\nwiki 1\nwiktionary 2\nwild 35\nwildbad 1\nwilderness 15\nwildest 1\nwildlife 1\nwildly 8\nwilds 2\nwiles 1\nwilful 2\nwilhelm 2\nwilkes 1\nwilkie 2\nwill 1577\nwillamette 2\nwillard 2\nwillarski 29\nwilled 1\nwillful 4\nwillfully 1\nwilliam 64\nwilliams 7\nwilliamsburg 1\nwillie 1\nwilling 25\nwillingly 8\nwillingness 7\nwillings 1\nwillis 1\nwilloughby 1\nwillow 1\nwillows 1\nwills 13\nwilmington 1\nwilmot 7\nwilson 106\nwilt 2\nwilton 1\nwily 2\nwimpfen 1\nwimpole 1\nwin 38\nwince 2\nwinced 6\nwinchester 11\nwincing 5\nwind 49\nwindfall 1\nwindibank 20\nwindigate 3\nwinding 16\nwindlass 1\nwindow 186\nwindowpanes 1\nwindows 50\nwindowsill 1\nwinds 8\nwindsor 2\nwindy 2\nwine 61\nwined 1\nwineglass 3\nwineglasses 1\nwines 4\nwinfield 1\nwing 32\nwinged 3\nwinging 2\nwings 10\nwink 11\nwinked 8\nwinking 10\nwinner 2\nwinning 19\nwins 3\nwinsor 2\nwinston 1\nwinter 52\nwintering 1\nwinters 2\nwinthrop 4\nwintry 3\nwintzingerode 9\nwintzingerodes 2\nwipe 5\nwiped 18\nwiping 17\nwire 23\nwired 4\nwires 2\nwiring 2\nwirt 1\nwiry 1\nwischau 6\nwisconsin 24\nwisdom 25\nwise 24\nwiseacres 1\nwisely 7\nwiseman 1\nwiser 7\nwisest 5\nwisewell 2\nwish 243\nwished 209\nwishes 42\nwishing 66\nwisp 6\nwisps 2\nwistful 1\nwit 15\nwitch 2\nwitchcraft 3\nwitchery 1\nwitches 1\nwitching 1\nwith 9740\nwithal 1\nwithdraw 29\nwithdrawal 18\nwithdrawing 12\nwithdrawn 38\nwithdrew 14\nwithered 6\nwithering 1\nwithers 2\nwitherspoon 1\nwithheld 8\nwithhold 2\nwithin 313\nwithout 1015\nwithstand 9\nwithstood 1\nwiting 1\nwitness 33\nwitnessed 22\nwitnesses 9\nwits 7\nwitted 5\nwittgenstein 4\nwitticism 1\nwitticisms 2\nwittily 1\nwitty 14\nwives 16\nwiz 1\nwizard 4\nwizards 1\nwlocki 1\nwm 2\nwo 1\nwobbahs 1\nwobbed 1\nwobber 1\nwobbers 1\nwobbewy 3\nwobbly 2\nwoe 1\nwoes 1\nwogue 1\nwoke 20\nwolf 63\nwolfe 3\nwolff 2\nwolfhounds 1\nwollstonecraft 2\nwolves 11\nwolzogen 23\nwoman 325\nwomanhood 2\nwomanish 2\nwomanly 7\nwomb 1\nwomen 390\nwon 201\nwonder 37\nwondered 15\nwonderful 30\nwonderfully 5\nwondering 15\nwonderment 1\nwonders 4\nwondrous 1\nwont 10\nwonted 1\nwood 88\nwoodburn 1\nwoodcock 2\nwoodcuts 1\nwoodcutting 1\nwooded 8\nwooden 37\nwoodford 1\nwoodland 2\nwoodrow 13\nwoods 22\nwoodson 1\nwoodwork 1\nwoof 2\nwooing 2\nwool 42\nwoolen 15\nwoolens 1\nwoollen 2\nwoolly 1\nwools 1\nwoolseys 1\nwoolwork 2\nwoot 1\nworcester 3\nword 298\nworded 3\nwordforms 1\nwording 4\nwords 460\nwordsworth 1\nwordy 1\nwore 58\nwork 382\nworkbag 3\nworked 40\nworker 8\nworkers 39\nworkforce 1\nworkhouse 1\nworking 54\nworkingman 2\nworkingmen 12\nworkings 2\nworkman 8\nworkmanship 2\nworkmen 17\nworkplace 1\nworks 99\nworkshop 5\nworkshops 6\nworkstation 1\nworld 362\nworldliness 3\nworldly 13\nworlds 9\nworldwide 2\nworm 9\nworming 1\nworms 4\nwormwood 7\nworn 73\nworried 16\nworries 1\nworry 10\nworrying 8\nworse 66\nworsening 1\nworship 6\nworshiped 1\nworshiper 1\nworshipers 1\nworshipped 1\nworst 36\nworsted 5\nworth 70\nworthier 1\nworthily 1\nworthless 11\nworthlessness 2\nworthwhile 1\nworthy 47\nwostov 9\nwostovs 1\nwotten 1\nwould 1953\nwouldn 28\nwound 304\nwounded 227\nwounding 4\nwounds 186\nwove 3\nwoven 5\nwrack 1\nwrangle 1\nwrangled 3\nwrangling 2\nwrap 4\nwrapped 33\nwrapping 6\nwraps 2\nwrath 17\nwrathful 2\nwrathfully 2\nwreath 2\nwreaths 3\nwreck 5\nwrecked 4\nwreckers 1\nwrecking 1\nwrenched 3\nwrenching 3\nwrested 3\nwresting 1\nwrestle 3\nwretch 4\nwretched 23\nwretchedness 1\nwretches 5\nwriggle 2\nwriggled 2\nwriggles 1\nwriggling 2\nwright 5\nwring 6\nwringing 2\nwrinkle 7\nwrinkled 21\nwrinkles 17\nwrinkling 2\nwrist 68\nwrists 7\nwrit 15\nwrite 86\nwriter 16\nwriters 27\nwrites 20\nwrithed 3\nwrithing 4\nwriting 69\nwritings 14\nwrits 11\nwritten 117\nwrnpc 4\nwrong 103\nwrongdoing 1\nwronged 7\nwrongfully 2\nwrongly 3\nwrongs 7\nwrote 149\nwrought 8\nwrung 17\nwry 5\nwuined 1\nwurst 2\nwurttemberg 6\nwurttembergers 2\nwussian 1\nwussians 1\nwww 20\nwyeth 2\nwyoming 14\nwythe 1\nwything 1\nx 136\nxanthoma 2\nxi 28\nxii 28\nxiii 22\nxiphi 1\nxiv 28\nxix 17\nxrange 1\nxv 24\nxvi 34\nxvii 18\nxviii 19\nxx 14\nxxi 13\nxxii 10\nxxiii 8\nxxiv 8\nxxix 2\nxxv 7\nxxvi 4\nxxvii 4\nxxviii 3\nxxx 2\nxxxi 2\nxxxii 2\nxxxiii 2\nxxxiv 2\nxxxix 1\nxxxv 1\nxxxvi 1\nxxxvii 1\nxxxviii 1\ny 39\nyacht 2\nyahweh 1\nyakov 11\nyakovlev 3\nyale 4\nyancey 2\nyankee 6\nyankees 1\nyankovo 3\nyard 79\nyards 34\nyarn 2\nyaroslavets 8\nyaroslavl 11\nyauza 5\nyawn 4\nyawned 2\nyawning 6\nyawns 1\nye 8\nyea 1\nyeah 2\nyear 309\nyearly 1\nyearning 1\nyears 571\nyeas 2\nyell 7\nyelled 8\nyelling 4\nyellow 75\nyellowing 1\nyellowish 9\nyells 4\nyelp 2\nyelped 1\nyelping 2\nyeoman 1\nyeomanry 2\nyeomen 5\nyep 1\nyer 1\nyes 688\nyesterday 69\nyet 488\nyeux 1\nyiddish 1\nyield 36\nyielded 15\nyielding 21\nyields 17\nyoke 5\nyoked 1\nyokohama 1\nyon 1\nyonder 3\nyore 1\nyork 195\nyorkers 1\nyorkshire 1\nyorktown 9\nyou 5622\nyoung 627\nyounger 41\nyoungest 12\nyoungster 4\nyoungsters 1\nyour 1279\nyours 46\nyourself 162\nyourselves 10\nyouth 67\nyouthful 16\nyouthfully 1\nyouthfulness 4\nyouths 4\nyukhnov 1\nyukhnovna 1\nyukhnovo 1\nyuma 2\nyuri 1\nyusupov 1\nyusupova 1\nz 8\nzachary 3\nzakhar 9\nzakharchenko 1\nzakharino 1\nzakharych 2\nzakret 1\nzakuska 1\nzaletaev 2\nzanthoma 5\nzapata 1\nzat 6\nzavarzinsk 1\nzaymishche 4\nzdrzhinski 7\nze 9\nzeal 25\nzealand 3\nzealous 11\nzealously 3\nzebulon 3\nzen 1\nzenger 3\nzenith 1\nzere 1\nzero 5\nzest 3\nzeus 1\nzharov 1\nzheg 4\nzherkov 40\nzhilinski 8\nzides 1\nzigzag 2\nzikin 1\nzinaida 1\nzinc 4\nzip 4\nzis 1\nznaim 16\nznamenka 1\nzone 26\nzoology 3\nzu 2\nzubov 2\nzubova 3\nzubovski 2\nzueblin 1\nzum 1\nzweck 1\nzygoma 1\nzygomatic 1"
  },
  {
    "path": "src/textblob/en/inflect.py",
    "content": "\"\"\"The pluralize and singular methods from the pattern library.\n\nLicenced under the BSD.\nSee here https://github.com/clips/pattern/blob/master/LICENSE.txt for\ncomplete license information.\n\"\"\"\n\nfrom __future__ import annotations\nfrom collections.abc import MutableMapping\nimport re\nfrom typing import TYPE_CHECKING\n\nif TYPE_CHECKING:\n    from typing import AnyStr\n\n\nVERB, NOUN, ADJECTIVE, ADVERB = \"VB\", \"NN\", \"JJ\", \"RB\"\n\n#### PLURALIZE #####################################################################################\n# Based on \"An Algorithmic Approach to English Pluralization\" by Damian Conway:\n# http://www.csse.monash.edu.au/~damian/papers/HTML/Plurals.html\n\n# Prepositions are used to solve things like\n# \"mother-in-law\" or \"man at arms\"\nplural_prepositions = [\n    \"about\",\n    \"above\",\n    \"across\",\n    \"after\",\n    \"among\",\n    \"around\",\n    \"at\",\n    \"athwart\",\n    \"before\",\n    \"behind\",\n    \"below\",\n    \"beneath\",\n    \"beside\",\n    \"besides\",\n    \"between\",\n    \"betwixt\",\n    \"beyond\",\n    \"but\",\n    \"by\",\n    \"during\",\n    \"except\",\n    \"for\",\n    \"from\",\n    \"in\",\n    \"into\",\n    \"near\",\n    \"of\",\n    \"off\",\n    \"on\",\n    \"onto\",\n    \"out\",\n    \"over\",\n    \"since\",\n    \"till\",\n    \"to\",\n    \"under\",\n    \"until\",\n    \"unto\",\n    \"upon\",\n    \"with\",\n]\n\n# Inflection rules that are either general,\n# or apply to a certain category of words,\n# or apply to a certain category of words only in classical mode,\n# or apply only in classical mode.\n# Each rule consists of:\n# suffix, inflection, category and classic flag.\nplural_rules = [\n    # 0) Indefinite articles and demonstratives.\n    [\n        [\"^a$|^an$\", \"some\", None, False],\n        [\"^this$\", \"these\", None, False],\n        [\"^that$\", \"those\", None, False],\n        [\"^any$\", \"all\", None, False],\n    ],\n    # 1) Possessive adjectives.\n    # Overlaps with 1/ for \"his\" and \"its\".\n    # Overlaps with 2/ for \"her\".\n    [\n        [\"^my$\", \"our\", None, False],\n        [\"^your$|^thy$\", \"your\", None, False],\n        [\"^her$|^his$|^its$|^their$\", \"their\", None, False],\n    ],\n    # 2) Possessive pronouns.\n    [\n        [\"^mine$\", \"ours\", None, False],\n        [\"^yours$|^thine$\", \"yours\", None, False],\n        [\"^hers$|^his$|^its$|^theirs$\", \"theirs\", None, False],\n    ],\n    # 3) Personal pronouns.\n    [\n        [\"^I$\", \"we\", None, False],\n        [\"^me$\", \"us\", None, False],\n        [\"^myself$\", \"ourselves\", None, False],\n        [\"^you$\", \"you\", None, False],\n        [\"^thou$|^thee$\", \"ye\", None, False],\n        [\"^yourself$|^thyself$\", \"yourself\", None, False],\n        [\"^she$|^he$|^it$|^they$\", \"they\", None, False],\n        [\"^her$|^him$|^it$|^them$\", \"them\", None, False],\n        [\"^herself$|^himself$|^itself$|^themself$\", \"themselves\", None, False],\n        [\"^oneself$\", \"oneselves\", None, False],\n    ],\n    # 4) Words that do not inflect.\n    [\n        [\"$\", \"\", \"uninflected\", False],\n        [\"$\", \"\", \"uncountable\", False],\n        [\"fish$\", \"fish\", None, False],\n        [\"([- ])bass$\", \"\\\\1bass\", None, False],\n        [\"ois$\", \"ois\", None, False],\n        [\"sheep$\", \"sheep\", None, False],\n        [\"deer$\", \"deer\", None, False],\n        [\"pox$\", \"pox\", None, False],\n        [\"([A-Z].*)ese$\", \"\\\\1ese\", None, False],\n        [\"itis$\", \"itis\", None, False],\n        [\n            \"(fruct|gluc|galact|lact|ket|malt|rib|sacchar|cellul)ose$\",\n            \"\\\\1ose\",\n            None,\n            False,\n        ],\n    ],\n    # 5) Irregular plurals (mongoose, oxen).\n    [\n        [\"atlas$\", \"atlantes\", None, True],\n        [\"atlas$\", \"atlases\", None, False],\n        [\"beef$\", \"beeves\", None, True],\n        [\"brother$\", \"brethren\", None, True],\n        [\"child$\", \"children\", None, False],\n        [\"corpus$\", \"corpora\", None, True],\n        [\"corpus$\", \"corpuses\", None, False],\n        [\"^cow$\", \"kine\", None, True],\n        [\"ephemeris$\", \"ephemerides\", None, False],\n        [\"ganglion$\", \"ganglia\", None, True],\n        [\"genie$\", \"genii\", None, True],\n        [\"genus$\", \"genera\", None, False],\n        [\"graffito$\", \"graffiti\", None, False],\n        [\"loaf$\", \"loaves\", None, False],\n        [\"money$\", \"monies\", None, True],\n        [\"mongoose$\", \"mongooses\", None, False],\n        [\"mythos$\", \"mythoi\", None, False],\n        [\"octopus$\", \"octopodes\", None, True],\n        [\"opus$\", \"opera\", None, True],\n        [\"opus$\", \"opuses\", None, False],\n        [\"^ox$\", \"oxen\", None, False],\n        [\"penis$\", \"penes\", None, True],\n        [\"penis$\", \"penises\", None, False],\n        [\"soliloquy$\", \"soliloquies\", None, False],\n        [\"testis$\", \"testes\", None, False],\n        [\"trilby$\", \"trilbys\", None, False],\n        [\"turf$\", \"turves\", None, True],\n        [\"numen$\", \"numena\", None, False],\n        [\"occiput$\", \"occipita\", None, True],\n    ],\n    # 6) Irregular inflections for common suffixes (synopses, mice, men).\n    [\n        [\"man$\", \"men\", None, False],\n        [\"person$\", \"people\", None, False],\n        [\"([lm])ouse$\", \"\\\\1ice\", None, False],\n        [\"tooth$\", \"teeth\", None, False],\n        [\"goose$\", \"geese\", None, False],\n        [\"foot$\", \"feet\", None, False],\n        [\"zoon$\", \"zoa\", None, False],\n        [\"([csx])is$\", \"\\\\1es\", None, False],\n    ],\n    # 7) Fully assimilated classical inflections (vertebrae, codices).\n    [\n        [\"ex$\", \"ices\", \"ex-ices\", False],\n        [\"ex$\", \"ices\", \"ex-ices-classical\", True],\n        [\"um$\", \"a\", \"um-a\", False],\n        [\"um$\", \"a\", \"um-a-classical\", True],\n        [\"on$\", \"a\", \"on-a\", False],\n        [\"a$\", \"ae\", \"a-ae\", False],\n        [\"a$\", \"ae\", \"a-ae-classical\", True],\n    ],\n    # 8) Classical variants of modern inflections (stigmata, soprani).\n    [\n        [\"trix$\", \"trices\", None, True],\n        [\"eau$\", \"eaux\", None, True],\n        [\"ieu$\", \"ieu\", None, True],\n        [\"([iay])nx$\", \"\\\\1nges\", None, True],\n        [\"en$\", \"ina\", \"en-ina-classical\", True],\n        [\"a$\", \"ata\", \"a-ata-classical\", True],\n        [\"is$\", \"ides\", \"is-ides-classical\", True],\n        [\"us$\", \"i\", \"us-i-classical\", True],\n        [\"us$\", \"us\", \"us-us-classical\", True],\n        [\"o$\", \"i\", \"o-i-classical\", True],\n        [\"$\", \"i\", \"-i-classical\", True],\n        [\"$\", \"im\", \"-im-classical\", True],\n    ],\n    # 9) -ch, -sh and -ss and the s-singular group take -es in the plural (churches, classes, lenses).\n    [\n        [\"([cs])h$\", \"\\\\1hes\", None, False],\n        [\"ss$\", \"sses\", None, False],\n        [\"x$\", \"xes\", None, False],\n        [\"s$\", \"ses\", \"s-singular\", False],\n    ],\n    # 10) Certain words ending in -f or -fe take -ves in the plural (lives, wolves).\n    [\n        [\"([aeo]l)f$\", \"\\\\1ves\", None, False],\n        [\"([^d]ea)f$\", \"\\\\1ves\", None, False],\n        [\"arf$\", \"arves\", None, False],\n        [\"([nlw]i)fe$\", \"\\\\1ves\", None, False],\n    ],\n    # 11) -y takes -ys if preceded by a vowel or when a proper noun,\n    # but -ies if preceded by a consonant (storeys, Marys, stories).\n    [\n        [\"([aeiou])y$\", \"\\\\1ys\", None, False],\n        [\"([A-Z].*)y$\", \"\\\\1ys\", None, False],\n        [\"y$\", \"ies\", None, False],\n    ],\n    # 12) Some words ending in -o take -os, the rest take -oes.\n    # Words in which the -o is preceded by a vowel always take -os (lassos, potatoes, bamboos).\n    [\n        [\"o$\", \"os\", \"o-os\", False],\n        [\"([aeiou])o$\", \"\\\\1os\", None, False],\n        [\"o$\", \"oes\", None, False],\n    ],\n    # 13) Miltary stuff (Major Generals).\n    [[\"l$\", \"ls\", \"general-generals\", False]],\n    # 14) Otherwise, assume that the plural just adds -s (cats, programmes).\n    [[\"$\", \"s\", None, False]],\n]\n\n# For performance, compile the regular expressions only once:\nfor ruleset in plural_rules:\n    for rule in ruleset:\n        rule[0] = re.compile(rule[0])\n\n# Suffix categories.\nplural_categories = {\n    \"uninflected\": [\n        \"aircraft\",\n        \"antelope\",\n        \"bison\",\n        \"bream\",\n        \"breeches\",\n        \"britches\",\n        \"carp\",\n        \"cattle\",\n        \"chassis\",\n        \"clippers\",\n        \"cod\",\n        \"contretemps\",\n        \"corps\",\n        \"debris\",\n        \"diabetes\",\n        \"djinn\",\n        \"eland\",\n        \"elk\",\n        \"flounder\",\n        \"gallows\",\n        \"graffiti\",\n        \"headquarters\",\n        \"herpes\",\n        \"high-jinks\",\n        \"homework\",\n        \"innings\",\n        \"jackanapes\",\n        \"mackerel\",\n        \"measles\",\n        \"mews\",\n        \"moose\",\n        \"mumps\",\n        \"offspring\",\n        \"news\",\n        \"pincers\",\n        \"pliers\",\n        \"proceedings\",\n        \"rabies\",\n        \"salmon\",\n        \"scissors\",\n        \"series\",\n        \"shears\",\n        \"species\",\n        \"swine\",\n        \"trout\",\n        \"tuna\",\n        \"whiting\",\n        \"wildebeest\",\n    ],\n    \"uncountable\": [\n        \"advice\",\n        \"bread\",\n        \"butter\",\n        \"cannabis\",\n        \"cheese\",\n        \"electricity\",\n        \"equipment\",\n        \"fruit\",\n        \"furniture\",\n        \"garbage\",\n        \"gravel\",\n        \"happiness\",\n        \"information\",\n        \"ketchup\",\n        \"knowledge\",\n        \"love\",\n        \"luggage\",\n        \"mathematics\",\n        \"mayonnaise\",\n        \"meat\",\n        \"mustard\",\n        \"news\",\n        \"progress\",\n        \"research\",\n        \"rice\",\n        \"sand\",\n        \"software\",\n        \"understanding\",\n        \"water\",\n    ],\n    \"s-singular\": [\n        \"acropolis\",\n        \"aegis\",\n        \"alias\",\n        \"asbestos\",\n        \"bathos\",\n        \"bias\",\n        \"bus\",\n        \"caddis\",\n        \"canvas\",\n        \"chaos\",\n        \"christmas\",\n        \"cosmos\",\n        \"dais\",\n        \"digitalis\",\n        \"epidermis\",\n        \"ethos\",\n        \"gas\",\n        \"glottis\",\n        \"ibis\",\n        \"lens\",\n        \"mantis\",\n        \"marquis\",\n        \"metropolis\",\n        \"pathos\",\n        \"pelvis\",\n        \"polis\",\n        \"rhinoceros\",\n        \"sassafras\",\n        \"trellis\",\n    ],\n    \"ex-ices\": [\"codex\", \"murex\", \"silex\"],\n    \"ex-ices-classical\": [\n        \"apex\",\n        \"cortex\",\n        \"index\",\n        \"latex\",\n        \"pontifex\",\n        \"simplex\",\n        \"vertex\",\n        \"vortex\",\n    ],\n    \"um-a\": [\n        \"agendum\",\n        \"bacterium\",\n        \"candelabrum\",\n        \"datum\",\n        \"desideratum\",\n        \"erratum\",\n        \"extremum\",\n        \"ovum\",\n        \"stratum\",\n    ],\n    \"um-a-classical\": [\n        \"aquarium\",\n        \"compendium\",\n        \"consortium\",\n        \"cranium\",\n        \"curriculum\",\n        \"dictum\",\n        \"emporium\",\n        \"enconium\",\n        \"gymnasium\",\n        \"honorarium\",\n        \"interregnum\",\n        \"lustrum\",\n        \"maximum\",\n        \"medium\",\n        \"memorandum\",\n        \"millenium\",\n        \"minimum\",\n        \"momentum\",\n        \"optimum\",\n        \"phylum\",\n        \"quantum\",\n        \"rostrum\",\n        \"spectrum\",\n        \"speculum\",\n        \"stadium\",\n        \"trapezium\",\n        \"ultimatum\",\n        \"vacuum\",\n        \"velum\",\n    ],\n    \"on-a\": [\n        \"aphelion\",\n        \"asyndeton\",\n        \"criterion\",\n        \"hyperbaton\",\n        \"noumenon\",\n        \"organon\",\n        \"perihelion\",\n        \"phenomenon\",\n        \"prolegomenon\",\n    ],\n    \"a-ae\": [\"alga\", \"alumna\", \"vertebra\"],\n    \"a-ae-classical\": [\n        \"abscissa\",\n        \"amoeba\",\n        \"antenna\",\n        \"aurora\",\n        \"formula\",\n        \"hydra\",\n        \"hyperbola\",\n        \"lacuna\",\n        \"medusa\",\n        \"nebula\",\n        \"nova\",\n        \"parabola\",\n    ],\n    \"en-ina-classical\": [\"foramen\", \"lumen\", \"stamen\"],\n    \"a-ata-classical\": [\n        \"anathema\",\n        \"bema\",\n        \"carcinoma\",\n        \"charisma\",\n        \"diploma\",\n        \"dogma\",\n        \"drama\",\n        \"edema\",\n        \"enema\",\n        \"enigma\",\n        \"gumma\",\n        \"lemma\",\n        \"lymphoma\",\n        \"magma\",\n        \"melisma\",\n        \"miasma\",\n        \"oedema\",\n        \"sarcoma\",\n        \"schema\",\n        \"soma\",\n        \"stigma\",\n        \"stoma\",\n        \"trauma\",\n    ],\n    \"is-ides-classical\": [\"clitoris\", \"iris\"],\n    \"us-i-classical\": [\n        \"focus\",\n        \"fungus\",\n        \"genius\",\n        \"incubus\",\n        \"nimbus\",\n        \"nucleolus\",\n        \"radius\",\n        \"stylus\",\n        \"succubus\",\n        \"torus\",\n        \"umbilicus\",\n        \"uterus\",\n    ],\n    \"us-us-classical\": [\n        \"apparatus\",\n        \"cantus\",\n        \"coitus\",\n        \"hiatus\",\n        \"impetus\",\n        \"nexus\",\n        \"plexus\",\n        \"prospectus\",\n        \"sinus\",\n        \"status\",\n    ],\n    \"o-i-classical\": [\n        \"alto\",\n        \"basso\",\n        \"canto\",\n        \"contralto\",\n        \"crescendo\",\n        \"solo\",\n        \"soprano\",\n        \"tempo\",\n    ],\n    \"-i-classical\": [\"afreet\", \"afrit\", \"efreet\"],\n    \"-im-classical\": [\"cherub\", \"goy\", \"seraph\"],\n    \"o-os\": [\n        \"albino\",\n        \"archipelago\",\n        \"armadillo\",\n        \"commando\",\n        \"ditto\",\n        \"dynamo\",\n        \"embryo\",\n        \"fiasco\",\n        \"generalissimo\",\n        \"ghetto\",\n        \"guano\",\n        \"inferno\",\n        \"jumbo\",\n        \"lingo\",\n        \"lumbago\",\n        \"magneto\",\n        \"manifesto\",\n        \"medico\",\n        \"octavo\",\n        \"photo\",\n        \"pro\",\n        \"quarto\",\n        \"rhino\",\n        \"stylo\",\n    ],\n    \"general-generals\": [\n        \"Adjutant\",\n        \"Brigadier\",\n        \"Lieutenant\",\n        \"Major\",\n        \"Quartermaster\",\n        \"adjutant\",\n        \"brigadier\",\n        \"lieutenant\",\n        \"major\",\n        \"quartermaster\",\n    ],\n}\n\n\ndef pluralize(word: str, pos=NOUN, custom=None, classical=True) -> str:\n    \"\"\"Returns the plural of a given word.\n    For example: child -> children.\n    Handles nouns and adjectives, using classical inflection by default\n    (e.g. where \"matrix\" pluralizes to \"matrices\" instead of \"matrixes\").\n    The custom dictionary is for user-defined replacements.\n    \"\"\"\n\n    if custom is None:\n        custom = {}\n    if word in custom:\n        return custom[word]\n\n    # Recursion of genitives.\n    # Remove the apostrophe and any trailing -s,\n    # form the plural of the resultant noun, and then append an apostrophe (dog's -> dogs').\n    if word.endswith(\"'\") or word.endswith(\"'s\"):\n        owner = word.rstrip(\"'s\")\n        owners = pluralize(owner, pos, custom, classical)\n        if owners.endswith(\"s\"):\n            return owners + \"'\"\n        else:\n            return owners + \"'s\"\n\n    # Recursion of compound words\n    # (Postmasters General, mothers-in-law, Roman deities).\n    words = word.replace(\"-\", \" \").split(\" \")\n    if len(words) > 1:\n        if (\n            words[1] == \"general\"\n            or words[1] == \"General\"\n            and words[0] not in plural_categories[\"general-generals\"]\n        ):\n            return word.replace(words[0], pluralize(words[0], pos, custom, classical))\n        elif words[1] in plural_prepositions:\n            return word.replace(words[0], pluralize(words[0], pos, custom, classical))\n        else:\n            return word.replace(words[-1], pluralize(words[-1], pos, custom, classical))\n\n    # Only a very few number of adjectives inflect.\n    n = list(range(len(plural_rules)))\n    if pos.startswith(ADJECTIVE):\n        n = [0, 1]\n\n    # Apply pluralization rules.\n    for i in n:\n        ruleset = plural_rules[i]\n        for rule in ruleset:\n            suffix, inflection, category, classic = rule\n            # A general rule, or a classic rule in classical mode.\n            if category is None:\n                if not classic or (classic and classical):\n                    if suffix.search(word) is not None:\n                        return suffix.sub(inflection, word)\n            # A rule relating to a specific category of words.\n            if category is not None:\n                if word in plural_categories[category] and (\n                    not classic or (classic and classical)\n                ):\n                    if suffix.search(word) is not None:\n                        return suffix.sub(inflection, word)\n    return word\n\n\n#### SINGULARIZE ###################################################################################\n# Adapted from Bermi Ferrer's Inflector for Python:\n# http://www.bermi.org/inflector/\n\n# Copyright (c) 2006 Bermi Ferrer Martinez\n# Permission is hereby granted, free of charge, to any person obtaining a copy\n# of this software to deal in this software without restriction, including\n# without limitation the rights to use, copy, modify, merge, publish,\n# distribute, sublicense, and/or sell copies of this software, and to permit\n# persons to whom this software is furnished to do so, subject to the following\n# condition:\n#\n# THIS SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n# OUT OF OR IN CONNECTION WITH THIS SOFTWARE OR THE USE OR OTHER DEALINGS IN\n# THIS SOFTWARE.\n\nsingular_rules = [\n    (re.compile(\"(?i)(.)ae$\"), \"\\\\1a\"),\n    (re.compile(\"(?i)(.)itis$\"), \"\\\\1itis\"),\n    (re.compile(\"(?i)(.)eaux$\"), \"\\\\1eau\"),\n    (re.compile(\"(?i)(quiz)zes$\"), \"\\\\1\"),\n    (re.compile(\"(?i)(matr)ices$\"), \"\\\\1ix\"),\n    (re.compile(\"(?i)(ap|vert|ind)ices$\"), \"\\\\1ex\"),\n    (re.compile(\"(?i)^(ox)en\"), \"\\\\1\"),\n    (re.compile(\"(?i)(alias|status)es$\"), \"\\\\1\"),\n    (re.compile(\"(?i)([octop|vir])i$\"), \"\\\\1us\"),\n    (re.compile(\"(?i)(cris|ax|test)es$\"), \"\\\\1is\"),\n    (re.compile(\"(?i)(shoe)s$\"), \"\\\\1\"),\n    (re.compile(\"(?i)(o)es$\"), \"\\\\1\"),\n    (re.compile(\"(?i)(bus)es$\"), \"\\\\1\"),\n    (re.compile(\"(?i)([m|l])ice$\"), \"\\\\1ouse\"),\n    (re.compile(\"(?i)(x|ch|ss|sh)es$\"), \"\\\\1\"),\n    (re.compile(\"(?i)(m)ovies$\"), \"\\\\1ovie\"),\n    (re.compile(\"(?i)(.)ombies$\"), \"\\\\1ombie\"),\n    (re.compile(\"(?i)(s)eries$\"), \"\\\\1eries\"),\n    (re.compile(\"(?i)([^aeiouy]|qu)ies$\"), \"\\\\1y\"),\n    # Certain words ending in -f or -fe take -ves in the plural (lives, wolves).\n    (re.compile(\"([aeo]l)ves$\"), \"\\\\1f\"),\n    (re.compile(\"([^d]ea)ves$\"), \"\\\\1f\"),\n    (re.compile(\"arves$\"), \"arf\"),\n    (re.compile(\"erves$\"), \"erve\"),\n    (re.compile(\"([nlw]i)ves$\"), \"\\\\1fe\"),\n    (re.compile(\"(?i)([lr])ves$\"), \"\\\\1f\"),\n    (re.compile(\"([aeo])ves$\"), \"\\\\1ve\"),\n    (re.compile(\"(?i)(sive)s$\"), \"\\\\1\"),\n    (re.compile(\"(?i)(tive)s$\"), \"\\\\1\"),\n    (re.compile(\"(?i)(hive)s$\"), \"\\\\1\"),\n    (re.compile(\"(?i)([^f])ves$\"), \"\\\\1fe\"),\n    # -es suffix.\n    (re.compile(\"(?i)(^analy)ses$\"), \"\\\\1sis\"),\n    (\n        re.compile(\"(?i)((a)naly|(b)a|(d)iagno|(p)arenthe|(p)rogno|(s)ynop|(t)he)ses$\"),\n        \"\\\\1\\\\2sis\",\n    ),\n    (re.compile(\"(?i)(.)opses$\"), \"\\\\1opsis\"),\n    (re.compile(\"(?i)(.)yses$\"), \"\\\\1ysis\"),\n    (re.compile(\"(?i)(h|d|r|o|n|b|cl|p)oses$\"), \"\\\\1ose\"),\n    (\n        re.compile(\"(?i)(fruct|gluc|galact|lact|ket|malt|rib|sacchar|cellul)ose$\"),\n        \"\\\\1ose\",\n    ),\n    (re.compile(\"(?i)(.)oses$\"), \"\\\\1osis\"),\n    # -a\n    (re.compile(\"(?i)([ti])a$\"), \"\\\\1um\"),\n    (re.compile(\"(?i)(n)ews$\"), \"\\\\1ews\"),\n    (re.compile(\"(?i)s$\"), \"\"),\n]\n\nsingular_uninflected = [\n    \"aircraft\",\n    \"antelope\",\n    \"bison\",\n    \"bream\",\n    \"breeches\",\n    \"britches\",\n    \"carp\",\n    \"cattle\",\n    \"chassis\",\n    \"clippers\",\n    \"cod\",\n    \"contretemps\",\n    \"corps\",\n    \"debris\",\n    \"diabetes\",\n    \"djinn\",\n    \"eland\",\n    \"elk\",\n    \"flounder\",\n    \"gallows\",\n    \"georgia\",\n    \"graffiti\",\n    \"headquarters\",\n    \"herpes\",\n    \"high-jinks\",\n    \"homework\",\n    \"innings\",\n    \"jackanapes\",\n    \"mackerel\",\n    \"measles\",\n    \"mews\",\n    \"moose\",\n    \"mumps\",\n    \"news\",\n    \"offspring\",\n    \"pincers\",\n    \"pliers\",\n    \"proceedings\",\n    \"rabies\",\n    \"salmon\",\n    \"scissors\",\n    \"series\",\n    \"shears\",\n    \"species\",\n    \"swine\",\n    \"swiss\",\n    \"trout\",\n    \"tuna\",\n    \"whiting\",\n    \"wildebeest\",\n]\nsingular_uncountable = [\n    \"advice\",\n    \"bread\",\n    \"butter\",\n    \"cannabis\",\n    \"cheese\",\n    \"electricity\",\n    \"equipment\",\n    \"fruit\",\n    \"furniture\",\n    \"garbage\",\n    \"gravel\",\n    \"happiness\",\n    \"information\",\n    \"ketchup\",\n    \"knowledge\",\n    \"love\",\n    \"luggage\",\n    \"mathematics\",\n    \"mayonnaise\",\n    \"meat\",\n    \"mustard\",\n    \"news\",\n    \"progress\",\n    \"research\",\n    \"rice\",\n    \"sand\",\n    \"software\",\n    \"understanding\",\n    \"water\",\n]\nsingular_ie = [\n    \"algerie\",\n    \"auntie\",\n    \"beanie\",\n    \"birdie\",\n    \"bogie\",\n    \"bombie\",\n    \"bookie\",\n    \"collie\",\n    \"cookie\",\n    \"cutie\",\n    \"doggie\",\n    \"eyrie\",\n    \"freebie\",\n    \"goonie\",\n    \"groupie\",\n    \"hankie\",\n    \"hippie\",\n    \"hoagie\",\n    \"hottie\",\n    \"indie\",\n    \"junkie\",\n    \"laddie\",\n    \"laramie\",\n    \"lingerie\",\n    \"meanie\",\n    \"nightie\",\n    \"oldie\",\n    \"^pie\",\n    \"pixie\",\n    \"quickie\",\n    \"reverie\",\n    \"rookie\",\n    \"softie\",\n    \"sortie\",\n    \"stoolie\",\n    \"sweetie\",\n    \"techie\",\n    \"^tie\",\n    \"toughie\",\n    \"valkyrie\",\n    \"veggie\",\n    \"weenie\",\n    \"yuppie\",\n    \"zombie\",\n]\nsingular_s = plural_categories[\"s-singular\"]\n\n# key plural, value singular\nsingular_irregular = {\n    \"men\": \"man\",\n    \"people\": \"person\",\n    \"children\": \"child\",\n    \"sexes\": \"sex\",\n    \"axes\": \"axe\",\n    \"moves\": \"move\",\n    \"teeth\": \"tooth\",\n    \"geese\": \"goose\",\n    \"feet\": \"foot\",\n    \"zoa\": \"zoon\",\n    \"atlantes\": \"atlas\",\n    \"atlases\": \"atlas\",\n    \"beeves\": \"beef\",\n    \"brethren\": \"brother\",\n    \"corpora\": \"corpus\",\n    \"corpuses\": \"corpus\",\n    \"kine\": \"cow\",\n    \"ephemerides\": \"ephemeris\",\n    \"ganglia\": \"ganglion\",\n    \"genii\": \"genie\",\n    \"genera\": \"genus\",\n    \"graffiti\": \"graffito\",\n    \"helves\": \"helve\",\n    \"leaves\": \"leaf\",\n    \"loaves\": \"loaf\",\n    \"monies\": \"money\",\n    \"mongooses\": \"mongoose\",\n    \"mythoi\": \"mythos\",\n    \"octopodes\": \"octopus\",\n    \"opera\": \"opus\",\n    \"opuses\": \"opus\",\n    \"oxen\": \"ox\",\n    \"penes\": \"penis\",\n    \"penises\": \"penis\",\n    \"soliloquies\": \"soliloquy\",\n    \"testes\": \"testis\",\n    \"trilbys\": \"trilby\",\n    \"turves\": \"turf\",\n    \"numena\": \"numen\",\n    \"occipita\": \"occiput\",\n    \"our\": \"my\",\n}\n\n\ndef singularize(word: str, pos=NOUN, custom: MutableMapping[str, str] | None = None):\n    if custom is None:\n        custom = {}\n    if word in list(custom.keys()):\n        return custom[word]\n\n    # Recursion of compound words (e.g. mothers-in-law).\n    if \"-\" in word:\n        words = word.split(\"-\")\n        if len(words) > 1 and words[1] in plural_prepositions:\n            return singularize(words[0], pos, custom) + \"-\" + \"-\".join(words[1:])\n    # dogs' => dog's\n    if word.endswith(\"'\"):\n        return singularize(word[:-1]) + \"'s\"\n\n    lower = word.lower()\n    for w in singular_uninflected:\n        if w.endswith(lower):\n            return word\n    for w in singular_uncountable:\n        if w.endswith(lower):\n            return word\n    for w in singular_ie:\n        if lower.endswith(w + \"s\"):\n            return w\n    for w in singular_s:\n        if lower.endswith(w + \"es\"):\n            return w\n    for w in list(singular_irregular.keys()):\n        if lower.endswith(w):\n            return re.sub(\"(?i)\" + w + \"$\", singular_irregular[w], word)\n\n    for rule in singular_rules:\n        suffix, inflection = rule\n        match = suffix.search(word)\n        if match:\n            groups = match.groups()\n            for k in range(0, len(groups)):\n                if groups[k] is None:\n                    inflection = inflection.replace(\"\\\\\" + str(k + 1), \"\")\n            return suffix.sub(inflection, word)\n\n    return word\n"
  },
  {
    "path": "src/textblob/en/np_extractors.py",
    "content": "\"\"\"Various noun phrase extractors.\"\"\"\n\nimport nltk\n\nfrom textblob.base import BaseNPExtractor\nfrom textblob.decorators import requires_nltk_corpus\nfrom textblob.taggers import PatternTagger\nfrom textblob.utils import filter_insignificant, tree2str\n\n\nclass ChunkParser(nltk.ChunkParserI):\n    _trained: bool\n\n    def __init__(self):\n        self._trained = False\n\n    @requires_nltk_corpus\n    def train(self):\n        \"\"\"Train the Chunker on the ConLL-2000 corpus.\"\"\"\n        train_data = [\n            [(t, c) for _, t, c in nltk.chunk.tree2conlltags(sent)]\n            for sent in nltk.corpus.conll2000.chunked_sents(\n                \"train.txt\", chunk_types=[\"NP\"]\n            )\n        ]\n        unigram_tagger = nltk.UnigramTagger(train_data)\n        self.tagger = nltk.BigramTagger(train_data, backoff=unigram_tagger)\n        self._trained = True\n\n    def parse(self, tokens):\n        \"\"\"Return the parse tree for the sentence.\"\"\"\n        if not self._trained:\n            self.train()\n        pos_tags = [pos for (_, pos) in tokens]\n        tagged_pos_tags = self.tagger.tag(pos_tags)\n        chunktags = [chunktag for (_, chunktag) in tagged_pos_tags]\n        conlltags = [\n            (word, pos, chunktag)\n            for ((word, pos), chunktag) in zip(tokens, chunktags)\n        ]\n        return nltk.chunk.conlltags2tree(conlltags)\n\n\nclass ConllExtractor(BaseNPExtractor):\n    \"\"\"A noun phrase extractor that uses chunk parsing trained with the\n    ConLL-2000 training corpus.\n    \"\"\"\n\n    POS_TAGGER = PatternTagger()\n\n    # The context-free grammar with which to filter the noun phrases\n    CFG = {\n        (\"NNP\", \"NNP\"): \"NNP\",\n        (\"NN\", \"NN\"): \"NNI\",\n        (\"NNI\", \"NN\"): \"NNI\",\n        (\"JJ\", \"JJ\"): \"JJ\",\n        (\"JJ\", \"NN\"): \"NNI\",\n    }\n\n    # POS suffixes that will be ignored\n    INSIGNIFICANT_SUFFIXES = [\"DT\", \"CC\", \"PRP$\", \"PRP\"]\n\n    def __init__(self, parser=None):\n        self.parser = ChunkParser() if not parser else parser\n\n    def extract(self, text):\n        \"\"\"Return a list of noun phrases (strings) for body of text.\"\"\"\n        sentences = nltk.tokenize.sent_tokenize(text)\n        noun_phrases = []\n        for sentence in sentences:\n            parsed = self._parse_sentence(sentence)\n            # Get the string representation of each subtree that is a\n            # noun phrase tree\n            phrases = [\n                _normalize_tags(filter_insignificant(each, self.INSIGNIFICANT_SUFFIXES))\n                for each in parsed\n                if isinstance(each, nltk.tree.Tree)\n                and each.label() == \"NP\"\n                and len(filter_insignificant(each)) >= 1\n                and _is_match(each, cfg=self.CFG)\n            ]\n            nps = [tree2str(phrase) for phrase in phrases]\n            noun_phrases.extend(nps)\n        return noun_phrases\n\n    def _parse_sentence(self, sentence):\n        \"\"\"Tag and parse a sentence (a plain, untagged string).\"\"\"\n        tagged = self.POS_TAGGER.tag(sentence)\n        return self.parser.parse(tagged)\n\n\nclass FastNPExtractor(BaseNPExtractor):\n    \"\"\"A fast and simple noun phrase extractor.\n\n    Credit to Shlomi Babluk. Link to original blog post:\n\n        http://thetokenizer.com/2013/05/09/efficient-way-to-extract-the-main-topics-of-a-sentence/\n    \"\"\"\n\n    _trained: bool\n\n    CFG = {\n        (\"NNP\", \"NNP\"): \"NNP\",\n        (\"NN\", \"NN\"): \"NNI\",\n        (\"NNI\", \"NN\"): \"NNI\",\n        (\"JJ\", \"JJ\"): \"JJ\",\n        (\"JJ\", \"NN\"): \"NNI\",\n    }\n\n    def __init__(self):\n        self._trained = False\n\n    @requires_nltk_corpus\n    def train(self):\n        train_data = nltk.corpus.brown.tagged_sents(categories=\"news\")\n        regexp_tagger = nltk.RegexpTagger(\n            [\n                (r\"^-?[0-9]+(.[0-9]+)?$\", \"CD\"),\n                (r\"(-|:|;)$\", \":\"),\n                (r\"\\'*$\", \"MD\"),\n                (r\"(The|the|A|a|An|an)$\", \"AT\"),\n                (r\".*able$\", \"JJ\"),\n                (r\"^[A-Z].*$\", \"NNP\"),\n                (r\".*ness$\", \"NN\"),\n                (r\".*ly$\", \"RB\"),\n                (r\".*s$\", \"NNS\"),\n                (r\".*ing$\", \"VBG\"),\n                (r\".*ed$\", \"VBD\"),\n                (r\".*\", \"NN\"),\n            ]\n        )\n        unigram_tagger = nltk.UnigramTagger(train_data, backoff=regexp_tagger)\n        self.tagger = nltk.BigramTagger(train_data, backoff=unigram_tagger)\n        self._trained = True\n        return None\n\n    def _tokenize_sentence(self, sentence):\n        \"\"\"Split the sentence into single words/tokens\"\"\"\n        tokens = nltk.word_tokenize(sentence)\n        return tokens\n\n    def extract(self, text):\n        \"\"\"Return a list of noun phrases (strings) for body of text.\"\"\"\n        if not self._trained:\n            self.train()\n        tokens = self._tokenize_sentence(text)\n        tagged = self.tagger.tag(tokens)\n        tags = _normalize_tags(tagged)\n        merge = True\n        while merge:\n            merge = False\n            for x in range(0, len(tags) - 1):\n                t1 = tags[x]\n                t2 = tags[x + 1]\n                key = t1[1], t2[1]\n                value = self.CFG.get(key, \"\")\n                if value:\n                    merge = True\n                    tags.pop(x)\n                    tags.pop(x)\n                    match = f\"{t1[0]} {t2[0]}\"\n                    pos = value\n                    tags.insert(x, (match, pos))\n                    break\n\n        matches = [t[0] for t in tags if t[1] in [\"NNP\", \"NNI\"]]\n        return matches\n\n\n### Utility methods ###\n\n\ndef _normalize_tags(chunk):\n    \"\"\"Normalize the corpus tags.\n    (\"NN\", \"NN-PL\", \"NNS\") -> \"NN\"\n    \"\"\"\n    ret = []\n    for word, tag in chunk:\n        if tag == \"NP-TL\" or tag == \"NP\":\n            ret.append((word, \"NNP\"))\n            continue\n        if tag.endswith(\"-TL\"):\n            ret.append((word, tag[:-3]))\n            continue\n        if tag.endswith(\"S\"):\n            ret.append((word, tag[:-1]))\n            continue\n        ret.append((word, tag))\n    return ret\n\n\ndef _is_match(tagged_phrase, cfg):\n    \"\"\"Return whether or not a tagged phrases matches a context-free grammar.\"\"\"\n    copy = list(tagged_phrase)  # A copy of the list\n    merge = True\n    while merge:\n        merge = False\n        for i in range(len(copy) - 1):\n            first, second = copy[i], copy[i + 1]\n            key = first[1], second[1]  # Tuple of tags e.g. ('NN', 'JJ')\n            value = cfg.get(key, None)\n            if value:\n                merge = True\n                copy.pop(i)\n                copy.pop(i)\n                match = f\"{first[0]} {second[0]}\"\n                pos = value\n                copy.insert(i, (match, pos))\n                break\n    match = any([t[1] in (\"NNP\", \"NNI\") for t in copy])\n    return match\n"
  },
  {
    "path": "src/textblob/en/parsers.py",
    "content": "\"\"\"Various parser implementations.\n\n.. versionadded:: 0.6.0\n\"\"\"\nfrom textblob.base import BaseParser\nfrom textblob.en import parse as pattern_parse\n\n\nclass PatternParser(BaseParser):\n    \"\"\"Parser that uses the implementation in Tom de Smedt's pattern library.\n    http://www.clips.ua.ac.be/pages/pattern-en#parser\n    \"\"\"\n\n    def parse(self, text):\n        \"\"\"Parses the text.\"\"\"\n        return pattern_parse(text)\n"
  },
  {
    "path": "src/textblob/en/sentiments.py",
    "content": "\"\"\"Sentiment analysis implementations.\n\n.. versionadded:: 0.5.0\n\"\"\"\nfrom collections import namedtuple\n\nimport nltk\n\nfrom textblob.base import CONTINUOUS, DISCRETE, BaseSentimentAnalyzer\nfrom textblob.decorators import requires_nltk_corpus\nfrom textblob.en import sentiment as pattern_sentiment\nfrom textblob.tokenizers import word_tokenize\n\n\nclass PatternAnalyzer(BaseSentimentAnalyzer):\n    \"\"\"Sentiment analyzer that uses the same implementation as the\n    pattern library. Returns results as a named tuple of the form:\n\n    ``Sentiment(polarity, subjectivity, [assessments])``\n\n    where [assessments] is a list of the assessed tokens and their\n    polarity and subjectivity scores\n    \"\"\"\n\n    kind = CONTINUOUS\n    # This is only here for backwards-compatibility.\n    # The return type is actually determined upon calling analyze()\n    RETURN_TYPE = namedtuple(\"Sentiment\", [\"polarity\", \"subjectivity\"])\n\n    def analyze(self, text, keep_assessments=False):\n        \"\"\"Return the sentiment as a named tuple of the form:\n        ``Sentiment(polarity, subjectivity, [assessments])``.\n        \"\"\"\n        #: Return type declaration\n        if keep_assessments:\n            Sentiment = namedtuple(\n                \"Sentiment\", [\"polarity\", \"subjectivity\", \"assessments\"]\n            )\n            assessments = pattern_sentiment(text).assessments\n            polarity, subjectivity = pattern_sentiment(text)\n            return Sentiment(polarity, subjectivity, assessments)\n\n        else:\n            Sentiment = namedtuple(\"Sentiment\", [\"polarity\", \"subjectivity\"])\n            return Sentiment(*pattern_sentiment(text))\n\n\ndef _default_feature_extractor(words):\n    \"\"\"Default feature extractor for the NaiveBayesAnalyzer.\"\"\"\n    return dict((word, True) for word in words)\n\n\nclass NaiveBayesAnalyzer(BaseSentimentAnalyzer):\n    \"\"\"Naive Bayes analyzer that is trained on a dataset of movie reviews.\n    Returns results as a named tuple of the form:\n    ``Sentiment(classification, p_pos, p_neg)``\n\n    :param callable feature_extractor: Function that returns a dictionary of\n        features, given a list of words.\n    \"\"\"\n\n    kind = DISCRETE\n    #: Return type declaration\n    RETURN_TYPE = namedtuple(\"Sentiment\", [\"classification\", \"p_pos\", \"p_neg\"])\n\n    def __init__(self, feature_extractor=_default_feature_extractor):\n        super().__init__()\n        self._classifier = None\n        self.feature_extractor = feature_extractor\n\n    @requires_nltk_corpus\n    def train(self):\n        \"\"\"Train the Naive Bayes classifier on the movie review corpus.\"\"\"\n        super().train()\n        neg_ids = nltk.corpus.movie_reviews.fileids(\"neg\")\n        pos_ids = nltk.corpus.movie_reviews.fileids(\"pos\")\n        neg_feats = [\n            (\n                self.feature_extractor(nltk.corpus.movie_reviews.words(fileids=[f])),\n                \"neg\",\n            )\n            for f in neg_ids\n        ]\n        pos_feats = [\n            (\n                self.feature_extractor(nltk.corpus.movie_reviews.words(fileids=[f])),\n                \"pos\",\n            )\n            for f in pos_ids\n        ]\n        train_data = neg_feats + pos_feats\n        self._classifier = nltk.classify.NaiveBayesClassifier.train(train_data)\n\n    def analyze(self, text):\n        \"\"\"Return the sentiment as a named tuple of the form:\n        ``Sentiment(classification, p_pos, p_neg)``\n        \"\"\"\n        # Lazily train the classifier\n        super().analyze(text)\n        tokens = word_tokenize(text, include_punc=False)\n        filtered = (t.lower() for t in tokens if len(t) >= 3)\n        feats = self.feature_extractor(filtered)\n        prob_dist = self._classifier.prob_classify(feats)\n        return self.RETURN_TYPE(\n            classification=prob_dist.max(),\n            p_pos=prob_dist.prob(\"pos\"),\n            p_neg=prob_dist.prob(\"neg\"),\n        )\n"
  },
  {
    "path": "src/textblob/en/taggers.py",
    "content": "\"\"\"Parts-of-speech tagger implementations.\"\"\"\n\nimport nltk\n\nimport textblob as tb\nfrom textblob.base import BaseTagger\nfrom textblob.decorators import requires_nltk_corpus\nfrom textblob.en import tag as pattern_tag\n\n\nclass PatternTagger(BaseTagger):\n    \"\"\"Tagger that uses the implementation in\n    Tom de Smedt's pattern library\n    (http://www.clips.ua.ac.be/pattern).\n    \"\"\"\n\n    def tag(self, text, tokenize=True):\n        \"\"\"Tag a string or BaseBlob.\"\"\"\n        if not isinstance(text, str):\n            text = text.raw\n        return pattern_tag(text, tokenize)\n\n\nclass NLTKTagger(BaseTagger):\n    \"\"\"Tagger that uses NLTK's standard TreeBank tagger.\n    NOTE: Requires numpy. Not yet supported with PyPy.\n    \"\"\"\n\n    @requires_nltk_corpus\n    def tag(self, text):\n        \"\"\"Tag a string or BaseBlob.\"\"\"\n        if isinstance(text, str):\n            text = tb.TextBlob(text)\n\n        return nltk.tag.pos_tag(text.tokens)\n"
  },
  {
    "path": "src/textblob/exceptions.py",
    "content": "MISSING_CORPUS_MESSAGE = \"\"\"\nLooks like you are missing some required data for this feature.\n\nTo download the necessary data, simply run\n\n    python -m textblob.download_corpora\n\nor use the NLTK downloader to download the missing data: http://nltk.org/data.html\nIf this doesn't fix the problem, file an issue at https://github.com/sloria/TextBlob/issues.\n\"\"\"\n\n\nclass TextBlobError(Exception):\n    \"\"\"A TextBlob-related error.\"\"\"\n\n    pass\n\n\nTextBlobException = TextBlobError  # Backwards compat\n\n\nclass MissingCorpusError(TextBlobError):\n    \"\"\"Exception thrown when a user tries to use a feature that requires a\n    dataset or model that the user does not have on their system.\n    \"\"\"\n\n    def __init__(self, message=MISSING_CORPUS_MESSAGE, *args, **kwargs):\n        super().__init__(message, *args, **kwargs)\n\n\nMissingCorpusException = MissingCorpusError  # Backwards compat\n\n\nclass DeprecationError(TextBlobError):\n    \"\"\"Raised when user uses a deprecated feature.\"\"\"\n\n    pass\n\n\nclass TranslatorError(TextBlobError):\n    \"\"\"Raised when an error occurs during language translation or detection.\"\"\"\n\n    pass\n\n\nclass NotTranslated(TranslatorError):\n    \"\"\"Raised when text is unchanged after translation. This may be due to the language\n    being unsupported by the translator.\n    \"\"\"\n\n    pass\n\n\nclass FormatError(TextBlobError):\n    \"\"\"Raised if a data file with an unsupported format is passed to a classifier.\"\"\"\n\n    pass\n"
  },
  {
    "path": "src/textblob/formats.py",
    "content": "\"\"\"File formats for training and testing data.\n\nIncludes a registry of valid file formats. New file formats can be added to the\nregistry like so: ::\n\n    from textblob import formats\n\n\n    class PipeDelimitedFormat(formats.DelimitedFormat):\n        delimiter = \"|\"\n\n\n    formats.register(\"psv\", PipeDelimitedFormat)\n\nOnce a format has been registered, classifiers will be able to read data files with\nthat format. ::\n\n    from textblob.classifiers import NaiveBayesAnalyzer\n\n    with open(\"training_data.psv\", \"r\") as fp:\n        cl = NaiveBayesAnalyzer(fp, format=\"psv\")\n\"\"\"\n\nfrom __future__ import annotations\n\nimport csv\nimport json\nfrom collections import OrderedDict\n\nfrom textblob.utils import is_filelike\n\nDEFAULT_ENCODING = \"utf-8\"\n\n\nclass BaseFormat:\n    \"\"\"Interface for format classes. Individual formats can decide on the\n    composition and meaning of ``**kwargs``.\n\n    :param File fp: A file-like object.\n\n    .. versionchanged:: 0.9.0\n        Constructor receives a file pointer rather than a file path.\n    \"\"\"\n\n    def __init__(self, fp, **kwargs):\n        pass\n\n    def to_iterable(self):\n        \"\"\"Return an iterable object from the data.\"\"\"\n        raise NotImplementedError('Must implement a \"to_iterable\" method.')\n\n    @classmethod\n    def detect(cls, stream: str):\n        \"\"\"Detect the file format given a filename.\n        Return True if a stream is this file format.\n\n        .. versionchanged:: 0.9.0\n            Changed from a static method to a class method.\n        \"\"\"\n        raise NotImplementedError('Must implement a \"detect\" class method.')\n\n\nclass DelimitedFormat(BaseFormat):\n    \"\"\"A general character-delimited format.\"\"\"\n\n    data: list[list[str]]\n    delimiter = \",\"\n\n    def __init__(self, fp, **kwargs):\n        BaseFormat.__init__(self, fp, **kwargs)\n        reader = csv.reader(fp, delimiter=self.delimiter)\n        self.data = [row for row in reader]\n\n    def to_iterable(self):\n        \"\"\"Return an iterable object from the data.\"\"\"\n        return self.data\n\n    @classmethod\n    def detect(cls, stream):\n        \"\"\"Return True if stream is valid.\"\"\"\n        try:\n            csv.Sniffer().sniff(stream, delimiters=cls.delimiter)\n            return True\n        except (csv.Error, TypeError):\n            return False\n\n\nclass CSV(DelimitedFormat):\n    \"\"\"CSV format. Assumes each row is of the form ``text,label``.\n    ::\n\n        Today is a good day,pos\n        I hate this car.,pos\n    \"\"\"\n\n    delimiter = \",\"\n\n\nclass TSV(DelimitedFormat):\n    \"\"\"TSV format. Assumes each row is of the form ``text\\tlabel``.\"\"\"\n\n    delimiter = \"\\t\"\n\n\nclass JSON(BaseFormat):\n    \"\"\"JSON format.\n\n    Assumes that JSON is formatted as an array of objects with ``text`` and\n    ``label`` properties.\n    ::\n\n        [\n            {\"text\": \"Today is a good day.\", \"label\": \"pos\"},\n            {\"text\": \"I hate this car.\", \"label\": \"neg\"},\n        ]\n    \"\"\"\n\n    def __init__(self, fp, **kwargs):\n        BaseFormat.__init__(self, fp, **kwargs)\n        self.dict = json.load(fp)\n\n    def to_iterable(self):\n        \"\"\"Return an iterable object from the JSON data.\"\"\"\n        return [(d[\"text\"], d[\"label\"]) for d in self.dict]\n\n    @classmethod\n    def detect(cls, stream: str | bytes | bytearray):\n        \"\"\"Return True if stream is valid JSON.\"\"\"\n        try:\n            json.loads(stream)\n            return True\n        except ValueError:\n            return False\n\n\n_registry = OrderedDict(\n    [\n        (\"csv\", CSV),\n        (\"json\", JSON),\n        (\"tsv\", TSV),\n    ]\n)\n\n\ndef detect(fp, max_read=1024):\n    \"\"\"Attempt to detect a file's format, trying each of the supported\n    formats. Return the format class that was detected. If no format is\n    detected, return ``None``.\n    \"\"\"\n    if not is_filelike(fp):\n        return None\n    for Format in _registry.values():\n        if Format.detect(fp.read(max_read)):\n            fp.seek(0)\n            return Format\n        fp.seek(0)\n    return None\n\n\ndef get_registry():\n    \"\"\"Return a dictionary of registered formats.\"\"\"\n    return _registry\n\n\ndef register(name, format_class):\n    \"\"\"Register a new format.\n\n    :param str name: The name that will be used to refer to the format, e.g. 'csv'\n    :param type format_class: The format class to register.\n    \"\"\"\n    get_registry()[name] = format_class\n"
  },
  {
    "path": "src/textblob/inflect.py",
    "content": "\"\"\"Make word inflection default to English. This allows for backwards\ncompatibility so you can still import text.inflect.\n\n    >>> from textblob.inflect import singularize\n\nis equivalent to\n\n    >>> from textblob.en.inflect import singularize\n\"\"\"\n\nfrom textblob.en.inflect import pluralize, singularize\n\n__all__ = [\n    \"singularize\",\n    \"pluralize\",\n]\n"
  },
  {
    "path": "src/textblob/mixins.py",
    "content": "import sys\n\n\nclass ComparableMixin:\n    \"\"\"Implements rich operators for an object.\"\"\"\n\n    def _cmpkey(self):\n        raise NotImplementedError(\"Class must implement _cmpkey method\")\n\n    def _compare(self, other, method):\n        try:\n            return method(self._cmpkey(), other._cmpkey())\n        except (AttributeError, TypeError):\n            # _cmpkey not implemented, or return different type,\n            # so I can't compare with \"other\". Try the reverse comparison\n            return NotImplemented\n\n    def __lt__(self, other):\n        return self._compare(other, lambda s, o: s < o)\n\n    def __le__(self, other):\n        return self._compare(other, lambda s, o: s <= o)\n\n    def __eq__(self, other):\n        return self._compare(other, lambda s, o: s == o)\n\n    def __ge__(self, other):\n        return self._compare(other, lambda s, o: s >= o)\n\n    def __gt__(self, other):\n        return self._compare(other, lambda s, o: s > o)\n\n    def __ne__(self, other):\n        return self._compare(other, lambda s, o: s != o)\n\n\nclass BlobComparableMixin(ComparableMixin):\n    \"\"\"Allow blob objects to be comparable with both strings and blobs.\"\"\"\n\n    def _compare(self, other, method):\n        if isinstance(other, (str, bytes)):\n            # Just compare with the other string\n            return method(self._cmpkey(), other)\n        return super()._compare(other, method)\n\n\nclass StringlikeMixin:\n    \"\"\"Make blob objects behave like Python strings.\n\n    Expects that classes that use this mixin to have a _strkey() method that\n    returns the string to apply string methods to. Using _strkey() instead\n    of __str__ ensures consistent behavior between Python 2 and 3.\n    \"\"\"\n\n    def _strkey(self) -> str:\n        raise NotImplementedError(\"Class must implement _strkey method\")\n\n    def __repr__(self):\n        \"\"\"Returns a string representation for debugging.\"\"\"\n        class_name = self.__class__.__name__\n        text = str(self)\n        return f'{class_name}(\"{text}\")'\n\n    def __str__(self):\n        \"\"\"Returns a string representation used in print statements\n        or str(my_blob).\"\"\"\n        return self._strkey()\n\n    def __len__(self):\n        \"\"\"Returns the length of the raw text.\"\"\"\n        return len(self._strkey())\n\n    def __iter__(self):\n        \"\"\"Makes the object iterable as if it were a string,\n        iterating through the raw string's characters.\n        \"\"\"\n        return iter(self._strkey())\n\n    def __contains__(self, sub):\n        \"\"\"Implements the `in` keyword like a Python string.\"\"\"\n        return sub in self._strkey()\n\n    def __getitem__(self, index):\n        \"\"\"Returns a  substring. If index is an integer, returns a Python\n        string of a single character. If a range is given, e.g. `blob[3:5]`,\n        a new instance of the class is returned.\n        \"\"\"\n        if isinstance(index, int):\n            return self._strkey()[index]  # Just return a single character\n        else:\n            # Return a new blob object\n            return self.__class__(self._strkey()[index])\n\n    def find(self, sub, start=0, end=sys.maxsize):\n        \"\"\"Behaves like the built-in str.find() method. Returns an integer,\n        the index of the first occurrence of the substring argument sub in the\n        sub-string given by [start:end].\n        \"\"\"\n        return self._strkey().find(sub, start, end)\n\n    def rfind(self, sub, start=0, end=sys.maxsize):\n        \"\"\"Behaves like the built-in str.rfind() method. Returns an integer,\n        the index of the last (right-most) occurrence of the substring argument\n        sub in the sub-sequence given by [start:end].\n        \"\"\"\n        return self._strkey().rfind(sub, start, end)\n\n    def index(self, sub, start=0, end=sys.maxsize):\n        \"\"\"Like blob.find() but raise ValueError when the substring\n        is not found.\n        \"\"\"\n        return self._strkey().index(sub, start, end)\n\n    def rindex(self, sub, start=0, end=sys.maxsize):\n        \"\"\"Like blob.rfind() but raise ValueError when substring is not\n        found.\n        \"\"\"\n        return self._strkey().rindex(sub, start, end)\n\n    def startswith(self, prefix, start=0, end=sys.maxsize):\n        \"\"\"Returns True if the blob starts with the given prefix.\"\"\"\n        return self._strkey().startswith(prefix, start, end)\n\n    def endswith(self, suffix, start=0, end=sys.maxsize):\n        \"\"\"Returns True if the blob ends with the given suffix.\"\"\"\n        return self._strkey().endswith(suffix, start, end)\n\n    # PEP8 aliases\n    starts_with = startswith\n    ends_with = endswith\n\n    def title(self):\n        \"\"\"Returns a blob object with the text in title-case.\"\"\"\n        return self.__class__(self._strkey().title())\n\n    def format(self, *args, **kwargs):\n        \"\"\"Perform a string formatting operation, like the built-in\n        `str.format(*args, **kwargs)`. Returns a blob object.\n        \"\"\"\n        return self.__class__(self._strkey().format(*args, **kwargs))\n\n    def split(self, sep=None, maxsplit=sys.maxsize):\n        \"\"\"Behaves like the built-in str.split().\"\"\"\n        return self._strkey().split(sep, maxsplit)\n\n    def strip(self, chars=None):\n        \"\"\"Behaves like the built-in str.strip([chars]) method. Returns\n        an object with leading and trailing whitespace removed.\n        \"\"\"\n        return self.__class__(self._strkey().strip(chars))\n\n    def upper(self):\n        \"\"\"Like str.upper(), returns new object with all upper-cased characters.\"\"\"\n        return self.__class__(self._strkey().upper())\n\n    def lower(self):\n        \"\"\"Like str.lower(), returns new object with all lower-cased characters.\"\"\"\n        return self.__class__(self._strkey().lower())\n\n    def join(self, iterable):\n        \"\"\"Behaves like the built-in `str.join(iterable)` method, except\n        returns a blob object.\n\n        Returns a blob which is the concatenation of the strings or blobs\n        in the iterable.\n        \"\"\"\n        return self.__class__(self._strkey().join(iterable))\n\n    def replace(self, old, new, count=sys.maxsize):\n        \"\"\"Return a new blob object with all occurrences of `old` replaced\n        by `new`.\n        \"\"\"\n        return self.__class__(self._strkey().replace(old, new, count))\n"
  },
  {
    "path": "src/textblob/np_extractors.py",
    "content": "\"\"\"Default noun phrase extractors are for English to maintain backwards\ncompatibility, so you can still do\n\n>>> from textblob.np_extractors import ConllExtractor\n\nwhich is equivalent to\n\n>>> from textblob.en.np_extractors import ConllExtractor\n\"\"\"\n\nfrom textblob.base import BaseNPExtractor\nfrom textblob.en.np_extractors import ConllExtractor, FastNPExtractor\n\n__all__ = [\n    \"BaseNPExtractor\",\n    \"ConllExtractor\",\n    \"FastNPExtractor\",\n]\n"
  },
  {
    "path": "src/textblob/parsers.py",
    "content": "\"\"\"Default parsers to English for backwards compatibility so you can still do\n\n>>> from textblob.parsers import PatternParser\n\nwhich is equivalent to\n\n>>> from textblob.en.parsers import PatternParser\n\"\"\"\n\nfrom textblob.base import BaseParser\nfrom textblob.en.parsers import PatternParser\n\n__all__ = [\n    \"BaseParser\",\n    \"PatternParser\",\n]\n"
  },
  {
    "path": "src/textblob/sentiments.py",
    "content": "\"\"\"Default sentiment analyzers are English for backwards compatibility, so\nyou can still do\n\n>>> from textblob.sentiments import PatternAnalyzer\n\nwhich is equivalent to\n\n>>> from textblob.en.sentiments import PatternAnalyzer\n\"\"\"\n\nfrom textblob.base import BaseSentimentAnalyzer\nfrom textblob.en.sentiments import (\n    CONTINUOUS,\n    DISCRETE,\n    NaiveBayesAnalyzer,\n    PatternAnalyzer,\n)\n\n__all__ = [\n    \"BaseSentimentAnalyzer\",\n    \"DISCRETE\",\n    \"CONTINUOUS\",\n    \"PatternAnalyzer\",\n    \"NaiveBayesAnalyzer\",\n]\n"
  },
  {
    "path": "src/textblob/taggers.py",
    "content": "\"\"\"Default taggers to the English taggers for backwards incompatibility, so you\ncan still do\n\n>>> from textblob.taggers import NLTKTagger\n\nwhich is equivalent to\n\n>>> from textblob.en.taggers import NLTKTagger\n\"\"\"\n\nfrom textblob.base import BaseTagger\nfrom textblob.en.taggers import NLTKTagger, PatternTagger\n\n__all__ = [\n    \"BaseTagger\",\n    \"PatternTagger\",\n    \"NLTKTagger\",\n]\n"
  },
  {
    "path": "src/textblob/tokenizers.py",
    "content": "\"\"\"Various tokenizer implementations.\n\n.. versionadded:: 0.4.0\n\"\"\"\n\nfrom itertools import chain\n\nimport nltk\n\nfrom textblob.base import BaseTokenizer\nfrom textblob.decorators import requires_nltk_corpus\nfrom textblob.utils import strip_punc\n\n\nclass WordTokenizer(BaseTokenizer):\n    \"\"\"NLTK's recommended word tokenizer (currently the TreeBankTokenizer).\n    Uses regular expressions to tokenize text. Assumes text has already been\n    segmented into sentences.\n\n    Performs the following steps:\n\n    * split standard contractions, e.g. don't -> do n't\n    * split commas and single quotes\n    * separate periods that appear at the end of line\n    \"\"\"\n\n    def tokenize(self, text, include_punc=True):\n        \"\"\"Return a list of word tokens.\n\n        :param text: string of text.\n        :param include_punc: (optional) whether to\n            include punctuation as separate tokens. Default to True.\n        \"\"\"\n        tokens = nltk.tokenize.word_tokenize(text)\n        if include_punc:\n            return tokens\n        else:\n            # Return each word token\n            # Strips punctuation unless the word comes from a contraction\n            # e.g. \"Let's\" => [\"Let\", \"'s\"]\n            # e.g. \"Can't\" => [\"Ca\", \"n't\"]\n            # e.g. \"home.\" => ['home']\n            return [\n                word if word.startswith(\"'\") else strip_punc(word, all=False)\n                for word in tokens\n                if strip_punc(word, all=False)\n            ]\n\n\nclass SentenceTokenizer(BaseTokenizer):\n    \"\"\"NLTK's sentence tokenizer (currently PunktSentenceTokenizer).\n    Uses an unsupervised algorithm to build a model for abbreviation words,\n    collocations, and words that start sentences,\n    then uses that to find sentence boundaries.\n    \"\"\"\n\n    @requires_nltk_corpus\n    def tokenize(self, text):\n        \"\"\"Return a list of sentences.\"\"\"\n        return nltk.tokenize.sent_tokenize(text)\n\n\n#: Convenience function for tokenizing sentences\nsent_tokenize = SentenceTokenizer().itokenize\n\n_word_tokenizer = WordTokenizer()  # Singleton word tokenizer\n\n\ndef word_tokenize(text, include_punc=True, *args, **kwargs):\n    \"\"\"Convenience function for tokenizing text into words.\n\n    NOTE: NLTK's word tokenizer expects sentences as input, so the text will be\n    tokenized to sentences before being tokenized to words.\n    \"\"\"\n    words = chain.from_iterable(\n        _word_tokenizer.itokenize(sentence, include_punc, *args, **kwargs)\n        for sentence in sent_tokenize(text)\n    )\n    return words\n"
  },
  {
    "path": "src/textblob/utils.py",
    "content": "from __future__ import annotations\n\nimport re\nimport string\nfrom typing import TYPE_CHECKING\n\nif TYPE_CHECKING:\n    from collections.abc import Iterable\n\nPUNCTUATION_REGEX = re.compile(f\"[{re.escape(string.punctuation)}]\")\n\n\ndef strip_punc(s: str, all=False):\n    \"\"\"Removes punctuation from a string.\n\n    :param s: The string.\n    :param all: Remove all punctuation. If False, only removes punctuation from\n        the ends of the string.\n    \"\"\"\n    if all:\n        return PUNCTUATION_REGEX.sub(\"\", s.strip())\n    else:\n        return s.strip().strip(string.punctuation)\n\n\ndef lowerstrip(s: str, all=False):\n    \"\"\"Makes text all lowercase and strips punctuation and whitespace.\n\n    :param s: The string.\n    :param all: Remove all punctuation. If False, only removes punctuation from\n        the ends of the string.\n    \"\"\"\n    return strip_punc(s.lower().strip(), all=all)\n\n\ndef tree2str(tree, concat=\" \"):\n    \"\"\"Convert a nltk.tree.Tree to a string.\n\n    For example:\n        (NP a/DT beautiful/JJ new/JJ dashboard/NN) -> \"a beautiful dashboard\"\n    \"\"\"\n    return concat.join([word for (word, _) in tree])\n\n\ndef filter_insignificant(\n    chunk, tag_suffixes: Iterable[str] = (\"DT\", \"CC\", \"PRP$\", \"PRP\")\n):\n    \"\"\"Filter out insignificant (word, tag) tuples from a chunk of text.\"\"\"\n    good: list[tuple[str, str]] = []\n    for word, tag in chunk:\n        ok = True\n        for suffix in tag_suffixes:\n            if tag.endswith(suffix):\n                ok = False\n                break\n        if ok:\n            good.append((word, tag))\n    return good\n\n\ndef is_filelike(obj):\n    \"\"\"Return whether ``obj`` is a file-like object.\"\"\"\n    if not hasattr(obj, \"read\"):\n        return False\n    if not callable(obj.read):\n        return False\n    return True\n"
  },
  {
    "path": "src/textblob/wordnet.py",
    "content": "\"\"\"Wordnet interface. Contains classes for creating Synsets and Lemmas\ndirectly.\n\n.. versionadded:: 0.7.0\n\n\"\"\"\n\nimport nltk\n\n#: wordnet module from nltk\nwordnet = nltk.corpus.wordnet\n#: Synset constructor\nSynset = nltk.corpus.wordnet.synset\n#: Lemma constructor\nLemma = nltk.corpus.wordnet.lemma\n# Part of speech constants\nVERB, NOUN, ADJ, ADV = wordnet.VERB, wordnet.NOUN, wordnet.ADJ, wordnet.ADV\n"
  },
  {
    "path": "tests/__init__.py",
    "content": ""
  },
  {
    "path": "tests/data.csv",
    "content": "I love this car,pos\n美丽优于丑陋,pos\nI am so excited about the concert,pos\nI feel great this morning,pos\nHe is my best friend,pos\nThis view is amazing,pos\nI do not like this car,neg\nI am not looking forward to the concert,neg\nHe is my enemy,neg\nI feel tired this morning,neg"
  },
  {
    "path": "tests/data.json",
    "content": "[\n    {\n        \"text\": \"I love this car\",\n        \"label\": \"pos\"\n    },\n    {\n        \"text\": \"美丽优于丑陋\",\n        \"label\": \"pos\"\n    },\n    {\n        \"text\": \"I am so excited about the concert\",\n        \"label\": \"pos\"\n    },\n    {\n        \"text\": \"I feel great this morning\",\n        \"label\": \"pos\"\n    },\n    {\n        \"text\": \"He is my best friend\",\n        \"label\": \"pos\"\n    },\n    {\n        \"text\": \"This view is amazing\",\n        \"label\": \"pos\"\n    },\n    {\n        \"text\": \"I do not like this car\",\n        \"label\": \"neg\"\n    },\n    {\n        \"text\": \"I am not looking forward to the concert\",\n        \"label\": \"neg\"\n    },\n    {\n        \"text\": \"He is my enemy\",\n        \"label\": \"neg\"\n    },\n    {\n        \"text\": \"I feel tired this morning\",\n        \"label\": \"neg\"\n    }\n]"
  },
  {
    "path": "tests/data.tsv",
    "content": "I love this car\tpos\n美丽优于丑陋\tpos\nI am so excited about the concert\tpos\nI feel great this morning\tpos\nHe is my best friend\tpos\nThis view is amazing\tpos\nI do not like this car\tneg\nI am not looking forward to the concert\tneg\nHe is my enemy\tneg\nI feel tired this morning\tneg"
  },
  {
    "path": "tests/test_blob.py",
    "content": "\"\"\"\nTests for the text processor.\n\"\"\"\n\nimport json\nfrom datetime import datetime\nfrom unittest import TestCase\n\nimport nltk\nimport pytest\n\nimport textblob as tb\nimport textblob.wordnet as wn\nfrom textblob.classifiers import NaiveBayesClassifier\nfrom textblob.np_extractors import ConllExtractor, FastNPExtractor\nfrom textblob.parsers import PatternParser\nfrom textblob.sentiments import NaiveBayesAnalyzer, PatternAnalyzer\nfrom textblob.taggers import NLTKTagger, PatternTagger\nfrom textblob.tokenizers import SentenceTokenizer, WordTokenizer\n\nSynset = nltk.corpus.reader.Synset\n\ntrain = [\n    (\"I love this sandwich.\", \"pos\"),\n    (\"This is an amazing place!\", \"pos\"),\n    (\"What a truly amazing dinner.\", \"pos\"),\n    (\"I feel very good about these beers.\", \"pos\"),\n    (\"This is my best work.\", \"pos\"),\n    (\"What an awesome view\", \"pos\"),\n    (\"I do not like this restaurant\", \"neg\"),\n    (\"I am tired of this stuff.\", \"neg\"),\n    (\"I can't deal with this\", \"neg\"),\n    (\"He is my sworn enemy!\", \"neg\"),\n    (\"My boss is horrible.\", \"neg\"),\n]\n\ntest = [\n    (\"The beer was good.\", \"pos\"),\n    (\"I do not enjoy my job\", \"neg\"),\n    (\"I ain't feeling dandy today.\", \"neg\"),\n    (\"I feel amazing!\", \"pos\"),\n    (\"Gary is a friend of mine.\", \"pos\"),\n    (\"I can't believe I'm doing this.\", \"neg\"),\n]\n\nclassifier = NaiveBayesClassifier(train)\n\n\nclass WordListTest(TestCase):\n    def setUp(self):\n        self.words = \"Beautiful is better than ugly\".split()\n        self.mixed = [\"dog\", \"dogs\", \"blob\", \"Blobs\", \"text\"]\n\n    def test_len(self):\n        wl = tb.WordList([\"Beautiful\", \"is\", \"better\"])\n        assert len(wl) == 3\n\n    def test_slicing(self):\n        wl = tb.WordList(self.words)\n        first = wl[0]\n        assert isinstance(first, tb.Word)\n        assert first == \"Beautiful\"\n\n        dogs = wl[0:2]\n        assert isinstance(dogs, tb.WordList)\n        assert dogs == tb.WordList([\"Beautiful\", \"is\"])\n\n    def test_repr(self):\n        wl = tb.WordList([\"Beautiful\", \"is\", \"better\"])\n        assert repr(wl) == \"WordList(['Beautiful', 'is', 'better'])\"\n\n    def test_slice_repr(self):\n        wl = tb.WordList([\"Beautiful\", \"is\", \"better\"])\n        assert repr(wl[:2]) == \"WordList(['Beautiful', 'is'])\"\n\n    def test_str(self):\n        wl = tb.WordList(self.words)\n        assert str(wl) == str(self.words)\n\n    def test_singularize(self):\n        wl = tb.WordList([\"dogs\", \"cats\", \"buffaloes\", \"men\", \"mice\", \"offspring\"])\n        assert wl.singularize() == tb.WordList(\n            [\"dog\", \"cat\", \"buffalo\", \"man\", \"mouse\", \"offspring\"]\n        )\n\n    def test_pluralize(self):\n        wl = tb.WordList([\"dog\", \"cat\", \"buffalo\", \"antelope\"])\n        assert wl.pluralize() == tb.WordList([\"dogs\", \"cats\", \"buffaloes\", \"antelope\"])\n\n    @pytest.mark.slow\n    def test_lemmatize(self):\n        wl = tb.WordList([\"cat\", \"dogs\", \"oxen\"])\n        assert wl.lemmatize() == tb.WordList([\"cat\", \"dog\", \"ox\"])\n\n    def test_stem(self):  # only PorterStemmer tested\n        wl = tb.WordList([\"cat\", \"dogs\", \"oxen\"])\n        assert wl.stem() == tb.WordList([\"cat\", \"dog\", \"oxen\"])\n\n    def test_upper(self):\n        wl = tb.WordList(self.words)\n        assert wl.upper() == tb.WordList([w.upper() for w in self.words])\n\n    def test_lower(self):\n        wl = tb.WordList([\"Zen\", \"oF\", \"PYTHON\"])\n        assert wl.lower() == tb.WordList([\"zen\", \"of\", \"python\"])\n\n    def test_count(self):\n        wl = tb.WordList([\"monty\", \"python\", \"Python\", \"Monty\"])\n        assert wl.count(\"monty\") == 2\n        assert wl.count(\"monty\", case_sensitive=True) == 1\n        assert wl.count(\"mon\") == 0\n\n    def test_convert_to_list(self):\n        wl = tb.WordList(self.words)\n        assert list(wl) == self.words\n\n    def test_append(self):\n        wl = tb.WordList([\"dog\"])\n        wl.append(\"cat\")\n        assert isinstance(wl[1], tb.Word)\n        wl.append((\"a\", \"tuple\"))\n        assert isinstance(wl[2], tuple)\n\n    def test_extend(self):\n        wl = tb.WordList([\"cats\", \"dogs\"])\n        wl.extend([\"buffalo\", 4])\n        assert isinstance(wl[2], tb.Word)\n        assert isinstance(wl[3], int)\n\n    def test_pop(self):\n        wl = tb.WordList([\"cats\", \"dogs\"])\n        assert wl.pop() == tb.Word(\"dogs\")\n        with pytest.raises(IndexError):\n            wl[1]\n        assert wl.pop() == tb.Word(\"cats\")\n        assert len(wl) == 0\n        with pytest.raises(IndexError):\n            wl.pop()\n\n    def test_setitem(self):\n        wl = tb.WordList([\"I\", \"love\", \"JavaScript\"])\n        wl[2] = tb.Word(\"Python\")\n        assert wl[2] == tb.Word(\"Python\")\n\n    def test_reverse(self):\n        wl = tb.WordList([\"head\", \"shoulders\", \"knees\", \"toes\"])\n        wl.reverse()\n        assert list(wl) == [\"toes\", \"knees\", \"shoulders\", \"head\"]\n\n\nclass SentenceTest(TestCase):\n    def setUp(self):\n        self.raw_sentence = \"Any place with frites and Belgian beer has my vote.\"\n        self.sentence = tb.Sentence(self.raw_sentence)\n\n    def test_repr(self):\n        assert repr(self.sentence) == f'Sentence(\"{self.raw_sentence}\")'\n\n    def test_stripped_sentence(self):\n        assert (\n            self.sentence.stripped\n            == \"any place with frites and belgian beer has my vote\"\n        )\n\n    def test_len(self):\n        assert len(self.sentence) == len(self.raw_sentence)\n\n    @pytest.mark.slow\n    def test_dict(self):\n        sentence_dict = self.sentence.dict\n        assert sentence_dict == {\n            \"raw\": self.raw_sentence,\n            \"start_index\": 0,\n            \"polarity\": 0.0,\n            \"subjectivity\": 0.0,\n            \"end_index\": len(self.raw_sentence) - 1,\n            \"stripped\": \"any place with frites and belgian beer has my vote\",\n            \"noun_phrases\": self.sentence.noun_phrases,\n        }\n\n    def test_pos_tags(self):\n        then1 = datetime.now()\n        tagged = self.sentence.pos_tags\n        now1 = datetime.now()\n        t1 = now1 - then1\n\n        then2 = datetime.now()\n        tagged = self.sentence.pos_tags\n        now2 = datetime.now()\n        t2 = now2 - then2\n\n        # Getting the pos tags the second time should be faster\n        # because they were stored as an attribute the first time\n        assert t2 < t1\n        assert tagged == [\n            (\"Any\", \"DT\"),\n            (\"place\", \"NN\"),\n            (\"with\", \"IN\"),\n            (\"frites\", \"NNS\"),\n            (\"and\", \"CC\"),\n            (\"Belgian\", \"JJ\"),\n            (\"beer\", \"NN\"),\n            (\"has\", \"VBZ\"),\n            (\"my\", \"PRP$\"),\n            (\"vote\", \"NN\"),\n        ]\n\n    @pytest.mark.slow\n    def test_noun_phrases(self):\n        nps = self.sentence.noun_phrases\n        assert nps == [\"belgian beer\"]\n\n    def test_words_are_word_objects(self):\n        words = self.sentence.words\n        assert isinstance(words[0], tb.Word)\n        assert words[1].pluralize() == \"places\"\n\n    def test_string_equality(self):\n        assert self.sentence == \"Any place with frites and Belgian beer has my vote.\"\n\n    def test_correct(self):\n        blob = tb.Sentence(\"I havv bad speling.\")\n        assert isinstance(blob.correct(), tb.Sentence)\n        assert blob.correct() == tb.Sentence(\"I have bad spelling.\")\n        blob = tb.Sentence(\"I havv \\ngood speling.\")\n        assert isinstance(blob.correct(), tb.Sentence)\n        assert blob.correct() == tb.Sentence(\"I have \\ngood spelling.\")\n\n\nclass TextBlobTest(TestCase):\n    def setUp(self):\n        self.text = \"\"\"Beautiful is better than ugly.\nExplicit is better than implicit.\nSimple is better than complex.\nComplex is better than complicated.\nFlat is better than nested.\nSparse is better than dense.\nReadability counts.\nSpecial cases aren't special enough to break the rules.\nAlthough practicality beats purity.\nErrors should never pass silently.\nUnless explicitly silenced.\nIn the face of ambiguity, refuse the temptation to guess.\nThere should be one-- and preferably only one --obvious way to do it.\nAlthough that way may not be obvious at first unless you're Dutch.\nNow is better than never.\nAlthough never is often better than *right* now.\nIf the implementation is hard to explain, it's a bad idea.\nIf the implementation is easy to explain, it may be a good idea.\nNamespaces are one honking great idea -- let's do more of those!\"\"\"\n        self.blob = tb.TextBlob(self.text)\n\n        self.np_test_text = \"\"\"\nPython is a widely used general-purpose, high-level programming language.\nIts design philosophy emphasizes code readability, and its syntax allows\nprogrammers to express concepts in fewer\nlines of code than would be possible in languages such as C.\nThe language provides constructs intended to enable clear programs on both a small and large scale.\nPython supports multiple programming paradigms, including object-oriented,\nimperative and functional programming or procedural styles.\nIt features a dynamic type system and automatic memory management and\nhas a large and comprehensive standard library. Like other dynamic languages, Python is often used as a scripting language,\nbut is also used in a wide range of non-scripting contexts.\nUsing third-party tools, Python code can be packaged into standalone executable\nprograms. Python interpreters are available for many operating systems. CPython, the reference implementation of Python, is free and open source software and h\nas a community-based development model, as do nearly all of its alternative implementations. CPython\nis managed by the non-profit Python Software Foundation.\"\"\"  # noqa: E501\n        self.np_test_blob = tb.TextBlob(self.np_test_text)\n\n        self.short = \"Beautiful is better than ugly. \"\n        self.short_blob = tb.TextBlob(self.short)\n\n    def test_init(self):\n        blob = tb.TextBlob(\"Wow I love this place. It really rocks my socks!\")\n        assert len(blob.sentences) == 2\n        assert blob.sentences[1].stripped == \"it really rocks my socks\"\n        assert blob.string == blob.raw\n\n        # Must initialize with a string\n        with pytest.raises(TypeError):\n            tb.TextBlob([\"invalid\"])\n\n    def test_string_equality(self):\n        blob = tb.TextBlob(\"Textblobs should be equal to strings.\")\n        assert blob == \"Textblobs should be equal to strings.\"\n\n    def test_string_comparison(self):\n        blob = tb.TextBlob(\"apple\")\n        assert blob < \"banana\"\n        assert blob > \"aardvark\"\n\n    def test_hash(self):\n        blob = tb.TextBlob(\"apple\")\n        assert hash(blob) == hash(\"apple\")\n        assert hash(blob) != hash(\"banana\")\n\n    def test_stripped(self):\n        blob = tb.TextBlob(\"Um... well this ain't right.!..\")\n        assert blob.stripped == \"um well this aint right\"\n\n    def test_ngrams(self):\n        blob = tb.TextBlob(\"I am eating a pizza.\")\n        three_grams = blob.ngrams()\n        assert three_grams == [\n            tb.WordList((\"I\", \"am\", \"eating\")),\n            tb.WordList((\"am\", \"eating\", \"a\")),\n            tb.WordList((\"eating\", \"a\", \"pizza\")),\n        ]\n        four_grams = blob.ngrams(n=4)\n        assert four_grams == [\n            tb.WordList((\"I\", \"am\", \"eating\", \"a\")),\n            tb.WordList((\"am\", \"eating\", \"a\", \"pizza\")),\n        ]\n\n    def test_clean_html(self):\n        html = (\n            \"<b>Python</b> is a widely used \"\n            '<a href=\"/wiki/General-purpose_programming_language\" '\n            'title=\"General-purpose programming language\">general-purpose</a>, '\n            '<a href=\"/wiki/High-level_programming_language\" '\n            'title=\"High-level programming language\">'\n            \"high-level programming language</a>.\"\n        )\n        with pytest.raises(NotImplementedError):\n            tb.TextBlob(html, clean_html=True)\n\n    def test_sentences(self):\n        blob = self.blob\n        assert len(blob.sentences) == 19\n        assert isinstance(blob.sentences[0], tb.Sentence)\n\n    def test_senences_with_space_before_punctuation(self):\n        text = \"Uh oh. This sentence might cause some problems. : Now we're ok.\"\n        b = tb.TextBlob(text)\n        assert len(b.sentences) == 3\n\n    def test_sentiment_of_foreign_text(self):\n        blob = tb.TextBlob(\n            \"Nous avons cherch\\xe9 un motel dans la r\\xe9gion de \"\n            \"Madison, mais les motels ne sont pas nombreux et nous avons \"\n            \"finalement choisi un Motel 6, attir\\xe9s par le bas \"\n            \"prix de la chambre.\"\n        )\n        assert isinstance(blob.sentiment[0], float)\n\n    def test_iter(self):\n        for i, letter in enumerate(self.short_blob):\n            assert letter == self.short[i]\n\n    def test_raw_sentences(self):\n        blob = tb.TextBlob(self.text)\n        assert len(blob.raw_sentences) == 19\n        assert blob.raw_sentences[0] == \"Beautiful is better than ugly.\"\n\n    def test_blob_with_no_sentences(self):\n        text = \"this isn't really a sentence it's just a long string of words\"\n        blob = tb.TextBlob(text)\n        # the blob just has one sentence\n        assert len(blob.sentences) == 1\n        # the start index is 0, the end index is len(text) - 1\n        assert blob.sentences[0].start_index == 0\n        assert blob.sentences[0].end_index == len(text)\n\n    def test_len(self):\n        blob = tb.TextBlob(\"lorem ipsum\")\n        assert len(blob) == len(\"lorem ipsum\")\n\n    def test_repr(self):\n        blob1 = tb.TextBlob(\"lorem ipsum\")\n        assert repr(blob1) == 'TextBlob(\"{}\")'.format(\"lorem ipsum\")\n\n    def test_cmp(self):\n        blob1 = tb.TextBlob(\"lorem ipsum\")\n        blob2 = tb.TextBlob(\"lorem ipsum\")\n        blob3 = tb.TextBlob(\"dolor sit amet\")\n\n        assert blob1 == blob2  # test ==\n        assert blob1 > blob3  # test >\n        assert blob1 >= blob3  # test >=\n        assert blob3 < blob2  # test <\n        assert blob3 <= blob2  # test <=\n\n    def test_invalid_comparison(self):\n        blob = tb.TextBlob(\"one\")\n        # invalid comparison raises Error\n        with pytest.raises(TypeError):\n            blob < 2  # noqa: B015\n\n    def test_words(self):\n        blob = tb.TextBlob(\n            \"Beautiful is better than ugly. Explicit is better than implicit.\"\n        )\n        assert isinstance(blob.words, tb.WordList)\n        assert blob.words == tb.WordList(\n            [\n                \"Beautiful\",\n                \"is\",\n                \"better\",\n                \"than\",\n                \"ugly\",\n                \"Explicit\",\n                \"is\",\n                \"better\",\n                \"than\",\n                \"implicit\",\n            ]\n        )\n        short = tb.TextBlob(\"Just a bundle of words\")\n        assert short.words == tb.WordList([\"Just\", \"a\", \"bundle\", \"of\", \"words\"])\n\n    def test_words_includes_apostrophes_in_contractions(self):\n        blob = tb.TextBlob(\"Let's test this.\")\n        assert blob.words == tb.WordList([\"Let\", \"'s\", \"test\", \"this\"])\n        blob2 = tb.TextBlob(\"I can't believe it's not butter.\")\n        assert blob2.words == tb.WordList(\n            [\"I\", \"ca\", \"n't\", \"believe\", \"it\", \"'s\", \"not\", \"butter\"]\n        )\n\n    def test_pos_tags(self):\n        blob = tb.TextBlob(\n            \"Simple is better than complex. Complex is better than complicated.\"\n        )\n        assert blob.pos_tags == [\n            (\"Simple\", \"NN\"),\n            (\"is\", \"VBZ\"),\n            (\"better\", \"JJR\"),\n            (\"than\", \"IN\"),\n            (\"complex\", \"JJ\"),\n            (\"Complex\", \"NNP\"),\n            (\"is\", \"VBZ\"),\n            (\"better\", \"JJR\"),\n            (\"than\", \"IN\"),\n            (\"complicated\", \"VBN\"),\n        ]\n\n    def test_tags(self):\n        assert self.blob.tags == self.blob.pos_tags\n\n    def test_tagging_nonascii(self):\n        b = tb.TextBlob(\n            \"Learn how to make the five classic French mother sauces: \"\n            \"Béchamel, Tomato Sauce, Espagnole, Velouté and Hollandaise.\"\n        )\n        tags = b.tags\n        assert isinstance(tags[0][0], str)\n\n    def test_pos_tags_includes_one_letter_articles(self):\n        blob = tb.TextBlob(\"This is a sentence.\")\n        assert blob.pos_tags[2][0] == \"a\"\n\n    @pytest.mark.slow\n    def test_np_extractor_defaults_to_fast_tagger(self):\n        text = \"Python is a high-level scripting language.\"\n        blob1 = tb.TextBlob(text)\n        assert isinstance(blob1.np_extractor, FastNPExtractor)\n\n    def test_np_extractor_is_shared_among_instances(self):\n        blob1 = tb.TextBlob(\"This is one sentence\")\n        blob2 = tb.TextBlob(\"This is another sentence\")\n        assert blob1.np_extractor is blob2.np_extractor\n\n    @pytest.mark.slow\n    def test_can_use_different_np_extractors(self):\n        e = ConllExtractor()\n        text = \"Python is a high-level scripting language.\"\n        blob = tb.TextBlob(text)\n        blob.np_extractor = e\n        assert isinstance(blob.np_extractor, ConllExtractor)\n\n    def test_can_use_different_sentanalyzer(self):\n        blob = tb.TextBlob(\"I love this car\", analyzer=NaiveBayesAnalyzer())\n        assert isinstance(blob.analyzer, NaiveBayesAnalyzer)\n\n    @pytest.mark.slow\n    def test_discrete_sentiment(self):\n        blob = tb.TextBlob(\"I feel great today.\", analyzer=NaiveBayesAnalyzer())\n        assert blob.sentiment[0] == \"pos\"\n\n    def test_can_get_subjectivity_and_polarity_with_different_analyzer(self):\n        blob = tb.TextBlob(\"I love this car.\", analyzer=NaiveBayesAnalyzer())\n        pattern = PatternAnalyzer()\n        assert blob.polarity == pattern.analyze(str(blob))[0]\n        assert blob.subjectivity == pattern.analyze(str(blob))[1]\n\n    def test_pos_tagger_defaults_to_pattern(self):\n        blob = tb.TextBlob(\"some text\")\n        assert isinstance(blob.pos_tagger, NLTKTagger)\n\n    def test_pos_tagger_is_shared_among_instances(self):\n        blob1 = tb.TextBlob(\"This is one sentence\")\n        blob2 = tb.TextBlob(\"This is another sentence.\")\n        assert blob1.pos_tagger is blob2.pos_tagger\n\n    def test_can_use_different_pos_tagger(self):\n        tagger = NLTKTagger()\n        blob = tb.TextBlob(\"this is some text\", pos_tagger=tagger)\n        assert isinstance(blob.pos_tagger, NLTKTagger)\n\n    @pytest.mark.slow\n    def test_can_pass_np_extractor_to_constructor(self):\n        e = ConllExtractor()\n        blob = tb.TextBlob(\"Hello world!\", np_extractor=e)\n        assert isinstance(blob.np_extractor, ConllExtractor)\n\n    def test_getitem(self):\n        blob = tb.TextBlob(\"lorem ipsum\")\n        assert blob[0] == \"l\"\n        assert blob[0:5] == tb.TextBlob(\"lorem\")\n\n    def test_upper(self):\n        blob = tb.TextBlob(\"lorem ipsum\")\n        assert is_blob(blob.upper())\n        assert blob.upper() == tb.TextBlob(\"LOREM IPSUM\")\n\n    def test_upper_and_words(self):\n        blob = tb.TextBlob(\"beautiful is better\")\n        assert blob.upper().words == tb.WordList([\"BEAUTIFUL\", \"IS\", \"BETTER\"])\n\n    def test_lower(self):\n        blob = tb.TextBlob(\"Lorem Ipsum\")\n        assert is_blob(blob.lower())\n        assert blob.lower() == tb.TextBlob(\"lorem ipsum\")\n\n    def test_find(self):\n        text = \"Beautiful is better than ugly.\"\n        blob = tb.TextBlob(text)\n        assert blob.find(\"better\", 5, len(blob)) == text.find(\"better\", 5, len(text))\n\n    def test_rfind(self):\n        text = \"Beautiful is better than ugly. \"\n        blob = tb.TextBlob(text)\n        assert blob.rfind(\"better\") == text.rfind(\"better\")\n\n    def test_startswith(self):\n        blob = tb.TextBlob(self.text)\n        assert blob.startswith(\"Beautiful\")\n        assert blob.starts_with(\"Beautiful\")\n\n    def test_endswith(self):\n        blob = tb.TextBlob(self.text)\n        assert blob.endswith(\"of those!\")\n        assert blob.ends_with(\"of those!\")\n\n    def test_split(self):\n        blob = tb.TextBlob(\"Beautiful is better\")\n        assert blob.split() == tb.WordList([\"Beautiful\", \"is\", \"better\"])\n\n    def test_title(self):\n        blob = tb.TextBlob(\"Beautiful is better\")\n        assert blob.title() == tb.TextBlob(\"Beautiful Is Better\")\n\n    def test_format(self):\n        blob = tb.TextBlob(\"1 + 1 = {0}\")\n        assert blob.format(1 + 1) == tb.TextBlob(\"1 + 1 = 2\")\n        assert \"1 + 1 = {}\".format(tb.TextBlob(\"2\")) == \"1 + 1 = 2\"\n\n    def test_using_indices_for_slicing(self):\n        blob = tb.TextBlob(\"Hello world. How do you do?\")\n        sent1, sent2 = blob.sentences\n        assert blob[sent1.start : sent1.end] == tb.TextBlob(str(sent1))\n        assert blob[sent2.start : sent2.end] == tb.TextBlob(str(sent2))\n\n    def test_indices_with_only_one_sentences(self):\n        blob = tb.TextBlob(\"Hello world.\")\n        sent1 = blob.sentences[0]\n        assert blob[sent1.start : sent1.end] == tb.TextBlob(str(sent1))\n\n    def test_indices_with_multiple_puncutations(self):\n        blob = tb.TextBlob(\"Hello world. How do you do?! This has an ellipses...\")\n        sent1, sent2, sent3 = blob.sentences\n        assert blob[sent2.start : sent2.end] == tb.TextBlob(\"How do you do?!\")\n        assert blob[sent3.start : sent3.end] == tb.TextBlob(\"This has an ellipses...\")\n\n    def test_indices_short_names(self):\n        blob = tb.TextBlob(self.text)\n        last_sentence = blob.sentences[len(blob.sentences) - 1]\n        assert last_sentence.start == last_sentence.start_index\n        assert last_sentence.end == last_sentence.end_index\n\n    def test_replace(self):\n        blob = tb.TextBlob(\"textblob is a blobby blob\")\n        assert blob.replace(\"blob\", \"bro\") == tb.TextBlob(\"textbro is a broby bro\")\n        assert blob.replace(\"blob\", \"bro\", 1) == tb.TextBlob(\"textbro is a blobby blob\")\n\n    def test_join(self):\n        lst = [\"explicit\", \"is\", \"better\"]\n        wl = tb.WordList(lst)\n        assert tb.TextBlob(\" \").join(lst) == tb.TextBlob(\"explicit is better\")\n        assert tb.TextBlob(\" \").join(wl) == tb.TextBlob(\"explicit is better\")\n\n    @pytest.mark.slow\n    def test_blob_noun_phrases(self):\n        noun_phrases = self.np_test_blob.noun_phrases\n        assert \"python\" in noun_phrases\n        assert \"design philosophy\" in noun_phrases\n\n    def test_word_counts(self):\n        blob = tb.TextBlob(\"Buffalo buffalo ate my blue buffalo.\")\n        assert dict(blob.word_counts) == {\"buffalo\": 3, \"ate\": 1, \"my\": 1, \"blue\": 1}\n        assert blob.word_counts[\"buffalo\"] == 3\n        assert blob.words.count(\"buffalo\") == 3\n        assert blob.words.count(\"buffalo\", case_sensitive=True) == 2\n        assert blob.word_counts[\"blue\"] == 1\n        assert blob.words.count(\"blue\") == 1\n        assert blob.word_counts[\"ate\"] == 1\n        assert blob.words.count(\"ate\") == 1\n        assert blob.word_counts[\"buff\"] == 0\n        assert blob.words.count(\"buff\") == 0\n\n        blob2 = tb.TextBlob(self.text)\n        assert blob2.words.count(\"special\") == 2\n        assert blob2.words.count(\"special\", case_sensitive=True) == 1\n\n    @pytest.mark.slow\n    def test_np_counts(self):\n        # Add some text so that we have a noun phrase that\n        # has a frequency greater than 1\n        noun_phrases = self.np_test_blob.noun_phrases\n        assert noun_phrases.count(\"python\") == 6\n        assert self.np_test_blob.np_counts[\"python\"] == noun_phrases.count(\"python\")\n        assert noun_phrases.count(\"cpython\") == 2\n        assert noun_phrases.count(\"not found\") == 0\n\n    def test_add(self):\n        blob1 = tb.TextBlob(\"Hello, world! \")\n        blob2 = tb.TextBlob(\"Hola mundo!\")\n        # Can add two text blobs\n        assert blob1 + blob2 == tb.TextBlob(\"Hello, world! Hola mundo!\")\n        # Can also add a string to a tb.TextBlob\n        assert blob1 + \"Hola mundo!\" == tb.TextBlob(\"Hello, world! Hola mundo!\")\n        # Or both\n        assert blob1 + blob2 + \" Goodbye!\" == tb.TextBlob(\n            \"Hello, world! Hola mundo! Goodbye!\"\n        )\n\n        # operands must be strings\n        with pytest.raises(TypeError):\n            blob1 + [\"hello\"]\n\n    def test_unicode(self):\n        blob = tb.TextBlob(self.text)\n        assert str(blob) == str(self.text)\n\n    def test_strip(self):\n        text = \"Beautiful is better than ugly. \"\n        blob = tb.TextBlob(text)\n        assert is_blob(blob)\n        assert blob.strip() == tb.TextBlob(text.strip())\n\n    def test_strip_and_words(self):\n        blob = tb.TextBlob(\"Beautiful is better! \")\n        assert blob.strip().words == tb.WordList([\"Beautiful\", \"is\", \"better\"])\n\n    def test_index(self):\n        blob = tb.TextBlob(self.text)\n        assert blob.index(\"Namespaces\") == self.text.index(\"Namespaces\")\n\n    def test_sentences_after_concatenation(self):\n        blob1 = tb.TextBlob(\"Beautiful is better than ugly. \")\n        blob2 = tb.TextBlob(\"Explicit is better than implicit.\")\n\n        concatenated = blob1 + blob2\n        assert len(concatenated.sentences) == 2\n\n    def test_sentiment(self):\n        positive = tb.TextBlob(\n            \"This is the best, most amazing text-processing library ever!\"\n        )\n        assert positive.sentiment[0] > 0.0\n        negative = tb.TextBlob(\"bad bad bitches that's my muthufuckin problem.\")\n        assert negative.sentiment[0] < 0.0\n        zen = tb.TextBlob(self.text)\n        assert round(zen.sentiment[0], 1) == 0.2\n\n    def test_subjectivity(self):\n        positive = tb.TextBlob(\"Oh my god this is so amazing! I'm so happy!\")\n        assert isinstance(positive.subjectivity, float)\n        assert positive.subjectivity > 0\n\n    def test_polarity(self):\n        positive = tb.TextBlob(\"Oh my god this is so amazing! I'm so happy!\")\n        assert isinstance(positive.polarity, float)\n        assert positive.polarity > 0\n\n    def test_sentiment_of_emoticons(self):\n        b1 = tb.TextBlob(\"Faces have values =)\")\n        b2 = tb.TextBlob(\"Faces have values\")\n        assert b1.sentiment[0] > b2.sentiment[0]\n\n    def test_bad_init(self):\n        with pytest.raises(TypeError):\n            tb.TextBlob([\"bad\"])\n        with pytest.raises(ValueError):\n            tb.TextBlob(\"this is fine\", np_extractor=\"this is not fine\")\n        with pytest.raises(ValueError):\n            tb.TextBlob(\"this is fine\", pos_tagger=\"this is not fine\")\n\n    def test_in(self):\n        blob = tb.TextBlob(\"Beautiful is better than ugly. \")\n        assert \"better\" in blob\n        assert \"fugly\" not in blob\n\n    @pytest.mark.slow\n    def test_json(self):\n        blob = tb.TextBlob(\"Beautiful is better than ugly. \")\n        assert blob.json == blob.to_json()\n        blob_dict = json.loads(blob.json)[0]\n        assert blob_dict[\"stripped\"] == \"beautiful is better than ugly\"\n        assert blob_dict[\"noun_phrases\"] == blob.sentences[0].noun_phrases\n        assert blob_dict[\"start_index\"] == blob.sentences[0].start\n        assert blob_dict[\"end_index\"] == blob.sentences[0].end\n        assert blob_dict[\"polarity\"] == pytest.approx(\n            blob.sentences[0].polarity, abs=1e-4\n        )\n        assert blob_dict[\"subjectivity\"] == pytest.approx(\n            blob.sentences[0].subjectivity, abs=1e-4\n        )\n\n    def test_words_are_word_objects(self):\n        words = self.blob.words\n        assert isinstance(words[0], tb.Word)\n\n    def test_words_have_pos_tags(self):\n        blob = tb.TextBlob(\n            \"Simple is better than complex. Complex is better than complicated.\"\n        )\n        first_word, first_tag = blob.pos_tags[0]\n        assert isinstance(first_word, tb.Word)\n        assert first_word.pos_tag == first_tag\n\n    def test_tokenizer_defaults_to_word_tokenizer(self):\n        assert isinstance(self.blob.tokenizer, WordTokenizer)\n\n    def test_tokens_property(self):\n        assert self.blob.tokens, tb.WordList(WordTokenizer().tokenize(self.text))\n\n    def test_can_use_an_different_tokenizer(self):\n        tokenizer = nltk.tokenize.TabTokenizer()\n        blob = tb.TextBlob(\"This is\\ttext.\", tokenizer=tokenizer)\n        assert blob.tokens == tb.WordList([\"This is\", \"text.\"])\n\n    def test_tokenize_method(self):\n        tokenizer = nltk.tokenize.TabTokenizer()\n        blob = tb.TextBlob(\"This is\\ttext.\")\n        # If called without arguments, should default to WordTokenizer\n        assert blob.tokenize() == tb.WordList([\"This\", \"is\", \"text\", \".\"])\n        # Pass in the TabTokenizer\n        assert blob.tokenize(tokenizer) == tb.WordList([\"This is\", \"text.\"])\n\n    def test_tags_uses_custom_tokenizer(self):\n        tokenizer = nltk.tokenize.regexp.WordPunctTokenizer()\n        blob = tb.TextBlob(\"Good muffins cost $3.88\\nin New York.\", tokenizer=tokenizer)\n        assert blob.tags == [\n            (\"Good\", \"JJ\"),\n            (\"muffins\", \"NNS\"),\n            (\"cost\", \"VBP\"),\n            (\"3\", \"CD\"),\n            (\"88\", \"CD\"),\n            (\"in\", \"IN\"),\n            (\"New\", \"NNP\"),\n            (\"York\", \"NNP\"),\n        ]\n\n    def test_tags_with_custom_tokenizer_and_tagger(self):\n        tokenizer = nltk.tokenize.regexp.WordPunctTokenizer()\n        tagger = tb.taggers.PatternTagger()\n        blob = tb.TextBlob(\n            \"Good muffins cost $3.88\\nin New York.\",\n            tokenizer=tokenizer,\n            pos_tagger=tagger,\n        )\n        # PatterTagger takes raw text (not tokens), and handles tokenization itself.\n        assert blob.tags == [\n            (\"Good\", \"JJ\"),\n            (\"muffins\", \"NNS\"),\n            (\"cost\", \"NN\"),\n            (\"3.88\", \"CD\"),\n            (\"in\", \"IN\"),\n            (\"New\", \"NNP\"),\n            (\"York\", \"NNP\"),\n        ]\n\n    def test_correct(self):\n        blob = tb.TextBlob(\"I havv bad speling.\")\n        assert isinstance(blob.correct(), tb.TextBlob)\n        assert blob.correct() == tb.TextBlob(\"I have bad spelling.\")\n        blob2 = tb.TextBlob(\"I am so exciited!!!\")\n        assert blob2.correct() == \"I am so excited!!!\"\n        blob3 = tb.TextBlob(\"The meaning of life is 42.0.\")\n        assert blob3.correct() == \"The meaning of life is 42.0.\"\n        blob4 = tb.TextBlob(\"?\")\n        assert blob4.correct() == \"?\"\n\n        blob5 = tb.TextBlob(\"I can't spel\")\n        assert blob5.correct() == \"I can't spell\"\n\n        blob6 = tb.TextBlob(\"I cann't \\nspel\")\n        assert blob6.correct() == \"I can't \\nspell\"\n\n        # From a user-submitted bug\n        text = (\n            \"Before you embark on any of this journey, write a quick \"\n            + \"high-level test that demonstrates the slowness. \"\n            + \"You may need to introduce some minimum set of data to \"\n            + \"reproduce a significant enough slowness.\"\n        )\n        blob5 = tb.TextBlob(text)\n        assert blob5.correct() == text\n        text = \"Word list!  :\\n\" + \"\\t* spelling\\n\" + \"\\t* well\"\n        blob6 = tb.TextBlob(text)\n        assert blob6.correct() == text\n\n    def test_parse(self):\n        blob = tb.TextBlob(\"And now for something completely different.\")\n        assert blob.parse() == PatternParser().parse(blob.string)\n\n    def test_passing_bad_init_params(self):\n        tagger = PatternTagger()\n        with pytest.raises(ValueError):\n            tb.TextBlob(\"blah\", parser=tagger)\n        with pytest.raises(ValueError):\n            tb.TextBlob(\"blah\", np_extractor=tagger)\n        with pytest.raises(ValueError):\n            tb.TextBlob(\"blah\", tokenizer=tagger)\n        with pytest.raises(ValueError):\n            tb.TextBlob(\"blah\", analyzer=tagger)\n        with pytest.raises(ValueError):\n            tb.TextBlob(\"blah\", pos_tagger=PatternAnalyzer)\n\n    def test_classify(self):\n        blob = tb.TextBlob(\n            \"This is an amazing library. What an awesome classifier!\",\n            classifier=classifier,\n        )\n        assert blob.classify() == \"pos\"\n        for s in blob.sentences:\n            assert s.classify() == \"pos\"\n\n    def test_classify_without_classifier(self):\n        blob = tb.TextBlob(\"This isn't gonna be good\")\n        with pytest.raises(NameError):\n            blob.classify()\n\n    def test_word_string_type_after_pos_tags_is_str(self):\n        text = \"John is a cat\"\n        blob = tb.TextBlob(text)\n        for word, _ in blob.pos_tags:\n            assert type(word.string) is str\n\n\nclass WordTest(TestCase):\n    def setUp(self):\n        self.cat = tb.Word(\"cat\")\n        self.cats = tb.Word(\"cats\")\n\n    def test_init(self):\n        tb.Word(\"cat\")\n        assert isinstance(self.cat, tb.Word)\n        word = tb.Word(\"cat\", \"NN\")\n        assert word.pos_tag == \"NN\"\n\n    def test_singularize(self):\n        singular = self.cats.singularize()\n        assert singular == \"cat\"\n        assert self.cat.singularize() == \"cat\"\n        assert isinstance(self.cat.singularize(), tb.Word)\n\n    def test_pluralize(self):\n        plural = self.cat.pluralize()\n        assert self.cat.pluralize() == \"cats\"\n        assert isinstance(plural, tb.Word)\n\n    def test_repr(self):\n        assert repr(self.cat) == repr(\"cat\")\n\n    def test_str(self):\n        assert str(self.cat) == \"cat\"\n\n    def test_has_str_methods(self):\n        assert self.cat.upper() == \"CAT\"\n        assert self.cat.lower() == \"cat\"\n        assert self.cat[0:2] == \"ca\"\n\n    def test_spellcheck(self):\n        blob = tb.Word(\"speling\")\n        suggestions = blob.spellcheck()\n        assert suggestions[0][0] == \"spelling\"\n\n    def test_spellcheck_special_cases(self):\n        # Punctuation\n        assert tb.Word(\"!\").spellcheck() == [(\"!\", 1.0)]\n        # Numbers\n        assert tb.Word(\"42\").spellcheck() == [(\"42\", 1.0)]\n        assert tb.Word(\"12.34\").spellcheck() == [(\"12.34\", 1.0)]\n        # One-letter words\n        assert tb.Word(\"I\").spellcheck() == [(\"I\", 1.0)]\n        assert tb.Word(\"A\").spellcheck() == [(\"A\", 1.0)]\n        assert tb.Word(\"a\").spellcheck() == [(\"a\", 1.0)]\n\n    def test_correct(self):\n        w = tb.Word(\"speling\")\n        correct = w.correct()\n        assert correct == tb.Word(\"spelling\")\n        assert isinstance(correct, tb.Word)\n\n    @pytest.mark.slow\n    def test_lemmatize(self):\n        w = tb.Word(\"cars\")\n        assert w.lemmatize() == \"car\"\n        w = tb.Word(\"wolves\")\n        assert w.lemmatize() == \"wolf\"\n        w = tb.Word(\"went\")\n        assert w.lemmatize(\"v\") == \"go\"  # wordnet tagset\n        assert w.lemmatize(\"VBD\") == \"go\"  # penn treebank tagset\n\n    def test_lemma(self):\n        w = tb.Word(\"wolves\")\n        assert w.lemma == \"wolf\"\n        w = tb.Word(\"went\", \"VBD\")\n        assert w.lemma == \"go\"\n\n    def test_stem(self):  # only PorterStemmer tested\n        w = tb.Word(\"cars\")\n        assert w.stem() == \"car\"\n        w = tb.Word(\"wolves\")\n        assert w.stem() == \"wolv\"\n        w = tb.Word(\"went\")\n        assert w.stem() == \"went\"\n\n    def test_synsets(self):\n        w = tb.Word(\"car\")\n        assert isinstance(w.synsets, (list, tuple))\n        assert isinstance(w.synsets[0], Synset)\n\n    def test_synsets_with_pos_argument(self):\n        w = tb.Word(\"work\")\n        noun_syns = w.get_synsets(pos=wn.NOUN)\n        for synset in noun_syns:\n            assert synset.pos() == wn.NOUN\n\n    def test_definitions(self):\n        w = tb.Word(\"octopus\")\n        for definition in w.definitions:\n            assert isinstance(definition, str)\n\n    def test_define(self):\n        w = tb.Word(\"hack\")\n        synsets = w.get_synsets(wn.NOUN)\n        definitions = w.define(wn.NOUN)\n        assert len(synsets) == len(definitions)\n\n\nclass TestWordnetInterface(TestCase):\n    def setUp(self):\n        pass\n\n    def test_synset(self):\n        syn = wn.Synset(\"dog.n.01\")\n        word = tb.Word(\"dog\")\n        assert word.synsets[0] == syn\n\n    def test_lemma(self):\n        lemma = wn.Lemma(\"eat.v.01.eat\")\n        word = tb.Word(\"eat\")\n        assert word.synsets[0].lemmas()[0] == lemma\n\n\nclass BlobberTest(TestCase):\n    def setUp(self):\n        self.blobber = tb.Blobber()  # The default blobber\n\n    def test_creates_blobs(self):\n        blob1 = self.blobber(\"this is one blob\")\n        assert isinstance(blob1, tb.TextBlob)\n        blob2 = self.blobber(\"another blob\")\n        assert blob1.pos_tagger == blob2.pos_tagger\n\n    def test_default_tagger(self):\n        blob = self.blobber(\"Some text\")\n        assert isinstance(blob.pos_tagger, NLTKTagger)\n\n    def test_default_np_extractor(self):\n        blob = self.blobber(\"Some text\")\n        assert isinstance(blob.np_extractor, FastNPExtractor)\n\n    def test_default_tokenizer(self):\n        blob = self.blobber(\"Some text\")\n        assert isinstance(blob.tokenizer, WordTokenizer)\n\n    def test_str_and_repr(self):\n        expected = \"Blobber(tokenizer=WordTokenizer(), pos_tagger=NLTKTagger(), np_extractor=FastNPExtractor(), analyzer=PatternAnalyzer(), parser=PatternParser(), classifier=None)\"  # noqa: E501\n        assert repr(self.blobber) == expected\n        assert str(self.blobber) == repr(self.blobber)\n\n    def test_overrides(self):\n        b = tb.Blobber(tokenizer=SentenceTokenizer(), np_extractor=ConllExtractor())\n        blob = b(\"How now? Brown cow?\")\n        assert isinstance(blob.tokenizer, SentenceTokenizer)\n        assert blob.tokens == tb.WordList([\"How now?\", \"Brown cow?\"])\n        blob2 = b(\"Another blob\")\n        # blobs have the same tokenizer\n        assert blob.tokenizer is blob2.tokenizer\n        # but aren't the same object\n        assert blob != blob2\n\n    def test_override_analyzer(self):\n        b = tb.Blobber(analyzer=NaiveBayesAnalyzer())\n        blob = b(\"How now?\")\n        blob2 = b(\"Brown cow\")\n        assert isinstance(blob.analyzer, NaiveBayesAnalyzer)\n        assert blob.analyzer is blob2.analyzer\n\n    def test_overrider_classifier(self):\n        b = tb.Blobber(classifier=classifier)\n        blob = b(\"I am so amazing\")\n        assert blob.classify() == \"pos\"\n\n\ndef is_blob(obj):\n    return isinstance(obj, tb.TextBlob)\n"
  },
  {
    "path": "tests/test_classifiers.py",
    "content": "import os\nimport unittest\nfrom unittest import mock\n\nimport nltk\nimport pytest\n\nfrom textblob import formats\nfrom textblob.classifiers import (\n    DecisionTreeClassifier,\n    MaxEntClassifier,\n    NaiveBayesClassifier,\n    NLTKClassifier,\n    PositiveNaiveBayesClassifier,\n    _get_words_from_dataset,\n    basic_extractor,\n    contains_extractor,\n)\nfrom textblob.exceptions import FormatError\nfrom textblob.tokenizers import WordTokenizer\n\nHERE = os.path.abspath(os.path.dirname(__file__))\nCSV_FILE = os.path.join(HERE, \"data.csv\")\nJSON_FILE = os.path.join(HERE, \"data.json\")\nTSV_FILE = os.path.join(HERE, \"data.tsv\")\n\ntrain_set = [\n    (\"I love this car\", \"positive\"),\n    (\"This view is amazing\", \"positive\"),\n    (\"I feel great this morning\", \"positive\"),\n    (\"I am so excited about the concert\", \"positive\"),\n    (\"He is my best friend\", \"positive\"),\n    (\"I do not like this car\", \"negative\"),\n    (\"This view is horrible\", \"negative\"),\n    (\"I feel tired this morning\", \"negative\"),\n    (\"I am not looking forward to the concert\", \"negative\"),\n    (\"He is my enemy\", \"negative\"),\n]\n\ntest_set = [\n    (\"I feel happy this morning\", \"positive\"),\n    (\"Larry is my friend.\", \"positive\"),\n    (\"I do not like that man.\", \"negative\"),\n    (\"My house is not great.\", \"negative\"),\n    (\"Your song is annoying.\", \"negative\"),\n]\n\n\nclass BadNLTKClassifier(NLTKClassifier):\n    \"\"\"An NLTK classifier without ``nltk_class`` defined. Oops!\"\"\"\n\n    pass\n\n\nclass TestNLTKClassifier(unittest.TestCase):\n    def setUp(self):\n        self.bad_classifier = BadNLTKClassifier(train_set)\n\n    def test_raises_value_error_without_nltk_class(self):\n        with pytest.raises(ValueError):\n            self.bad_classifier.classifier  # noqa: B018\n\n        with pytest.raises(ValueError):\n            self.bad_classifier.train(train_set)\n\n        with pytest.raises(ValueError):\n            self.bad_classifier.update([(\"This is no good.\", \"negative\")])\n\n\nclass TestNaiveBayesClassifier(unittest.TestCase):\n    def setUp(self):\n        self.classifier = NaiveBayesClassifier(train_set)\n\n    def test_default_extractor(self):\n        text = \"I feel happy this morning.\"\n        assert self.classifier.extract_features(text) == basic_extractor(\n            text, train_set\n        )\n\n    def test_classify(self):\n        res = self.classifier.classify(\"I feel happy this morning\")\n        assert res == \"positive\"\n        assert len(self.classifier.train_set) == len(train_set)\n\n    def test_classify_a_list_of_words(self):\n        res = self.classifier.classify([\"I\", \"feel\", \"happy\", \"this\", \"morning\"])\n        assert res == \"positive\"\n\n    def test_train_from_lists_of_words(self):\n        # classifier can be trained on lists of words instead of strings\n        train = [(doc.split(), label) for doc, label in train_set]\n        classifier = NaiveBayesClassifier(train)\n        assert classifier.accuracy(test_set) == self.classifier.accuracy(test_set)\n\n    def test_prob_classify(self):\n        res = self.classifier.prob_classify(\"I feel happy this morning\")\n        assert res.max() == \"positive\"\n        assert res.prob(\"positive\") > res.prob(\"negative\")\n\n    def test_accuracy(self):\n        acc = self.classifier.accuracy(test_set)\n        assert isinstance(acc, float)\n\n    def test_update(self):\n        res1 = self.classifier.prob_classify(\"lorem ipsum\")\n        original_length = len(self.classifier.train_set)\n        self.classifier.update([(\"lorem ipsum\", \"positive\")])\n        new_length = len(self.classifier.train_set)\n        res2 = self.classifier.prob_classify(\"lorem ipsum\")\n        assert res2.prob(\"positive\") > res1.prob(\"positive\")\n        assert original_length + 1 == new_length\n\n    def test_labels(self):\n        labels = self.classifier.labels()\n        assert \"positive\" in labels\n        assert \"negative\" in labels\n\n    def test_show_informative_features(self):\n        self.classifier.show_informative_features()\n\n    def test_informative_features(self):\n        feats = self.classifier.informative_features(3)\n        assert isinstance(feats, list)\n        assert isinstance(feats[0], tuple)\n\n    def test_custom_feature_extractor(self):\n        cl = NaiveBayesClassifier(train_set, custom_extractor)\n        cl.classify(\"Yay! I'm so happy it works.\")\n        assert cl.train_features[0][1] == \"positive\"\n\n    def test_init_with_csv_file(self):\n        with open(CSV_FILE) as fp:\n            cl = NaiveBayesClassifier(fp, format=\"csv\")\n        assert cl.classify(\"I feel happy this morning\") == \"pos\"\n        training_sentence = cl.train_set[0][0]\n        assert isinstance(training_sentence, str)\n\n    def test_init_with_csv_file_without_format_specifier(self):\n        with open(CSV_FILE) as fp:\n            cl = NaiveBayesClassifier(fp)\n        assert cl.classify(\"I feel happy this morning\") == \"pos\"\n        training_sentence = cl.train_set[0][0]\n        assert isinstance(training_sentence, str)\n\n    def test_init_with_json_file(self):\n        with open(JSON_FILE) as fp:\n            cl = NaiveBayesClassifier(fp, format=\"json\")\n        assert cl.classify(\"I feel happy this morning\") == \"pos\"\n        training_sentence = cl.train_set[0][0]\n        assert isinstance(training_sentence, str)\n\n    def test_init_with_json_file_without_format_specifier(self):\n        with open(JSON_FILE) as fp:\n            cl = NaiveBayesClassifier(fp)\n        assert cl.classify(\"I feel happy this morning\") == \"pos\"\n        training_sentence = cl.train_set[0][0]\n        assert isinstance(training_sentence, str)\n\n    def test_init_with_custom_format(self):\n        redis_train = [(\"I like turtles\", \"pos\"), (\"I hate turtles\", \"neg\")]\n\n        class MockRedisFormat(formats.BaseFormat):\n            def __init__(self, client, port):\n                self.client = client\n                self.port = port\n\n            @classmethod\n            def detect(cls, stream):\n                return True\n\n            def to_iterable(self):\n                return redis_train\n\n        formats.register(\"redis\", MockRedisFormat)\n        mock_redis = mock.Mock()\n        cl = NaiveBayesClassifier(mock_redis, format=\"redis\", port=1234)\n        assert cl.train_set == redis_train\n\n    def test_data_with_no_available_format(self):\n        mock_fp = mock.Mock()\n        mock_fp.read.return_value = \"\"\n\n        with pytest.raises(FormatError):\n            NaiveBayesClassifier(mock_fp)\n\n    def test_accuracy_on_a_csv_file(self):\n        with open(CSV_FILE) as fp:\n            a = self.classifier.accuracy(fp)\n        assert type(a) == float\n\n    def test_accuracy_on_json_file(self):\n        with open(CSV_FILE) as fp:\n            a = self.classifier.accuracy(fp)\n        assert type(a) == float\n\n    def test_init_with_tsv_file(self):\n        with open(TSV_FILE) as fp:\n            cl = NaiveBayesClassifier(fp)\n        assert cl.classify(\"I feel happy this morning\") == \"pos\"\n        training_sentence = cl.train_set[0][0]\n        assert isinstance(training_sentence, str)\n\n    def test_init_with_bad_format_specifier(self):\n        with pytest.raises(ValueError):\n            NaiveBayesClassifier(CSV_FILE, format=\"unknown\")\n\n    def test_repr(self):\n        assert (\n            repr(self.classifier)\n            == f\"<NaiveBayesClassifier trained on {len(train_set)} instances>\"\n        )\n\n\nclass TestDecisionTreeClassifier(unittest.TestCase):\n    def setUp(self):\n        self.classifier = DecisionTreeClassifier(train_set)\n\n    def test_classify(self):\n        res = self.classifier.classify(\"I feel happy this morning\")\n        assert res == \"positive\"\n        assert len(self.classifier.train_set) == len(train_set)\n\n    def test_accuracy(self):\n        acc = self.classifier.accuracy(test_set)\n        assert isinstance(acc, float)\n\n    def test_update(self):\n        original_length = len(self.classifier.train_set)\n        self.classifier.update([(\"lorem ipsum\", \"positive\")])\n        new_length = len(self.classifier.train_set)\n        assert original_length + 1 == new_length\n\n    def test_custom_feature_extractor(self):\n        cl = DecisionTreeClassifier(train_set, custom_extractor)\n        cl.classify(\"Yay! I'm so happy it works.\")\n        assert cl.train_features[0][1] == \"positive\"\n\n    def test_pseudocode(self):\n        code = self.classifier.pseudocode()\n        assert \"if\" in code\n\n    def test_pretty_format(self):\n        pp = self.classifier.pprint(width=60)\n        pf = self.classifier.pretty_format(width=60)\n        assert isinstance(pp, str)\n        assert pp == pf\n\n    def test_repr(self):\n        assert (\n            repr(self.classifier)\n            == f\"<DecisionTreeClassifier trained on {len(train_set)} instances>\"\n        )\n\n\n@pytest.mark.numpy\n@pytest.mark.slow\nclass TestMaxEntClassifier(unittest.TestCase):\n    def setUp(self):\n        self.classifier = MaxEntClassifier(train_set)\n\n    def test_classify(self):\n        res = self.classifier.classify(\"I feel happy this morning\")\n        assert res == \"positive\"\n        assert len(self.classifier.train_set) == len(train_set)\n\n    def test_prob_classify(self):\n        res = self.classifier.prob_classify(\"I feel happy this morning\")\n        assert res.max() == \"positive\"\n        assert res.prob(\"positive\") > res.prob(\"negative\")\n\n\nclass TestPositiveNaiveBayesClassifier(unittest.TestCase):\n    def setUp(self):\n        sports_sentences = [\n            \"The team dominated the game\",\n            \"They lost the ball\",\n            \"The game was intense\",\n            \"The goalkeeper catched the ball\",\n            \"The other team controlled the ballThe ball went off the court\",\n            \"They had the ball for the whole game\",\n        ]\n\n        various_sentences = [\n            \"The President did not comment\",\n            \"I lost the keys\",\n            \"The team won the game\",\n            \"Sara has two kids\",\n            \"The show is over\",\n            \"The cat ate the mouse.\",\n        ]\n\n        self.classifier = PositiveNaiveBayesClassifier(\n            positive_set=sports_sentences, unlabeled_set=various_sentences\n        )\n\n    def test_classifier(self):\n        assert isinstance(\n            self.classifier.classifier, nltk.classify.PositiveNaiveBayesClassifier\n        )\n\n    def test_classify(self):\n        assert self.classifier.classify(\"My team lost the game.\")\n        assert not self.classifier.classify(\"The cat is on the table.\")\n\n    def test_update(self):\n        orig_pos_length = len(self.classifier.positive_set)\n        orig_unlabeled_length = len(self.classifier.unlabeled_set)\n        self.classifier.update(\n            new_positive_data=[\"He threw the ball to the base.\"],\n            new_unlabeled_data=[\"I passed a tree today.\"],\n        )\n        new_pos_length = len(self.classifier.positive_set)\n        new_unlabeled_length = len(self.classifier.unlabeled_set)\n        assert new_pos_length == orig_pos_length + 1\n        assert new_unlabeled_length == orig_unlabeled_length + 1\n\n    def test_accuracy(self):\n        test_set = [\n            (\"My team lost the game\", True),\n            (\"The ball was in the court.\", True),\n            (\"We should have won the game.\", True),\n            (\"And now for something completely different\", False),\n            (\"I can't believe it's not butter.\", False),\n        ]\n        accuracy = self.classifier.accuracy(test_set)\n        assert isinstance(accuracy, float)\n\n    def test_repr(self):\n        assert (\n            repr(self.classifier)\n            == f\"<PositiveNaiveBayesClassifier trained on {len(self.classifier.positive_set)} labeled and {len(self.classifier.unlabeled_set)} unlabeled instances>\"  # noqa: E501\n        )\n\n\ndef test_basic_extractor():\n    text = \"I feel happy this morning.\"\n    feats = basic_extractor(text, train_set)\n    assert feats[\"contains(feel)\"]\n    assert feats[\"contains(morning)\"]\n    assert not feats[\"contains(amazing)\"]\n\n\ndef test_basic_extractor_with_list():\n    text = \"I feel happy this morning.\".split()\n    feats = basic_extractor(text, train_set)\n    assert feats[\"contains(feel)\"]\n    assert feats[\"contains(morning)\"]\n    assert not feats[\"contains(amazing)\"]\n\n\ndef test_contains_extractor_with_string():\n    text = \"Simple is better than complex\"\n    features = contains_extractor(text)\n    assert features[\"contains(Simple)\"]\n    assert not features.get(\"contains(simple)\", False)\n    assert features[\"contains(complex)\"]\n    assert not features.get(\"contains(derp)\", False)\n\n\ndef test_contains_extractor_with_list():\n    text = [\"Simple\", \"is\", \"better\", \"than\", \"complex\"]\n    features = contains_extractor(text)\n    assert features[\"contains(Simple)\"]\n    assert not features.get(\"contains(simple)\", False)\n    assert features[\"contains(complex)\"]\n    assert not features.get(\"contains(derp)\", False)\n\n\ndef custom_extractor(document):\n    feats = {}\n    tokens = document.split()\n    for tok in tokens:\n        feat_name = f\"last_letter({tok[-1]})\"\n        feats[feat_name] = True\n    return feats\n\n\ndef test_get_words_from_dataset():\n    tok = WordTokenizer()\n    all_words = []\n    for words, _ in train_set:\n        all_words.extend(tok.itokenize(words, include_punc=False))\n    assert _get_words_from_dataset(train_set) == set(all_words)\n\n\nif __name__ == \"__main__\":\n    unittest.main()\n"
  },
  {
    "path": "tests/test_decorators.py",
    "content": "import unittest\n\nimport pytest\n\nfrom textblob.decorators import requires_nltk_corpus\nfrom textblob.exceptions import MissingCorpusError\n\n\nclass Tokenizer:\n    @requires_nltk_corpus\n    def tag(self, text):\n        raise LookupError\n\n\ndef test_decorator_raises_missing_corpus_exception():\n    t = Tokenizer()\n    with pytest.raises(MissingCorpusError):\n        t.tag(\"hello world\")\n\n\nif __name__ == \"__main__\":\n    unittest.main()\n"
  },
  {
    "path": "tests/test_formats.py",
    "content": "import os\nimport unittest\n\nfrom textblob import formats\n\nHERE = os.path.abspath(os.path.dirname(__file__))\nCSV_FILE = os.path.join(HERE, \"data.csv\")\nJSON_FILE = os.path.join(HERE, \"data.json\")\nTSV_FILE = os.path.join(HERE, \"data.tsv\")\n\n\nclass TestFormats(unittest.TestCase):\n    def setUp(self):\n        pass\n\n    def test_detect_csv(self):\n        with open(CSV_FILE) as fp:\n            format = formats.detect(fp)\n        assert format == formats.CSV\n\n    def test_detect_json(self):\n        with open(JSON_FILE) as fp:\n            format = formats.detect(fp)\n        assert format == formats.JSON\n\n    def test_available(self):\n        registry = formats.get_registry()\n        assert \"csv\" in registry.keys()\n        assert \"json\" in registry.keys()\n        assert \"tsv\" in registry.keys()\n\n\nclass TestDelimitedFormat(unittest.TestCase):\n    def test_delimiter_defaults_to_comma(self):\n        assert formats.DelimitedFormat.delimiter == \",\"\n\n    def test_detect(self):\n        with open(CSV_FILE) as fp:\n            stream = fp.read()\n            assert formats.DelimitedFormat.detect(stream)\n        with open(JSON_FILE) as fp:\n            stream = fp.read()\n            assert not formats.DelimitedFormat.detect(stream)\n\n\nclass TestCSV(unittest.TestCase):\n    def test_read_from_filename(self):\n        with open(CSV_FILE) as fp:\n            formats.CSV(fp)\n\n    def test_detect(self):\n        with open(CSV_FILE) as fp:\n            stream = fp.read()\n            assert formats.CSV.detect(stream)\n        with open(JSON_FILE) as fp:\n            stream = fp.read()\n            assert not formats.CSV.detect(stream)\n\n\nclass TestTSV(unittest.TestCase):\n    def test_read_from_file_object(self):\n        with open(TSV_FILE) as fp:\n            formats.TSV(fp)\n\n    def test_detect(self):\n        with open(TSV_FILE) as fp:\n            stream = fp.read()\n            assert formats.TSV.detect(stream)\n\n        with open(CSV_FILE) as fp:\n            stream = fp.read()\n            assert not formats.TSV.detect(stream)\n\n\nclass TestJSON(unittest.TestCase):\n    def test_read_from_file_object(self):\n        with open(JSON_FILE) as fp:\n            formats.JSON(fp)\n\n    def test_detect(self):\n        with open(JSON_FILE) as fp:\n            stream = fp.read()\n            assert formats.JSON.detect(stream)\n        with open(CSV_FILE) as fp:\n            stream = fp.read()\n            assert not formats.JSON.detect(stream)\n\n    def test_to_iterable(self):\n        with open(JSON_FILE) as fp:\n            d = formats.JSON(fp)\n        data = d.to_iterable()\n        first = data[0]\n        text, _label = first[0], first[1]\n        assert isinstance(text, str)\n\n\nclass CustomFormat(formats.BaseFormat):\n    def to_iterable():\n        return [(\"I like turtles\", \"pos\"), (\"I hate turtles\", \"neg\")]\n\n    @classmethod\n    def detect(cls, stream):\n        return True\n\n\nclass TestRegistry(unittest.TestCase):\n    def setUp(self):\n        pass\n\n    def test_register(self):\n        registry = formats.get_registry()\n        assert CustomFormat not in registry.values()\n\n        formats.register(\"trt\", CustomFormat)\n\n        assert CustomFormat in registry.values()\n        assert \"trt\" in registry.keys()\n\n\nif __name__ == \"__main__\":\n    unittest.main()\n"
  },
  {
    "path": "tests/test_inflect.py",
    "content": "from unittest import TestCase\n\nfrom textblob.en.inflect import (\n    plural_categories,\n    pluralize,\n    singular_ie,\n    singular_irregular,\n    singularize,\n)\n\n\nclass InflectTestCase(TestCase):\n    def s_singular_pluralize_test(self):\n        assert pluralize(\"lens\") == \"lenses\"\n\n    def s_singular_singularize_test(self):\n        assert singularize(\"lenses\") == \"lens\"\n\n    def diagnoses_singularize_test(self):\n        assert singularize(\"diagnoses\") == \"diagnosis\"\n\n    def bus_pluralize_test(self):\n        assert pluralize(\"bus\") == \"buses\"\n\n    def test_all_singular_s(self):\n        for w in plural_categories[\"s-singular\"]:\n            assert singularize(pluralize(w)) == w\n\n    def test_all_singular_ie(self):\n        for w in singular_ie:\n            assert pluralize(w).endswith(\"ies\")\n            assert singularize(pluralize(w)) == w\n\n    def test_all_singular_irregular(self):\n        for singular_w in singular_irregular.values():\n            assert singular_irregular[pluralize(singular_w)] == singular_w\n"
  },
  {
    "path": "tests/test_np_extractor.py",
    "content": "import unittest\n\nimport nltk\nimport pytest\n\nfrom textblob.base import BaseNPExtractor\nfrom textblob.np_extractors import ConllExtractor\nfrom textblob.utils import filter_insignificant\n\n\nclass TestConllExtractor(unittest.TestCase):\n    def setUp(self):\n        self.extractor = ConllExtractor()\n        self.text = \"\"\"\nPython is a widely used general-purpose,\nhigh-level programming language. Its design philosophy emphasizes code\nreadability, and its syntax allows programmers to express concepts in fewer lines\nof code than would be possible in other languages. The language provides\nconstructs intended to enable clear programs on both a small and large scale.\n\"\"\"\n        self.sentence = (\n            \"Python is a widely used general-purpose, high-level programming language\"\n        )\n\n    @pytest.mark.slow\n    def test_extract(self):\n        noun_phrases = self.extractor.extract(self.text)\n        assert \"Python\" in noun_phrases\n        assert \"design philosophy\" in noun_phrases\n        assert \"code readability\" in noun_phrases\n\n    @pytest.mark.slow\n    def test_parse_sentence(self):\n        parsed = self.extractor._parse_sentence(self.sentence)\n        assert isinstance(parsed, nltk.tree.Tree)\n\n    @pytest.mark.slow\n    def test_filter_insignificant(self):\n        chunk = self.extractor._parse_sentence(self.sentence)\n        tags = [tag for word, tag in chunk.leaves()]\n        assert \"DT\" in tags\n        filtered = filter_insignificant(chunk.leaves())\n        tags = [tag for word, tag in filtered]\n        assert \"DT\" not in tags\n\n\nclass BadExtractor(BaseNPExtractor):\n    \"\"\"An extractor without an extract method. How useless.\"\"\"\n\n    pass\n\n\ndef test_cannot_instantiate_incomplete_extractor():\n    with pytest.raises(TypeError):\n        BadExtractor()\n\n\nif __name__ == \"__main__\":\n    unittest.main()\n"
  },
  {
    "path": "tests/test_parsers.py",
    "content": "import unittest\n\nfrom textblob.en import parse as pattern_parse\nfrom textblob.parsers import PatternParser\n\n\nclass TestPatternParser(unittest.TestCase):\n    def setUp(self):\n        self.parser = PatternParser()\n        self.text = \"And now for something completely different.\"\n\n    def test_parse(self):\n        assert self.parser.parse(self.text) == pattern_parse(self.text)\n\n\nif __name__ == \"__main__\":\n    unittest.main()\n"
  },
  {
    "path": "tests/test_sentiments.py",
    "content": "import unittest\n\nimport pytest\n\nfrom textblob.sentiments import (\n    CONTINUOUS,\n    DISCRETE,\n    NaiveBayesAnalyzer,\n    PatternAnalyzer,\n)\n\n\nclass TestPatternSentiment(unittest.TestCase):\n    def setUp(self):\n        self.analyzer = PatternAnalyzer()\n\n    def test_kind(self):\n        assert self.analyzer.kind == CONTINUOUS\n\n    def test_analyze(self):\n        p1 = \"I feel great this morning.\"\n        n1 = \"This is a terrible car.\"\n        p1_result = self.analyzer.analyze(p1)\n        n1_result = self.analyzer.analyze(n1)\n        assert p1_result[0] > 0\n        assert n1_result[0] < 0\n        assert p1_result.polarity == p1_result[0]\n        assert p1_result.subjectivity == p1_result[1]\n\n    def test_analyze_assessments(self):\n        p1 = \"I feel great this morning.\"\n        n1 = \"This is a terrible car.\"\n        p1_result = self.analyzer.analyze(p1, keep_assessments=True)\n        n1_result = self.analyzer.analyze(n1, keep_assessments=True)\n        p1_assessment = p1_result.assessments[0]\n        n1_assessment = n1_result.assessments[0]\n        assert p1_assessment[1] > 0\n        assert n1_assessment[1] < 0\n        assert p1_result.polarity == p1_assessment[1]\n        assert p1_result.subjectivity == p1_assessment[2]\n\n\nclass TestNaiveBayesAnalyzer(unittest.TestCase):\n    def setUp(self):\n        self.analyzer = NaiveBayesAnalyzer()\n\n    def test_kind(self):\n        assert self.analyzer.kind == DISCRETE\n\n    @pytest.mark.slow\n    def test_analyze(self):\n        p1 = \"I feel great this morning.\"\n        n1 = \"This is a terrible car.\"\n        p1_result = self.analyzer.analyze(p1)\n        assert p1_result[0] == \"pos\"\n        assert self.analyzer.analyze(n1)[0] == \"neg\"\n        # The 2nd item should be the probability that it is positive\n        assert isinstance(p1_result[1], float)\n        # 3rd item is probability that it is negative\n        assert isinstance(p1_result[2], float)\n        assert_about_equal(p1_result[1] + p1_result[2], 1)\n        assert p1_result.classification == p1_result[0]\n        assert p1_result.p_pos == p1_result[1]\n        assert p1_result.p_neg == p1_result[2]\n\n\ndef assert_about_equal(first, second, places=4):\n    assert round(first, places) == second\n\n\nif __name__ == \"__main__\":\n    unittest.main()\n"
  },
  {
    "path": "tests/test_taggers.py",
    "content": "import os\nimport unittest\n\nimport pytest\n\nimport textblob.taggers\nfrom textblob.base import BaseTagger\n\nHERE = os.path.abspath(os.path.dirname(__file__))\nAP_MODEL_LOC = os.path.join(HERE, \"trontagger.pickle\")\n\n\nclass TestPatternTagger(unittest.TestCase):\n    def setUp(self):\n        self.text = \"Simple is better than complex. Complex is better than complicated.\"\n        self.tagger = textblob.taggers.PatternTagger()\n\n    def test_init(self):\n        tagger = textblob.taggers.PatternTagger()\n        assert isinstance(tagger, textblob.taggers.BaseTagger)\n\n    def test_tag(self):\n        tags = self.tagger.tag(self.text)\n        assert tags == [\n            (\"Simple\", \"JJ\"),\n            (\"is\", \"VBZ\"),\n            (\"better\", \"JJR\"),\n            (\"than\", \"IN\"),\n            (\"complex\", \"JJ\"),\n            (\".\", \".\"),\n            (\"Complex\", \"NNP\"),\n            (\"is\", \"VBZ\"),\n            (\"better\", \"JJR\"),\n            (\"than\", \"IN\"),\n            (\"complicated\", \"VBN\"),\n            (\".\", \".\"),\n        ]\n\n\n@pytest.mark.slow\n@pytest.mark.numpy\nclass TestNLTKTagger(unittest.TestCase):\n    def setUp(self):\n        self.text = \"Simple is better than complex. Complex is better than complicated.\"\n        self.tagger = textblob.taggers.NLTKTagger()\n\n    def test_tag(self):\n        tags = self.tagger.tag(self.text)\n        assert tags == [\n            (\"Simple\", \"NN\"),\n            (\"is\", \"VBZ\"),\n            (\"better\", \"JJR\"),\n            (\"than\", \"IN\"),\n            (\"complex\", \"JJ\"),\n            (\".\", \".\"),\n            (\"Complex\", \"NNP\"),\n            (\"is\", \"VBZ\"),\n            (\"better\", \"JJR\"),\n            (\"than\", \"IN\"),\n            (\"complicated\", \"VBN\"),\n            (\".\", \".\"),\n        ]\n\n\ndef test_cannot_instantiate_incomplete_tagger():\n    class BadTagger(BaseTagger):\n        \"\"\"A tagger without a tag method. How useless.\"\"\"\n\n        pass\n\n    with pytest.raises(TypeError):\n        BadTagger()\n\n\nif __name__ == \"__main__\":\n    unittest.main()\n"
  },
  {
    "path": "tests/test_tokenizers.py",
    "content": "import unittest\n\nimport pytest\n\nfrom textblob.tokenizers import (\n    SentenceTokenizer,\n    WordTokenizer,\n    sent_tokenize,\n    word_tokenize,\n)\n\n\ndef is_generator(obj):\n    return hasattr(obj, \"__next__\")\n\n\nclass TestWordTokenizer(unittest.TestCase):\n    def setUp(self):\n        self.tokenizer = WordTokenizer()\n        self.text = \"Python is a high-level programming language.\"\n\n    def tearDown(self):\n        pass\n\n    def test_tokenize(self):\n        assert self.tokenizer.tokenize(self.text) == [\n            \"Python\",\n            \"is\",\n            \"a\",\n            \"high-level\",\n            \"programming\",\n            \"language\",\n            \".\",\n        ]\n\n    def test_exclude_punc(self):\n        assert self.tokenizer.tokenize(self.text, include_punc=False) == [\n            \"Python\",\n            \"is\",\n            \"a\",\n            \"high-level\",\n            \"programming\",\n            \"language\",\n        ]\n\n    def test_itokenize(self):\n        gen = self.tokenizer.itokenize(self.text)\n        assert next(gen) == \"Python\"\n        assert next(gen) == \"is\"\n\n    def test_word_tokenize(self):\n        tokens = word_tokenize(self.text)\n        assert is_generator(tokens)\n        assert list(tokens) == self.tokenizer.tokenize(self.text)\n\n\nclass TestSentenceTokenizer(unittest.TestCase):\n    def setUp(self):\n        self.tokenizer = SentenceTokenizer()\n        self.text = \"Beautiful is better than ugly. Simple is better than complex.\"\n\n    def test_tokenize(self):\n        assert self.tokenizer.tokenize(self.text) == [\n            \"Beautiful is better than ugly.\",\n            \"Simple is better than complex.\",\n        ]\n\n    @pytest.mark.skip  # This is a known problem with the sentence tokenizer.\n    def test_tokenize_with_multiple_punctuation(self):\n        text = \"Hello world. How do you do?! My name's Steve...\"\n        assert self.tokenizer.tokenize(text) == [\n            \"Hello world.\",\n            \"How do you do?!\",\n            \"My name's Steve...\",\n        ]\n        text2 = \"OMG! I am soooo LOL!!!\"\n        tokens = self.tokenizer.tokenize(text2)\n        assert len(tokens) == 2\n        assert tokens == [\"OMG!\", \"I am soooo LOL!!!\"]\n\n    def test_itokenize(self):\n        gen = self.tokenizer.itokenize(self.text)\n        assert next(gen) == \"Beautiful is better than ugly.\"\n        assert next(gen) == \"Simple is better than complex.\"\n\n    def test_sent_tokenize(self):\n        tokens = sent_tokenize(self.text)\n        assert is_generator(tokens)  # It's a generator\n        assert list(tokens) == self.tokenizer.tokenize(self.text)\n\n\nif __name__ == \"__main__\":\n    unittest.main()\n"
  },
  {
    "path": "tests/test_utils.py",
    "content": "import os\nfrom unittest import TestCase\n\nfrom textblob.utils import is_filelike, lowerstrip, strip_punc\n\nHERE = os.path.abspath(os.path.dirname(__file__))\nCSV_FILE = os.path.join(HERE, \"data.csv\")\n\n\nclass UtilsTests(TestCase):\n    def setUp(self):\n        self.text = \"this. Has. Punctuation?! \"\n\n    def test_strip_punc(self):\n        assert strip_punc(self.text) == \"this. Has. Punctuation\"\n\n    def test_strip_punc_all(self):\n        assert strip_punc(self.text, all=True) == \"this Has Punctuation\"\n\n    def test_lowerstrip(self):\n        assert lowerstrip(self.text) == \"this. has. punctuation\"\n\n\ndef test_is_filelike():\n    with open(CSV_FILE) as fp:\n        assert is_filelike(fp)\n    assert not is_filelike(\"notafile\")\n    assert not is_filelike(12.3)\n"
  },
  {
    "path": "tox.ini",
    "content": "[tox]\nenvlist =\n    lint\n    py{39,310,311,312,313}\n    py39-lowest\n\n[testenv]\nextras = tests\ndeps =\n    lowest: nltk==3.9\ncommands = pytest {posargs}\n\n    \n[testenv:lint]\ndeps = pre-commit>=3.5,<5.0\nskip_install = true\ncommands =\n    pre-commit run --all-files\n\n[testenv:docs]\nextras = docs\ncommands = sphinx-build docs/ docs/_build {posargs}\n\n; Below tasks are for development only (not run in CI)\n\n[testenv:docs-serve]\ndeps = sphinx-autobuild\nextras = docs\ncommands = sphinx-autobuild --port=0 --open-browser --delay=2 docs/ docs/_build {posargs} --watch src --watch CONTRIBUTING.rst --watch README.rst\n\n[testenv:readme-serve]\ndeps = restview\nskip_install = true\ncommands = restview README.rst\n\n"
  }
]