{ "metadata": { "name": "" }, "nbformat": 3, "nbformat_minor": 0, "worksheets": [ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Word Counting" ] }, { "cell_type": "code", "collapsed": false, "input": [ "sentence = \"This cat jumped over this other cat!\"" ], "language": "python", "metadata": {}, "outputs": [], "prompt_number": 1 }, { "cell_type": "code", "collapsed": false, "input": [ "def stem(word):\n", " \"\"\" Stem word to primitive form \n", " \n", " >>> stem(\"Hello!\")\n", " 'hello'\n", " \"\"\"\n", " return word.lower().rstrip(\",.!)-*_?:;$'-\\\"\").lstrip(\"-*'\\\"(_$'\")" ], "language": "python", "metadata": {}, "outputs": [], "prompt_number": 2 }, { "cell_type": "code", "collapsed": false, "input": [ "def wordcount(string):\n", " words = string.split()\n", " \n", " stemmed_words = []\n", " for word in words:\n", " stemmed_words.append(stem(word))\n", " \n", " counts = dict()\n", " for word in stemmed_words:\n", " if word not in counts:\n", " counts[word] = 1\n", " else:\n", " counts[word] += 1\n", " \n", " return counts\n", "\n", "wordcount(sentence)" ], "language": "python", "metadata": {}, "outputs": [ { "metadata": {}, "output_type": "pyout", "prompt_number": 3, "text": [ "{'cat': 2, 'jumped': 1, 'other': 1, 'over': 1, 'this': 2}" ] } ], "prompt_number": 3 }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now we compute this same result with `map` and the `frequencies` function from `toolz`" ] }, { "cell_type": "code", "collapsed": false, "input": [ "from toolz import frequencies\n", "\n", "frequencies(map(stem, sentence.split()))" ], "language": "python", "metadata": {}, "outputs": [ { "metadata": {}, "output_type": "pyout", "prompt_number": 4, "text": [ "{'cat': 2, 'jumped': 1, 'other': 1, 'over': 1, 'this': 2}" ] } ], "prompt_number": 4 }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Pipe\n", "\n", "Lines of functional code can contain *a lot* of parentheses. To get around this lets learn the `pipe` function. Consider the following code to do laundry.\n", "\n", "```\n", "# Do Laundry\n", "clothes = ...\n", "wet_clothes = wash(clothes)\n", "dry_clothes = dry(wet_clothes)\n", "result = fold(dry_clothes)\n", "```\n", "\n", "This pushes the data, `clothes` through a pipeline of functions, `wash`, `dry`, and `fold`. This is a common pattern. Using `pipe` we push the clothes through three transformations in sequence:\n", "\n", "```\n", "result = pipe(clothes, wash, dry, fold)\n", "``` \n", "\n", "Pipe pushes data (first argument) through a sequence of functions (rest of the arguments) from left to right." ] }, { "cell_type": "code", "collapsed": false, "input": [ "from toolz import pipe\n", "\n", "# Simple example\n", "def double(x):\n", " return 2 * x\n", "\n", "pipe(3, double, double, str)" ], "language": "python", "metadata": {}, "outputs": [ { "metadata": {}, "output_type": "pyout", "prompt_number": 5, "text": [ "'12'" ] } ], "prompt_number": 5 }, { "cell_type": "code", "collapsed": false, "input": [ "from toolz.curried import map\n", " \n", "pipe(sentence, str.split, map(stem), frequencies)" ], "language": "python", "metadata": {}, "outputs": [ { "metadata": {}, "output_type": "pyout", "prompt_number": 6, "text": [ "{'cat': 2, 'jumped': 1, 'other': 1, 'over': 1, 'this': 2}" ] } ], "prompt_number": 6 }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Extending the example to multi-line files\n", "\n", "We implement wordcount on whole files rather than on single sentences. We see how the above implementations need to adapt to handle this new change" ] }, { "cell_type": "code", "collapsed": false, "input": [ "def wordcount(file):\n", "\n", " counts = dict()\n", " \n", " for line in file:\n", " words = line.split()\n", " \n", " stemmed_words = []\n", " for word in words:\n", " stemmed_words.append(stem(word))\n", "\n", " for word in stemmed_words:\n", " if word not in counts:\n", " counts[word] = 1\n", " else:\n", " counts[word] += 1\n", " \n", " return counts\n", "\n", "with open('data/tale-of-two-cities.txt') as f:\n", " for i in range(112): # Burn first 112 lines - they include the Gutenberg header\n", " next(f)\n", " result = wordcount(f)\n", "\n", "result\n", " " ], "language": "python", "metadata": {}, "outputs": [ { "metadata": {}, "output_type": "pyout", "prompt_number": 7, "text": [ "{'': 35,\n", " '1': 2,\n", " '1.a': 1,\n", " '1.b': 1,\n", " '1.c': 2,\n", " '1.d': 1,\n", " '1.e': 2,\n", " '1.e.1': 5,\n", " '1.e.2': 1,\n", " '1.e.3': 1,\n", " '1.e.4': 1,\n", " '1.e.5': 1,\n", " '1.e.6': 1,\n", " '1.e.7': 3,\n", " '1.e.8': 4,\n", " '1.e.9': 3,\n", " '1.f': 1,\n", " '1.f.1': 1,\n", " '1.f.2': 1,\n", " '1.f.3': 4,\n", " '1.f.4': 1,\n", " '1.f.5': 1,\n", " '1.f.6': 1,\n", " '1500': 1,\n", " '1757': 1,\n", " '1767': 2,\n", " '1792': 1,\n", " '2': 1,\n", " '20%': 1,\n", " '2001': 1,\n", " '21': 1,\n", " '3': 3,\n", " '30': 1,\n", " '4': 3,\n", " '4557': 1,\n", " '5': 1,\n", " '5,000': 1,\n", " '50': 1,\n", " '501(c)(3': 2,\n", " '596-1887': 1,\n", " '60': 1,\n", " '64-6221541': 1,\n", " '801': 1,\n", " '809': 1,\n", " '84116': 1,\n", " '90': 2,\n", " '98-8.txt': 1,\n", " '98-8.zip': 1,\n", " '99712': 1,\n", " 'a': 2967,\n", " 'a--a': 1,\n", " 'a-a-a-business': 1,\n", " 'a-a-matter': 1,\n", " 'a-buzz': 1,\n", " 'a-tiptoe': 1,\n", " 'aback': 1,\n", " 'abandon': 1,\n", " 'abandoned': 10,\n", " 'abandoning': 1,\n", " 'abandonment': 1,\n", " 'abashed': 1,\n", " 'abate': 1,\n", " 'abated': 1,\n", " 'abbaye': 4,\n", " 'abbaye--in': 1,\n", " 'abed': 2,\n", " 'abhorrence': 1,\n", " 'abide': 1,\n", " 'abided': 1,\n", " 'abiding': 1,\n", " 'abilities': 1,\n", " 'ability': 2,\n", " 'abject': 1,\n", " 'ablaze': 1,\n", " 'able': 17,\n", " 'aboard': 1,\n", " 'abode': 1,\n", " 'abolished': 2,\n", " 'abolished--expression': 1,\n", " 'abolishing': 1,\n", " 'abolition': 1,\n", " 'abominable': 2,\n", " 'abounding': 1,\n", " 'about': 169,\n", " 'above': 23,\n", " 'abreast': 2,\n", " 'abridge': 1,\n", " 'abroad': 2,\n", " 'abrupt': 3,\n", " 'abruptly': 1,\n", " 'absence': 8,\n", " 'absent': 5,\n", " 'absolute': 3,\n", " 'absolutely': 7,\n", " 'absolving': 1,\n", " 'absorbed': 4,\n", " 'absorption': 1,\n", " 'abstractedly': 1,\n", " 'abstraction': 3,\n", " 'absurd': 1,\n", " 'abundance': 1,\n", " 'abundant': 4,\n", " 'abuse': 1,\n", " 'abused': 1,\n", " 'abyss': 1,\n", " 'abyssinia': 1,\n", " 'accent': 2,\n", " 'accents': 1,\n", " 'accept': 5,\n", " 'acceptable': 1,\n", " 'acceptation': 1,\n", " 'accepted': 3,\n", " 'accepting': 1,\n", " 'access': 14,\n", " 'accessed': 1,\n", " 'accessible': 2,\n", " 'accessories': 1,\n", " 'accident': 2,\n", " 'accident--a': 1,\n", " 'accidental': 3,\n", " 'accidentally': 3,\n", " 'acclamation': 1,\n", " 'acclamations': 2,\n", " 'accommodation': 1,\n", " 'accompanied': 4,\n", " 'accompaniment': 2,\n", " 'accompany': 4,\n", " 'accompanying': 1,\n", " 'accomplices': 1,\n", " 'accomplished': 5,\n", " 'accomplishing': 1,\n", " 'accomplishments': 2,\n", " 'accord': 1,\n", " 'accordance': 4,\n", " 'accorded': 1,\n", " 'according': 10,\n", " 'accordingly': 6,\n", " 'accost': 1,\n", " 'accosted': 1,\n", " 'account': 19,\n", " 'account--it': 1,\n", " 'account--was': 1,\n", " 'accounts': 2,\n", " 'accoutred': 1,\n", " 'accumulated': 1,\n", " 'accumulating': 1,\n", " 'accurate': 1,\n", " 'accurately': 1,\n", " 'accursed': 5,\n", " 'accusation': 2,\n", " 'accused': 13,\n", " 'accustomed': 7,\n", " 'ace': 3,\n", " 'achieve': 1,\n", " 'achieved': 1,\n", " 'achievement': 1,\n", " 'achievements': 1,\n", " 'achieving': 1,\n", " 'acknowledge': 1,\n", " 'acknowledged': 5,\n", " 'acknowledgment': 2,\n", " 'acknowledgments': 1,\n", " 'acoustical': 1,\n", " 'acquaintance': 1,\n", " 'acquainted': 2,\n", " 'acquiesced': 1,\n", " 'acquiescence': 1,\n", " 'acquired': 2,\n", " 'acquirements--a': 1,\n", " 'acquisition': 1,\n", " 'acquit': 1,\n", " 'acquittal': 1,\n", " 'acquitted': 3,\n", " 'acres': 1,\n", " 'across': 36,\n", " 'act': 11,\n", " 'acted': 9,\n", " 'action': 20,\n", " 'action--not': 1,\n", " 'actions': 1,\n", " 'active': 6,\n", " 'actively': 2,\n", " 'actor': 1,\n", " 'actual': 4,\n", " 'actually': 5,\n", " 'acute': 1,\n", " 'acuteness': 1,\n", " 'adam': 1,\n", " 'add': 7,\n", " 'added': 32,\n", " 'addition': 3,\n", " 'additional': 8,\n", " 'additionally': 2,\n", " 'additions': 3,\n", " 'address': 8,\n", " 'addressed': 8,\n", " 'addresses': 2,\n", " 'addressing': 5,\n", " 'adequately': 1,\n", " 'adieu': 3,\n", " 'adjacent': 5,\n", " 'adjective': 1,\n", " 'adjoining': 4,\n", " 'adjourned': 1,\n", " 'adjuration': 1,\n", " 'adjure': 1,\n", " 'adjured': 2,\n", " 'adjusted': 2,\n", " 'adjusting': 2,\n", " 'administered': 2,\n", " 'admirable': 4,\n", " 'admiration': 5,\n", " 'admire': 3,\n", " 'admired': 1,\n", " 'admirers': 1,\n", " 'admiring': 4,\n", " 'admission': 3,\n", " 'admit': 7,\n", " 'admittance': 1,\n", " 'admitted': 4,\n", " 'admonish': 1,\n", " 'admonitory': 1,\n", " 'adopted': 1,\n", " 'adorable': 1,\n", " 'adorn--the': 1,\n", " 'adorned': 1,\n", " 'adornments': 1,\n", " 'adust': 1,\n", " 'advance': 10,\n", " 'advanced': 9,\n", " 'advancing': 5,\n", " 'advantage': 5,\n", " 'advantages': 2,\n", " 'adventurous': 3,\n", " 'advice': 7,\n", " 'advisable': 1,\n", " 'advise': 6,\n", " 'advised': 3,\n", " 'adviser--a': 1,\n", " 'advocate': 2,\n", " \"advocate's\": 1,\n", " 'afar': 4,\n", " 'affably': 1,\n", " 'affair': 1,\n", " 'affairs': 12,\n", " 'affect': 3,\n", " 'affected': 4,\n", " 'affectingly': 1,\n", " 'affection': 6,\n", " 'affectionate': 6,\n", " 'affectionately': 3,\n", " 'affections': 3,\n", " 'affidavit': 1,\n", " 'affirmative': 2,\n", " 'afflicted': 6,\n", " 'affliction': 3,\n", " 'afford': 3,\n", " 'afforded': 1,\n", " 'affrighted': 1,\n", " 'afire': 1,\n", " 'afoot': 1,\n", " 'afore': 1,\n", " 'aforesaid': 2,\n", " 'afraid': 17,\n", " 'afresh': 4,\n", " 'after': 138,\n", " 'afternoon': 18,\n", " 'afterwards': 25,\n", " 'again': 227,\n", " 'again!--to': 1,\n", " 'against': 78,\n", " 'age': 20,\n", " 'aged': 2,\n", " 'agency': 1,\n", " 'agent': 2,\n", " 'ages': 4,\n", " 'aggerawayter': 3,\n", " 'aggravated': 1,\n", " 'aggravation': 1,\n", " 'agicultooral': 1,\n", " 'agility': 1,\n", " 'agin': 6,\n", " 'agitated': 6,\n", " 'agitation': 9,\n", " 'agitation--a': 1,\n", " 'ago': 32,\n", " 'agonised': 1,\n", " 'agony': 7,\n", " 'agree': 9,\n", " 'agreeable': 9,\n", " 'agreed': 5,\n", " 'agreement': 19,\n", " 'agreement--they': 1,\n", " 'ah': 23,\n", " 'aha': 1,\n", " 'ahead': 2,\n", " 'aid': 14,\n", " 'aids': 1,\n", " 'ailing': 1,\n", " 'aiming': 2,\n", " 'aims': 1,\n", " \"ain't\": 9,\n", " 'air': 67,\n", " 'airily': 1,\n", " 'airs': 2,\n", " 'airy': 2,\n", " 'ajar': 1,\n", " 'ak': 1,\n", " 'akin': 2,\n", " 'al-ways': 2,\n", " 'alacrity': 1,\n", " 'alarm': 5,\n", " 'alarm-bells': 1,\n", " 'alarmed': 4,\n", " 'alarming': 4,\n", " 'alarmingly': 1,\n", " 'alas': 2,\n", " 'albeit': 1,\n", " 'alcove': 1,\n", " 'ale': 1,\n", " 'ale-house': 1,\n", " 'ale-houses': 1,\n", " 'alert': 1,\n", " 'alexandre': 6,\n", " 'alienated': 1,\n", " 'alight': 2,\n", " 'alighted': 4,\n", " 'alighting': 1,\n", " 'alike': 6,\n", " 'alive': 10,\n", " 'all': 571,\n", " 'alleys': 1,\n", " 'allied': 1,\n", " 'allow': 4,\n", " 'allowance': 1,\n", " 'allowed': 4,\n", " 'allowing': 3,\n", " 'allusion': 2,\n", " 'allusions': 1,\n", " 'alluvial': 1,\n", " 'ally': 1,\n", " 'almost': 46,\n", " \"almost-child's\": 1,\n", " 'aloft': 2,\n", " 'alone': 52,\n", " 'alone--blinded': 1,\n", " 'alone--for': 1,\n", " 'along': 42,\n", " 'aloud': 8,\n", " 'already': 41,\n", " 'already--banishing': 1,\n", " 'also': 30,\n", " 'altar': 3,\n", " 'alter': 3,\n", " 'alteration': 1,\n", " 'alterations': 1,\n", " 'altercation': 1,\n", " 'altered': 6,\n", " 'alternate': 1,\n", " 'alternating': 1,\n", " 'although': 16,\n", " 'altitude': 1,\n", " 'altogether': 13,\n", " 'always': 101,\n", " 'always--as': 1,\n", " 'always-vain': 1,\n", " 'am': 225,\n", " 'amazed': 3,\n", " 'amazement': 3,\n", " 'amazingly': 1,\n", " 'ambassadors': 1,\n", " 'ambition': 4,\n", " 'ambuscade': 1,\n", " 'amendment': 1,\n", " 'amends': 3,\n", " 'america': 3,\n", " 'americans': 1,\n", " 'amiable': 2,\n", " 'amiably': 1,\n", " 'amicably': 1,\n", " 'amidst': 3,\n", " 'amiss': 2,\n", " 'ammunition': 1,\n", " 'among': 106,\n", " 'amount': 1,\n", " 'ample': 1,\n", " 'amused': 3,\n", " 'an': 348,\n", " 'analyse': 1,\n", " 'anathematised': 1,\n", " 'anatomise': 1,\n", " 'ancestors': 1,\n", " 'ancestral': 1,\n", " 'anchor': 1,\n", " 'anchorage': 1,\n", " 'ancient': 10,\n", " 'and': 4993,\n", " 'and--but': 1,\n", " 'and--in': 1,\n", " 'and--miss': 1,\n", " 'anew': 7,\n", " 'angel': 2,\n", " \"angel's\": 1,\n", " 'angels': 3,\n", " 'anger': 6,\n", " 'angering': 1,\n", " 'angle': 3,\n", " 'angrily': 3,\n", " 'angry': 15,\n", " 'anguish': 4,\n", " 'animal': 1,\n", " 'animals': 2,\n", " 'animated': 5,\n", " 'animosity': 2,\n", " 'aniseed': 1,\n", " 'ankles': 1,\n", " 'anna': 1,\n", " 'annihilated': 1,\n", " 'annihilation': 1,\n", " 'anniversary': 1,\n", " 'anno': 1,\n", " 'announce': 2,\n", " 'announced': 2,\n", " 'announcement': 2,\n", " 'announcing': 1,\n", " 'annoyed': 2,\n", " 'anon': 1,\n", " 'another': 132,\n", " \"another's\": 2,\n", " 'another--this': 1,\n", " 'answer': 51,\n", " 'answer--\"various': 1,\n", " 'answered': 53,\n", " 'answering': 10,\n", " 'answers': 2,\n", " 'ante-chambers': 1,\n", " 'antecedents': 2,\n", " 'anti-climax': 1,\n", " 'anticipate': 3,\n", " 'anticipating': 3,\n", " 'anticipation': 2,\n", " 'antipathies': 1,\n", " 'antipathy': 1,\n", " 'antiquity': 5,\n", " 'antoine': 49,\n", " \"antoine's\": 3,\n", " 'anxieties': 1,\n", " 'anxiety': 8,\n", " 'anxious': 16,\n", " 'anxiously': 2,\n", " 'any': 261,\n", " 'anybody': 8,\n", " \"anybody's\": 5,\n", " 'anyone': 4,\n", " 'anything': 57,\n", " 'anyways': 1,\n", " 'anywhere': 5,\n", " 'apart': 16,\n", " 'apartment': 3,\n", " 'apartments': 2,\n", " 'aphorism': 1,\n", " 'apocryphal': 1,\n", " 'apologetic': 1,\n", " 'apology': 1,\n", " 'apostrophe': 1,\n", " 'apostrophise': 1,\n", " 'apostrophising': 1,\n", " 'apparatus': 1,\n", " 'apparent': 4,\n", " 'apparently': 6,\n", " 'apparition': 2,\n", " 'apparitions': 2,\n", " 'appeal': 7,\n", " 'appealed': 2,\n", " 'appealing': 3,\n", " 'appeals': 1,\n", " 'appear': 8,\n", " 'appearance': 29,\n", " 'appearances': 1,\n", " 'appeared': 21,\n", " 'appearing': 5,\n", " 'appears': 2,\n", " 'appellation': 1,\n", " 'applauding': 1,\n", " 'applause': 1,\n", " 'apple': 1,\n", " 'apples': 1,\n", " 'applicable': 3,\n", " 'application': 3,\n", " 'applied': 1,\n", " 'applies': 1,\n", " 'apply': 1,\n", " 'appointed': 8,\n", " 'appointment': 2,\n", " 'appointments': 1,\n", " 'appreciate': 1,\n", " 'appreciated': 1,\n", " 'appreciative': 2,\n", " 'apprehend': 2,\n", " 'apprehension': 5,\n", " 'apprehensions': 2,\n", " 'apprehensive': 1,\n", " 'apprised': 1,\n", " 'approach': 7,\n", " 'approached': 6,\n", " 'approaches': 1,\n", " 'approaching': 1,\n", " 'approbation': 1,\n", " 'appropriate': 1,\n", " 'approval': 3,\n", " 'approve': 2,\n", " 'approved': 2,\n", " 'approvingly': 2,\n", " 'aquiline': 3,\n", " 'arabian': 1,\n", " 'arch': 1,\n", " 'arched': 1,\n", " 'arches': 2,\n", " 'architecture': 3,\n", " 'archive': 13,\n", " 'ardent': 3,\n", " 'ardour': 2,\n", " 'are': 333,\n", " 'are!--perhaps': 1,\n", " 'area-railings': 1,\n", " 'argued': 3,\n", " 'argument': 1,\n", " 'argumentative': 1,\n", " 'arise': 6,\n", " 'arisen': 2,\n", " 'aristocrat': 10,\n", " 'aristocratic': 3,\n", " 'aristocrats': 2,\n", " 'arm': 60,\n", " \"arm's\": 1,\n", " 'arm--it': 1,\n", " 'arm-chair': 1,\n", " 'arm-chest': 2,\n", " 'armed': 14,\n", " 'armorial': 1,\n", " 'armoury': 1,\n", " 'arms': 49,\n", " 'army': 3,\n", " 'arose': 19,\n", " 'around': 19,\n", " 'arouse': 1,\n", " 'arraigned': 1,\n", " 'arrange': 1,\n", " 'arranged': 5,\n", " 'arrangement': 7,\n", " 'arrangements': 9,\n", " 'arranging': 1,\n", " 'array': 1,\n", " 'arrears': 1,\n", " 'arrest': 3,\n", " 'arrested': 4,\n", " 'arrival': 7,\n", " 'arrive': 5,\n", " 'arrived': 14,\n", " 'arriving': 2,\n", " 'art': 6,\n", " 'artful': 1,\n", " 'article': 2,\n", " 'articles': 5,\n", " 'articulate': 1,\n", " 'artificially': 1,\n", " 'artless': 1,\n", " 'arts': 4,\n", " 'as': 1148,\n", " 'as-is': 1,\n", " 'ascended': 6,\n", " 'ascending': 2,\n", " 'ascents': 1,\n", " 'ascertain': 2,\n", " 'ascertained': 3,\n", " 'ascii': 2,\n", " 'ashamed': 4,\n", " 'ashantee': 1,\n", " 'ashes': 6,\n", " 'ashy': 2,\n", " 'aside': 23,\n", " 'ask': 61,\n", " 'asked': 86,\n", " 'asking': 6,\n", " 'asks': 4,\n", " 'asleep': 21,\n", " 'aspect': 17,\n", " 'aspirations': 2,\n", " 'aspired': 1,\n", " 'assailant': 1,\n", " 'assassinated': 1,\n", " 'assassination': 1,\n", " 'assassins': 1,\n", " 'assault': 1,\n", " 'assemblage': 1,\n", " 'assemblages': 1,\n", " 'assemble': 1,\n", " 'assembled': 2,\n", " 'assembles': 1,\n", " 'assented': 5,\n", " 'assert': 2,\n", " 'asserted': 2,\n", " 'assertion': 1,\n", " 'asseveration': 1,\n", " 'assiduously': 1,\n", " 'assignation': 1,\n", " 'assigned': 2,\n", " 'assist': 5,\n", " 'assistance': 6,\n", " 'assisted': 12,\n", " 'assisting': 1,\n", " 'associated': 10,\n", " 'associating': 2,\n", " 'association': 6,\n", " 'associations': 5,\n", " 'assorted': 1,\n", " 'assume': 2,\n", " 'assumed': 4,\n", " 'assuming': 1,\n", " 'assumption': 2,\n", " 'assurance': 2,\n", " 'assurances': 2,\n", " 'assure': 6,\n", " 'assured': 4,\n", " 'assuredly': 3,\n", " 'assures': 1,\n", " 'astern': 1,\n", " 'astir': 1,\n", " 'astonished': 2,\n", " 'astonishment': 3,\n", " 'astounded': 2,\n", " 'astounding': 1,\n", " 'astray': 1,\n", " 'asunder': 1,\n", " 'at': 1043,\n", " 'ate': 7,\n", " 'atheistical': 1,\n", " 'athirst': 1,\n", " 'atmosphere': 3,\n", " 'atmospheric': 1,\n", " 'atomics': 1,\n", " 'atonement': 1,\n", " 'atop': 1,\n", " 'atrocious': 1,\n", " 'attached': 10,\n", " 'attachment': 4,\n", " 'attack': 3,\n", " 'attainable': 1,\n", " 'attained': 1,\n", " 'attainments': 1,\n", " 'attempt': 3,\n", " 'attempted': 2,\n", " 'attempts': 1,\n", " 'attend': 5,\n", " 'attendance': 3,\n", " 'attendant': 5,\n", " 'attendants': 1,\n", " 'attended': 10,\n", " 'attention': 20,\n", " 'attentive': 6,\n", " 'attentively': 5,\n", " 'attenuated': 1,\n", " 'attitude': 9,\n", " 'attorney-general': 12,\n", " \"attorney-general's\": 2,\n", " 'attract': 3,\n", " 'attracted': 5,\n", " 'attracting': 1,\n", " 'attraction': 3,\n", " 'attractive': 1,\n", " 'attributable': 1,\n", " 'attribute': 1,\n", " 'audible': 9,\n", " 'audibly': 2,\n", " 'audience': 7,\n", " 'auditory': 1,\n", " 'augment': 1,\n", " 'august': 2,\n", " 'august--he': 1,\n", " 'auspicious': 1,\n", " 'authorised': 1,\n", " 'authoritative': 1,\n", " 'authorities': 3,\n", " 'authority': 10,\n", " 'autumn': 3,\n", " 'avail': 3,\n", " 'available': 2,\n", " 'avenge': 3,\n", " 'avenged': 1,\n", " 'avenue': 2,\n", " 'avenues': 2,\n", " 'aversion': 1,\n", " 'avert': 1,\n", " 'averted': 1,\n", " 'avocations': 1,\n", " 'avoid': 9,\n", " 'avoidance': 1,\n", " 'avoided': 1,\n", " 'avoiding': 1,\n", " 'avow': 1,\n", " 'avowal': 1,\n", " 'awaited': 7,\n", " 'awaiting': 5,\n", " 'awake': 7,\n", " 'awaken': 4,\n", " 'awakened': 4,\n", " 'awakening': 1,\n", " 'aware': 3,\n", " 'awaricious': 1,\n", " 'away': 134,\n", " 'away--for': 1,\n", " 'away--you': 1,\n", " 'awe': 1,\n", " 'awe-stricken': 2,\n", " 'awful': 8,\n", " 'awfulness': 1,\n", " 'awkward': 1,\n", " 'awoke': 5,\n", " 'awry': 2,\n", " 'axe': 9,\n", " 'axe--a': 1,\n", " 'axes': 2,\n", " 'ay': 5,\n", " 'b': 2,\n", " 'b-u-u-ust': 1,\n", " 'babble': 1,\n", " 'babel': 1,\n", " 'babies': 1,\n", " 'baby': 5,\n", " 'bacchanalian': 2,\n", " 'bachelor': 6,\n", " 'bachelor-fashion': 1,\n", " 'back': 134,\n", " 'backgammon': 1,\n", " 'background': 1,\n", " 'backs': 2,\n", " 'backward': 2,\n", " 'backwards': 3,\n", " 'bad': 43,\n", " \"bad's\": 1,\n", " 'baffled': 2,\n", " 'bag': 2,\n", " 'bah': 3,\n", " 'bailey': 20,\n", " 'bailiff': 1,\n", " 'baker': 1,\n", " \"baker's\": 1,\n", " 'bakers': 1,\n", " 'balance': 1,\n", " 'balanced': 1,\n", " 'balances': 1,\n", " 'bald': 1,\n", " 'ball': 6,\n", " 'ball--when': 1,\n", " 'ballad': 1,\n", " 'balustrades': 2,\n", " 'band': 1,\n", " 'bandages': 1,\n", " 'banished': 2,\n", " 'bank': 49,\n", " 'bank-notes': 1,\n", " 'bank-notes--may': 1,\n", " 'banker': 4,\n", " 'bankers': 1,\n", " 'banking': 5,\n", " 'banking-house': 7,\n", " 'bankruptcy': 1,\n", " 'banks': 2,\n", " 'banquets': 1,\n", " 'bar': 27,\n", " 'barbarian': 1,\n", " 'barbarous': 4,\n", " 'barber': 5,\n", " 'bare': 9,\n", " 'bare-armed': 1,\n", " 'bare-breasted': 1,\n", " 'bare-foot': 1,\n", " 'bare-legged': 1,\n", " 'bared': 1,\n", " 'barefoot': 1,\n", " 'bareheaded': 1,\n", " 'barely': 1,\n", " 'bargain': 3,\n", " 'barges': 1,\n", " 'bark': 1,\n", " 'barked': 1,\n", " 'barmecide': 1,\n", " 'barred': 5,\n", " 'barrel': 1,\n", " 'barrels': 2,\n", " 'barren': 2,\n", " 'barricades': 1,\n", " 'barrier': 16,\n", " 'barrier--i': 1,\n", " 'barriers': 1,\n", " 'barrister': 2,\n", " 'bars': 10,\n", " 'barsad': 44,\n", " \"barsad's\": 1,\n", " 'base': 2,\n", " 'based': 2,\n", " 'basement': 1,\n", " 'baseness': 1,\n", " 'basin': 7,\n", " 'basket': 4,\n", " 'baskets': 2,\n", " 'bastille': 22,\n", " 'batch': 2,\n", " 'bathed': 1,\n", " 'battered': 1,\n", " 'battles': 1,\n", " 'bawled': 1,\n", " 'bawling': 1,\n", " 'bay': 2,\n", " 'bayonets': 3,\n", " 'be': 781,\n", " 'be--he': 1,\n", " 'be--perhaps': 1,\n", " 'be--unless': 1,\n", " 'beach': 5,\n", " 'beacon': 1,\n", " 'beaming': 1,\n", " 'beamingly': 1,\n", " 'beams': 2,\n", " 'beans': 1,\n", " 'bear': 32,\n", " 'bear-leader': 1,\n", " 'beard': 4,\n", " 'bearded': 1,\n", " 'bearer': 2,\n", " 'bearers': 1,\n", " 'bearing': 8,\n", " 'bearings': 1,\n", " 'bears': 2,\n", " 'beast': 1,\n", " 'beastly': 1,\n", " 'beasts': 5,\n", " 'beat': 9,\n", " 'beaten': 5,\n", " 'beating': 9,\n", " 'beats': 1,\n", " 'beauties': 1,\n", " 'beautified': 1,\n", " 'beautiful': 14,\n", " 'beautifully': 1,\n", " 'beautifying': 1,\n", " 'beauty': 9,\n", " 'beauvais': 11,\n", " 'beauvais--which': 1,\n", " 'became': 30,\n", " 'because': 42,\n", " 'beckoned': 5,\n", " 'beckoning': 1,\n", " 'become': 23,\n", " 'becomes': 2,\n", " 'becoming': 3,\n", " 'becomingly': 1,\n", " 'bed': 42,\n", " 'bed-chamber': 5,\n", " 'bed-gown': 1,\n", " 'bed-winches': 1,\n", " 'bedlam--only': 1,\n", " 'bedroom': 7,\n", " 'beds': 2,\n", " 'bedside': 2,\n", " 'been': 435,\n", " 'been--been': 1,\n", " 'been--like': 1,\n", " 'been--nay': 1,\n", " 'been--oh': 1,\n", " 'beer': 3,\n", " 'beer-drinking': 1,\n", " 'beery': 1,\n", " 'befall': 1,\n", " 'befitting': 1,\n", " 'before': 232,\n", " 'beforehand': 4,\n", " 'befriend': 1,\n", " 'beg': 9,\n", " 'began': 48,\n", " 'beggars': 1,\n", " 'begged': 2,\n", " 'begin': 11,\n", " 'beginning': 12,\n", " 'begirt': 1,\n", " 'begrimed': 1,\n", " 'beguile': 1,\n", " 'beguiled': 2,\n", " 'begun': 8,\n", " 'behalf': 2,\n", " 'beheaded': 2,\n", " 'beheld': 4,\n", " 'behind': 54,\n", " 'behold': 4,\n", " 'beholder': 1,\n", " 'beholders': 2,\n", " 'behoved': 1,\n", " 'being': 134,\n", " 'beings--taxed': 1,\n", " 'belated': 1,\n", " 'belief': 6,\n", " 'believe': 46,\n", " 'believe--but': 1,\n", " 'believed': 6,\n", " 'believeth': 6,\n", " 'believing': 1,\n", " 'bell': 17,\n", " 'bell-ringing': 1,\n", " 'belligerent': 1,\n", " 'bells': 4,\n", " 'belong': 6,\n", " 'belonged': 3,\n", " 'belonging': 4,\n", " 'beloved': 5,\n", " 'below': 15,\n", " 'belt': 1,\n", " 'bench': 26,\n", " 'bench-walk': 1,\n", " 'bending': 6,\n", " 'beneath': 5,\n", " 'benefactor': 1,\n", " 'benefactors': 1,\n", " 'beneficial': 2,\n", " 'benefit': 1,\n", " 'benevolence': 1,\n", " 'benevolent': 1,\n", " 'benighted': 1,\n", " 'bent': 26,\n", " 'benumbed': 1,\n", " 'bereft': 2,\n", " 'beseeching': 1,\n", " 'beset': 1,\n", " 'besetting': 1,\n", " 'beside': 21,\n", " 'besides': 18,\n", " 'besieged': 1,\n", " 'besmeared': 1,\n", " 'besmirched': 1,\n", " 'besought': 4,\n", " 'bespattered': 1,\n", " 'best': 40,\n", " 'bestow': 2,\n", " 'bestowal': 1,\n", " 'bestowed': 7,\n", " 'bestowing': 1,\n", " 'bestrewn': 1,\n", " 'bethinking': 1,\n", " 'bethought': 2,\n", " 'betimes': 1,\n", " 'betook': 1,\n", " 'betray': 1,\n", " 'betrothal': 1,\n", " 'betrothed': 1,\n", " 'better': 88,\n", " 'better--although': 1,\n", " 'better--i': 1,\n", " 'between': 63,\n", " 'betwixt': 1,\n", " 'beware': 1,\n", " 'bewildered': 4,\n", " 'bewildering': 1,\n", " 'bewilderment': 2,\n", " 'beyond': 27,\n", " 'bid': 4,\n", " 'bidden': 2,\n", " 'biding': 1,\n", " 'big': 3,\n", " 'bill': 1,\n", " 'billet': 1,\n", " 'billets': 2,\n", " 'billows': 1,\n", " 'billowy': 1,\n", " 'binary': 1,\n", " 'bind': 3,\n", " 'bird': 4,\n", " 'birds': 10,\n", " 'birth': 4,\n", " 'birthday': 2,\n", " 'birthdays': 1,\n", " 'bit': 5,\n", " 'bite': 4,\n", " 'biting': 2,\n", " 'bitter': 5,\n", " 'bitterly': 5,\n", " 'bitterness': 1,\n", " 'black': 37,\n", " 'black-haired': 1,\n", " 'blackened': 4,\n", " 'blackguard': 1,\n", " 'blackheath': 1,\n", " \"blacksmith's\": 1,\n", " 'blade': 4,\n", " 'blades': 1,\n", " 'blameless': 2,\n", " 'blank': 9,\n", " 'blaring': 1,\n", " 'blasphemous': 1,\n", " 'blast': 1,\n", " 'blatant': 1,\n", " 'blaze': 2,\n", " 'blazed': 2,\n", " 'blazing': 7,\n", " 'bleeding': 5,\n", " 'blended': 2,\n", " 'blending': 1,\n", " 'bless': 15,\n", " 'blessed': 7,\n", " 'blessed--my': 1,\n", " 'blessing': 8,\n", " 'blest': 5,\n", " 'blew': 2,\n", " 'blight': 2,\n", " 'blighted': 2,\n", " 'blind': 8,\n", " 'blinder': 1,\n", " 'blindly': 2,\n", " 'blindness--but': 1,\n", " 'blindnesses': 1,\n", " 'blinds': 4,\n", " 'blink': 1,\n", " 'bliss': 2,\n", " 'bloated': 5,\n", " 'blood': 31,\n", " 'blood-money': 1,\n", " 'blood-vessels': 1,\n", " 'bloodless': 1,\n", " 'bloodshed': 2,\n", " 'bloody': 2,\n", " 'bloody-minded': 2,\n", " 'bloom': 1,\n", " 'blooming': 4,\n", " 'blossomed': 1,\n", " 'blot': 1,\n", " 'blots': 1,\n", " 'blotting': 1,\n", " 'blotting-paper': 1,\n", " 'blouse': 1,\n", " 'blow': 6,\n", " 'blowed': 1,\n", " 'blowing': 3,\n", " 'blowings': 1,\n", " 'blown': 2,\n", " 'blows': 4,\n", " 'blue': 18,\n", " 'blue-flies': 4,\n", " 'blue-mould': 1,\n", " 'bluff': 1,\n", " 'blunderbuss': 4,\n", " 'blunderbusses': 1,\n", " 'blunt': 1,\n", " 'blurred': 1,\n", " 'blush': 1,\n", " 'boar-spears': 2,\n", " 'board': 10,\n", " 'boards': 1,\n", " 'boast': 1,\n", " 'boastful': 3,\n", " 'boastfully': 1,\n", " 'boastfulness': 1,\n", " 'boasting': 1,\n", " 'boat': 3,\n", " 'boded': 1,\n", " 'bodies': 7,\n", " 'bodily': 3,\n", " 'body': 20,\n", " 'body-women': 1,\n", " 'bodyguard': 1,\n", " 'boiled': 2,\n", " 'boiling': 4,\n", " 'bold': 5,\n", " 'boldest': 2,\n", " 'boldface': 1,\n", " 'boldly': 1,\n", " 'bolt': 1,\n", " 'bond': 1,\n", " 'bonds': 1,\n", " 'bones': 3,\n", " 'bonfires': 1,\n", " 'bonnet': 4,\n", " 'bony': 2,\n", " 'book': 8,\n", " 'booked': 2,\n", " 'books': 7,\n", " 'books--these': 1,\n", " 'boom': 1,\n", " 'boot': 4,\n", " 'boot-cleaning': 1,\n", " 'booted': 2,\n", " 'booting': 1,\n", " 'bootless': 1,\n", " 'boots': 9,\n", " 'bordeaux': 1,\n", " 'borders': 1,\n", " 'bore': 12,\n", " 'born': 10,\n", " 'borne': 4,\n", " 'borrow': 1,\n", " 'borrowed': 1,\n", " 'bosom': 18,\n", " 'boss': 1,\n", " 'both': 86,\n", " 'both--you': 1,\n", " 'botheration': 2,\n", " 'bottle': 7,\n", " 'bottles': 2,\n", " 'bottom': 3,\n", " 'boulogne': 1,\n", " 'bound': 17,\n", " 'bound--tied': 1,\n", " 'boundaries': 1,\n", " 'boundless': 1,\n", " 'bow': 5,\n", " 'bowed': 7,\n", " 'bowing': 4,\n", " 'bowl': 4,\n", " 'box': 8,\n", " 'boxes': 2,\n", " 'boy': 38,\n", " \"boy's\": 5,\n", " 'boy--a': 1,\n", " 'boys': 4,\n", " 'braced': 1,\n", " 'brain': 2,\n", " 'brains': 3,\n", " 'branch': 1,\n", " 'branched': 1,\n", " 'branches': 2,\n", " 'branded': 1,\n", " 'branding-iron': 1,\n", " 'brandy': 7,\n", " 'brave': 9,\n", " 'bravely': 1,\n", " 'bravery': 1,\n", " 'bravo': 1,\n", " 'brawling': 1,\n", " 'brawny': 1,\n", " 'brazen': 1,\n", " 'breach': 2,\n", " 'bread': 14,\n", " 'bread-and-butter': 3,\n", " 'bread-and-cheese': 2,\n", " 'breadless': 1,\n", " 'breadth': 5,\n", " 'break': 9,\n", " 'break--the': 1,\n", " 'breakfast': 14,\n", " 'breakfast-hour': 2,\n", " 'breakfast-table': 1,\n", " 'breaking': 6,\n", " 'breast': 50,\n", " 'breast--looked': 1,\n", " 'breasts': 5,\n", " 'breath': 20,\n", " 'breath--\"a': 1,\n", " 'breathe': 3,\n", " 'breathed': 3,\n", " 'breathing': 12,\n", " 'breathless': 5,\n", " 'bred': 2,\n", " 'bred--that': 1,\n", " 'breeches': 2,\n", " 'breed': 1,\n", " 'breeding': 4,\n", " 'brethren': 1,\n", " 'brevity': 1,\n", " 'brewery': 1,\n", " 'brick': 2,\n", " 'bricks': 1,\n", " 'bride': 2,\n", " \"bride's\": 1,\n", " 'bridegroom': 1,\n", " 'bridesmaid': 1,\n", " 'bridge': 5,\n", " 'bridle': 4,\n", " 'bridles': 1,\n", " 'brief': 6,\n", " 'brigand': 1,\n", " 'bright': 26,\n", " 'brightened': 1,\n", " 'brighter': 8,\n", " 'brightly': 3,\n", " 'brightness': 3,\n", " 'brilliant': 1,\n", " 'brilliantly': 2,\n", " 'bring': 31,\n", " 'bringing': 6,\n", " 'brings': 1,\n", " 'brink': 2,\n", " 'brisk': 3,\n", " 'briskly': 3,\n", " 'bristled': 1,\n", " 'britain': 1,\n", " 'british': 5,\n", " 'briton': 2,\n", " 'broaching': 1,\n", " 'broad': 8,\n", " 'broadcast': 1,\n", " 'broader': 1,\n", " 'brocade': 1,\n", " 'broke': 15,\n", " 'broken': 18,\n", " 'broken-backed': 1,\n", " 'broken-hearted': 1,\n", " 'broken-hearted--having': 1,\n", " 'bronze': 1,\n", " 'brood': 2,\n", " 'brooded': 1,\n", " 'brooding': 6,\n", " 'brother': 48,\n", " \"brother's\": 3,\n", " 'brother--and': 1,\n", " 'brotherhood': 1,\n", " 'brothers': 15,\n", " 'brought': 80,\n", " 'brow': 1,\n", " 'brown': 12,\n", " 'brown-haired': 1,\n", " 'brows': 3,\n", " 'bruised': 1,\n", " 'brushed': 1,\n", " 'brutality': 1,\n", " 'brute': 2,\n", " 'brutus': 4,\n", " 'buckles': 1,\n", " 'buffeted': 1,\n", " 'building': 10,\n", " 'building--that': 1,\n", " 'buildings': 6,\n", " 'built': 4,\n", " 'bulk': 1,\n", " 'bulky': 1,\n", " \"bull's\": 3,\n", " 'bull-dog': 1,\n", " 'bull-necked': 1,\n", " 'bullets': 1,\n", " 'bully': 1,\n", " 'bullying': 2,\n", " 'bump': 1,\n", " 'bumped': 2,\n", " 'bumper': 3,\n", " 'bumpers': 1,\n", " 'bunch': 1,\n", " 'bunches': 1,\n", " 'bundle': 8,\n", " 'burden': 2,\n", " 'burdens': 1,\n", " 'burglaries': 1,\n", " 'burial': 1,\n", " 'burial-ground': 2,\n", " 'burial-place': 1,\n", " 'burial-places': 2,\n", " 'buried': 14,\n", " 'burn': 4,\n", " 'burned': 3,\n", " 'burning': 10,\n", " 'burnt': 7,\n", " 'burst': 10,\n", " 'bursting': 7,\n", " 'buryin': 1,\n", " 'burying': 1,\n", " 'bushels': 1,\n", " 'busily': 4,\n", " 'business': 123,\n", " 'business--a': 1,\n", " 'business--business': 1,\n", " \"business--don't\": 1,\n", " 'business--if': 1,\n", " 'business-absorption': 1,\n", " 'business-like': 3,\n", " 'business-meaning': 1,\n", " 'business:--is': 1,\n", " 'business@pglaf.org': 1,\n", " 'bust': 2,\n", " 'bustled': 1,\n", " 'busy': 11,\n", " 'but': 654,\n", " 'but--really': 1,\n", " 'butcher': 1,\n", " 'butchered': 1,\n", " 'butcherly': 1,\n", " 'butchery': 1,\n", " 'butt-end': 1,\n", " 'butt-ends': 1,\n", " 'butted': 1,\n", " 'buy': 6,\n", " 'buzz': 3,\n", " 'buzzed': 1,\n", " 'buzzing': 1,\n", " 'by': 576,\n", " 'by\"--the': 1,\n", " 'by-and-bye': 7,\n", " 'by-street': 1,\n", " 'bye': 1,\n", " 'bye-street': 1,\n", " 'byway': 1,\n", " 'byways': 1,\n", " 'c': 3,\n", " 'cabin': 2,\n", " 'cabinet': 1,\n", " 'cachet': 1,\n", " 'cadaverous': 2,\n", " 'cadence': 1,\n", " 'cage': 3,\n", " 'cages': 1,\n", " 'calais': 5,\n", " 'calamity': 3,\n", " 'calculate': 3,\n", " 'calculated': 2,\n", " 'calculations': 1,\n", " 'caldron': 1,\n", " 'calendar': 1,\n", " 'call': 32,\n", " \"call--blacksmith's\": 1,\n", " 'called': 51,\n", " 'called?--in': 1,\n", " 'calling': 10,\n", " 'callings': 2,\n", " 'calls': 1,\n", " 'calm': 10,\n", " 'calmed': 1,\n", " 'calmly': 3,\n", " 'calmness': 2,\n", " 'cambridge': 1,\n", " 'came': 140,\n", " 'can': 131,\n", " \"can't\": 20,\n", " \"can't-be\": 1,\n", " 'canada': 1,\n", " 'candle': 7,\n", " 'candles': 4,\n", " 'cane': 1,\n", " 'cannibal-looking': 1,\n", " 'cannon': 5,\n", " 'cannonier': 1,\n", " 'cannonier--defarge': 1,\n", " 'cannot': 43,\n", " 'canonised': 1,\n", " 'cant': 1,\n", " 'canter': 1,\n", " 'canvas': 1,\n", " 'cap': 25,\n", " 'capable': 7,\n", " 'capacity': 5,\n", " 'capital': 4,\n", " 'capitulated': 1,\n", " 'capricious': 1,\n", " 'capriciously': 1,\n", " 'caps': 8,\n", " 'captain': 1,\n", " \"captain's\": 1,\n", " 'captive': 5,\n", " 'captivity': 6,\n", " 'captured': 1,\n", " 'car': 1,\n", " 'card': 7,\n", " 'card--a': 1,\n", " 'card-towers': 1,\n", " 'cards': 11,\n", " 'care': 35,\n", " 'cared': 7,\n", " 'career': 1,\n", " 'careful': 4,\n", " 'carefully': 9,\n", " 'careless': 8,\n", " 'carelessly': 3,\n", " 'carelessness': 1,\n", " 'cares': 6,\n", " 'caresses': 1,\n", " 'caressing': 2,\n", " 'caressingly': 1,\n", " 'caricaturing': 1,\n", " 'caring': 1,\n", " 'carmagnole': 5,\n", " 'carnage': 1,\n", " 'carol': 1,\n", " 'carousing': 1,\n", " 'carpenters': 1,\n", " 'carpet': 1,\n", " 'carriage': 49,\n", " 'carriage-door': 1,\n", " 'carriage-door--tenderly': 1,\n", " 'carriages': 6,\n", " 'carriages--ah': 1,\n", " 'carriages--where': 1,\n", " 'carried': 45,\n", " 'carries': 1,\n", " 'carrion': 1,\n", " 'carry': 12,\n", " 'carrying': 5,\n", " 'cart': 5,\n", " 'carton': 147,\n", " \"carton's\": 8,\n", " 'carton,--who': 1,\n", " 'carton--his': 1,\n", " 'cartridges': 1,\n", " 'carts': 8,\n", " 'carved': 2,\n", " 'carver': 1,\n", " 'case': 47,\n", " 'casement': 1,\n", " 'casements': 2,\n", " 'cases': 4,\n", " 'cases--to': 1,\n", " 'cashiers': 1,\n", " 'cask': 5,\n", " 'cast': 12,\n", " 'caste': 2,\n", " 'casting': 6,\n", " 'casual': 2,\n", " 'casually': 1,\n", " 'cat': 3,\n", " 'cataleptic': 1,\n", " 'catch': 5,\n", " 'catching': 1,\n", " 'catechist': 1,\n", " 'cathedral': 5,\n", " 'cattle': 2,\n", " 'caught': 19,\n", " 'cause': 18,\n", " 'caused': 8,\n", " 'causes': 4,\n", " 'causing': 1,\n", " 'caution': 1,\n", " 'cautionary': 1,\n", " 'cautioned': 1,\n", " 'cautious': 4,\n", " 'cautiously': 5,\n", " 'cavalcade': 1,\n", " 'cavalier': 1,\n", " 'cavalry': 1,\n", " 'cavernous': 1,\n", " 'cease': 3,\n", " 'ceased': 12,\n", " 'ceiling': 12,\n", " 'celebration': 1,\n", " 'celestial': 1,\n", " 'cell': 14,\n", " 'cellars': 2,\n", " 'cells': 4,\n", " 'central': 1,\n", " 'centre': 4,\n", " 'centres': 1,\n", " 'centuries': 2,\n", " 'ceremonies': 2,\n", " 'ceremony': 4,\n", " 'certain': 34,\n", " 'certainly': 15,\n", " 'certainty': 5,\n", " 'certificate': 4,\n", " 'cessation': 3,\n", " 'cesspools': 1,\n", " 'chafed': 3,\n", " 'chaff': 1,\n", " 'chain': 10,\n", " 'chain--like': 1,\n", " 'chained--not': 1,\n", " 'chains': 2,\n", " 'chair': 34,\n", " 'chair--who': 1,\n", " 'chair-back': 1,\n", " 'chairs': 4,\n", " 'chaise': 1,\n", " 'chaldean': 1,\n", " 'chalk': 1,\n", " 'challenged': 1,\n", " 'chamber': 10,\n", " 'chamber-robe': 1,\n", " 'chambers': 4,\n", " 'champing': 1,\n", " 'chance': 13,\n", " 'chanced': 2,\n", " 'chances': 3,\n", " 'chancing': 1,\n", " 'change': 31,\n", " 'changed': 23,\n", " 'changeless': 1,\n", " 'changes': 7,\n", " 'changing': 2,\n", " 'changingly': 1,\n", " 'channel': 4,\n", " 'channel--though': 1,\n", " 'character': 19,\n", " 'characterise': 1,\n", " 'characterised': 1,\n", " 'characteristic': 2,\n", " 'characteristics': 1,\n", " 'characters': 2,\n", " 'charcoal': 1,\n", " 'charge': 20,\n", " 'charged': 5,\n", " 'charger': 1,\n", " 'charges': 1,\n", " 'charging': 1,\n", " 'chariot': 1,\n", " 'charitable': 1,\n", " 'charities': 1,\n", " 'charity--never': 1,\n", " 'charles': 95,\n", " \"charles's\": 3,\n", " 'charm': 2,\n", " 'charmed': 1,\n", " 'charming': 4,\n", " 'charmingly': 1,\n", " 'chary': 1,\n", " 'chase': 5,\n", " 'chase--now': 1,\n", " 'chased': 1,\n", " 'chaste': 1,\n", " 'chateau': 27,\n", " \"chateau's\": 1,\n", " 'chattered': 1,\n", " 'chatting': 2,\n", " 'cheapest': 1,\n", " 'cheated': 1,\n", " 'cheating': 2,\n", " 'check': 8,\n", " 'checked': 4,\n", " 'checking': 3,\n", " 'checks': 1,\n", " 'cheek': 13,\n", " 'cheekbones': 1,\n", " 'cheeks': 1,\n", " 'cheer': 1,\n", " 'cheered': 1,\n", " 'cheerful': 6,\n", " 'cheerfully': 4,\n", " 'cheerfulness': 3,\n", " 'cheering': 1,\n", " 'cheery': 1,\n", " 'cheese': 2,\n", " 'chemist': 2,\n", " \"chemist's\": 1,\n", " 'chemists': 1,\n", " 'cheque': 1,\n", " 'cherish': 1,\n", " 'cherished': 1,\n", " 'cherishing': 1,\n", " 'chest': 4,\n", " 'chestnuts': 1,\n", " 'chewing': 2,\n", " 'chickens': 1,\n", " 'chief': 13,\n", " 'child': 88,\n", " \"child's\": 3,\n", " \"child's--and\": 1,\n", " 'child--should': 1,\n", " 'childhood': 3,\n", " 'children': 22,\n", " 'children--resounded': 1,\n", " 'chill': 1,\n", " 'chilled': 1,\n", " 'chimney': 6,\n", " 'chimney-sweep': 1,\n", " 'chimneys': 3,\n", " 'chin': 8,\n", " 'chink': 1,\n", " 'chinked': 1,\n", " 'chinks': 3,\n", " 'chips': 1,\n", " 'chisel': 1,\n", " 'chiselled': 1,\n", " 'chivalrous': 1,\n", " 'chocolate': 10,\n", " 'chocolate-pot': 1,\n", " 'choice': 6,\n", " 'choke': 3,\n", " 'choking': 1,\n", " 'choose': 5,\n", " 'chopped': 1,\n", " 'chopper': 1,\n", " 'chord': 1,\n", " 'chorus': 1,\n", " 'chosen': 2,\n", " 'choused': 1,\n", " 'christian': 6,\n", " 'christmas': 1,\n", " 'chronically': 1,\n", " 'chronicle': 1,\n", " 'chubby': 1,\n", " 'chum': 1,\n", " 'church': 15,\n", " 'church-organs': 1,\n", " 'church-tower': 1,\n", " 'churches': 3,\n", " 'churchyard': 2,\n", " 'churchyard--it': 1,\n", " \"cinderella's\": 1,\n", " 'cinderous': 1,\n", " 'circle': 4,\n", " 'circled': 2,\n", " 'circling': 2,\n", " 'circuit': 2,\n", " 'circuitously': 1,\n", " 'circulated': 1,\n", " 'circumference': 3,\n", " 'circumstance': 9,\n", " 'circumstances': 21,\n", " 'circumstances--say': 1,\n", " 'circumstantial': 1,\n", " 'circumstantial--and': 1,\n", " 'circumwented': 1,\n", " 'cities': 3,\n", " 'citizen': 56,\n", " \"citizen's\": 2,\n", " 'citizen-doctor': 1,\n", " 'citizen-patriots': 1,\n", " 'citizeness': 13,\n", " 'citizens': 2,\n", " 'citizens.--and': 1,\n", " 'city': 38,\n", " 'civil': 1,\n", " 'claim': 6,\n", " 'claimed': 3,\n", " 'claims': 1,\n", " 'clammy': 1,\n", " 'clamorous': 1,\n", " 'clanged': 1,\n", " 'clanging': 1,\n", " 'clapped': 3,\n", " 'clapping': 4,\n", " 'claptrap': 1,\n", " 'claret': 1,\n", " 'clash': 1,\n", " 'clashed': 1,\n", " 'clashing': 1,\n", " 'clasp': 2,\n", " 'clasped': 9,\n", " 'clasping': 5,\n", " 'clasps': 1,\n", " 'class': 5,\n", " 'classes': 1,\n", " 'clatter': 2,\n", " 'clattered': 2,\n", " 'clattering': 2,\n", " 'clay': 1,\n", " 'clay-soiled': 1,\n", " 'clean': 7,\n", " 'cleaner': 1,\n", " 'clear': 13,\n", " 'clear-headed': 2,\n", " 'clearance': 2,\n", " 'cleared': 4,\n", " 'clearer': 1,\n", " 'clearing': 1,\n", " 'clearly': 10,\n", " 'clearness': 1,\n", " 'clears': 1,\n", " 'clemency': 1,\n", " 'clenched': 4,\n", " 'clergy': 1,\n", " 'clerk': 7,\n", " 'clerkenwell': 3,\n", " 'clerks': 7,\n", " 'client': 4,\n", " 'clients': 1,\n", " 'cliffs': 2,\n", " 'climate': 1,\n", " 'climbed': 3,\n", " 'climbing': 3,\n", " 'clinging': 6,\n", " 'clink': 1,\n", " 'cloak': 4,\n", " 'cloaks': 3,\n", " 'clock': 8,\n", " 'clocks': 3,\n", " 'close': 51,\n", " 'closed': 29,\n", " 'closely': 6,\n", " 'closeness': 2,\n", " 'closer': 11,\n", " 'closet': 5,\n", " 'closing': 12,\n", " 'cloth': 1,\n", " 'clothed': 1,\n", " 'clothes': 18,\n", " 'clothing': 2,\n", " 'cloud': 9,\n", " 'clouded': 4,\n", " 'clouds': 5,\n", " 'cloudy': 1,\n", " 'clumsily': 1,\n", " 'clumsy': 3,\n", " 'clung': 2,\n", " 'cluster': 1,\n", " 'clustered': 1,\n", " 'clutched': 4,\n", " 'clutching': 3,\n", " 'cly': 13,\n", " \"cly's\": 1,\n", " 'co': 3,\n", " \"co.'s\": 1,\n", " 'coach': 41,\n", " 'coach-door': 3,\n", " 'coach-lamp': 2,\n", " 'coach-lamps': 2,\n", " 'coach-step': 1,\n", " 'coach-trimming': 1,\n", " 'coach-windows': 1,\n", " 'coaches': 4,\n", " 'coachman': 9,\n", " 'coals': 3,\n", " 'coarse': 12,\n", " 'coarsest': 1,\n", " 'coast': 2,\n", " 'coat': 12,\n", " 'coat-collar': 1,\n", " 'coats': 1,\n", " 'coaxed': 1,\n", " 'cock-lane': 2,\n", " 'cockade': 2,\n", " 'cockades': 1,\n", " 'cocked': 2,\n", " 'cocked-hat': 1,\n", " 'cocking': 1,\n", " 'code': 1,\n", " 'codes': 1,\n", " 'codgers': 1,\n", " 'coercion': 1,\n", " 'coffee': 5,\n", " 'coffee-houses': 1,\n", " 'coffee-room': 4,\n", " 'coffin': 6,\n", " 'cogitated': 1,\n", " 'cogitation': 1,\n", " 'cognac': 7,\n", " 'coherently': 1,\n", " 'coin': 3,\n", " 'coinage': 1,\n", " 'coincidence': 4,\n", " 'coincidences': 1,\n", " 'coiner': 1,\n", " 'coins': 1,\n", " 'cold': 29,\n", " 'coldly': 7,\n", " 'collar': 1,\n", " 'collect': 2,\n", " 'collected': 5,\n", " 'collectedly': 2,\n", " 'collecting': 1,\n", " 'collection': 7,\n", " 'college': 1,\n", " 'colonnade': 1,\n", " 'colour': 15,\n", " 'colours': 2,\n", " 'combated': 1,\n", " 'combed': 1,\n", " 'combination': 2,\n", " 'combined': 3,\n", " 'come': 156,\n", " 'comedy': 3,\n", " 'comely': 1,\n", " 'comer': 1,\n", " 'comers': 1,\n", " 'comes': 14,\n", " 'comfort': 9,\n", " 'comfortable': 1,\n", " 'comforted': 3,\n", " 'comforting': 2,\n", " 'comically': 1,\n", " 'coming': 49,\n", " 'coming-up': 1,\n", " 'command': 2,\n", " 'commanded': 3,\n", " 'commands': 1,\n", " 'commence': 2,\n", " 'commenced': 1,\n", " 'commencement': 2,\n", " 'commences': 1,\n", " 'commendations': 1,\n", " 'commended': 4,\n", " 'comment': 1,\n", " 'commenting': 1,\n", " 'commercial': 1,\n", " 'commiserated': 1,\n", " 'commiseration': 2,\n", " 'commission': 2,\n", " 'commissioned': 1,\n", " 'committed': 6,\n", " 'committee': 1,\n", " 'committees': 2,\n", " 'committing': 1,\n", " 'common': 22,\n", " 'common-places': 1,\n", " 'commonly': 1,\n", " 'commons': 1,\n", " 'communicate': 4,\n", " 'communicated': 6,\n", " 'communication': 6,\n", " 'communications': 3,\n", " 'compact': 2,\n", " 'companies': 1,\n", " 'companion': 8,\n", " \"companion's\": 1,\n", " 'companions': 6,\n", " 'companionship': 2,\n", " 'company': 17,\n", " \"company's\": 1,\n", " 'company--at': 1,\n", " 'company--over': 1,\n", " 'company--set': 1,\n", " 'company--would': 1,\n", " 'comparatively': 2,\n", " 'compared': 1,\n", " 'comparing': 1,\n", " 'comparison': 4,\n", " 'compass': 2,\n", " 'compassion': 10,\n", " 'compassionate': 7,\n", " 'compatriot': 2,\n", " 'compeers': 2,\n", " 'compelled': 1,\n", " 'compelling': 1,\n", " 'compensate': 1,\n", " 'competitors': 1,\n", " 'compilation': 1,\n", " 'complacency': 1,\n", " 'complacent': 2,\n", " 'complacently': 1,\n", " 'complain': 1,\n", " 'complaining': 2,\n", " 'complaint': 2,\n", " 'complaints': 1,\n", " 'complete': 6,\n", " 'completed': 3,\n", " 'completely': 5,\n", " 'completeness': 1,\n", " 'completing': 1,\n", " 'completion': 1,\n", " 'complexion': 4,\n", " 'complexions': 1,\n", " 'compliance': 5,\n", " 'complicated': 1,\n", " 'complied': 5,\n", " 'compliment': 3,\n", " 'complimentary': 1,\n", " 'complimented': 1,\n", " 'compliments': 3,\n", " 'comply': 8,\n", " 'complying': 3,\n", " 'comportable': 1,\n", " 'compose': 4,\n", " 'composed': 9,\n", " 'composedly': 6,\n", " 'composing': 1,\n", " 'composition': 1,\n", " 'composure': 6,\n", " 'compound': 1,\n", " 'comprehend': 4,\n", " 'comprehended': 3,\n", " 'compressed': 3,\n", " 'compression': 1,\n", " 'compressions': 1,\n", " 'compromise': 1,\n", " 'compromised': 1,\n", " 'compromising': 1,\n", " 'compunction': 1,\n", " 'computer': 2,\n", " 'computers': 2,\n", " 'comrade': 1,\n", " 'comrades': 1,\n", " 'conceal': 2,\n", " 'concealed': 5,\n", " 'concealment': 3,\n", " 'conceded': 1,\n", " 'conceited': 1,\n", " 'conceivable': 1,\n", " 'conceive': 1,\n", " 'conceived': 2,\n", " 'concentrated': 4,\n", " 'concentration': 1,\n", " 'concept': 2,\n", " 'conception': 1,\n", " 'conceptions': 1,\n", " 'concerning': 6,\n", " 'concert': 1,\n", " 'concession': 1,\n", " 'conciergerie': 10,\n", " 'concluded': 2,\n", " 'concluding': 1,\n", " 'conclusion': 5,\n", " 'concocting': 1,\n", " 'concord': 7,\n", " 'concourse': 6,\n", " 'concussion': 1,\n", " 'condemnation': 2,\n", " 'condemned': 9,\n", " 'condemning': 1,\n", " 'condescension': 1,\n", " 'condition': 20,\n", " 'condition--fully': 1,\n", " 'conditions': 1,\n", " 'condole': 1,\n", " 'condoling': 1,\n", " 'conduced': 1,\n", " 'conducive': 1,\n", " 'conduct': 4,\n", " 'conducted': 4,\n", " 'conducting': 2,\n", " 'conductor': 3,\n", " 'conductors': 2,\n", " 'confer': 2,\n", " 'conference': 11,\n", " 'conferences': 1,\n", " 'conferred': 2,\n", " 'conferring': 1,\n", " 'confess': 2,\n", " 'confide': 5,\n", " 'confided': 3,\n", " 'confidence': 33,\n", " 'confidences': 1,\n", " 'confident': 6,\n", " 'confidential': 4,\n", " 'confidentially': 1,\n", " 'confiding': 1,\n", " 'confidingly': 1,\n", " 'confined': 3,\n", " 'confinement': 2,\n", " 'confines': 1,\n", " 'confirm': 1,\n", " 'confirmable': 1,\n", " 'confirmation': 2,\n", " 'confirmed': 4,\n", " 'confirms': 1,\n", " 'confiscated': 2,\n", " 'confiscation': 2,\n", " 'conflagration': 1,\n", " 'conflict': 1,\n", " 'confound': 3,\n", " 'confronted': 5,\n", " 'confronting': 2,\n", " 'confuse': 1,\n", " 'confused': 9,\n", " 'confusedly': 1,\n", " 'confusion': 6,\n", " 'congenial': 2,\n", " 'congratulate': 2,\n", " 'congratulated': 1,\n", " 'congratulations': 2,\n", " 'congratulatory': 1,\n", " 'congress': 1,\n", " 'conjunction': 1,\n", " 'conjuration': 1,\n", " 'connected': 8,\n", " 'connection': 4,\n", " 'connections': 1,\n", " 'conquered': 1,\n", " 'conscience': 3,\n", " 'conscious': 7,\n", " 'consciousness': 5,\n", " 'consecrated': 1,\n", " 'consent': 4,\n", " 'consequence': 4,\n", " 'consequences': 4,\n", " 'consequent': 2,\n", " 'consequential': 1,\n", " 'consequently': 4,\n", " 'consider': 9,\n", " 'considerable': 6,\n", " 'considerate': 1,\n", " 'consideration': 14,\n", " 'considerations': 2,\n", " 'considered': 10,\n", " 'considering': 4,\n", " 'consigned': 3,\n", " 'consignment': 1,\n", " 'consisted': 3,\n", " 'consistently': 1,\n", " 'consolation': 5,\n", " 'consolatory': 1,\n", " 'console': 1,\n", " 'consolidation': 1,\n", " 'conspicuous': 4,\n", " 'conspicuous--gave': 1,\n", " 'conspirator': 1,\n", " 'constancy': 2,\n", " 'constant': 3,\n", " 'constantly': 7,\n", " 'consternation': 1,\n", " 'constituted': 1,\n", " 'constraining': 1,\n", " 'constraint': 2,\n", " 'construction': 1,\n", " 'consultation': 1,\n", " 'consulting-room': 2,\n", " 'consumed': 1,\n", " 'consumption': 1,\n", " 'contact': 4,\n", " 'contagion': 2,\n", " 'contagious': 1,\n", " 'contain': 2,\n", " 'contained': 1,\n", " 'containing': 2,\n", " 'contamination': 1,\n", " 'contemplating': 4,\n", " 'contemplation': 2,\n", " 'contemporaries': 1,\n", " 'contempt': 3,\n", " 'contemptuous': 1,\n", " 'contemptuously': 3,\n", " 'contend': 1,\n", " 'contended': 3,\n", " 'contending': 1,\n", " 'content': 3,\n", " 'contention': 1,\n", " 'contentious': 2,\n", " 'contents': 3,\n", " 'contest': 1,\n", " 'continually': 1,\n", " 'continued': 2,\n", " 'continuing': 1,\n", " 'continuity': 1,\n", " 'continuous': 2,\n", " 'continuously': 1,\n", " 'contraband': 2,\n", " 'contract': 1,\n", " 'contracted': 2,\n", " 'contradicted': 1,\n", " 'contradicting': 1,\n", " 'contradiction': 1,\n", " 'contradictory': 1,\n", " 'contrary': 1,\n", " 'contrast': 2,\n", " 'contrasted': 1,\n", " 'contrasting': 1,\n", " 'contributions': 2,\n", " 'contrivances': 1,\n", " 'contrived': 1,\n", " 'control': 4,\n", " 'control--the': 1,\n", " 'convenience': 1,\n", " 'convenient': 5,\n", " 'convent': 1,\n", " 'conventionally': 1,\n", " 'conversant': 1,\n", " 'conversation': 20,\n", " 'conversations': 1,\n", " 'converse': 1,\n", " 'conversing': 1,\n", " 'conversion': 1,\n", " 'convert': 1,\n", " 'convey': 3,\n", " 'conveyance': 2,\n", " 'conveyed': 4,\n", " 'conveying': 2,\n", " 'conviction': 3,\n", " 'convivial': 1,\n", " 'convulsionists': 1,\n", " 'convulsively': 1,\n", " 'conwenient': 1,\n", " 'conwey': 1,\n", " 'conwictions': 1,\n", " 'cook': 2,\n", " \"cook's\": 1,\n", " 'cooked': 2,\n", " 'cooks': 1,\n", " 'cool': 7,\n", " 'coolest': 2,\n", " 'coolly': 2,\n", " 'cope': 1,\n", " 'copied': 2,\n", " 'copies': 7,\n", " 'coppice-wood': 1,\n", " 'copy': 11,\n", " 'copying': 4,\n", " 'copyright': 13,\n", " 'coquetry': 1,\n", " 'coquette': 1,\n", " 'cordial': 1,\n", " 'cords': 1,\n", " 'corkscrew': 1,\n", " 'corn': 4,\n", " 'corner': 57,\n", " 'corners': 5,\n", " 'corporation': 1,\n", " 'correct': 2,\n", " 'corrected': 1,\n", " 'correcting': 1,\n", " 'correction': 2,\n", " 'correctly': 1,\n", " 'correctness': 1,\n", " 'correspondence': 3,\n", " 'corresponding': 1,\n", " 'correspondingly': 2,\n", " 'corridor': 2,\n", " 'corridors': 1,\n", " 'corroborate': 1,\n", " 'corroborations': 1,\n", " 'corrupt': 1,\n", " 'corrupted': 1,\n", " 'corruption': 1,\n", " 'cost': 5,\n", " 'costs': 2,\n", " 'cottage': 1,\n", " 'cottage--our': 1,\n", " 'cottages': 2,\n", " 'couch': 1,\n", " 'cough': 5,\n", " 'coughed': 3,\n", " 'coughing': 1,\n", " 'could': 282,\n", " 'could--i': 1,\n", " \"couldn't\": 5,\n", " 'council': 2,\n", " 'counsel': 12,\n", " 'counsellor': 1,\n", " 'count': 7,\n", " 'counted': 7,\n", " 'countenance': 5,\n", " 'countenances': 3,\n", " 'counter': 20,\n", " 'counter-prayed': 1,\n", " 'counterfeit': 1,\n", " 'countermined': 1,\n", " 'counterpane': 1,\n", " 'counterpart': 1,\n", " 'counters': 2,\n", " 'countersigned': 1,\n", " 'counterweight': 1,\n", " 'counting': 7,\n", " 'counting-house': 1,\n", " 'countless': 1,\n", " 'countries': 3,\n", " 'country': 36,\n", " 'country--he': 1,\n", " 'country-people': 1,\n", " 'countryman': 2,\n", " \"countryman's\": 1,\n", " 'countrymen': 2,\n", " 'county': 1,\n", " 'couple': 1,\n", " 'coupled': 1,\n", " 'courage': 15,\n", " 'courageous': 2,\n", " 'courier': 3,\n", " 'course': 30,\n", " 'courses': 1,\n", " 'court': 50,\n", " \"court's\": 1,\n", " 'court--except': 1,\n", " 'court--only': 1,\n", " 'courtesies': 1,\n", " 'courtly': 4,\n", " 'courts': 2,\n", " 'courtyard': 35,\n", " 'courtyards': 1,\n", " 'cousin': 1,\n", " 'cover': 2,\n", " 'covered': 12,\n", " 'covering': 1,\n", " 'coverlet': 2,\n", " 'cow': 2,\n", " 'cowardice': 1,\n", " 'cowed': 1,\n", " 'cows': 4,\n", " 'cracked': 2,\n", " 'cracking': 1,\n", " 'cradle': 3,\n", " 'craft': 1,\n", " 'craftily': 1,\n", " 'crag': 8,\n", " 'cramped': 1,\n", " 'crane': 1,\n", " 'craned': 1,\n", " 'crash': 5,\n", " 'crash!--a': 1,\n", " 'crash!--and': 1,\n", " 'crashing': 1,\n", " 'cravat': 2,\n", " 'craven': 1,\n", " 'craving': 7,\n", " 'crawl': 1,\n", " 'crawled': 1,\n", " 'crawling': 1,\n", " 'crazed': 2,\n", " 'crazy': 2,\n", " 'creasing': 1,\n", " 'created': 2,\n", " 'creating': 4,\n", " 'creation': 3,\n", " 'creator': 2,\n", " 'creature': 23,\n", " \"creature's\": 1,\n", " 'creatures': 6,\n", " 'creatures--found': 1,\n", " 'creatures--the': 1,\n", " 'credentials': 1,\n", " 'credit': 4,\n", " 'creditors': 1,\n", " 'creep': 2,\n", " 'creeping': 2,\n", " 'creeps': 1,\n", " 'creeturs': 1,\n", " 'crept': 4,\n", " 'crestfallen': 1,\n", " 'crevice': 2,\n", " 'crew': 1,\n", " 'cried': 46,\n", " 'cries': 15,\n", " 'crime': 8,\n", " 'crimes': 5,\n", " 'criminal': 1,\n", " \"criminal's\": 1,\n", " 'criminals': 2,\n", " 'crimson': 1,\n", " 'crimsoned': 1,\n", " 'cringing': 1,\n", " 'cripples': 1,\n", " 'crippling': 1,\n", " 'crisis': 2,\n", " 'crisp': 2,\n", " 'crisply-curling': 1,\n", " 'critical': 1,\n", " 'croak': 1,\n", " 'croaked': 9,\n", " 'croaking': 1,\n", " 'crockery': 1,\n", " 'crones': 1,\n", " 'crooked': 5,\n", " 'crookedly': 1,\n", " 'cropped': 1,\n", " 'crops': 1,\n", " 'cross': 10,\n", " 'cross-examining': 1,\n", " 'cross-questioned': 1,\n", " 'crossed': 12,\n", " 'crosses': 1,\n", " 'crossing': 2,\n", " 'crouching': 4,\n", " \"crow's\": 1,\n", " 'crowbar': 3,\n", " 'crowd': 40,\n", " \"crowd's\": 1,\n", " 'crowded': 6,\n", " 'crowds': 4,\n", " 'crown': 5,\n", " 'crowning': 1,\n", " 'cruel': 16,\n", " 'cruelest': 1,\n", " 'cruelly': 1,\n", " 'cruelty': 1,\n", " 'crumble': 1,\n", " 'crumbled': 1,\n", " 'crumbling': 2,\n", " 'crumbs': 2,\n", " 'crumpled': 1,\n", " 'cruncher': 108,\n", " \"cruncher!--don't\": 1,\n", " \"cruncher's\": 12,\n", " 'cruncher--though': 1,\n", " 'crunches': 2,\n", " 'crush': 2,\n", " 'crushed': 2,\n", " 'cry': 25,\n", " 'crying': 7,\n", " 'crystal': 1,\n", " 'crystallisation': 1,\n", " 'cud': 1,\n", " 'cuffs': 1,\n", " 'culinary': 1,\n", " 'culminated': 1,\n", " 'culminating': 1,\n", " 'culpability': 1,\n", " 'cultivated': 2,\n", " 'cunning': 1,\n", " 'cunningly': 1,\n", " 'cup-bearer': 1,\n", " 'cupboard': 1,\n", " 'cupboards': 1,\n", " 'cupid': 2,\n", " 'cupids': 2,\n", " 'cups': 1,\n", " 'curator': 1,\n", " 'cure': 1,\n", " 'curiosity': 11,\n", " 'curious': 16,\n", " 'curiously': 3,\n", " 'curling': 1,\n", " 'curls': 1,\n", " 'current': 6,\n", " 'curse': 3,\n", " 'cursed': 3,\n", " 'curses': 1,\n", " 'curtain': 2,\n", " 'curtained': 2,\n", " 'curtains': 3,\n", " 'curtly': 1,\n", " 'curtseyed': 2,\n", " 'curtseys': 1,\n", " 'curved': 1,\n", " 'cushion': 1,\n", " 'cushions': 1,\n", " 'custodian': 1,\n", " 'custody': 2,\n", " 'custom': 4,\n", " 'custom-house': 1,\n", " 'customary': 2,\n", " 'customer': 8,\n", " 'customers': 18,\n", " 'customs': 1,\n", " 'cut': 10,\n", " 'cutlass': 1,\n", " \"cutler's\": 1,\n", " 'cutter': 1,\n", " 'cutting': 1,\n", " 'cylinder': 1,\n", " 'd': 1,\n", " \"d'aulnais\": 1,\n", " \"d'ye\": 4,\n", " 'd--n': 3,\n", " 'dab': 1,\n", " 'dagger': 1,\n", " 'daggers': 1,\n", " 'daily': 6,\n", " 'dainty': 3,\n", " 'damage': 2,\n", " 'damaged': 2,\n", " 'damages': 4,\n", " 'dame': 2,\n", " 'damiens': 1,\n", " 'dammed': 1,\n", " 'damned': 1,\n", " 'damp': 8,\n", " 'dance': 4,\n", " 'dance-figure': 1,\n", " 'danced': 6,\n", " 'dancing': 5,\n", " 'danger': 28,\n", " 'dangerous': 14,\n", " 'dangers': 1,\n", " 'dangling': 2,\n", " 'dank': 1,\n", " 'dare': 8,\n", " 'dared': 3,\n", " 'daring': 1,\n", " 'dark': 89,\n", " 'darkened': 5,\n", " 'darkening': 5,\n", " 'darker': 1,\n", " 'darkest': 1,\n", " 'darkly': 5,\n", " 'darkness': 28,\n", " 'darling': 13,\n", " \"darling's\": 2,\n", " 'darling--or': 1,\n", " 'darlings': 1,\n", " 'darnay': 139,\n", " \"darnay's\": 7,\n", " 'darnay--as': 1,\n", " 'darnay--just': 1,\n", " 'darted': 4,\n", " 'darting': 2,\n", " 'dashed': 1,\n", " 'data': 1,\n", " 'date': 7,\n", " 'date--he': 1,\n", " 'dated': 3,\n", " 'daughter': 60,\n", " \"daughter's\": 8,\n", " \"daughter's--his\": 1,\n", " 'daughter--_his': 1,\n", " 'daughter--he': 1,\n", " 'daughters': 2,\n", " 'dawn': 3,\n", " 'dawning': 2,\n", " 'day': 169,\n", " \"day's\": 9,\n", " 'day--work': 1,\n", " 'daybreak': 3,\n", " 'daylight': 3,\n", " 'days': 51,\n", " 'days--became': 1,\n", " 'days--three': 1,\n", " 'dazed': 1,\n", " 'de': 5,\n", " 'dead': 64,\n", " 'dead--i': 1,\n", " 'dead--no': 1,\n", " 'dead-dog': 1,\n", " 'deaden': 1,\n", " 'deadly': 4,\n", " 'deaf': 2,\n", " 'deafened': 1,\n", " 'deafening': 1,\n", " 'deal': 10,\n", " 'deals': 1,\n", " 'dealt': 1,\n", " 'dear': 123,\n", " 'dearer': 4,\n", " 'dearest': 13,\n", " 'dearest,--take': 1,\n", " 'dearly': 2,\n", " 'death': 62,\n", " \"death's\": 1,\n", " 'death--a': 1,\n", " 'death--were': 1,\n", " 'death-carts': 1,\n", " 'death;--the': 1,\n", " 'debated': 1,\n", " 'debating': 2,\n", " 'debauched': 1,\n", " 'debauchery': 1,\n", " 'debt': 1,\n", " 'debtors': 2,\n", " 'decayed': 2,\n", " 'decease': 1,\n", " 'deceased': 1,\n", " 'deceit': 1,\n", " 'deceive': 4,\n", " 'deceived': 2,\n", " 'december': 3,\n", " 'decent': 1,\n", " 'decently': 1,\n", " 'deception': 1,\n", " 'decide': 1,\n", " 'decided': 7,\n", " 'decidedly': 4,\n", " 'decipher': 2,\n", " 'decision': 1,\n", " 'deck': 2,\n", " 'declaiming': 1,\n", " 'declare': 3,\n", " 'declared': 6,\n", " 'declaring': 2,\n", " 'declined': 2,\n", " 'declining': 1,\n", " 'decomposing': 1,\n", " 'decomposition': 1,\n", " 'decorated': 1,\n", " 'decoration': 5,\n", " 'decree': 9,\n", " 'decreed': 2,\n", " 'decrees': 1,\n", " 'deduce': 1,\n", " 'deducing': 1,\n", " 'deductible': 1,\n", " 'deducting': 1,\n", " 'deed': 6,\n", " 'deeds': 4,\n", " 'deem': 1,\n", " 'deemed': 2,\n", " 'deep': 24,\n", " 'deepened': 8,\n", " 'deepening': 1,\n", " 'deeper': 3,\n", " 'deeply': 6,\n", " 'deer': 1,\n", " 'defaced': 1,\n", " 'defarge': 280,\n", " \"defarge's\": 20,\n", " 'defarge--who': 1,\n", " 'defarges': 9,\n", " 'defeat': 1,\n", " 'defeats': 1,\n", " 'defect': 3,\n", " 'defective': 3,\n", " 'defects': 1,\n", " 'defence': 1,\n", " 'defenceless': 1,\n", " 'defend': 1,\n", " 'defendant': 1,\n", " 'defended': 1,\n", " 'deference': 4,\n", " 'deferentially': 1,\n", " 'defiance': 4,\n", " 'deficient': 1,\n", " 'defined': 3,\n", " 'definite': 2,\n", " 'deftly': 1,\n", " 'defy': 1,\n", " 'degenerate': 1,\n", " 'degradation': 1,\n", " 'degraded': 1,\n", " 'degrading': 1,\n", " 'degree': 11,\n", " 'degrees': 8,\n", " 'deigning': 1,\n", " 'dejected': 4,\n", " 'dejectedly': 1,\n", " 'delay': 12,\n", " 'delayed': 1,\n", " 'deletions': 1,\n", " 'deliberate': 1,\n", " 'deliberately': 4,\n", " 'deliberating': 1,\n", " 'delicacy': 10,\n", " 'delicate': 12,\n", " 'delicately': 4,\n", " 'delight': 1,\n", " 'delight--divided': 1,\n", " 'delighted': 1,\n", " 'delightful': 1,\n", " 'deliver': 7,\n", " 'deliverance': 1,\n", " 'delivered': 14,\n", " 'deluge': 2,\n", " 'delusion': 2,\n", " 'delve': 1,\n", " 'demand': 6,\n", " 'demanded': 10,\n", " 'demanding': 1,\n", " 'demands': 2,\n", " 'demean': 1,\n", " 'demeanour': 2,\n", " 'demented': 1,\n", " 'demons': 1,\n", " 'demonstration': 2,\n", " 'demonstration--but': 1,\n", " 'demonstrations': 2,\n", " 'demonstrative': 2,\n", " 'demur': 2,\n", " 'den': 1,\n", " 'denial': 2,\n", " 'denied': 1,\n", " 'denote': 1,\n", " 'denoted': 1,\n", " 'denounce': 5,\n", " 'denounced': 6,\n", " 'denounced--and': 1,\n", " 'denouncer': 1,\n", " 'denouncing': 1,\n", " 'dens': 2,\n", " 'dense': 1,\n", " 'denunciation': 6,\n", " 'deny': 1,\n", " 'denying': 1,\n", " 'depart': 3,\n", " 'departed': 5,\n", " 'departing': 1,\n", " 'departure': 1,\n", " 'depend': 8,\n", " 'depended': 2,\n", " 'depends': 6,\n", " 'deplorable': 1,\n", " 'deplore': 1,\n", " 'deportment': 1,\n", " 'deposited': 1,\n", " 'depositors': 1,\n", " 'depository': 1,\n", " 'deprecated': 1,\n", " 'deprecatory': 2,\n", " 'depressed': 3,\n", " 'deprivation': 2,\n", " 'depth': 3,\n", " 'depths': 6,\n", " 'deriding': 1,\n", " 'derivative': 3,\n", " 'derive': 1,\n", " 'derived': 6,\n", " 'dervishes': 1,\n", " 'descend': 4,\n", " 'descendants': 2,\n", " 'descended': 3,\n", " 'descending': 1,\n", " 'descends': 3,\n", " 'descent': 5,\n", " 'describe': 6,\n", " 'described': 7,\n", " 'describes': 1,\n", " 'describing': 1,\n", " 'descried': 2,\n", " 'description': 5,\n", " 'desert': 4,\n", " 'desert-sand': 1,\n", " 'deserted': 5,\n", " 'desertion': 1,\n", " 'deserve': 3,\n", " 'deserved': 3,\n", " 'deserves': 2,\n", " 'design': 2,\n", " 'designation': 1,\n", " 'designed': 2,\n", " 'designedly': 1,\n", " 'desirable': 4,\n", " 'desire': 14,\n", " 'desired': 5,\n", " 'desirous': 1,\n", " 'desk': 13,\n", " 'desolate': 7,\n", " 'desolately': 1,\n", " 'desolation': 1,\n", " 'despair': 6,\n", " 'despatch': 2,\n", " 'despatched': 3,\n", " 'desperate': 9,\n", " 'desperation': 3,\n", " 'despise': 1,\n", " 'despite': 1,\n", " 'despoil': 1,\n", " 'despoiled': 1,\n", " 'despond': 1,\n", " 'despondency': 3,\n", " 'despondent': 1,\n", " 'destination': 7,\n", " 'destinations': 1,\n", " 'destined': 1,\n", " 'destiny': 4,\n", " 'destitute': 1,\n", " 'destroy': 3,\n", " 'destroyed': 3,\n", " 'destroyed--razed': 1,\n", " 'destruction': 7,\n", " 'destructive': 1,\n", " 'detach': 2,\n", " 'detached': 1,\n", " 'detachment': 1,\n", " 'detail': 3,\n", " 'details': 5,\n", " 'detain': 2,\n", " 'detained': 3,\n", " 'detect': 2,\n", " 'detected': 5,\n", " 'detecting': 1,\n", " 'detention': 1,\n", " 'determination': 6,\n", " 'determine': 1,\n", " 'determined': 8,\n", " 'detestation': 1,\n", " 'detested': 3,\n", " 'detriment': 1,\n", " 'developed': 2,\n", " 'device': 1,\n", " 'devices': 2,\n", " 'devil': 16,\n", " 'devilish': 1,\n", " 'devilishly': 1,\n", " 'devilry': 1,\n", " 'devilry--a': 1,\n", " 'devils': 1,\n", " 'devils--which': 1,\n", " 'devise': 1,\n", " 'devonshire': 1,\n", " 'devote': 3,\n", " 'devoted': 7,\n", " 'devotedly': 3,\n", " 'devotees': 1,\n", " 'devotion': 1,\n", " 'devouring': 3,\n", " 'devoutest': 1,\n", " 'devoutly': 1,\n", " 'dewelop': 2,\n", " 'dexterously': 1,\n", " 'diabolic': 1,\n", " 'dialect': 1,\n", " 'dialogue': 5,\n", " 'diamond': 1,\n", " 'diamond-cut-diamond': 1,\n", " 'diamonds': 2,\n", " 'dice': 1,\n", " 'dickens': 1,\n", " 'dictate': 1,\n", " 'dictated': 1,\n", " 'dictating': 1,\n", " 'dictionary': 1,\n", " 'did': 161,\n", " \"did--don't\": 1,\n", " \"didn't\": 9,\n", " 'didst': 1,\n", " 'die': 23,\n", " 'died': 20,\n", " 'died--i': 1,\n", " 'dies': 1,\n", " 'differed': 1,\n", " 'difference': 5,\n", " 'different': 11,\n", " 'differing': 1,\n", " 'difficult': 17,\n", " 'difficult--how': 1,\n", " 'difficulties': 1,\n", " 'difficulty': 15,\n", " 'diffidence': 2,\n", " 'dig': 8,\n", " 'dig--dig--dig--until': 1,\n", " 'dig--now': 1,\n", " 'digestive': 1,\n", " 'digger': 1,\n", " 'diggin': 2,\n", " 'digging': 3,\n", " 'dignity': 2,\n", " 'dilated': 2,\n", " 'dim': 8,\n", " 'dimensions': 1,\n", " 'diminished': 2,\n", " 'diminishing': 1,\n", " 'dimly': 3,\n", " 'dimly-lighted': 1,\n", " 'dimmed': 1,\n", " 'dimmer': 1,\n", " 'dine': 4,\n", " \"dine--it's\": 1,\n", " 'dined': 3,\n", " 'dingier': 1,\n", " 'dingiest': 1,\n", " 'dingy': 4,\n", " 'dining': 1,\n", " 'dining-room': 1,\n", " 'dining-table': 1,\n", " 'dinner': 14,\n", " 'dinner-time': 1,\n", " 'dinners': 1,\n", " 'dints': 3,\n", " 'diplomacy': 1,\n", " 'dipped': 5,\n", " 'dire': 3,\n", " 'direct': 9,\n", " 'directed': 10,\n", " 'directing': 2,\n", " 'direction': 15,\n", " 'direction--the': 1,\n", " 'directions': 4,\n", " 'directly': 11,\n", " 'director': 1,\n", " 'directress': 1,\n", " 'dirt': 3,\n", " 'dirtied': 1,\n", " 'dirtier': 1,\n", " 'dirty': 6,\n", " 'disadvantage': 2,\n", " 'disagreeable': 4,\n", " 'disappear': 1,\n", " 'disappearance': 2,\n", " 'disappeared': 3,\n", " 'disappointed': 3,\n", " 'disappointing': 1,\n", " 'disappointment': 3,\n", " 'disapproving': 1,\n", " 'disarmed': 1,\n", " 'discarded': 1,\n", " 'discern': 2,\n", " 'discernible': 1,\n", " 'discharge': 3,\n", " 'discharged': 2,\n", " 'discharging': 1,\n", " 'disciple': 1,\n", " 'disciples': 1,\n", " 'disclaim': 1,\n", " 'disclaimer': 3,\n", " 'disclaimers': 1,\n", " 'disclose': 2,\n", " 'disclosed': 2,\n", " 'disclosure': 4,\n", " 'discoloured': 1,\n", " 'discomfited': 1,\n", " 'discomfort': 1,\n", " 'discomposed': 1,\n", " 'disconcerted': 2,\n", " 'disconcerting': 2,\n", " 'discontent': 1,\n", " 'discontinue': 1,\n", " 'discourse': 4,\n", " 'discoursing': 1,\n", " 'discover': 4,\n", " 'discovered': 10,\n", " 'discovering': 2,\n", " 'discovery': 5,\n", " 'discreditable': 1,\n", " 'discreet': 1,\n", " 'discreet--as': 1,\n", " 'discretion': 1,\n", " 'discuss': 3,\n", " 'discussed': 1,\n", " 'discussing': 1,\n", " 'discussion': 1,\n", " 'disdainful': 1,\n", " 'disease': 1,\n", " 'disease--a': 1,\n", " 'diseases': 2,\n", " 'disengaging': 1,\n", " 'disfigured': 1,\n", " 'disfigurement': 1,\n", " 'disfigurement--and': 1,\n", " 'disfiguring': 2,\n", " 'disgrace': 6,\n", " 'disguise': 1,\n", " 'disguised': 1,\n", " 'disguises': 1,\n", " 'dishonour': 1,\n", " 'disinclined': 1,\n", " 'disinherit': 1,\n", " 'disinherited': 1,\n", " 'disinterestedly': 2,\n", " 'disjointed': 1,\n", " 'disk': 1,\n", " 'dislike': 2,\n", " 'disliked': 2,\n", " 'dismal': 5,\n", " 'dismiss': 1,\n", " 'dismissal': 2,\n", " 'dismissed': 2,\n", " 'dismount': 2,\n", " 'dismounted': 1,\n", " 'disobey': 1,\n", " 'disorder': 5,\n", " 'disordered': 3,\n", " 'disorderly': 1,\n", " 'disorders': 1,\n", " 'disorganised': 3,\n", " 'disparagement': 1,\n", " 'disparaging': 1,\n", " 'dispense': 2,\n", " 'dispersal': 1,\n", " 'dispersed': 4,\n", " 'dispersing': 1,\n", " 'displace': 1,\n", " 'displaced': 1,\n", " 'displacements': 1,\n", " 'display': 1,\n", " 'displayed': 3,\n", " 'displaying': 4,\n", " 'displeased': 1,\n", " 'displeasure': 2,\n", " 'disposed': 6,\n", " 'disposing': 1,\n", " 'disposition': 3,\n", " 'disproportionate': 1,\n", " 'disquiet': 1,\n", " 'disquieted': 1,\n", " 'disreputable': 1,\n", " 'disrespectful': 1,\n", " 'disrespectfully': 1,\n", " 'dissatisfaction': 1,\n", " 'dissatisfied': 2,\n", " 'dissimulation': 1,\n", " 'dissipated': 1,\n", " 'dissociated': 2,\n", " 'dissolute': 1,\n", " 'dissolved': 1,\n", " 'dissonance': 1,\n", " 'distance': 22,\n", " 'distant': 11,\n", " 'distasteful': 2,\n", " 'distinct': 1,\n", " 'distinction': 2,\n", " 'distinctions': 1,\n", " 'distinctly': 3,\n", " 'distinctness': 1,\n", " 'distinguish': 1,\n", " 'distinguished': 1,\n", " 'distortedly': 1,\n", " 'distracted': 7,\n", " 'distracting': 2,\n", " 'distractions': 1,\n", " 'distress': 8,\n", " 'distressed': 3,\n", " 'distressful': 1,\n", " 'distressing': 1,\n", " 'distribute': 6,\n", " 'distributed': 4,\n", " 'distributed--so': 1,\n", " 'distributing': 7,\n", " 'distribution': 7,\n", " 'distributor': 1,\n", " 'distrust': 5,\n", " 'distrusted': 1,\n", " 'distrustfully': 1,\n", " 'disturb': 1,\n", " 'disturbance': 1,\n", " 'disturbed': 10,\n", " 'disturbing': 3,\n", " 'disuse': 1,\n", " 'disused': 1,\n", " 'ditch': 3,\n", " 'ditches': 1,\n", " 'diverging': 1,\n", " 'divers': 2,\n", " 'diversified': 2,\n", " 'diversion': 2,\n", " 'diversity': 1,\n", " 'diverted': 1,\n", " 'divide': 3,\n", " 'divided': 3,\n", " 'dividing': 1,\n", " 'divine': 3,\n", " 'divined': 1,\n", " 'divinities': 1,\n", " 'division': 1,\n", " 'do': 315,\n", " 'do--beyond': 1,\n", " 'do--go': 1,\n", " 'do--well': 1,\n", " 'docile': 1,\n", " 'dock': 4,\n", " 'dockyard': 1,\n", " 'doctor': 192,\n", " \"doctor's\": 30,\n", " 'doctors': 3,\n", " 'doctrine': 1,\n", " 'doctrines': 1,\n", " 'document': 2,\n", " 'documents': 2,\n", " 'doers': 1,\n", " 'does': 40,\n", " \"doesn't\": 6,\n", " 'doffed': 1,\n", " 'dog': 9,\n", " \"dog's\": 1,\n", " 'dog-hut': 1,\n", " 'dog-kennel': 1,\n", " 'dogged': 2,\n", " 'doggedly': 1,\n", " 'dogs': 15,\n", " 'doing': 10,\n", " 'doleful': 3,\n", " 'doll': 7,\n", " 'dolls': 2,\n", " 'dolorous': 1,\n", " 'dolt': 1,\n", " 'domain': 8,\n", " 'domestic': 4,\n", " 'domesticated': 1,\n", " 'domestics': 2,\n", " 'domicile': 1,\n", " 'dominant': 2,\n", " 'dominated': 1,\n", " 'domination': 1,\n", " 'domini': 1,\n", " 'dominion': 1,\n", " 'dominions': 2,\n", " 'dominoes': 4,\n", " \"don't\": 132,\n", " 'donate': 3,\n", " 'donation': 1,\n", " 'donations': 15,\n", " 'done': 94,\n", " 'done--done': 1,\n", " 'done--why': 1,\n", " 'donors': 1,\n", " 'doom': 2,\n", " 'doomed': 7,\n", " 'door': 119,\n", " 'door--evidently': 1,\n", " 'door-bell': 1,\n", " 'door-keeper': 3,\n", " 'door-post': 3,\n", " 'door-step': 1,\n", " 'door-steps': 1,\n", " 'doorpost': 2,\n", " 'doors': 24,\n", " 'doorway': 5,\n", " 'doorways': 3,\n", " 'dormant': 1,\n", " 'dormer': 1,\n", " 'dose': 1,\n", " 'double': 6,\n", " 'double-laden': 1,\n", " 'doubly': 3,\n", " 'doubt': 41,\n", " 'doubted': 2,\n", " 'doubtful': 2,\n", " 'doubtfully': 2,\n", " 'doubting': 1,\n", " 'doubtless': 2,\n", " 'doubts': 4,\n", " 'doubts--hopes': 1,\n", " 'dover': 16,\n", " 'down': 232,\n", " 'down--down': 1,\n", " 'down-stairs': 5,\n", " 'downloading': 1,\n", " 'downstairs': 6,\n", " 'downward': 1,\n", " 'doze': 1,\n", " 'dozen': 7,\n", " 'dozens': 2,\n", " 'dozing': 3,\n", " 'dr': 2,\n", " 'drafts': 1,\n", " 'drag': 5,\n", " 'dragged': 5,\n", " \"dragon's\": 1,\n", " 'dragoon': 1,\n", " 'drags': 1,\n", " 'drainage': 1,\n", " 'drained': 1,\n", " 'drank': 18,\n", " 'drapery': 1,\n", " 'draught': 1,\n", " 'draw': 16,\n", " 'drawback': 1,\n", " 'drawbridge': 8,\n", " 'drawbridges': 1,\n", " 'drawer': 6,\n", " 'drawers': 1,\n", " 'drawing': 18,\n", " 'drawing-room': 1,\n", " 'drawing-rooms': 1,\n", " 'drawl': 1,\n", " 'drawn': 19,\n", " 'dread': 15,\n", " 'dread--pressed': 1,\n", " 'dreaded': 7,\n", " 'dreadful': 24,\n", " 'dreadfully': 4,\n", " 'dream': 8,\n", " 'dream--had': 1,\n", " 'dreaming': 1,\n", " 'dreamlike': 1,\n", " 'dreams': 2,\n", " 'drearily': 1,\n", " 'dreary': 3,\n", " 'dregs': 2,\n", " 'dress': 24,\n", " 'dressed': 11,\n", " 'dresses': 2,\n", " 'dressing': 1,\n", " 'drew': 15,\n", " 'drier': 1,\n", " 'drifted': 3,\n", " 'drill': 1,\n", " 'drily': 1,\n", " 'drink': 18,\n", " 'drink-money': 1,\n", " 'drinkers': 1,\n", " 'drinking': 26,\n", " 'drinking-table': 2,\n", " 'dripping': 2,\n", " 'drive': 6,\n", " 'driven': 9,\n", " 'driver': 5,\n", " 'drives': 1,\n", " 'driving': 8,\n", " 'droll': 3,\n", " 'drooped': 4,\n", " 'drooping': 5,\n", " 'drop': 7,\n", " 'dropped': 43,\n", " 'dropping': 5,\n", " 'drops': 5,\n", " 'dropsical': 1,\n", " 'drove': 6,\n", " 'drown': 1,\n", " 'drowned': 3,\n", " 'drowning': 2,\n", " 'drudge': 1,\n", " 'drum': 4,\n", " \"drum's\": 1,\n", " 'drummer': 1,\n", " 'drums': 6,\n", " 'drunk': 7,\n", " 'drunken': 4,\n", " 'drunkenness': 1,\n", " 'dry': 9,\n", " 'drying': 1,\n", " 'dubious': 1,\n", " 'dubiously': 3,\n", " 'ducked': 1,\n", " 'due': 5,\n", " 'dues': 1,\n", " 'dug': 5,\n", " 'dull': 12,\n", " 'duly': 1,\n", " 'dumb': 2,\n", " 'dumb-show': 1,\n", " 'dumpling': 1,\n", " 'dungeon': 1,\n", " \"dunstan's\": 1,\n", " 'duration': 1,\n", " 'during': 18,\n", " 'durst': 1,\n", " 'dusk': 3,\n", " 'dusky': 2,\n", " 'dust': 21,\n", " 'dusty': 5,\n", " 'duties': 5,\n", " 'dutiful': 2,\n", " 'duty': 18,\n", " 'dwarf': 1,\n", " 'dwell': 4,\n", " 'dwelling': 2,\n", " 'dwelling-place': 1,\n", " 'dwelt': 2,\n", " 'dye': 1,\n", " 'dye-works': 2,\n", " 'dyed': 1,\n", " 'dyeing': 1,\n", " 'dying': 7,\n", " 'e': 1,\n", " 'e-mail': 1,\n", " 'each': 25,\n", " 'eager': 7,\n", " 'eagerly': 1,\n", " 'eagerness': 4,\n", " 'eagles': 1,\n", " 'ear': 12,\n", " 'earlier': 6,\n", " 'earliest': 1,\n", " 'early': 15,\n", " 'earned': 3,\n", " 'earnest': 9,\n", " 'earnestly': 3,\n", " 'earnestness': 5,\n", " 'earning': 1,\n", " 'earrings': 1,\n", " 'ears': 23,\n", " 'earth': 30,\n", " \"earth's\": 1,\n", " 'earthenware': 1,\n", " 'earthly': 5,\n", " 'earthquake': 2,\n", " 'ease': 12,\n", " 'eased': 1,\n", " 'easier': 4,\n", " 'easiest': 1,\n", " 'easily': 13,\n", " 'east': 3,\n", " 'easterly': 1,\n", " 'eastward': 1,\n", " 'easy': 14,\n", " 'eat': 11,\n", " 'eaten': 2,\n", " 'eating': 2,\n", " 'eavesdropper': 2,\n", " 'ebb': 1,\n", " 'ebbing': 1,\n", " 'ebook': 6,\n", " 'ebooks': 7,\n", " 'eccentric': 2,\n", " 'eccentricities': 1,\n", " 'eccentricity': 1,\n", " 'ecclesiastic': 1,\n", " 'ecclesiastics': 1,\n", " 'echo': 3,\n", " 'echoed': 5,\n", " 'echoes': 28,\n", " 'echoing': 4,\n", " 'echoless': 1,\n", " 'ecod': 1,\n", " 'economy': 1,\n", " 'eddy': 1,\n", " 'eddying': 1,\n", " 'eden': 1,\n", " 'edge': 4,\n", " 'edifice': 2,\n", " 'edifying': 1,\n", " 'edition': 1,\n", " 'editions': 4,\n", " 'editor': 1,\n", " 'educational': 1,\n", " 'effect': 15,\n", " 'effected': 2,\n", " 'efficacy': 3,\n", " 'effort': 7,\n", " 'efforts': 8,\n", " 'egress': 1,\n", " 'eh': 9,\n", " 'eight': 15,\n", " 'eighteen': 7,\n", " 'eightieth': 1,\n", " 'eighty': 3,\n", " 'eighty-nine': 2,\n", " 'ein': 1,\n", " 'either': 32,\n", " 'ejaculated': 1,\n", " 'eke': 1,\n", " 'elastic': 1,\n", " 'elate': 1,\n", " 'elbow': 8,\n", " 'elbow-room': 1,\n", " 'elbows': 4,\n", " 'elder': 13,\n", " 'elderly': 5,\n", " 'elect': 1,\n", " 'electronic': 27,\n", " 'electronically': 2,\n", " 'elegance': 1,\n", " 'elegant': 3,\n", " 'elegantly': 2,\n", " 'elephants': 1,\n", " 'elevate': 1,\n", " 'elevated': 2,\n", " 'elevation': 1,\n", " 'eleven': 5,\n", " 'elicit': 2,\n", " 'elicited': 2,\n", " 'eligible': 4,\n", " 'elongate': 1,\n", " 'eloquent': 1,\n", " 'else': 25,\n", " 'else-deserted': 1,\n", " 'elsewhere': 5,\n", " 'em': 13,\n", " 'emaciated': 1,\n", " 'email': 3,\n", " 'embarrassed': 1,\n", " 'embarrassing': 1,\n", " 'embarrassment': 2,\n", " 'embarrassments': 1,\n", " 'embellished': 1,\n", " 'embellishment': 1,\n", " 'embers': 3,\n", " 'emblem': 1,\n", " 'embrace': 5,\n", " 'embrace--madame': 1,\n", " 'embraced': 5,\n", " 'embraces': 4,\n", " 'embracing': 5,\n", " 'embracings': 1,\n", " 'embrasure': 1,\n", " 'embroidered': 1,\n", " 'embroidering': 1,\n", " 'embroidery': 1,\n", " 'emerged': 7,\n", " 'emergence': 1,\n", " 'emergency': 1,\n", " 'emerging': 2,\n", " 'emigrant': 18,\n", " 'emigrants': 5,\n", " 'eminence': 1,\n", " 'eminent': 1,\n", " 'emissaries': 1,\n", " 'emissary': 2,\n", " 'emotion': 4,\n", " 'emotional': 1,\n", " 'emotions': 3,\n", " 'empannelled': 1,\n", " 'emphasis': 3,\n", " 'emphatic': 4,\n", " 'emphatically': 2,\n", " 'employ': 2,\n", " 'employed': 7,\n", " 'employee': 1,\n", " 'employees': 2,\n", " 'employers': 1,\n", " 'employing': 1,\n", " 'employment': 4,\n", " 'employments': 1,\n", " 'empties': 1,\n", " 'empty': 8,\n", " 'empty-headed': 1,\n", " 'emptying': 1,\n", " 'emulative': 1,\n", " 'enable': 2,\n", " 'enables': 1,\n", " 'enabling': 1,\n", " 'encamped': 1,\n", " 'encampment': 1,\n", " 'enchanted': 3,\n", " 'enchanter': 1,\n", " 'enchantment': 1,\n", " 'encircled': 1,\n", " 'encloses': 2,\n", " 'encompass': 1,\n", " 'encompassed': 4,\n", " 'encountered': 4,\n", " 'encounters': 1,\n", " 'encouraged': 5,\n", " 'encouragement': 3,\n", " 'encouraging': 3,\n", " 'encumbered': 1,\n", " 'end': 39,\n", " 'endanger': 1,\n", " 'endangered': 2,\n", " 'endeavour': 3,\n", " 'endeavouring': 1,\n", " 'ended': 5,\n", " 'ending': 1,\n", " 'endowments': 1,\n", " 'ends': 5,\n", " 'endued': 1,\n", " 'endurance': 4,\n", " 'endure': 3,\n", " 'endured': 1,\n", " 'enduring': 1,\n", " 'enemies': 5,\n", " 'enemy': 10,\n", " 'energetic': 2,\n", " 'energy': 6,\n", " 'enfolded': 1,\n", " 'enfolding': 1,\n", " 'enforced': 1,\n", " 'enforcing': 1,\n", " 'engaged': 15,\n", " 'engagement': 1,\n", " 'engaging': 3,\n", " 'engendered': 5,\n", " 'engine': 2,\n", " 'england': 39,\n", " \"england's\": 1,\n", " 'english': 46,\n", " 'englishman': 6,\n", " 'englishwoman': 1,\n", " 'engrained': 1,\n", " 'engrossing': 1,\n", " 'enjoy': 2,\n", " 'enjoyable': 1,\n", " 'enjoying': 1,\n", " 'enjoyment': 4,\n", " 'enlarged': 1,\n", " 'enough': 71,\n", " 'enraged': 1,\n", " 'enriching': 1,\n", " 'ensured': 1,\n", " 'ensuring': 2,\n", " 'entangling': 1,\n", " 'enter': 7,\n", " 'entered': 20,\n", " 'entering': 4,\n", " 'entertain': 2,\n", " 'entertained': 1,\n", " 'entertainment': 3,\n", " 'entertainments': 1,\n", " 'enthroned': 1,\n", " 'enthusiastically': 1,\n", " 'entirely': 4,\n", " 'entity': 3,\n", " 'entrance': 2,\n", " 'entreat': 6,\n", " 'entreated': 3,\n", " 'entreaties': 1,\n", " 'entreatin': 1,\n", " 'entreating': 1,\n", " 'entreats': 1,\n", " 'entreaty': 3,\n", " 'entries': 3,\n", " 'entrusted': 2,\n", " 'entry': 1,\n", " 'enumerated': 1,\n", " 'environed': 2,\n", " 'environing': 1,\n", " 'envy': 1,\n", " 'epicure': 1,\n", " 'episcopal': 1,\n", " 'epoch': 2,\n", " 'equably': 1,\n", " 'equal': 2,\n", " 'equality': 7,\n", " 'equally': 9,\n", " 'equidistant': 1,\n", " 'equipages': 2,\n", " 'equipment': 3,\n", " 'equipped': 1,\n", " 'era': 2,\n", " 'erase': 2,\n", " 'ernest': 3,\n", " 'errand': 3,\n", " 'erring': 1,\n", " 'errors': 2,\n", " 'erst': 1,\n", " 'escape': 11,\n", " 'escaping': 2,\n", " 'escort': 14,\n", " 'escort--and': 1,\n", " 'escorted': 8,\n", " 'escutcheon': 1,\n", " 'especial': 1,\n", " 'especially': 7,\n", " 'essence': 1,\n", " 'essential': 2,\n", " 'established': 6,\n", " 'establishment': 6,\n", " 'estate': 2,\n", " 'estates': 1,\n", " 'esteem': 1,\n", " 'esteemed': 1,\n", " 'estimate': 1,\n", " 'estranged': 1,\n", " 'estrangement': 1,\n", " 'eternal': 5,\n", " 'eternally': 1,\n", " 'eternity': 1,\n", " 'european': 1,\n", " 'evaded': 1,\n", " 'evanescence': 1,\n", " 'evasively': 1,\n", " 'even': 127,\n", " 'evening': 31,\n", " 'event': 1,\n", " 'eventide': 1,\n", " 'events': 7,\n", " 'events--out': 1,\n", " 'ever': 117,\n", " 'ever-growing': 1,\n", " 'everlasting': 1,\n", " 'evermore': 1,\n", " 'every': 122,\n", " 'everybody': 14,\n", " 'everything': 27,\n", " 'everywhere': 5,\n", " 'evidence': 8,\n", " 'evident': 3,\n", " 'evidently': 11,\n", " 'evil': 9,\n", " 'evil-adverbiously': 1,\n", " 'evils': 1,\n", " 'evincing': 1,\n", " 'evoke': 1,\n", " 'evremonde': 46,\n", " 'exact': 4,\n", " 'exacted': 2,\n", " 'exactly': 16,\n", " 'exaggerated': 1,\n", " 'exaggeration': 1,\n", " 'exaltation': 1,\n", " 'exalted': 4,\n", " 'examination': 5,\n", " 'examine': 5,\n", " 'examined': 11,\n", " 'examining': 1,\n", " 'example': 4,\n", " 'exasperation': 1,\n", " 'exceeding': 1,\n", " 'exceedingly': 6,\n", " 'excellent': 6,\n", " 'except': 23,\n", " 'excepted': 1,\n", " 'excepting': 1,\n", " 'exception': 1,\n", " 'exceptional': 1,\n", " 'exceptions': 1,\n", " 'exchange': 3,\n", " 'exchanged': 3,\n", " 'excited': 6,\n", " 'excitement': 3,\n", " 'exclaim': 1,\n", " 'exclaimed': 15,\n", " 'exclamation': 2,\n", " 'exclude': 1,\n", " 'excluded': 1,\n", " 'exclusion': 1,\n", " 'exclusive': 1,\n", " 'excursion': 1,\n", " 'excuse': 5,\n", " 'excused': 1,\n", " 'excusing': 1,\n", " 'execrations': 1,\n", " 'execute': 3,\n", " 'executed': 5,\n", " 'executed.--you': 1,\n", " 'execution': 5,\n", " 'executioner': 3,\n", " 'executive': 1,\n", " 'exemplary': 1,\n", " 'exempt': 2,\n", " 'exercise': 10,\n", " 'exercised': 1,\n", " 'exercises': 1,\n", " 'exertion': 1,\n", " 'exertions': 1,\n", " 'exhausted': 3,\n", " 'exhaustion': 2,\n", " 'exile': 2,\n", " 'exist': 1,\n", " 'existed': 2,\n", " 'existence': 4,\n", " 'existence--which': 1,\n", " 'exists': 1,\n", " 'exordium': 1,\n", " 'expect': 11,\n", " 'expectantly': 1,\n", " 'expectation': 5,\n", " 'expectations': 2,\n", " 'expected': 15,\n", " 'expeditiously': 1,\n", " 'expend': 1,\n", " 'expense': 2,\n", " 'expenses': 2,\n", " 'experience': 4,\n", " 'experience--_in': 1,\n", " 'experiences': 1,\n", " 'experiments': 2,\n", " 'expert': 2,\n", " 'expiation': 1,\n", " 'explain': 10,\n", " 'explained': 7,\n", " 'explainin': 1,\n", " 'explaining': 3,\n", " 'explanation': 4,\n", " 'explanatory': 1,\n", " 'explicit': 3,\n", " 'exploring': 1,\n", " 'explosive': 1,\n", " 'exponent': 1,\n", " 'exporting': 1,\n", " 'exposed': 1,\n", " 'expostulation': 1,\n", " 'expounded': 2,\n", " 'express': 12,\n", " 'expressed': 4,\n", " 'expressing': 2,\n", " 'expression': 31,\n", " 'expression--but': 1,\n", " 'expressions': 1,\n", " 'expressions--as': 1,\n", " 'expressive': 6,\n", " 'expressly': 7,\n", " 'exquisite': 2,\n", " 'extemporised': 1,\n", " 'extend': 1,\n", " 'extended': 6,\n", " 'extending': 4,\n", " 'extensive': 2,\n", " 'extent': 5,\n", " 'extent--that': 1,\n", " 'exterior': 1,\n", " 'exterminate': 1,\n", " 'exterminated': 1,\n", " 'exterminating': 1,\n", " 'extermination': 4,\n", " 'external': 3,\n", " 'extinguished': 5,\n", " 'extinguisher': 1,\n", " 'extinguisher-topped': 1,\n", " 'extortion': 1,\n", " 'extra': 5,\n", " 'extract': 2,\n", " 'extracted': 1,\n", " 'extracting': 1,\n", " 'extraction': 1,\n", " 'extraordinary': 10,\n", " 'extravagant': 2,\n", " 'extravagantly': 1,\n", " 'extreme': 2,\n", " 'extremely': 4,\n", " 'extremes': 1,\n", " 'exuding': 1,\n", " 'exultant': 2,\n", " 'exultation': 1,\n", " 'eye': 34,\n", " 'eyebrows': 12,\n", " 'eyed': 2,\n", " 'eyeing': 1,\n", " 'eyelids': 1,\n", " 'eyes': 163,\n", " 'eyes;--eyes': 1,\n", " 'f3': 1,\n", " 'fabled': 1,\n", " 'fabric': 1,\n", " 'fabulous': 1,\n", " 'face': 187,\n", " 'faced': 1,\n", " 'faces': 53,\n", " 'faces--each': 1,\n", " 'facilitate': 1,\n", " 'facilities': 1,\n", " 'facility': 1,\n", " 'fact': 12,\n", " 'facts': 1,\n", " 'faculties': 3,\n", " 'faculty': 1,\n", " 'faded': 5,\n", " 'fagged': 1,\n", " 'fagots': 1,\n", " 'fail': 6,\n", " 'failed': 7,\n", " 'failing': 2,\n", " 'failure': 2,\n", " 'fain': 1,\n", " 'faint': 14,\n", " 'fainter': 3,\n", " 'fainting': 1,\n", " 'faintly': 4,\n", " 'faintness': 3,\n", " 'faints': 2,\n", " 'fair': 20,\n", " 'fair-faced': 1,\n", " 'fairbanks': 1,\n", " 'fairy': 3,\n", " 'faith': 9,\n", " 'faithful': 7,\n", " 'faithfully': 3,\n", " 'fall': 14,\n", " 'fallen': 24,\n", " 'falling': 12,\n", " 'falls': 5,\n", " 'false': 7,\n", " 'falsely': 1,\n", " 'falter': 1,\n", " 'faltered': 3,\n", " 'faltering': 4,\n", " 'familiar': 7,\n", " 'familiars': 1,\n", " 'families': 3,\n", " 'family': 33,\n", " \"family's\": 2,\n", " 'famine': 1,\n", " 'famine-pinched': 1,\n", " 'famished': 3,\n", " 'famous': 5,\n", " 'fan': 1,\n", " 'fancied': 3,\n", " 'fancied--but': 1,\n", " 'fancies': 2,\n", " 'fanciful': 1,\n", " 'fancy': 22,\n", " 'fanned': 2,\n", " 'fantastic': 2,\n", " 'far': 81,\n", " 'far-off': 1,\n", " 'fardens': 1,\n", " 'fardens--fardens': 1,\n", " 'fardens--half': 1,\n", " 'fare': 1,\n", " 'fared': 3,\n", " 'farewell': 5,\n", " 'faring': 1,\n", " 'farmer': 3,\n", " \"farmer's\": 2,\n", " 'farmer-general': 6,\n", " 'farmer-general--howsoever': 1,\n", " 'farmer-generals': 1,\n", " 'farms': 2,\n", " 'farrier': 3,\n", " 'farthing': 1,\n", " 'fascinated': 1,\n", " 'fascinating': 1,\n", " 'fascination': 1,\n", " 'fashion': 10,\n", " 'fast': 27,\n", " 'fast-dying': 1,\n", " 'fast-sailing': 1,\n", " 'fast-spreading': 1,\n", " 'fast-thinning': 1,\n", " 'fastened': 1,\n", " 'fastening': 2,\n", " 'faster': 9,\n", " 'fastest': 2,\n", " 'fasting': 1,\n", " 'fat': 1,\n", " 'fatal': 8,\n", " 'fatally': 1,\n", " 'fate': 11,\n", " 'fate--for': 1,\n", " 'father': 160,\n", " \"father's\": 33,\n", " \"father's--for\": 1,\n", " 'father--do': 1,\n", " 'fathers': 2,\n", " 'fatigue': 1,\n", " 'fatigued': 5,\n", " 'fault': 4,\n", " 'faults': 3,\n", " 'favour': 20,\n", " 'favourable': 1,\n", " 'favoured': 5,\n", " 'favoured!--always': 1,\n", " 'favourite': 5,\n", " 'favours': 1,\n", " 'fawning': 1,\n", " 'fear': 26,\n", " 'feared': 2,\n", " 'fearful': 7,\n", " 'fearfully': 2,\n", " 'fearless': 1,\n", " 'fears': 6,\n", " 'feasting': 1,\n", " 'feather': 2,\n", " 'feathered': 1,\n", " 'feathers': 2,\n", " 'feathery': 2,\n", " 'feature': 3,\n", " 'features': 4,\n", " 'fed': 1,\n", " 'federal': 2,\n", " 'fee': 8,\n", " 'feeble': 7,\n", " 'feebler': 3,\n", " 'feebly-burning': 1,\n", " 'feed': 2,\n", " 'feed--if': 1,\n", " 'feel': 23,\n", " 'feeling': 13,\n", " 'feelingly': 2,\n", " 'feelings': 5,\n", " 'feels': 2,\n", " 'fees': 4,\n", " 'feet': 44,\n", " 'feigned': 4,\n", " 'feint': 1,\n", " 'felicitously': 1,\n", " 'felicity': 2,\n", " 'fell': 42,\n", " 'fellow': 32,\n", " 'fellow-citizen': 3,\n", " 'fellow-countryman': 1,\n", " 'fellow-creature': 1,\n", " 'fellow-creatures': 1,\n", " 'fellow-inscrutables': 1,\n", " 'fellow-jurymen': 1,\n", " 'fellow-passenger': 1,\n", " 'fellow-passengers': 1,\n", " 'fellow-patriots': 1,\n", " 'fellow-plotter': 1,\n", " 'fellow-sheep': 1,\n", " 'fellow-students': 1,\n", " 'fellow-tradesman': 1,\n", " 'fellow?--where': 1,\n", " 'fellows': 3,\n", " 'fellowship': 1,\n", " 'felons': 1,\n", " 'felt': 24,\n", " 'female': 6,\n", " 'feminine': 2,\n", " 'fences': 1,\n", " 'ferocious': 2,\n", " 'ferocity': 2,\n", " 'ferret': 1,\n", " 'ferreted': 1,\n", " 'fervent': 5,\n", " 'fervently': 3,\n", " 'fervour': 3,\n", " 'festival': 1,\n", " 'fetch': 3,\n", " 'fetched': 1,\n", " 'fetters': 1,\n", " 'feudal': 1,\n", " 'fever': 4,\n", " 'feverish': 2,\n", " 'few': 88,\n", " 'fewer': 3,\n", " 'fickleness': 1,\n", " 'fictitious': 1,\n", " 'fidelity': 4,\n", " 'fidget': 1,\n", " 'field': 1,\n", " 'fields': 4,\n", " 'fiend': 1,\n", " 'fierce': 10,\n", " 'fiercely': 2,\n", " 'fiercer': 1,\n", " 'fifteen': 5,\n", " 'fifth': 3,\n", " 'fifty': 12,\n", " 'fifty-two': 7,\n", " 'fight': 4,\n", " 'fighting': 1,\n", " 'figure': 41,\n", " 'figures': 16,\n", " 'filaments': 1,\n", " 'file': 4,\n", " 'files': 3,\n", " 'filing': 1,\n", " 'fill': 5,\n", " 'filled': 13,\n", " 'filling': 4,\n", " 'filtered': 1,\n", " 'filthy': 2,\n", " 'final': 8,\n", " 'finally': 12,\n", " 'finances': 3,\n", " 'financial': 1,\n", " 'find': 45,\n", " 'finding': 4,\n", " 'finds': 3,\n", " 'fine': 27,\n", " 'fineness': 1,\n", " 'finesse': 1,\n", " 'finest': 3,\n", " 'finger': 17,\n", " 'finger--and': 1,\n", " 'finger-nails': 1,\n", " 'finger-post': 1,\n", " 'fingers': 33,\n", " 'finish': 9,\n", " 'finished': 7,\n", " 'finishing': 1,\n", " 'fire': 52,\n", " 'fire--a': 1,\n", " 'fire--perhaps': 1,\n", " 'fire-charred': 1,\n", " 'fire-grate': 1,\n", " 'fire-light': 1,\n", " 'fired': 8,\n", " 'fires': 2,\n", " 'firewood': 4,\n", " 'firing': 1,\n", " 'firm': 4,\n", " 'firmly': 4,\n", " 'firmness': 6,\n", " 'first': 115,\n", " 'firstly': 1,\n", " 'fish': 4,\n", " 'fished': 1,\n", " 'fisherman': 2,\n", " 'fishermen': 2,\n", " 'fishes': 1,\n", " 'fishing': 5,\n", " 'fishing-rod': 1,\n", " 'fist': 1,\n", " 'fit': 9,\n", " 'fitful': 3,\n", " 'fitfully': 1,\n", " 'fitness': 1,\n", " 'fits': 1,\n", " 'fitted': 4,\n", " 'five': 37,\n", " 'five-and-forty': 1,\n", " 'five-and-twentieth': 1,\n", " 'five-and-twenty': 2,\n", " 'fix': 2,\n", " 'fixed': 11,\n", " 'fixedly': 5,\n", " 'flag': 4,\n", " 'flambeau': 4,\n", " 'flambeau-bearer': 1,\n", " 'flambeaux': 1,\n", " 'flame': 4,\n", " 'flamed': 1,\n", " 'flames': 3,\n", " 'flaming': 2,\n", " 'flanks': 1,\n", " 'flapped': 2,\n", " 'flapping': 1,\n", " 'flaps': 1,\n", " 'flare': 1,\n", " 'flaring': 4,\n", " 'flash': 4,\n", " 'flashed': 3,\n", " 'flashes': 1,\n", " 'flashing': 2,\n", " 'flat': 1,\n", " 'flattened': 1,\n", " 'flatter': 1,\n", " 'flattered': 3,\n", " 'flattering': 1,\n", " 'flavour': 3,\n", " 'flaxen': 4,\n", " 'flay': 1,\n", " 'fled': 1,\n", " 'fleet-street': 12,\n", " 'flew': 1,\n", " 'flickered': 1,\n", " 'flickering': 1,\n", " 'flies': 5,\n", " 'flight': 5,\n", " 'flights': 3,\n", " 'flinched': 1,\n", " 'flinging': 2,\n", " 'flint': 2,\n", " 'flints': 1,\n", " 'flinty': 1,\n", " 'flirting': 1,\n", " 'floated': 3,\n", " 'floating': 1,\n", " 'flock': 1,\n", " 'flocked': 1,\n", " 'flood': 2,\n", " 'floor': 21,\n", " 'floor--a': 1,\n", " 'floors': 2,\n", " 'flop': 5,\n", " 'flop--catch': 1,\n", " 'floppin': 1,\n", " 'flopping': 9,\n", " 'floppings': 1,\n", " 'florid': 3,\n", " 'floundering': 2,\n", " 'flourish': 1,\n", " 'flourished': 1,\n", " 'flourishes': 1,\n", " 'flourishing': 2,\n", " 'flow': 3,\n", " 'flowed': 3,\n", " 'flower': 1,\n", " 'flowers': 5,\n", " 'flowing': 1,\n", " 'flown': 1,\n", " 'flung': 3,\n", " 'flush': 2,\n", " 'flushed': 1,\n", " 'flushing': 1,\n", " 'flutter': 3,\n", " 'fluttered': 1,\n", " 'fluttering': 3,\n", " 'fly': 2,\n", " 'flying': 7,\n", " 'foaled': 1,\n", " 'foam': 3,\n", " 'foe': 3,\n", " 'fogs': 2,\n", " 'foisted': 1,\n", " 'fold': 1,\n", " 'folded': 11,\n", " 'folding': 1,\n", " 'folks': 1,\n", " 'follies': 1,\n", " 'follow': 17,\n", " 'followed': 34,\n", " 'follower': 1,\n", " 'followers': 1,\n", " 'following': 14,\n", " 'follows': 1,\n", " 'fondly': 1,\n", " 'food': 4,\n", " 'food--he': 1,\n", " 'fool': 2,\n", " 'foolish': 3,\n", " 'foolishness': 1,\n", " 'fools': 2,\n", " 'foot': 22,\n", " 'foot-pads': 1,\n", " 'footing': 1,\n", " 'footpace': 1,\n", " 'footpath': 1,\n", " 'footsore': 1,\n", " 'footstep': 2,\n", " 'footsteps': 19,\n", " 'footstool': 1,\n", " 'footways': 2,\n", " 'for': 971,\n", " 'for-_bid': 1,\n", " 'forage': 1,\n", " 'forasmuch': 2,\n", " 'forays': 1,\n", " 'forbade': 2,\n", " 'forbearance': 1,\n", " 'forbid': 5,\n", " 'forbidden': 1,\n", " 'forborne': 2,\n", " 'force': 29,\n", " 'forced': 7,\n", " 'forces': 5,\n", " 'forcible': 2,\n", " 'forcibly': 1,\n", " 'forcing': 1,\n", " 'fore-legs': 1,\n", " 'fore-most': 2,\n", " 'forebodings': 1,\n", " 'forefathers': 1,\n", " 'forefinger': 6,\n", " 'forefinger--they': 1,\n", " 'forehead': 21,\n", " 'foreheads': 2,\n", " 'foreign': 6,\n", " 'foreigner': 3,\n", " 'foreigners': 2,\n", " 'foreman': 1,\n", " 'foremost': 4,\n", " 'forenoon': 2,\n", " 'forensic': 1,\n", " 'forensically': 1,\n", " 'foresaw': 3,\n", " 'foresee': 3,\n", " 'foreseen': 2,\n", " 'foreshadowed': 1,\n", " 'forest': 5,\n", " 'forest-trees': 1,\n", " 'forester': 2,\n", " 'forever': 1,\n", " 'forfeit': 4,\n", " 'forfeits': 1,\n", " 'forge': 3,\n", " 'forged': 2,\n", " 'forger': 1,\n", " 'forgeries': 1,\n", " 'forgers': 1,\n", " 'forgery': 2,\n", " 'forget': 9,\n", " 'forgetful': 2,\n", " 'forgetfulness': 1,\n", " 'forgetting': 1,\n", " 'forgive': 4,\n", " 'forgiven': 1,\n", " 'forgiveness': 1,\n", " 'forgot': 3,\n", " 'forgotten': 10,\n", " 'fork': 1,\n", " 'forlorn': 5,\n", " 'forlorner': 1,\n", " 'forlornness': 1,\n", " 'form': 18,\n", " 'formal': 4,\n", " 'formally': 1,\n", " 'format': 4,\n", " 'formats': 2,\n", " 'formed': 9,\n", " 'former': 14,\n", " 'formerly': 4,\n", " 'forming': 2,\n", " 'forms': 6,\n", " 'forth': 30,\n", " 'fortified': 1,\n", " 'fortitude': 1,\n", " 'fortnight': 2,\n", " \"fortnight's\": 2,\n", " 'fortnightly': 1,\n", " 'fortress': 8,\n", " 'fortress-walls': 1,\n", " 'fortunate': 7,\n", " 'fortunately': 1,\n", " 'fortune': 11,\n", " 'fortunes': 4,\n", " 'forty': 11,\n", " 'forty-five': 1,\n", " 'forty-two': 1,\n", " 'forward': 27,\n", " 'forwarded': 1,\n", " 'forwards': 2,\n", " 'fought': 2,\n", " 'foul': 3,\n", " 'foulon': 18,\n", " 'found': 63,\n", " 'foundation': 22,\n", " \"foundation's\": 3,\n", " 'foundations': 2,\n", " 'fountain': 40,\n", " 'fountains': 2,\n", " 'four': 41,\n", " 'four--i': 1,\n", " 'four-and-twenty': 1,\n", " 'four-footed': 1,\n", " 'four-poster': 1,\n", " 'fourscore': 1,\n", " 'fourteenth': 4,\n", " 'fourth': 3,\n", " 'fowl': 1,\n", " 'fragment': 3,\n", " 'fragments': 5,\n", " 'frame': 6,\n", " 'framework': 1,\n", " 'france': 57,\n", " 'france--all': 1,\n", " 'france--who': 1,\n", " 'frantic': 3,\n", " 'fraternal': 2,\n", " 'fraternity': 7,\n", " 'fraud': 1,\n", " 'fraught': 2,\n", " 'frayed': 1,\n", " 'free': 28,\n", " 'freed': 1,\n", " 'freedom': 8,\n", " 'freely': 7,\n", " 'french': 44,\n", " 'frenchman': 6,\n", " 'frenchmen': 1,\n", " 'frenzied': 2,\n", " 'frenzy': 3,\n", " 'frequent': 5,\n", " 'frequently': 3,\n", " 'fresh': 9,\n", " 'fresher': 1,\n", " 'freshness': 1,\n", " 'fretted': 1,\n", " 'friday': 4,\n", " 'fried': 1,\n", " 'friend': 76,\n", " \"friend's\": 3,\n", " 'friendliest': 1,\n", " 'friendliness': 1,\n", " 'friendly': 7,\n", " 'friends': 18,\n", " 'friendship': 3,\n", " 'fright': 3,\n", " 'frightened': 10,\n", " 'frightened--rave--tear': 1,\n", " 'frightening': 1,\n", " 'frightful': 7,\n", " 'frightfully': 3,\n", " 'frill': 1,\n", " 'fringed': 1,\n", " 'frivolity': 1,\n", " 'frizzled': 2,\n", " 'frizzling': 1,\n", " 'fro': 13,\n", " 'frock': 1,\n", " 'frogs': 1,\n", " 'frolicsome': 1,\n", " 'from': 529,\n", " 'front': 11,\n", " 'frontier': 1,\n", " 'fronts': 1,\n", " 'frost': 3,\n", " 'frosty': 1,\n", " 'frothed': 1,\n", " 'frown': 4,\n", " 'frowned': 2,\n", " 'frowning': 2,\n", " 'frozen': 1,\n", " 'frugal': 1,\n", " 'fruit': 3,\n", " 'fruitful': 1,\n", " 'fruitless': 2,\n", " 'fruits': 4,\n", " 'frustrate': 1,\n", " 'frying': 1,\n", " 'fuel': 1,\n", " 'fulfilment': 1,\n", " 'full': 37,\n", " 'full-blown': 1,\n", " 'full-bodied': 2,\n", " 'fully': 4,\n", " 'fulness': 1,\n", " 'fumbled': 1,\n", " 'function': 2,\n", " 'functionaries': 2,\n", " 'functionary': 8,\n", " \"functionary's\": 1,\n", " 'functions': 1,\n", " 'funeral': 6,\n", " 'funerals': 1,\n", " 'funereal': 1,\n", " 'fur': 4,\n", " 'furies': 4,\n", " 'furious': 7,\n", " 'furiously': 1,\n", " 'furnace': 2,\n", " 'furnaces': 1,\n", " 'furnished': 5,\n", " 'furnished--evidently': 1,\n", " 'furniture': 4,\n", " 'furrow': 3,\n", " 'further': 9,\n", " 'furtherance': 1,\n", " 'furthest': 1,\n", " 'furtive': 1,\n", " 'furtively': 1,\n", " 'fury': 1,\n", " 'fused': 1,\n", " 'futur': 1,\n", " 'future': 12,\n", " 'g': 1,\n", " 'gabelle': 25,\n", " \"gabelle's\": 4,\n", " 'gag--tied': 1,\n", " 'gaily': 1,\n", " 'gain': 3,\n", " 'gained': 6,\n", " 'gaining': 2,\n", " 'gainsay': 1,\n", " 'gaiters': 1,\n", " 'gallant': 1,\n", " 'gallantly': 1,\n", " 'gallantries': 1,\n", " 'gallantry': 5,\n", " 'galleries': 1,\n", " 'galley': 1,\n", " 'galling': 1,\n", " 'gallon': 1,\n", " 'gallop': 5,\n", " 'galloped': 1,\n", " 'gallows': 7,\n", " 'gallows-rope': 1,\n", " 'game': 4,\n", " 'games': 4,\n", " 'gamut': 1,\n", " 'gander': 1,\n", " 'gaol': 5,\n", " 'gaoler': 15,\n", " \"gaoler's\": 3,\n", " 'gaoler-joke': 1,\n", " 'gaolers': 4,\n", " 'gaols': 2,\n", " 'garb': 1,\n", " 'garden': 7,\n", " 'garden-full': 1,\n", " 'garden-tomb': 1,\n", " 'gardens': 3,\n", " 'garment': 2,\n", " 'garnering': 1,\n", " 'garnished': 1,\n", " 'garret': 14,\n", " 'garret--formerly': 1,\n", " 'garrison': 1,\n", " 'garrison-and-dockyard': 1,\n", " 'gaspard': 7,\n", " \"gaspard's\": 1,\n", " 'gate': 30,\n", " 'gates': 6,\n", " 'gateway': 1,\n", " 'gathered': 6,\n", " 'gathering': 3,\n", " 'gathering-place': 1,\n", " 'gaul': 1,\n", " 'gaunt': 4,\n", " 'gauze': 1,\n", " 'gave': 27,\n", " 'gay': 1,\n", " 'gayest': 1,\n", " 'gaze': 3,\n", " 'gazette': 1,\n", " 'gazing': 2,\n", " 'gbnewby@pglaf.org': 1,\n", " 'gender--and': 1,\n", " 'general': 32,\n", " 'general-light-job': 1,\n", " 'generality': 1,\n", " 'generally': 4,\n", " 'generation': 2,\n", " 'generations': 4,\n", " 'generosity': 6,\n", " 'generous': 3,\n", " 'genial': 1,\n", " 'genius': 2,\n", " 'genteel': 1,\n", " 'gentility': 1,\n", " 'gentle': 11,\n", " 'gentleman': 70,\n", " \"gentleman's\": 6,\n", " 'gentlemen': 27,\n", " 'gentlemen--my': 1,\n", " 'gentlemen--officers': 1,\n", " 'gentleness': 2,\n", " 'gentlest': 1,\n", " 'gently': 15,\n", " 'genuine': 2,\n", " 'george': 11,\n", " 'germain': 1,\n", " 'german': 1,\n", " 'gesticulation': 1,\n", " 'gesture': 6,\n", " 'gestures': 1,\n", " 'get': 61,\n", " 'gets': 2,\n", " 'getting': 18,\n", " 'ghastliness': 1,\n", " 'ghastly': 3,\n", " 'ghost': 15,\n", " 'ghost--not': 1,\n", " 'ghostly': 5,\n", " 'ghosts': 5,\n", " 'giant': 4,\n", " 'giants': 1,\n", " 'giddily': 1,\n", " 'giddinesses': 1,\n", " 'gifts': 1,\n", " 'gigantically': 1,\n", " \"giles's\": 1,\n", " 'gin': 1,\n", " 'girded': 1,\n", " 'girdle': 2,\n", " 'girl': 10,\n", " \"girl's\": 1,\n", " 'girlhood': 1,\n", " 'girlish': 1,\n", " 'girls': 3,\n", " 'give': 46,\n", " 'give--and': 1,\n", " 'give--such': 1,\n", " 'give--which': 1,\n", " 'given': 15,\n", " 'gives': 5,\n", " 'giving': 12,\n", " 'giving--with': 1,\n", " 'glad': 6,\n", " 'gladden': 1,\n", " 'gladness': 1,\n", " 'glance': 10,\n", " 'glanced': 17,\n", " 'glances': 1,\n", " 'glancing': 14,\n", " 'glare': 2,\n", " 'glaring': 4,\n", " 'glass': 26,\n", " 'glass--which': 1,\n", " 'glasses': 2,\n", " 'glassful': 3,\n", " 'glassful--drank': 1,\n", " 'glassful--pushed': 1,\n", " 'gleam': 1,\n", " 'gleamed': 3,\n", " 'gleaming': 2,\n", " 'gleams': 2,\n", " 'gleaned': 1,\n", " 'glib': 1,\n", " 'glided': 3,\n", " 'gliding': 1,\n", " 'glimmering': 1,\n", " 'glimpses': 2,\n", " 'glinted': 1,\n", " 'glittering': 2,\n", " 'gloom': 5,\n", " 'gloomily': 4,\n", " 'gloomy': 13,\n", " 'glorious': 2,\n", " 'glory': 2,\n", " 'gloss': 1,\n", " 'glove': 1,\n", " 'glow': 5,\n", " 'gloweringly': 1,\n", " 'glowing': 1,\n", " 'glutinous': 1,\n", " 'gnashing': 1,\n", " 'gnats': 1,\n", " 'gnawed': 1,\n", " 'gnawing': 1,\n", " 'go': 137,\n", " 'go--as': 1,\n", " 'goals': 1,\n", " 'goblet': 1,\n", " 'goblin': 1,\n", " 'god': 30,\n", " \"god's\": 2,\n", " 'goddess': 1,\n", " 'godmother': 1,\n", " 'goers': 1,\n", " 'goes': 15,\n", " 'goin': 1,\n", " 'going': 87,\n", " 'going--as': 1,\n", " 'gold': 8,\n", " 'gold-laced': 2,\n", " 'golden': 28,\n", " 'golden-haired': 4,\n", " 'gone': 70,\n", " 'good': 209,\n", " 'good--that': 1,\n", " 'good-fellowship': 1,\n", " 'good-humour': 2,\n", " 'good-humoured': 2,\n", " 'good-natured': 2,\n", " 'goodly': 1,\n", " 'goodness': 2,\n", " 'goods': 5,\n", " 'goodwill': 1,\n", " 'goose': 1,\n", " 'gore': 1,\n", " 'gorged': 1,\n", " 'gorgeous': 2,\n", " 'gorgon': 1,\n", " \"gorgon's\": 2,\n", " 'gory': 1,\n", " 'gossamer': 1,\n", " 'gossip': 3,\n", " 'gossiping': 1,\n", " 'got': 82,\n", " 'govern': 1,\n", " 'governed': 1,\n", " 'government': 7,\n", " 'governor': 3,\n", " \"governor's\": 1,\n", " 'gown': 2,\n", " 'grace': 4,\n", " 'graced': 1,\n", " 'graceful': 1,\n", " 'graces': 2,\n", " 'gracious': 10,\n", " 'graciously': 2,\n", " 'gradations': 1,\n", " 'gradual': 3,\n", " 'gradually': 15,\n", " 'grain': 4,\n", " 'grains': 1,\n", " 'grand': 10,\n", " 'grandchildren': 1,\n", " 'grandeur': 2,\n", " 'grandfather': 1,\n", " 'grandmammas': 1,\n", " 'grant': 2,\n", " 'granted': 3,\n", " 'grape': 1,\n", " 'grasp': 2,\n", " 'grasped': 2,\n", " 'grasping': 3,\n", " 'grass': 18,\n", " 'grasses': 1,\n", " 'grated': 3,\n", " 'grateful': 2,\n", " 'gratefully': 5,\n", " 'grates': 2,\n", " 'gratified': 2,\n", " 'grating': 2,\n", " 'gratitude': 2,\n", " 'grave': 17,\n", " 'grave-clothes': 1,\n", " 'gravel': 1,\n", " 'gravely': 2,\n", " 'gravely--by': 1,\n", " 'graves': 2,\n", " 'gravestones': 1,\n", " 'gravity': 2,\n", " 'great': 161,\n", " 'greater': 13,\n", " 'greatest': 12,\n", " 'greatly': 11,\n", " 'greatnesses': 2,\n", " 'greece': 1,\n", " 'greedily': 2,\n", " 'greedy': 3,\n", " 'greek': 1,\n", " 'green': 5,\n", " 'greeting': 1,\n", " 'greetings': 1,\n", " 'gregarious': 1,\n", " 'gregory': 1,\n", " 'grenadier': 1,\n", " 'grew': 9,\n", " 'grey': 9,\n", " 'gridiron-pattern': 1,\n", " 'grief': 4,\n", " 'grieve': 2,\n", " 'grieving': 2,\n", " 'grim': 11,\n", " 'grimaces': 1,\n", " 'grimly': 1,\n", " 'grimmer': 1,\n", " 'grimness': 2,\n", " 'grimy': 1,\n", " 'grin': 1,\n", " 'grind': 2,\n", " 'grinding': 1,\n", " 'grinds': 2,\n", " 'grindstone': 10,\n", " 'grinning': 1,\n", " 'grip': 1,\n", " 'gripping': 1,\n", " 'grisly': 2,\n", " 'grist': 1,\n", " 'grizzled': 2,\n", " 'groan': 1,\n", " 'groaned': 1,\n", " 'groaning': 1,\n", " 'grocer': 2,\n", " 'grocery': 1,\n", " 'groped': 2,\n", " 'gross': 1,\n", " 'grossly': 1,\n", " 'ground': 32,\n", " 'grounds': 5,\n", " 'grounds--the': 1,\n", " 'group': 19,\n", " 'grouped': 1,\n", " 'groups': 1,\n", " 'grove': 3,\n", " 'grovelling': 1,\n", " 'grow': 5,\n", " 'growed': 2,\n", " 'growing': 11,\n", " 'growled': 4,\n", " 'growling': 2,\n", " 'growlingly': 1,\n", " 'grown': 9,\n", " 'grudge': 1,\n", " 'grudging': 1,\n", " 'grudgingly': 1,\n", " 'gruff': 3,\n", " 'grumbled': 2,\n", " 'grumbling': 1,\n", " 'grunt': 1,\n", " 'guard': 36,\n", " 'guard-house': 4,\n", " 'guard-houses': 1,\n", " 'guard-room': 2,\n", " 'guarded': 4,\n", " 'guarded--except': 1,\n", " 'guardhouse': 2,\n", " 'guards': 3,\n", " 'guess': 6,\n", " 'guesses': 1,\n", " 'guest': 1,\n", " 'guidance': 5,\n", " 'guide': 1,\n", " 'guided': 1,\n", " 'guiding': 1,\n", " 'guillotine': 25,\n", " 'guillotine\"--for': 1,\n", " 'guillotined': 1,\n", " 'guilt': 1,\n", " 'guilty': 8,\n", " 'guinea': 5,\n", " 'guineas': 5,\n", " 'gulf': 1,\n", " 'gun': 5,\n", " \"gunmaker's\": 1,\n", " 'gunpowder': 2,\n", " 'guns': 2,\n", " 'guns--like': 1,\n", " 'gutenberg': 27,\n", " 'gutenberg-tm': 56,\n", " \"gutenberg-tm's\": 1,\n", " 'guttering': 1,\n", " 'ha': 8,\n", " 'ha!--beats': 1,\n", " 'habit': 8,\n", " 'habitation': 1,\n", " 'habitations': 1,\n", " 'habits': 4,\n", " 'habitual': 1,\n", " 'habitually': 3,\n", " 'hacked': 2,\n", " 'hackney-coach': 2,\n", " 'had': 1297,\n", " 'had--that': 1,\n", " \"hadn't\": 2,\n", " 'haggard': 5,\n", " 'hah': 7,\n", " 'hail': 4,\n", " 'hail-clouds': 1,\n", " 'hailed': 2,\n", " 'hailing': 2,\n", " 'hair': 62,\n", " 'hair-breadth': 1,\n", " 'hairs': 1,\n", " 'hairy': 1,\n", " 'half': 55,\n", " \"half's\": 1,\n", " 'half-crowns': 1,\n", " 'half-door': 1,\n", " 'half-dozen': 5,\n", " 'half-hour': 2,\n", " 'half-imagined': 1,\n", " 'half-insolent': 1,\n", " 'half-past': 1,\n", " 'half-seen': 1,\n", " 'half-shut': 1,\n", " 'hall': 12,\n", " 'hall--as': 1,\n", " 'hallo': 3,\n", " 'halloa': 4,\n", " 'hallowed': 1,\n", " 'halls': 1,\n", " 'halo': 1,\n", " 'halting': 2,\n", " 'hammer': 7,\n", " 'hammering': 2,\n", " 'hammers': 2,\n", " 'hand': 246,\n", " 'hand--separated': 1,\n", " 'hand.--where': 1,\n", " 'handed': 11,\n", " 'handful': 3,\n", " 'handkerchief': 4,\n", " 'handkerchiefs': 2,\n", " 'handle': 2,\n", " 'handmaid': 1,\n", " 'hands': 112,\n", " 'hands--to': 1,\n", " 'handsome': 11,\n", " 'handsomely': 5,\n", " 'handsomest': 1,\n", " 'handwriting': 1,\n", " 'handy': 2,\n", " 'hang': 1,\n", " 'hangdog': 1,\n", " 'hanged': 7,\n", " 'hanging': 12,\n", " 'hanging-sword-alley': 1,\n", " 'hangings': 1,\n", " 'hangman': 2,\n", " 'happen': 9,\n", " 'happened': 23,\n", " 'happening': 2,\n", " 'happier': 3,\n", " 'happiest': 1,\n", " 'happily': 12,\n", " 'happiness': 12,\n", " 'happy': 29,\n", " 'harass': 1,\n", " 'harbour': 2,\n", " 'harboured': 1,\n", " 'hard': 48,\n", " 'hard--impatiently--as': 1,\n", " 'hardened': 1,\n", " 'hardest': 1,\n", " 'hardihood': 1,\n", " 'hardly': 15,\n", " 'hardship': 1,\n", " 'hare': 1,\n", " 'hares': 1,\n", " 'hark': 3,\n", " 'harlequin': 1,\n", " 'harm': 9,\n", " \"harm's\": 1,\n", " 'harm--if': 1,\n", " 'harming': 2,\n", " 'harmless': 3,\n", " 'harms': 1,\n", " 'harness': 6,\n", " 'harnessed': 1,\n", " 'harping': 1,\n", " 'harsh': 4,\n", " 'harshly': 1,\n", " 'hart': 2,\n", " 'harvest': 2,\n", " 'has': 151,\n", " 'hast': 1,\n", " 'haste': 2,\n", " 'hastened': 2,\n", " 'hastily': 4,\n", " 'hasty': 1,\n", " 'hat': 12,\n", " 'hat-brim': 1,\n", " 'hatband': 1,\n", " 'hatchets': 1,\n", " 'hate': 2,\n", " 'hated': 1,\n", " 'hateful': 1,\n", " 'hatred': 2,\n", " 'hats': 2,\n", " 'haughtily': 1,\n", " 'haughty': 1,\n", " 'hauled': 3,\n", " 'hauling': 1,\n", " 'haunches': 1,\n", " 'haunt': 1,\n", " 'haunted': 7,\n", " 'haunting': 1,\n", " 'have': 742,\n", " 'have--as': 1,\n", " 'have--but': 1,\n", " 'have--make': 1,\n", " 'havin': 1,\n", " 'having': 71,\n", " 'hawthorn': 1,\n", " 'hay': 4,\n", " 'hay--\"some': 1,\n", " 'hazard': 6,\n", " 'hazarded': 1,\n", " 'he': 1832,\n", " \"he'd\": 3,\n", " \"he'll\": 5,\n", " \"he's\": 4,\n", " 'he,--that': 1,\n", " 'head': 172,\n", " 'head--they': 1,\n", " 'head-board': 1,\n", " 'head-dress': 3,\n", " 'head-quarters': 1,\n", " 'headache': 1,\n", " 'headgear': 1,\n", " 'heading': 1,\n", " 'headless': 1,\n", " 'headlong': 2,\n", " 'heads': 38,\n", " 'healer': 1,\n", " 'healing': 1,\n", " 'health': 10,\n", " 'healths': 1,\n", " 'healthy': 5,\n", " 'heap': 16,\n", " 'heaps': 4,\n", " 'hear': 52,\n", " 'heard': 63,\n", " 'hearers': 2,\n", " 'hearing': 13,\n", " 'hearse': 3,\n", " 'hearse--advised': 1,\n", " 'heart': 70,\n", " 'heart--do': 1,\n", " 'heart--if': 1,\n", " 'heart--or': 1,\n", " 'heart--so': 1,\n", " 'hearth': 6,\n", " 'hearth--\"you': 1,\n", " 'hearths': 1,\n", " 'heartily': 1,\n", " 'heartless': 2,\n", " 'hearts': 9,\n", " 'hearts,--such': 1,\n", " 'heat': 5,\n", " 'heated': 3,\n", " 'heathen': 1,\n", " 'heave': 2,\n", " 'heaved': 1,\n", " 'heaven': 35,\n", " \"heaven's\": 1,\n", " 'heaven--which': 1,\n", " 'heavens': 2,\n", " 'heavier': 9,\n", " 'heavily': 15,\n", " 'heavily-grated': 1,\n", " 'heavily-splashed': 1,\n", " 'heaving': 4,\n", " 'heavy': 37,\n", " 'heavy--cold': 1,\n", " 'heavy-treading': 1,\n", " 'hebrew': 1,\n", " 'hedge': 1,\n", " 'heed': 5,\n", " 'heedful': 1,\n", " 'heedless': 1,\n", " 'heels': 3,\n", " 'heigh-ho-hum': 1,\n", " 'height': 5,\n", " 'heightened': 1,\n", " 'held': 55,\n", " 'hell': 1,\n", " 'help': 38,\n", " 'helped': 6,\n", " 'helpful': 3,\n", " 'helping': 1,\n", " 'helpless': 3,\n", " 'hem': 1,\n", " 'hemmed': 1,\n", " 'hence': 7,\n", " 'henceforth': 4,\n", " 'her': 1038,\n", " 'her\"--he': 1,\n", " 'her--and': 1,\n", " 'her--such': 1,\n", " 'her--though': 1,\n", " 'her--which': 1,\n", " 'her--your': 1,\n", " 'heralded': 2,\n", " 'herbs': 5,\n", " 'herd': 1,\n", " 'here': 184,\n", " \"here's\": 3,\n", " 'here--and': 1,\n", " 'herein': 1,\n", " 'heresy': 1,\n", " 'heretofore': 9,\n", " 'hereupon': 1,\n", " 'heroism': 1,\n", " 'hers': 7,\n", " 'herself': 41,\n", " 'hesitated': 2,\n", " 'hesitating': 3,\n", " 'hesitation': 3,\n", " 'hew': 1,\n", " 'hey': 2,\n", " 'hi': 4,\n", " 'hid': 7,\n", " 'hidden': 10,\n", " 'hide': 1,\n", " 'hideous': 5,\n", " 'hiding': 1,\n", " 'hiding-place': 1,\n", " 'hiding-places': 1,\n", " 'high': 41,\n", " 'high--and': 1,\n", " 'high--formed': 1,\n", " 'high-booted': 1,\n", " 'high-fever': 2,\n", " 'high-roofed': 1,\n", " 'high-shouldered': 1,\n", " 'higher': 12,\n", " 'highest': 2,\n", " 'highly': 12,\n", " 'highway': 5,\n", " 'highwayman': 3,\n", " 'highwaymen': 1,\n", " 'highways': 1,\n", " 'hilary': 2,\n", " 'hill': 34,\n", " 'hill-side': 4,\n", " 'hill-top': 2,\n", " 'hilt': 1,\n", " 'him': 965,\n", " 'him--\"ten': 1,\n", " 'him--\"that': 1,\n", " 'him--an': 1,\n", " 'him--by': 1,\n", " 'him--for': 2,\n", " 'him--is': 1,\n", " 'him--like': 1,\n", " 'him--stood': 1,\n", " 'him--which': 1,\n", " 'him--would': 1,\n", " 'himself': 219,\n", " 'himself--as': 1,\n", " 'himself--thrust': 1,\n", " 'himself--which': 1,\n", " 'hinds': 1,\n", " 'hinges': 1,\n", " 'hint': 2,\n", " 'hinted': 2,\n", " 'hips': 1,\n", " 'hire': 1,\n", " 'hired': 2,\n", " 'hiring': 1,\n", " 'his': 2005,\n", " 'his--that': 1,\n", " 'hissing': 1,\n", " 'history': 12,\n", " 'hit': 1,\n", " 'hither': 2,\n", " 'hitherto': 1,\n", " 'hitting': 1,\n", " 'ho': 1,\n", " 'hoarse': 4,\n", " 'hoarsely': 3,\n", " 'hoarser': 1,\n", " 'hoarsest': 1,\n", " 'hob': 1,\n", " 'hoisted': 1,\n", " 'hoisting': 2,\n", " 'hoisting-up': 1,\n", " 'hold': 55,\n", " 'hold,--mr': 1,\n", " 'holden': 1,\n", " 'holder': 6,\n", " 'holding': 10,\n", " 'holds': 3,\n", " 'hole': 1,\n", " 'holes': 5,\n", " 'holiest': 2,\n", " 'holiests': 2,\n", " 'hollow': 8,\n", " 'hollowness': 1,\n", " 'hollows': 1,\n", " 'holsters': 1,\n", " 'holy': 1,\n", " 'homage': 4,\n", " 'home': 58,\n", " 'home-spun': 1,\n", " 'homeliest': 1,\n", " 'homes': 3,\n", " 'honest': 20,\n", " 'honester': 1,\n", " 'honore': 2,\n", " 'honour': 28,\n", " 'honourable': 4,\n", " 'honoured': 11,\n", " 'honouring': 2,\n", " 'hoofs': 1,\n", " 'hook': 1,\n", " 'hoops': 1,\n", " 'hooray': 1,\n", " 'hooroar': 1,\n", " 'hooroaring': 1,\n", " 'hooroars': 1,\n", " 'hope': 84,\n", " 'hope--so': 1,\n", " 'hoped': 8,\n", " 'hopeful': 2,\n", " 'hopefulness': 2,\n", " 'hopeless': 7,\n", " 'hopes': 7,\n", " 'hoping': 1,\n", " 'hopping': 4,\n", " 'horizon': 2,\n", " 'horizontal': 4,\n", " 'horn': 1,\n", " 'horrible': 8,\n", " 'horribly': 1,\n", " 'horrified': 1,\n", " 'horror': 10,\n", " 'horrors': 1,\n", " 'horse': 21,\n", " \"horse's\": 2,\n", " 'horse-pistols': 1,\n", " 'horseback': 2,\n", " 'horsehair': 1,\n", " 'horseman': 1,\n", " 'horsemen': 2,\n", " 'horses': 35,\n", " 'hospital': 4,\n", " 'host': 1,\n", " 'hostile': 1,\n", " 'hot': 16,\n", " 'hotel': 11,\n", " 'hounsditch': 1,\n", " 'hour': 54,\n", " \"hour's\": 1,\n", " 'hours': 38,\n", " 'house': 82,\n", " 'house-top': 2,\n", " 'housebreaker': 1,\n", " 'household': 6,\n", " 'housekeeping': 2,\n", " 'houses': 14,\n", " 'housetop': 1,\n", " 'hovel': 1,\n", " 'hovering': 1,\n", " 'how': 160,\n", " 'howbeit': 1,\n", " 'however': 30,\n", " 'howling': 3,\n", " 'http://gutenberg.org/license': 1,\n", " 'http://pglaf.org': 2,\n", " 'http://pglaf.org/donate': 1,\n", " 'http://pglaf.org/fundraising': 1,\n", " 'http://www.gutenberg.org': 1,\n", " 'http://www.gutenberg.org/9/98/': 1,\n", " 'http://www.pglaf.org': 1,\n", " 'hue': 1,\n", " 'huge': 1,\n", " 'hum': 1,\n", " 'human': 23,\n", " 'humane': 2,\n", " 'humanising': 1,\n", " 'humanity': 6,\n", " 'humble': 1,\n", " 'humbly': 3,\n", " 'humiliation': 1,\n", " 'humility': 2,\n", " 'hummed': 1,\n", " 'humour': 1,\n", " 'humph': 1,\n", " 'hundred': 42,\n", " 'hundreds': 14,\n", " 'hung': 4,\n", " 'hunger': 13,\n", " 'hunger-worn': 1,\n", " 'hungered': 2,\n", " 'hungry': 6,\n", " 'hunted': 2,\n", " 'hunters': 1,\n", " 'hunting': 2,\n", " 'hurdle': 1,\n", " 'hurricane': 1,\n", " 'hurried': 17,\n", " 'hurriedly': 7,\n", " 'hurries': 2,\n", " 'hurry': 15,\n", " 'hurrying': 2,\n", " 'hurt': 3,\n", " 'husband': 84,\n", " \"husband's\": 12,\n", " 'husbands': 3,\n", " 'hush': 16,\n", " 'hushed': 2,\n", " 'hushing': 2,\n", " 'husky': 2,\n", " 'hustled': 1,\n", " 'hut': 1,\n", " 'hutches': 1,\n", " 'huts': 1,\n", " 'hypertext': 1,\n", " 'i': 1913,\n", " \"i'd\": 2,\n", " \"i'll\": 31,\n", " \"i'm\": 8,\n", " \"i've\": 2,\n", " 'i--came': 1,\n", " 'i--were': 1,\n", " 'i-i': 1,\n", " \"i_'m\": 1,\n", " 'ice': 2,\n", " 'idea': 18,\n", " 'ideas': 1,\n", " 'identical': 1,\n", " 'identification': 4,\n", " 'identified': 5,\n", " 'identify': 5,\n", " 'idiomatic': 1,\n", " 'idiotic': 1,\n", " 'idiots': 1,\n", " 'idle': 4,\n", " 'idleness': 2,\n", " 'idlest': 1,\n", " 'idling': 1,\n", " 'idly': 1,\n", " 'if': 471,\n", " 'if--the': 1,\n", " 'ignobly': 1,\n", " 'ignorance': 2,\n", " 'ignorant': 7,\n", " 'ii': 3,\n", " 'iii': 3,\n", " 'ill': 12,\n", " 'ill-blood': 1,\n", " 'ill-conditioned': 1,\n", " 'ill-conwenient': 1,\n", " 'ill-humour': 1,\n", " 'ill-omened': 1,\n", " 'ill-smelling': 1,\n", " 'illness': 1,\n", " 'illuminated': 3,\n", " 'illuminating': 1,\n", " 'illusion': 1,\n", " 'illustration': 4,\n", " 'illustrations': 2,\n", " 'illustrious': 6,\n", " 'image': 4,\n", " 'imaginary': 5,\n", " 'imagination': 3,\n", " 'imagine': 4,\n", " 'imagined': 6,\n", " 'imagining': 1,\n", " 'imaginings': 1,\n", " 'imbecile': 1,\n", " 'imbued': 1,\n", " 'imitated': 2,\n", " 'imitation': 1,\n", " 'imitations': 1,\n", " 'immaculate': 1,\n", " 'immature': 1,\n", " 'immeasurably': 2,\n", " 'immediate': 6,\n", " 'immediately': 20,\n", " 'immemorial': 1,\n", " 'immense': 5,\n", " 'immersion': 1,\n", " 'immolate': 1,\n", " 'immortal': 2,\n", " 'immovable': 6,\n", " 'immunities': 1,\n", " 'impaired': 1,\n", " 'impart': 3,\n", " 'imparted': 1,\n", " 'impartially': 1,\n", " 'imparts': 1,\n", " 'impassable': 1,\n", " 'impassive': 3,\n", " 'impatience': 6,\n", " 'impatient': 4,\n", " 'impatiently': 2,\n", " 'impeach': 2,\n", " 'impeaching': 1,\n", " 'impeachment': 1,\n", " 'impediments': 1,\n", " 'impelled': 2,\n", " 'impelling': 1,\n", " 'impended': 1,\n", " 'impending': 1,\n", " 'impenitently': 1,\n", " 'imperative': 1,\n", " 'imperfect': 1,\n", " 'imperfectly': 1,\n", " 'imperil': 1,\n", " 'imperious': 1,\n", " 'impertinence': 1,\n", " 'imperturbable': 1,\n", " 'impetuous': 1,\n", " 'implacable-looking': 1,\n", " 'implacably': 1,\n", " 'implements': 1,\n", " 'implicitly': 1,\n", " 'implied': 2,\n", " 'implore': 3,\n", " 'implored': 4,\n", " 'imploring': 1,\n", " 'imploringly': 1,\n", " 'imply': 1,\n", " 'importance': 4,\n", " 'important': 9,\n", " 'important--no': 1,\n", " 'importunity': 1,\n", " 'imposed': 4,\n", " 'imposes': 1,\n", " 'imposing': 1,\n", " 'impositions': 1,\n", " 'impossibility': 1,\n", " 'impossible': 10,\n", " 'impossible--it': 1,\n", " 'impostors': 1,\n", " 'imposts': 1,\n", " 'impoverished': 3,\n", " 'impracticable': 1,\n", " 'impress': 1,\n", " 'impressed': 4,\n", " 'impressible': 1,\n", " 'impressing': 1,\n", " 'impression': 8,\n", " 'impression--which': 1,\n", " 'impressive': 2,\n", " 'impressively': 1,\n", " 'imprinted': 1,\n", " 'imprisoned': 4,\n", " 'imprisonment': 10,\n", " 'improbable': 1,\n", " 'improved': 3,\n", " 'improvement': 2,\n", " 'improvements': 1,\n", " 'improving': 1,\n", " 'impulse': 1,\n", " 'impulses': 1,\n", " 'impure': 1,\n", " 'impurities': 1,\n", " 'imputation': 1,\n", " 'in': 2634,\n", " 'in--a': 1,\n", " 'in--even': 1,\n", " 'in--looking': 1,\n", " 'in--was': 1,\n", " 'in-looking': 1,\n", " 'in;--and': 1,\n", " 'inaccurate': 1,\n", " 'inanimate': 1,\n", " 'inappropriate': 3,\n", " 'inarticulately': 1,\n", " 'inasmuch': 1,\n", " 'inaudible': 1,\n", " 'inaugurated': 1,\n", " 'incapable': 5,\n", " 'incessant': 1,\n", " 'incessantly': 2,\n", " 'inch': 3,\n", " 'incident': 1,\n", " 'incidental': 3,\n", " 'incidents': 1,\n", " 'incidents--he': 1,\n", " 'inclement': 1,\n", " 'inclination': 7,\n", " 'inclined': 1,\n", " 'include': 2,\n", " 'included': 4,\n", " 'includes': 1,\n", " 'including': 8,\n", " 'incoherences': 1,\n", " 'income': 1,\n", " 'incommode': 2,\n", " 'incommodious': 1,\n", " 'incommodiousness': 1,\n", " 'incomplete': 4,\n", " 'incompleteness': 1,\n", " 'incomprehensible': 1,\n", " 'inconsistencies': 1,\n", " 'inconsistency': 2,\n", " 'inconsistent': 1,\n", " 'inconvenience': 3,\n", " 'inconveniences': 1,\n", " 'inconvenient': 1,\n", " 'incorrigible': 3,\n", " 'increase': 1,\n", " 'increasing': 2,\n", " 'incredulity': 1,\n", " 'incumbent': 2,\n", " 'incumbrance': 1,\n", " 'incur': 1,\n", " 'indebted': 1,\n", " 'indecision': 1,\n", " 'indeed': 44,\n", " 'indefinitely': 1,\n", " 'indemnify': 1,\n", " 'indemnity': 1,\n", " 'independent': 1,\n", " 'indescribable': 2,\n", " 'indicate': 2,\n", " 'indicated': 3,\n", " 'indicates': 1,\n", " 'indicating': 1,\n", " 'indication': 1,\n", " 'indictment': 2,\n", " 'indifference': 7,\n", " 'indifferent': 5,\n", " 'indifferently': 2,\n", " 'indignant': 2,\n", " 'indignantly': 2,\n", " 'indignation': 2,\n", " 'indignity': 1,\n", " 'indirect': 1,\n", " 'indirectly': 1,\n", " 'indispensable': 4,\n", " 'indistinct': 1,\n", " 'individual': 8,\n", " 'individuality': 1,\n", " 'individually': 1,\n", " 'indivisible': 5,\n", " 'indoor': 1,\n", " 'induce': 2,\n", " 'induced': 1,\n", " 'inducement': 1,\n", " 'industrious': 1,\n", " 'industry': 3,\n", " 'inevitable': 1,\n", " 'inevitably': 3,\n", " 'inexorable': 1,\n", " 'inexperienced': 1,\n", " 'infallible': 1,\n", " 'infallibly': 2,\n", " 'infamous': 7,\n", " 'infamy': 2,\n", " 'infancy': 2,\n", " 'infants': 1,\n", " 'infected': 2,\n", " 'infection': 1,\n", " 'infer': 1,\n", " 'inference': 1,\n", " 'infernal': 2,\n", " 'inferred': 1,\n", " 'infinite': 4,\n", " 'infinitely': 1,\n", " 'infirmity': 1,\n", " 'inflating': 1,\n", " 'inflict': 1,\n", " 'inflicted': 1,\n", " 'inflicting': 1,\n", " 'influence': 31,\n", " 'influential': 1,\n", " 'inform': 3,\n", " 'informant': 1,\n", " 'information': 19,\n", " 'informed': 5,\n", " 'informer': 1,\n", " 'informing': 1,\n", " 'infraction': 1,\n", " 'infringement': 1,\n", " 'infused': 1,\n", " 'ingenious': 1,\n", " 'ingenuity': 4,\n", " 'ingress': 1,\n", " 'inhabitants': 4,\n", " 'inhabited': 1,\n", " 'inheritance': 3,\n", " 'inherited': 2,\n", " 'inheritor': 1,\n", " 'inhuman': 1,\n", " 'initial': 1,\n", " 'initials': 2,\n", " 'injunction': 1,\n", " 'injunctions': 1,\n", " 'injured': 3,\n", " 'injuries': 1,\n", " 'injuring': 1,\n", " 'injurious': 1,\n", " 'injury': 1,\n", " 'ink': 2,\n", " 'inmate': 3,\n", " 'inmates': 1,\n", " 'inn': 4,\n", " 'inn-yard': 2,\n", " 'innately': 1,\n", " 'inner': 5,\n", " 'innermost': 2,\n", " 'innocent': 17,\n", " 'inns': 1,\n", " 'inoffensive': 1,\n", " 'inquire': 3,\n", " 'inquired': 8,\n", " 'inquiries': 3,\n", " 'inquiring': 4,\n", " 'inquiringly': 2,\n", " 'inquiry': 6,\n", " 'inquisitive': 2,\n", " 'inquisitively': 2,\n", " 'insatiate': 1,\n", " 'inscribed': 2,\n", " 'inscription': 4,\n", " 'inscriptions': 1,\n", " 'inscrutability': 1,\n", " 'inscrutable': 1,\n", " 'insensate': 1,\n", " 'insensible': 7,\n", " 'inseparable': 1,\n", " 'inside': 11,\n", " 'insinuation': 1,\n", " 'insisted': 2,\n", " 'insolent': 3,\n", " 'insomuch': 1,\n", " 'inspected': 1,\n", " 'inspecting': 1,\n", " 'inspection': 2,\n", " 'inspiration': 1,\n", " 'inspire': 1,\n", " 'inspired': 4,\n", " 'inspiring': 2,\n", " 'installed': 1,\n", " 'instalment': 1,\n", " 'instance': 7,\n", " 'instant': 16,\n", " 'instantly': 7,\n", " 'instead': 8,\n", " 'instinct': 1,\n", " 'instinctive': 4,\n", " 'instinctively': 2,\n", " 'institution': 2,\n", " 'instructed': 1,\n", " 'instruction': 1,\n", " 'instructions': 3,\n", " 'instructs': 1,\n", " 'instrument': 7,\n", " 'instruments': 4,\n", " 'insufferable': 1,\n", " 'insufficient': 2,\n", " 'insulters': 1,\n", " 'insults': 1,\n", " 'insupportable': 1,\n", " 'intangible': 1,\n", " 'integrity': 1,\n", " 'intellectual': 3,\n", " 'intelligence': 6,\n", " 'intelligence--or': 1,\n", " 'intelligences': 1,\n", " 'intelligent': 1,\n", " 'intelligible': 5,\n", " 'intelligibly': 1,\n", " 'intend': 4,\n", " 'intended': 2,\n", " 'intending': 1,\n", " 'intense': 1,\n", " 'intensely': 3,\n", " 'intensified': 1,\n", " 'intensity': 2,\n", " 'intent': 16,\n", " 'intention': 8,\n", " 'intentions': 3,\n", " 'intently': 1,\n", " 'interchange': 5,\n", " 'interchanged': 1,\n", " 'interest': 28,\n", " 'interested': 7,\n", " 'interesting': 2,\n", " 'interests': 1,\n", " 'interfere': 2,\n", " 'interfering': 2,\n", " 'interior': 1,\n", " 'intermediate': 1,\n", " 'interment': 1,\n", " 'intermission': 1,\n", " 'internal': 3,\n", " 'internally': 1,\n", " 'international': 1,\n", " 'interpose': 2,\n", " 'interposed': 5,\n", " 'interpreted': 1,\n", " 'interpreter': 1,\n", " 'interrogate': 2,\n", " 'interrupt': 1,\n", " 'interrupted': 4,\n", " 'interrupting': 1,\n", " 'interruption': 1,\n", " 'intersect': 1,\n", " 'interval': 4,\n", " 'intervals': 9,\n", " 'intervening': 2,\n", " 'interview': 4,\n", " 'interviews': 1,\n", " 'intimacy': 1,\n", " 'intimate': 4,\n", " 'into': 319,\n", " 'intolerable': 1,\n", " 'intoxicated': 1,\n", " 'intoxication': 2,\n", " 'intricate': 1,\n", " 'intrigue': 1,\n", " 'introduce': 1,\n", " 'introduction': 2,\n", " 'inundation': 2,\n", " 'invalidity': 1,\n", " 'invariably': 3,\n", " 'invention': 1,\n", " 'inversion': 1,\n", " 'invested': 3,\n", " 'inveteracy': 1,\n", " 'inveterate': 1,\n", " 'invigorated': 1,\n", " 'inviolate': 2,\n", " 'invisible': 4,\n", " 'invite': 1,\n", " 'invited': 3,\n", " 'involuntary': 3,\n", " 'involve': 2,\n", " 'involved': 4,\n", " 'involving': 3,\n", " 'inward': 2,\n", " 'iron': 19,\n", " 'iron-bound': 1,\n", " 'iron-grated': 1,\n", " 'ironical': 1,\n", " 'irregular': 1,\n", " 'irreligious': 1,\n", " 'irrepressible': 2,\n", " 'irresolute': 1,\n", " 'irresolutely': 1,\n", " 'irruption': 3,\n", " 'irs': 1,\n", " 'is': 842,\n", " 'is--and': 1,\n", " 'is--as': 1,\n", " 'is--at': 1,\n", " 'is--if': 1,\n", " 'is--wot': 1,\n", " 'island': 2,\n", " 'isolated': 1,\n", " 'issue': 1,\n", " 'issued': 5,\n", " 'issuing': 1,\n", " 'it': 2013,\n", " 'it!--joe': 1,\n", " \"it's\": 34,\n", " 'it--\"as': 1,\n", " 'it--as': 1,\n", " 'it--for': 1,\n", " 'it--in': 2,\n", " 'it--it': 1,\n", " 'it--like': 1,\n", " 'it--not': 2,\n", " 'it--or': 1,\n", " 'it--outwatched': 1,\n", " 'it--suddenly': 1,\n", " 'it--take': 1,\n", " 'it--that': 1,\n", " 'it--the': 1,\n", " 'it--which': 1,\n", " \"it-can't-be\": 1,\n", " 'it.--mind': 1,\n", " 'its': 227,\n", " 'itself': 47,\n", " 'itself,--and': 1,\n", " 'itself--lay': 1,\n", " 'iv': 3,\n", " 'ix': 2,\n", " 'izaak': 1,\n", " 'j': 1,\n", " 'jack': 1,\n", " 'jack-boots': 2,\n", " 'jackal': 15,\n", " 'jacobin': 2,\n", " 'jacquerie': 1,\n", " 'jacques': 72,\n", " 'jaggedly': 1,\n", " 'jalousie-blinds': 1,\n", " 'jangle': 1,\n", " 'jar': 2,\n", " 'jargon': 1,\n", " 'jarring': 1,\n", " 'jarvis': 19,\n", " 'jaw': 2,\n", " 'jaws': 2,\n", " 'jealous': 1,\n", " 'jealously': 1,\n", " 'jeffries': 1,\n", " 'jeremiah': 1,\n", " 'jerked': 2,\n", " 'jerks': 3,\n", " 'jerry': 106,\n", " \"jerry's\": 2,\n", " 'jest': 1,\n", " 'jesting': 1,\n", " 'jests': 1,\n", " 'jewels': 2,\n", " 'jewels--i': 1,\n", " 'jezebels': 1,\n", " 'jingle': 1,\n", " 'jingling': 1,\n", " 'jinte': 1,\n", " 'job': 2,\n", " 'jobbing': 1,\n", " 'jocosely': 1,\n", " 'joe': 6,\n", " 'john': 10,\n", " 'join': 3,\n", " 'joined': 9,\n", " 'joining': 1,\n", " 'joint': 3,\n", " 'joints': 2,\n", " 'joke': 3,\n", " 'joker': 4,\n", " \"joker's\": 2,\n", " 'jolt': 1,\n", " 'jolt--nodded': 1,\n", " 'jolted': 3,\n", " 'jostlement': 1,\n", " 'jostling': 1,\n", " 'journal': 2,\n", " 'journey': 23,\n", " \"journey's\": 2,\n", " 'joy': 5,\n", " 'joy-ringing': 1,\n", " 'joyfully': 1,\n", " 'judas--which': 1,\n", " 'judge': 14,\n", " \"judge's\": 1,\n", " 'judged': 2,\n", " 'judges': 6,\n", " 'judgment': 6,\n", " 'judgment-seat': 1,\n", " 'judicious': 1,\n", " 'judiciously': 2,\n", " 'judith': 1,\n", " 'jug': 2,\n", " 'july': 1,\n", " 'jumbled': 1,\n", " 'juncture': 2,\n", " 'june': 1,\n", " 'junior': 1,\n", " 'jupiter': 1,\n", " 'jury': 30,\n", " \"jury's\": 2,\n", " 'juryman': 5,\n", " \"juryman's\": 1,\n", " 'jurymen': 1,\n", " 'just': 40,\n", " 'justice': 8,\n", " 'justified': 1,\n", " 'justify': 3,\n", " 'justly': 1,\n", " 'keen': 1,\n", " 'keener': 2,\n", " 'keenly': 1,\n", " 'keenness': 1,\n", " 'keep': 52,\n", " 'keeper': 12,\n", " 'keepers': 1,\n", " 'keepin': 1,\n", " 'keeping': 15,\n", " 'keeps': 2,\n", " 'kennel': 1,\n", " 'kep': 1,\n", " 'kept': 42,\n", " 'kept--her': 1,\n", " 'kettle': 1,\n", " 'key': 13,\n", " 'keys': 5,\n", " 'kick': 1,\n", " 'kicked': 3,\n", " 'kicking': 1,\n", " 'kill': 6,\n", " 'killed': 4,\n", " 'kind': 41,\n", " 'kindled': 2,\n", " 'kindly': 4,\n", " 'kindness': 2,\n", " 'kindred': 2,\n", " 'kinds': 5,\n", " 'kine': 1,\n", " 'king': 22,\n", " \"king's\": 8,\n", " 'king--and': 1,\n", " 'kings': 1,\n", " 'kiss': 12,\n", " 'kissed': 14,\n", " 'kisses': 2,\n", " 'kissing': 3,\n", " 'kitchen': 1,\n", " 'kitchens': 1,\n", " 'kite': 1,\n", " 'knavish': 1,\n", " 'knee': 9,\n", " 'knee-high': 1,\n", " 'kneel': 4,\n", " 'kneeled': 5,\n", " 'kneeling': 4,\n", " 'knees': 10,\n", " 'knew': 86,\n", " 'knife': 14,\n", " 'knife--long': 1,\n", " 'knit': 2,\n", " 'knitted': 17,\n", " 'knitting': 41,\n", " 'knitting-needle': 1,\n", " 'knitting-woman': 1,\n", " 'knitting-women': 3,\n", " 'knives': 8,\n", " 'knock': 2,\n", " 'knocked': 2,\n", " 'knocking': 3,\n", " 'knot': 5,\n", " 'knots': 2,\n", " 'knotted': 3,\n", " 'knotting': 1,\n", " 'knotty': 1,\n", " 'know': 230,\n", " 'know--he': 1,\n", " 'know--that': 1,\n", " 'knowed': 1,\n", " 'knowing': 11,\n", " 'knowledge': 20,\n", " 'known': 56,\n", " 'knows': 22,\n", " 'knows--a': 1,\n", " 'knuckle': 1,\n", " 'knuckled': 2,\n", " 'knuckles': 2,\n", " 'la': 30,\n", " 'laboriously': 1,\n", " 'labour': 5,\n", " 'laboured': 2,\n", " 'labourer': 1,\n", " 'labouring': 2,\n", " 'lace': 1,\n", " 'laconic': 1,\n", " 'lacquey': 1,\n", " 'ladder': 1,\n", " 'laden': 1,\n", " 'ladies': 5,\n", " 'lady': 50,\n", " \"lady's\": 5,\n", " 'lady--and': 1,\n", " 'ladybird': 10,\n", " \"ladybird's\": 2,\n", " 'lagged': 1,\n", " 'laid': 52,\n", " 'lain': 3,\n", " 'lake': 1,\n", " 'lame': 4,\n", " 'lamentation': 1,\n", " 'lamenting': 3,\n", " 'lamp': 17,\n", " 'lamp-iron': 1,\n", " 'lamplight': 1,\n", " 'lamplighter': 3,\n", " 'lamps': 11,\n", " 'lamps--swinging': 1,\n", " 'land': 8,\n", " 'land--a': 1,\n", " 'landed': 2,\n", " 'landing': 1,\n", " 'landlady': 2,\n", " 'landlord': 1,\n", " 'lands': 1,\n", " 'landscape': 4,\n", " 'lane': 2,\n", " 'language': 6,\n", " 'languages': 1,\n", " 'languidly': 1,\n", " 'languished': 1,\n", " 'languishing': 2,\n", " 'lantern': 2,\n", " 'lanterns': 3,\n", " 'lap': 1,\n", " 'lapsed': 1,\n", " 'large': 37,\n", " 'large-faced': 1,\n", " 'larger': 4,\n", " 'largest': 1,\n", " 'lashed': 1,\n", " 'lashes': 2,\n", " 'last': 133,\n", " 'last--they': 1,\n", " 'last--to': 1,\n", " 'lasted': 9,\n", " 'lasting': 1,\n", " 'lastly': 1,\n", " 'lasts': 1,\n", " 'late': 22,\n", " 'lately': 4,\n", " 'latent': 5,\n", " 'later': 6,\n", " 'latest': 1,\n", " 'lath': 1,\n", " 'latin': 1,\n", " 'latitudes': 1,\n", " 'latter': 15,\n", " 'lattice': 2,\n", " 'laudable': 3,\n", " 'laudanum': 1,\n", " 'laugh': 8,\n", " 'laughed': 9,\n", " 'laughing': 6,\n", " 'laughingly': 1,\n", " 'laughter': 1,\n", " 'laving': 1,\n", " 'lavished': 1,\n", " 'law': 22,\n", " 'law-work': 1,\n", " 'lawful': 1,\n", " 'lawless': 1,\n", " 'laws': 11,\n", " 'lawyer': 1,\n", " 'lay': 66,\n", " 'lay--down': 1,\n", " 'laying': 14,\n", " 'lazy': 1,\n", " 'lead': 11,\n", " 'lead-colour': 1,\n", " 'leader': 4,\n", " \"leader's\": 1,\n", " 'leading': 6,\n", " 'leads': 1,\n", " 'leaf': 5,\n", " 'leafless': 2,\n", " 'league': 3,\n", " 'leagues': 7,\n", " 'lean': 5,\n", " 'leaned': 12,\n", " 'leanest': 1,\n", " 'leaning': 12,\n", " 'leap-frog': 1,\n", " 'leaped': 2,\n", " 'learn': 2,\n", " 'learned': 11,\n", " 'learnt': 2,\n", " 'least': 20,\n", " 'leastways': 1,\n", " 'leather': 2,\n", " 'leathern': 3,\n", " 'leave': 39,\n", " 'leaves': 11,\n", " 'leaving': 12,\n", " 'led': 12,\n", " 'ledge': 1,\n", " 'ledgers': 1,\n", " 'ledges': 1,\n", " 'lee-dyed': 1,\n", " 'left': 101,\n", " 'leg': 3,\n", " 'legal': 4,\n", " 'legally': 1,\n", " 'legend': 2,\n", " 'legibly': 1,\n", " \"legislation's\": 1,\n", " 'legs': 9,\n", " 'leisure': 3,\n", " 'leisurely': 7,\n", " 'lemons': 1,\n", " 'lend': 1,\n", " 'length': 22,\n", " 'lengthen': 1,\n", " 'lengthening': 2,\n", " 'lengths': 1,\n", " 'lenient': 1,\n", " 'leonora': 1,\n", " 'leprosy': 1,\n", " 'less': 38,\n", " 'less--he': 1,\n", " 'lessened': 1,\n", " 'lesser': 1,\n", " 'lest': 2,\n", " 'let': 108,\n", " \"let's\": 1,\n", " 'lethargic': 1,\n", " 'lethargy': 2,\n", " 'letter': 34,\n", " 'letters': 12,\n", " 'letting': 2,\n", " 'level': 2,\n", " 'levity': 1,\n", " 'lewis': 3,\n", " 'liability': 3,\n", " 'liable': 2,\n", " 'liar': 1,\n", " 'liberal': 1,\n", " 'liberality': 1,\n", " 'liberality--\"i\\'d': 1,\n", " 'liberty': 19,\n", " 'liberty--the': 1,\n", " 'library': 1,\n", " 'license': 15,\n", " 'licensed': 1,\n", " 'licking': 1,\n", " 'lids': 1,\n", " 'lie': 5,\n", " 'lies': 8,\n", " 'lieu': 4,\n", " 'lieutenant': 1,\n", " \"lieutenant's\": 2,\n", " 'life': 147,\n", " \"life's\": 1,\n", " 'life--and': 2,\n", " 'life--his': 1,\n", " 'life--in': 1,\n", " 'life--we': 1,\n", " 'life--when': 1,\n", " 'life-thirsting': 1,\n", " 'life-tide': 1,\n", " 'life.--chair': 1,\n", " 'lifeless': 2,\n", " 'lifetime': 1,\n", " 'lift': 6,\n", " 'lifted': 14,\n", " 'lifting': 5,\n", " 'ligatures': 1,\n", " 'light': 89,\n", " 'light-headed': 1,\n", " 'lighted': 17,\n", " 'lightened': 3,\n", " 'lighter': 7,\n", " 'lighter-hearted': 1,\n", " 'lightest': 1,\n", " 'lightest-wheeled': 1,\n", " 'lighting': 3,\n", " 'lightly': 6,\n", " 'lightly-snowing': 1,\n", " 'lightning': 8,\n", " 'lights': 11,\n", " 'like': 198,\n", " 'liked': 3,\n", " 'likeliest': 3,\n", " 'likelihood': 3,\n", " 'likely': 15,\n", " 'likeness': 6,\n", " 'likewise': 8,\n", " 'liking': 2,\n", " 'limb': 2,\n", " 'limbs': 2,\n", " 'limitation': 3,\n", " 'limited': 5,\n", " 'limp': 1,\n", " 'limped': 1,\n", " 'line': 17,\n", " 'lined': 2,\n", " 'linen': 5,\n", " 'lines': 14,\n", " 'lingered': 5,\n", " 'lingering': 8,\n", " 'link': 2,\n", " 'linked': 4,\n", " 'links': 3,\n", " 'linstock': 1,\n", " 'lion': 9,\n", " \"lion's\": 1,\n", " 'lions': 1,\n", " 'lip': 1,\n", " 'lips': 45,\n", " 'lips--a': 1,\n", " 'liquor': 1,\n", " 'list': 4,\n", " 'listen': 12,\n", " 'listened': 14,\n", " 'listener': 1,\n", " \"listener's\": 1,\n", " 'listening': 8,\n", " 'lists': 12,\n", " 'literary': 13,\n", " 'literature': 2,\n", " 'litter': 2,\n", " 'littered': 2,\n", " 'little': 265,\n", " 'little--listening': 1,\n", " 'littlenesses': 1,\n", " 'live': 40,\n", " 'lived': 15,\n", " 'livelier': 1,\n", " 'liveliest': 1,\n", " 'livelihood': 1,\n", " 'lively': 2,\n", " 'liver': 1,\n", " 'livers': 1,\n", " 'lives': 21,\n", " 'liveth': 3,\n", " 'livid': 1,\n", " 'living': 21,\n", " 'lo': 1,\n", " 'load': 3,\n", " 'loaded': 6,\n", " 'loads': 2,\n", " 'loadstone': 4,\n", " 'loaf': 2,\n", " 'loathsome': 1,\n", " 'loaves': 2,\n", " 'local': 2,\n", " 'locality': 1,\n", " 'located': 4,\n", " 'locations': 2,\n", " 'lock': 4,\n", " 'lock-up': 1,\n", " 'locked': 7,\n", " 'locking': 2,\n", " 'locks': 4,\n", " 'lodge': 1,\n", " 'lodger': 2,\n", " 'lodgers': 1,\n", " 'lodging': 5,\n", " 'lodging-letting': 1,\n", " 'lodgings': 4,\n", " 'loft': 3,\n", " 'loftiest': 1,\n", " 'lofty': 4,\n", " 'log': 3,\n", " 'logs': 1,\n", " 'loitered': 1,\n", " 'loitering': 3,\n", " 'lombard-street': 1,\n", " 'london': 27,\n", " 'london--\"have': 1,\n", " 'loneliness': 2,\n", " 'lonely': 8,\n", " 'long': 192,\n", " 'long-cherished': 1,\n", " 'long-gathering': 1,\n", " 'longer': 14,\n", " 'longevity': 1,\n", " 'longing': 1,\n", " 'loo': 6,\n", " 'look': 140,\n", " 'looked': 193,\n", " 'looker-on': 1,\n", " 'lookers-on': 3,\n", " 'looking': 118,\n", " 'looking-glass': 1,\n", " 'looks': 19,\n", " 'loose': 11,\n", " 'loosed': 3,\n", " 'loosely': 1,\n", " 'loosen': 1,\n", " 'loosened': 1,\n", " 'loosening': 1,\n", " 'looser': 1,\n", " 'lopped': 1,\n", " 'lord': 25,\n", " \"lord's\": 1,\n", " 'lords': 6,\n", " 'lorry': 336,\n", " \"lorry's\": 30,\n", " 'lorry--sitting': 1,\n", " 'lorry--the': 1,\n", " 'lose': 8,\n", " 'losing': 3,\n", " 'loss': 7,\n", " 'lost': 42,\n", " 'lot': 2,\n", " 'lottery': 1,\n", " 'loud': 17,\n", " 'louder': 5,\n", " 'loudly': 4,\n", " 'louis': 2,\n", " 'louis--was': 1,\n", " 'lounge': 1,\n", " 'lounged': 2,\n", " 'lounger': 1,\n", " 'loungers': 1,\n", " 'lounging': 2,\n", " 'love': 55,\n", " 'love--even': 1,\n", " 'loved': 7,\n", " 'loved--the': 1,\n", " 'lovely': 1,\n", " 'lover': 1,\n", " 'lovers': 1,\n", " 'loves': 6,\n", " 'loving': 9,\n", " 'lovingly': 3,\n", " 'low': 52,\n", " 'low-arched': 1,\n", " 'lower': 9,\n", " 'lowered': 4,\n", " 'lowering': 1,\n", " 'lowest': 4,\n", " 'loyal': 2,\n", " 'loyalty': 1,\n", " 'lucie': 124,\n", " \"lucie's\": 5,\n", " 'lucifer': 1,\n", " \"lucifer's\": 1,\n", " 'luck': 5,\n", " 'luckier': 2,\n", " 'lucky': 2,\n", " 'lucrative': 1,\n", " 'ludgate-hill': 1,\n", " 'ludicrous': 1,\n", " 'luggage': 2,\n", " 'lulled': 1,\n", " 'lumber': 1,\n", " 'lumbered': 3,\n", " 'lumbering': 6,\n", " 'luminous': 2,\n", " 'lumps': 3,\n", " 'lunch': 1,\n", " 'lured': 1,\n", " 'lurking': 1,\n", " 'lurks': 1,\n", " 'luxuries': 1,\n", " 'luxurious': 3,\n", " 'luxury': 3,\n", " 'lying': 23,\n", " 'm': 1,\n", " \"ma'amselle\": 1,\n", " 'machine': 2,\n", " 'machine--truly': 1,\n", " 'mad': 9,\n", " 'madam': 1,\n", " 'madame': 191,\n", " \"madame's\": 1,\n", " 'made': 184,\n", " 'madly': 2,\n", " 'madmen': 1,\n", " 'madness': 5,\n", " 'magic': 2,\n", " 'magician': 1,\n", " 'magnanimous': 2,\n", " 'magnificent': 4,\n", " 'magnificently': 1,\n", " 'mahogany': 1,\n", " 'maidenly': 1,\n", " 'maids': 1,\n", " 'mail': 26,\n", " 'mail-coach': 1,\n", " 'maimed': 1,\n", " 'main': 6,\n", " 'maintaining': 1,\n", " 'majestically': 1,\n", " 'majesty': 3,\n", " \"majesty's\": 2,\n", " 'majority': 2,\n", " 'make': 84,\n", " 'maker': 1,\n", " \"maker's\": 2,\n", " 'makes': 3,\n", " 'making': 33,\n", " 'makings': 1,\n", " 'malady': 2,\n", " 'male': 1,\n", " 'malevolent': 1,\n", " 'malice': 3,\n", " 'maligned': 1,\n", " 'maltreated': 1,\n", " \"mam'selle\": 2,\n", " 'mamma': 3,\n", " 'man': 279,\n", " \"man's\": 15,\n", " 'man--which': 1,\n", " 'manette': 155,\n", " \"manette's\": 7,\n", " 'manette--how': 1,\n", " 'manettes': 1,\n", " 'manful': 1,\n", " 'manfully': 1,\n", " 'mangle': 1,\n", " 'mangled': 1,\n", " 'mangy': 1,\n", " 'mania': 1,\n", " 'maniacal': 1,\n", " 'manifest': 5,\n", " 'mankind': 2,\n", " 'mankind--always': 1,\n", " 'manner': 90,\n", " 'manner--\"is': 1,\n", " 'manner--standing': 1,\n", " 'manners': 5,\n", " 'mantle': 1,\n", " 'many': 143,\n", " 'many--i': 1,\n", " 'mar': 1,\n", " 'marble': 1,\n", " 'march': 3,\n", " 'marched': 2,\n", " 'mare': 2,\n", " 'marine': 1,\n", " 'mariner': 1,\n", " 'mark': 8,\n", " 'mark--\"what': 1,\n", " 'marked': 8,\n", " 'market': 1,\n", " 'marketing': 1,\n", " 'marking': 1,\n", " 'markings': 1,\n", " 'marks': 6,\n", " 'marquis': 77,\n", " 'marquis--it': 1,\n", " 'marquis--very': 1,\n", " 'marriage': 10,\n", " 'marriage-day': 1,\n", " 'married': 16,\n", " 'married--an': 1,\n", " 'marrow': 1,\n", " 'marry': 4,\n", " 'marrying': 1,\n", " 'marshy': 1,\n", " 'martial-looking': 1,\n", " 'marvel': 1,\n", " 'marvellous': 3,\n", " 'marvellously': 1,\n", " 'mashed': 1,\n", " 'mask': 4,\n", " 'mass': 4,\n", " 'massacre': 2,\n", " 'massacred': 1,\n", " 'masses': 1,\n", " 'massing': 1,\n", " 'massive': 7,\n", " 'master': 10,\n", " \"master's\": 1,\n", " 'master--nor': 1,\n", " 'masters': 2,\n", " 'mastery': 2,\n", " 'match': 2,\n", " 'material': 3,\n", " 'maternal': 1,\n", " 'mathematics': 1,\n", " 'matrimonial': 3,\n", " 'matted': 2,\n", " 'matter': 35,\n", " 'matter-of-fact': 1,\n", " 'matters': 6,\n", " 'mattress': 2,\n", " 'mature': 2,\n", " 'maturely': 1,\n", " 'maturity': 1,\n", " 'maxim': 1,\n", " 'maximum': 1,\n", " 'may': 140,\n", " 'maybe--for': 1,\n", " \"mayn't\": 2,\n", " 'mayor': 1,\n", " 'me': 522,\n", " 'me--except': 1,\n", " 'me--just': 1,\n", " 'me--rather': 1,\n", " 'me--the': 1,\n", " 'me--well': 1,\n", " 'me--which': 1,\n", " 'me--will': 1,\n", " 'meagre': 2,\n", " 'meagreness': 1,\n", " 'meal': 2,\n", " 'meals': 1,\n", " 'mean': 35,\n", " 'meanest': 1,\n", " 'meaning': 15,\n", " 'means': 30,\n", " 'meant': 7,\n", " 'meantime': 2,\n", " 'meanwhile': 6,\n", " 'measure': 4,\n", " 'measured': 4,\n", " 'measurement': 3,\n", " 'measures': 3,\n", " 'measuring': 1,\n", " 'meat': 5,\n", " 'mechanical': 5,\n", " 'mechanically': 2,\n", " 'meddlesome': 1,\n", " 'mediation': 1,\n", " 'medical': 4,\n", " 'medicine': 1,\n", " 'medicines': 4,\n", " 'meditate': 3,\n", " 'meditated': 1,\n", " 'meditating': 2,\n", " 'meditations': 1,\n", " 'meditative': 1,\n", " 'medium': 5,\n", " 'medley': 2,\n", " 'meekness': 1,\n", " 'meet': 8,\n", " 'meeting': 2,\n", " 'melan': 1,\n", " 'melancholy': 2,\n", " 'melted': 3,\n", " 'melting': 1,\n", " 'member': 1,\n", " 'members': 4,\n", " 'memorable': 4,\n", " 'memoranda': 1,\n", " 'memorials': 2,\n", " 'memory': 11,\n", " 'men': 89,\n", " \"men's\": 1,\n", " 'men--a': 1,\n", " 'men-poets': 1,\n", " 'menace': 1,\n", " 'menaced': 1,\n", " 'menacing': 2,\n", " 'menacingly': 1,\n", " 'menagerie': 1,\n", " 'mended': 4,\n", " 'mender': 45,\n", " 'mental': 4,\n", " 'mentally': 1,\n", " 'mention': 11,\n", " 'mentioned': 8,\n", " 'mentioning': 1,\n", " 'mercenary': 3,\n", " 'merchant': 2,\n", " 'merchantibility': 1,\n", " 'mercies': 5,\n", " 'merciful': 5,\n", " 'mercifully': 1,\n", " 'mercy': 7,\n", " 'mere': 23,\n", " 'merely': 8,\n", " 'merged': 1,\n", " 'merit': 1,\n", " 'merited': 1,\n", " 'merits': 5,\n", " 'merry': 1,\n", " 'message': 11,\n", " 'messages': 3,\n", " 'messenger': 15,\n", " 'messengers': 3,\n", " 'messieurs': 8,\n", " 'messrs': 1,\n", " 'met': 11,\n", " 'metals': 1,\n", " 'metempsychosis': 1,\n", " 'method': 2,\n", " 'methodical': 4,\n", " 'methodically': 1,\n", " 'methods': 1,\n", " 'michael': 2,\n", " 'michaelmas': 2,\n", " 'mid-july': 2,\n", " 'midday': 2,\n", " 'middle': 10,\n", " 'middle-aged': 1,\n", " 'midnight': 6,\n", " 'midnight--at': 1,\n", " 'midst': 14,\n", " 'might': 144,\n", " 'mightily': 3,\n", " 'milder': 1,\n", " 'mildewy': 1,\n", " 'mildly': 2,\n", " 'mile': 1,\n", " 'miles': 6,\n", " 'military': 5,\n", " 'milk': 1,\n", " 'mill': 11,\n", " 'milled': 1,\n", " 'miller': 1,\n", " 'millions': 3,\n", " 'mincing': 4,\n", " 'mind': 116,\n", " 'mind--\"a': 1,\n", " 'mind--i': 1,\n", " 'mind--that': 1,\n", " 'mind--we': 1,\n", " 'mindful': 3,\n", " 'minding': 1,\n", " 'minds': 6,\n", " 'mine': 31,\n", " 'mine--between': 1,\n", " 'mine--this': 1,\n", " 'mingle': 2,\n", " 'mingled': 6,\n", " 'minister': 4,\n", " 'ministers': 2,\n", " 'minority': 1,\n", " 'minute': 13,\n", " \"minute's\": 1,\n", " 'minutely': 1,\n", " 'minutes': 25,\n", " 'miraculous': 1,\n", " 'mirage': 2,\n", " 'mire': 2,\n", " 'mire-deep': 2,\n", " 'mirror': 2,\n", " 'mirrors': 2,\n", " 'miscellaneous': 1,\n", " 'mischance': 1,\n", " 'mischief': 2,\n", " 'miscreant': 1,\n", " 'misdirected': 1,\n", " 'misdoubted': 2,\n", " 'miserable': 16,\n", " 'miserably': 1,\n", " 'miseries': 2,\n", " 'misery': 11,\n", " 'misery-worn': 1,\n", " 'misfortune': 4,\n", " 'misfortunes': 1,\n", " 'misgives': 1,\n", " 'misgiving': 4,\n", " 'misgivings': 1,\n", " 'mismanagement': 1,\n", " 'miss': 232,\n", " 'missed': 4,\n", " 'missing': 1,\n", " 'mission': 4,\n", " 'missionary--there': 1,\n", " 'missions': 1,\n", " 'mississippi': 1,\n", " 'misspent': 1,\n", " 'mist': 16,\n", " 'mistake': 10,\n", " 'mistaken': 6,\n", " 'mistakes': 1,\n", " 'mistrust': 1,\n", " 'mistrustful': 1,\n", " 'mists': 1,\n", " 'misty': 4,\n", " 'misuse': 2,\n", " 'misused': 1,\n", " 'mix': 1,\n", " 'mixed': 3,\n", " 'mixing': 2,\n", " 'moaning': 1,\n", " 'moaningly': 1,\n", " 'moans': 1,\n", " 'mob': 5,\n", " 'mobbed': 1,\n", " 'mock': 1,\n", " 'mock-funeral': 1,\n", " 'mode': 5,\n", " 'models': 1,\n", " 'moderate': 3,\n", " 'modern': 2,\n", " 'modest': 2,\n", " 'modestly': 4,\n", " 'modesty': 1,\n", " 'modicum': 2,\n", " 'modification': 1,\n", " 'modified': 1,\n", " 'moist': 1,\n", " 'moister': 1,\n", " 'moisture': 2,\n", " \"mole's\": 1,\n", " 'molten': 1,\n", " 'moment': 73,\n", " \"moment's\": 4,\n", " 'moment--half': 1,\n", " 'momentarily': 1,\n", " 'momentary': 4,\n", " 'moments': 13,\n", " 'monarchs': 1,\n", " 'monday': 2,\n", " 'money': 25,\n", " 'moneys': 1,\n", " 'monkeys': 1,\n", " 'monks': 1,\n", " 'monotonously': 2,\n", " 'monseigneur': 101,\n", " \"monseigneur's\": 5,\n", " 'monseigneur--forming': 1,\n", " 'monsieur': 116,\n", " \"monsieur's\": 1,\n", " 'monster': 1,\n", " 'monsters': 1,\n", " 'monstrous': 3,\n", " 'monstrously': 1,\n", " 'month': 7,\n", " 'months': 7,\n", " 'mood': 1,\n", " 'moody': 2,\n", " 'moon': 11,\n", " 'moonlight': 6,\n", " 'moral': 6,\n", " 'morality--was': 1,\n", " 'morally': 1,\n", " 'more': 261,\n", " 'more!\"--mr': 1,\n", " 'more--more': 1,\n", " 'more-over': 1,\n", " 'moreover': 5,\n", " 'morn': 1,\n", " 'morning': 53,\n", " \"morning's\": 2,\n", " 'morose': 1,\n", " 'moroseness': 1,\n", " 'morsel': 2,\n", " 'morsels': 1,\n", " 'mortal': 1,\n", " 'mortality': 1,\n", " 'mortally': 2,\n", " 'mortals': 1,\n", " 'mortar': 1,\n", " 'mortgage': 1,\n", " 'moss': 2,\n", " 'most': 73,\n", " 'mostly': 4,\n", " 'mote': 1,\n", " 'mother': 42,\n", " \"mother's\": 12,\n", " 'mother--there': 1,\n", " 'mothers': 3,\n", " 'motion': 4,\n", " 'motioned': 2,\n", " 'motioning': 1,\n", " 'motionless': 2,\n", " 'motive': 1,\n", " 'motives': 3,\n", " 'mount': 3,\n", " 'mounted': 4,\n", " 'mounting': 1,\n", " 'mourn': 2,\n", " 'mourned': 1,\n", " 'mourner': 2,\n", " 'mournful': 2,\n", " 'mournfully': 2,\n", " 'mourning': 6,\n", " 'mouse--and': 1,\n", " 'moustaches': 1,\n", " 'mouth': 21,\n", " 'mouthful': 1,\n", " 'mouths': 5,\n", " 'movable': 1,\n", " 'move': 6,\n", " 'moved': 41,\n", " 'movement': 7,\n", " 'moves': 3,\n", " 'moving': 11,\n", " 'mr': 620,\n", " 'mrs': 18,\n", " 'much': 181,\n", " 'much--and': 1,\n", " 'much--i': 1,\n", " 'mud': 16,\n", " 'mud-embankments': 1,\n", " 'muddy': 3,\n", " 'muffled': 4,\n", " 'muffler': 3,\n", " 'mugs': 1,\n", " 'multitude': 6,\n", " 'multitudes': 1,\n", " 'munching': 1,\n", " 'munificent': 1,\n", " 'murder': 6,\n", " 'murder--for': 1,\n", " 'murdered': 2,\n", " 'murderer': 2,\n", " 'murdering': 1,\n", " 'murderous': 3,\n", " 'murky': 1,\n", " 'murmur': 6,\n", " 'murmur--like': 1,\n", " 'murmured': 6,\n", " 'murmuring': 3,\n", " 'muscle': 1,\n", " 'mused': 5,\n", " 'music': 6,\n", " 'musical': 2,\n", " 'musing': 2,\n", " 'musingly': 1,\n", " 'musket': 2,\n", " 'musketeers': 3,\n", " 'muskets': 8,\n", " 'must': 111,\n", " 'mustard-pot': 1,\n", " 'musty': 2,\n", " 'mutilated': 1,\n", " 'mutilation': 1,\n", " 'mutinous': 1,\n", " 'mutter': 2,\n", " 'muttered': 9,\n", " 'mutton': 2,\n", " 'mutual': 1,\n", " 'my': 653,\n", " 'myriads': 1,\n", " 'myself': 57,\n", " 'myself--_my_self': 1,\n", " 'myself--and': 1,\n", " 'myself--timorous': 1,\n", " 'mysteries': 4,\n", " 'mysterious': 6,\n", " 'mystery': 8,\n", " 'nailed': 1,\n", " 'nails': 2,\n", " 'naked': 3,\n", " 'nakedness': 2,\n", " 'name': 101,\n", " 'name--\"making': 1,\n", " 'name--and': 1,\n", " 'name--jacques': 1,\n", " 'name--to': 1,\n", " 'named': 2,\n", " 'names': 6,\n", " 'namesake': 2,\n", " 'naming': 1,\n", " 'napkin': 2,\n", " 'narcotic': 1,\n", " 'narrative': 3,\n", " 'narrator': 1,\n", " 'narrow': 11,\n", " 'narrowing': 1,\n", " \"nat'ral\": 1,\n", " 'nation': 4,\n", " 'national': 14,\n", " 'native': 6,\n", " 'natives': 1,\n", " 'natural': 21,\n", " 'natural--asked': 1,\n", " 'naturally': 14,\n", " 'nature': 26,\n", " \"nature's\": 1,\n", " 'naught': 1,\n", " 'naval': 1,\n", " 'near': 44,\n", " 'nearer': 16,\n", " 'nearest': 10,\n", " 'nearly': 11,\n", " 'neat': 4,\n", " 'necessarily': 2,\n", " 'necessary': 16,\n", " 'necessitated': 1,\n", " 'necessity': 7,\n", " 'neck': 13,\n", " 'necks': 2,\n", " 'need': 15,\n", " 'needed': 4,\n", " 'needful': 1,\n", " 'needing': 1,\n", " 'needless': 1,\n", " 'needless--to': 1,\n", " 'needs': 2,\n", " 'needy': 1,\n", " 'negative': 1,\n", " 'neglect': 1,\n", " 'neglected': 4,\n", " 'neglects': 1,\n", " 'negligence': 2,\n", " 'negligent': 2,\n", " 'negligently': 1,\n", " 'negro': 2,\n", " 'neighbour': 3,\n", " 'neighbourhood': 6,\n", " 'neighbouring': 7,\n", " 'neighbours': 1,\n", " 'neither': 18,\n", " 'nephew': 25,\n", " 'nerve': 1,\n", " 'nerves': 2,\n", " 'nervous': 2,\n", " 'nervously': 3,\n", " 'nervousness': 1,\n", " 'nest': 1,\n", " 'nestled': 1,\n", " 'net': 2,\n", " 'nettled': 1,\n", " 'network': 2,\n", " 'neutral': 1,\n", " 'never': 192,\n", " 'nevertheless': 10,\n", " 'new': 52,\n", " 'new-comer': 3,\n", " 'newby': 1,\n", " 'newgate': 3,\n", " 'newly': 4,\n", " 'newly-born': 2,\n", " 'newly-lighted': 1,\n", " 'newly-married': 1,\n", " 'news': 6,\n", " 'news-exchange': 1,\n", " 'newsletter': 1,\n", " 'next': 36,\n", " 'nice': 4,\n", " 'nicely': 1,\n", " 'nicety': 1,\n", " \"nick's\": 1,\n", " 'nigh': 2,\n", " 'night': 180,\n", " \"night's\": 1,\n", " 'night--and': 1,\n", " 'night--in': 1,\n", " 'night--it': 1,\n", " 'night-air': 1,\n", " 'night-enshrouded': 1,\n", " 'night.--what': 1,\n", " 'nightcap': 3,\n", " 'nightcaps': 4,\n", " 'nightfall': 1,\n", " 'nightly': 1,\n", " 'nightmare': 1,\n", " 'nights': 11,\n", " 'nimble': 3,\n", " 'nimbly': 3,\n", " 'nine': 15,\n", " 'ninepence': 1,\n", " 'ninety-two': 2,\n", " 'ninth': 1,\n", " 'no': 547,\n", " 'no!--i': 1,\n", " 'noakes': 1,\n", " 'nobility': 4,\n", " 'noble': 13,\n", " 'nobleman': 2,\n", " 'nobles': 7,\n", " 'nobody': 15,\n", " 'nod': 2,\n", " 'nodded': 7,\n", " 'nodding': 5,\n", " 'noise': 17,\n", " 'noises': 2,\n", " 'noisiest': 1,\n", " 'noisily': 1,\n", " 'noisome': 1,\n", " 'non': 1,\n", " 'non-descript': 1,\n", " 'none': 28,\n", " 'none--and': 1,\n", " 'nonproprietary': 1,\n", " 'nonsense': 6,\n", " 'nonsensical': 1,\n", " 'nook': 1,\n", " 'noon': 3,\n", " 'noontide': 2,\n", " 'nor': 35,\n", " 'north': 19,\n", " 'northward': 1,\n", " 'norway': 1,\n", " 'nose': 16,\n", " 'nostril': 1,\n", " 'nostrils': 1,\n", " 'not': 860,\n", " 'not\"--the': 1,\n", " 'not--for': 1,\n", " 'not--forgive': 1,\n", " 'not--mind': 1,\n", " 'not--not': 1,\n", " 'not--thou': 1,\n", " 'not--whose': 1,\n", " 'notabilities': 1,\n", " 'notable': 1,\n", " 'note': 11,\n", " 'note--little': 1,\n", " 'noted': 2,\n", " 'notes': 4,\n", " 'nothing': 149,\n", " 'nothing--since': 1,\n", " 'notice': 21,\n", " 'noticeable': 1,\n", " 'noticed': 7,\n", " 'noticing': 2,\n", " 'notifies': 1,\n", " 'notifying': 1,\n", " 'notion': 2,\n", " 'notoriety': 1,\n", " 'notorious': 1,\n", " 'notre': 2,\n", " 'notre-dame': 1,\n", " 'notwithstanding': 2,\n", " 'noun-substantive': 1,\n", " 'nourishment': 1,\n", " 'novelty': 1,\n", " 'november': 5,\n", " 'now': 256,\n", " 'now--his': 1,\n", " 'now--that': 1,\n", " 'now--though': 1,\n", " 'nowhere': 2,\n", " 'nowise': 1,\n", " 'number': 25,\n", " 'number--so': 1,\n", " 'numbers': 4,\n", " 'numerous': 6,\n", " 'numskulls': 1,\n", " 'nurse': 1,\n", " 'nursed': 1,\n", " 'nurtured': 1,\n", " 'o': 36,\n", " \"o'clock\": 20,\n", " 'oath': 2,\n", " 'obedient': 2,\n", " 'obey': 4,\n", " 'obeyed': 5,\n", " 'obeying': 2,\n", " 'object': 18,\n", " 'objection': 3,\n", " 'objectionable': 3,\n", " 'objects': 10,\n", " 'obligation': 4,\n", " 'obligation--kept': 1,\n", " 'obliged': 6,\n", " 'obliging': 1,\n", " 'obliterated': 2,\n", " 'obliterating': 1,\n", " 'oblivion': 3,\n", " 'oblivious': 1,\n", " 'obnoxious': 1,\n", " 'obscure': 3,\n", " 'obscured': 2,\n", " 'obscurity': 7,\n", " 'obsequiousness': 1,\n", " 'observable': 3,\n", " 'observant': 4,\n", " 'observantly': 1,\n", " 'observation': 5,\n", " 'observations': 1,\n", " 'observatory': 1,\n", " 'observe': 8,\n", " 'observed': 41,\n", " 'observers': 1,\n", " 'observing': 5,\n", " 'obsolete': 1,\n", " 'obstacle': 1,\n", " 'obstacles': 1,\n", " 'obstinacy': 1,\n", " 'obstinate': 1,\n", " 'obstinately': 1,\n", " 'obtain': 5,\n", " 'obtained': 7,\n", " 'obtaining': 2,\n", " 'obtains': 1,\n", " 'obtruded': 1,\n", " 'obvious': 1,\n", " 'obviously': 1,\n", " 'occasion': 22,\n", " 'occasional': 4,\n", " 'occasionally': 9,\n", " 'occasioned': 2,\n", " 'occasions': 4,\n", " 'occupant': 2,\n", " 'occupants': 1,\n", " 'occupation': 9,\n", " 'occupations': 3,\n", " 'occupied': 15,\n", " 'occupy': 2,\n", " 'occur': 1,\n", " 'occurred': 3,\n", " 'occurrence': 1,\n", " 'occurrences': 1,\n", " 'ocean': 6,\n", " 'odd': 7,\n", " 'odd-job-man': 2,\n", " \"odd-job-man's\": 1,\n", " 'oddest': 1,\n", " 'oddly': 1,\n", " 'odds': 1,\n", " 'odour': 1,\n", " 'odours': 1,\n", " 'of': 4119,\n", " 'of--\"live': 1,\n", " 'off': 97,\n", " 'offal': 2,\n", " 'offence': 5,\n", " 'offences': 1,\n", " \"offender's\": 1,\n", " 'offensive': 3,\n", " 'offer': 11,\n", " 'offered': 5,\n", " 'offering': 1,\n", " 'offers': 1,\n", " 'office': 7,\n", " 'officer': 7,\n", " 'officers': 7,\n", " 'offices': 1,\n", " 'official': 7,\n", " 'officials': 1,\n", " 'officiate': 1,\n", " 'officiating': 1,\n", " 'offspring': 1,\n", " 'often': 42,\n", " 'oftener': 1,\n", " 'oftentimes': 1,\n", " 'ogled': 1,\n", " 'ogre': 1,\n", " 'ogreish': 1,\n", " 'oh': 26,\n", " 'oil': 3,\n", " 'oil-lamps': 1,\n", " 'oiled': 2,\n", " 'old': 186,\n", " 'old-fashioned': 4,\n", " 'older': 3,\n", " 'oldest': 5,\n", " 'olfactory': 1,\n", " 'olive-grounds': 1,\n", " 'ominous': 3,\n", " 'ominously': 1,\n", " 'omitted': 1,\n", " 'on': 932,\n", " 'on--and': 1,\n", " 'once': 78,\n", " 'once-peaceful': 1,\n", " 'one': 437,\n", " \"one's\": 3,\n", " 'one--the': 1,\n", " 'ones': 1,\n", " 'onions': 1,\n", " 'oniony': 1,\n", " 'online': 3,\n", " 'only': 121,\n", " 'onward': 1,\n", " 'open': 48,\n", " 'opened': 49,\n", " 'opener': 1,\n", " 'opening': 8,\n", " 'openly': 4,\n", " 'openness': 2,\n", " 'opera': 3,\n", " 'operations': 2,\n", " 'opiate': 1,\n", " 'opinion': 17,\n", " 'opinions': 1,\n", " 'opportunities': 1,\n", " 'opportunity': 17,\n", " 'oppose': 2,\n", " 'opposed': 3,\n", " 'opposing': 1,\n", " 'opposite': 10,\n", " 'opposition': 3,\n", " 'oppressed': 6,\n", " 'oppresses': 1,\n", " 'oppression': 5,\n", " 'oppressions': 1,\n", " 'oppressive': 2,\n", " 'oppressor': 2,\n", " 'oppressors': 2,\n", " 'or': 434,\n", " 'orange-trees': 1,\n", " 'orator': 1,\n", " 'orbits': 1,\n", " 'order': 17,\n", " 'ordered': 8,\n", " 'orderly': 2,\n", " 'orders': 5,\n", " 'ordinance': 1,\n", " 'ordinary': 2,\n", " 'organisation': 1,\n", " 'organized': 1,\n", " 'orgies': 1,\n", " 'original': 4,\n", " 'originality': 1,\n", " 'originally': 3,\n", " 'originate': 2,\n", " 'originated': 3,\n", " 'originated--that': 1,\n", " 'originating': 1,\n", " 'originator': 2,\n", " 'orleans': 1,\n", " 'ornament': 2,\n", " 'ornamented': 1,\n", " 'orphan': 5,\n", " 'orthodoxy': 1,\n", " 'ostensible': 1,\n", " 'ostentatious': 2,\n", " 'ostentatiously': 1,\n", " 'ostrich': 1,\n", " 'other': 193,\n", " \"other's\": 3,\n", " 'others': 33,\n", " 'others--if': 1,\n", " 'otherwise': 26,\n", " 'ought': 15,\n", " 'our': 105,\n", " 'ours': 1,\n", " 'ours--and': 1,\n", " 'ourselves': 5,\n", " 'out': 445,\n", " 'out--she': 1,\n", " 'outdated': 1,\n", " 'outdone': 1,\n", " 'outer': 10,\n", " 'outermost': 3,\n", " 'outhouses': 1,\n", " 'outlandish': 1,\n", " 'outlive': 1,\n", " 'outnumbering': 1,\n", " 'outrage': 1,\n", " 'outrageous': 1,\n", " 'outside': 24,\n", " 'outskirts': 1,\n", " 'outspoken': 1,\n", " 'outstrip': 1,\n", " 'outward': 5,\n", " 'outwardly': 1,\n", " 'outwards': 1,\n", " 'outweigh': 1,\n", " 'over': 172,\n", " 'over--like': 1,\n", " 'over--say': 1,\n", " 'over-hanging': 1,\n", " 'over-swinging': 3,\n", " 'overbearing': 1,\n", " 'overborne': 1,\n", " 'overcast': 2,\n", " 'overclouded': 2,\n", " 'overcoming': 1,\n", " 'overflowed': 3,\n", " 'overflowing': 3,\n", " 'overfraught': 1,\n", " 'overhanging': 1,\n", " 'overhead': 3,\n", " 'overheard': 2,\n", " 'overladen': 1,\n", " 'overlay': 1,\n", " 'overloading': 1,\n", " 'overlooked': 2,\n", " 'overlooking': 1,\n", " 'overpowered': 2,\n", " 'overset': 1,\n", " 'overshadowed': 3,\n", " 'overspread': 1,\n", " 'overstay': 1,\n", " 'overstepping': 1,\n", " 'overtake': 1,\n", " 'overtaken': 1,\n", " 'overtaking': 2,\n", " 'overthrown': 2,\n", " 'overwhelm': 2,\n", " 'overworked': 2,\n", " 'owed': 1,\n", " 'owl': 3,\n", " \"owl's\": 1,\n", " 'own': 159,\n", " 'own--it': 1,\n", " 'owned': 1,\n", " 'owner': 11,\n", " 'owners': 1,\n", " 'owns': 2,\n", " 'ox': 1,\n", " 'oxford-road': 1,\n", " 'oyster': 1,\n", " 'pace': 4,\n", " 'paced': 3,\n", " 'paces': 4,\n", " 'pacifically': 1,\n", " 'pacing': 4,\n", " 'packet': 4,\n", " 'packet-ship': 2,\n", " 'packets': 2,\n", " 'packing': 1,\n", " 'pagan': 1,\n", " 'page': 3,\n", " 'pages': 2,\n", " 'paid': 23,\n", " 'pain': 13,\n", " 'painful': 6,\n", " 'painfully': 1,\n", " 'pains': 4,\n", " 'painted': 1,\n", " 'painter': 1,\n", " 'pair': 8,\n", " 'pairs': 1,\n", " 'palace': 6,\n", " 'pale': 10,\n", " 'pale--which': 1,\n", " 'paleness': 3,\n", " 'paler': 1,\n", " 'palest': 1,\n", " 'pallet': 1,\n", " 'pallet-bed': 2,\n", " 'palpable': 1,\n", " 'paltering': 1,\n", " 'pamphlets': 1,\n", " 'pancras': 1,\n", " 'pancras-in-the-fields': 1,\n", " 'pane': 2,\n", " 'panted': 1,\n", " 'panting': 4,\n", " 'papa': 2,\n", " 'paper': 48,\n", " 'paper-bestrewn': 1,\n", " 'paper-buildings': 1,\n", " 'papers': 26,\n", " 'paperwork': 1,\n", " 'par': 1,\n", " 'parade': 1,\n", " 'paragraph': 11,\n", " 'paragraphs': 3,\n", " 'parallels': 1,\n", " 'parapet': 1,\n", " 'parcelled': 1,\n", " 'parcels': 1,\n", " 'parchment-yellow': 1,\n", " 'parchments': 1,\n", " 'pardon': 8,\n", " 'parent': 8,\n", " 'parents': 1,\n", " 'paris': 62,\n", " 'paris--in': 1,\n", " 'parish': 3,\n", " 'parley--this': 1,\n", " 'parricide': 1,\n", " 'part': 45,\n", " 'parted': 6,\n", " 'partial': 1,\n", " 'partially': 1,\n", " 'participate': 1,\n", " 'particle': 1,\n", " 'particles': 1,\n", " 'particular': 22,\n", " 'particularly': 12,\n", " 'particulars': 2,\n", " 'parties': 2,\n", " 'parting': 9,\n", " 'partly': 5,\n", " 'partner': 2,\n", " 'partners': 3,\n", " 'parts': 3,\n", " 'party': 4,\n", " 'pass': 31,\n", " 'passage': 8,\n", " 'passages': 12,\n", " 'passed': 67,\n", " 'passenger': 23,\n", " 'passenger--with': 1,\n", " 'passengers': 19,\n", " 'passerby': 1,\n", " 'passers': 1,\n", " 'passers-by': 1,\n", " 'passersby': 1,\n", " 'passes': 1,\n", " 'passing': 24,\n", " 'passion': 1,\n", " 'passionate': 5,\n", " 'passionately': 3,\n", " 'passions': 2,\n", " 'passive': 1,\n", " 'past': 26,\n", " 'pastime': 2,\n", " 'pastors': 1,\n", " 'pasture': 1,\n", " 'pasturing': 1,\n", " 'patch': 1,\n", " 'patched': 1,\n", " 'patches': 5,\n", " 'patchwork': 1,\n", " 'path': 1,\n", " 'pathetic': 1,\n", " 'patience': 2,\n", " 'patient': 13,\n", " \"patient's\": 1,\n", " 'patiently': 1,\n", " 'patients': 4,\n", " 'patrician': 1,\n", " 'patriot': 13,\n", " 'patriotic': 5,\n", " 'patriotism': 3,\n", " 'patriots': 18,\n", " 'patrols': 1,\n", " 'patron': 2,\n", " 'patronage': 3,\n", " 'pattern': 4,\n", " 'patting': 1,\n", " \"paul's\": 1,\n", " 'paunch': 1,\n", " 'paupers': 1,\n", " 'pause': 18,\n", " 'paused': 8,\n", " 'paused--\"i': 1,\n", " 'pauses': 3,\n", " 'pausing': 7,\n", " 'pavement': 8,\n", " 'pavements': 3,\n", " 'paving': 1,\n", " 'paving-stones': 1,\n", " 'pawing': 1,\n", " 'pay': 14,\n", " 'paying': 3,\n", " 'payment': 1,\n", " 'payments': 3,\n", " 'peace': 11,\n", " 'peaceful': 3,\n", " 'peacefullest': 1,\n", " 'peaches': 1,\n", " 'peal': 1,\n", " 'peas': 1,\n", " 'peasant': 7,\n", " \"peasant's\": 1,\n", " 'peasants': 5,\n", " 'peck': 1,\n", " 'peculiar': 7,\n", " 'peculiarity': 4,\n", " 'pecuniary': 1,\n", " 'peep': 3,\n", " 'peeped': 4,\n", " 'peeping': 4,\n", " 'peered': 1,\n", " 'peering': 2,\n", " 'peevish': 1,\n", " 'pen': 6,\n", " 'penalty': 1,\n", " 'pencil': 1,\n", " 'pendent': 2,\n", " 'pendulum': 1,\n", " 'penetrate': 2,\n", " 'penetrated': 1,\n", " 'penitential': 1,\n", " 'pensive': 1,\n", " 'people': 137,\n", " \"people's\": 4,\n", " 'people--he': 1,\n", " 'peopled': 1,\n", " 'peppercorn': 1,\n", " 'perceive': 6,\n", " 'perceived': 4,\n", " 'perceptible': 1,\n", " 'perceptibly': 1,\n", " 'perception': 4,\n", " 'perch': 1,\n", " 'perched': 1,\n", " 'perches--when': 1,\n", " 'peremptory': 1,\n", " 'perfect': 9,\n", " 'perfection': 1,\n", " 'perfectly': 12,\n", " 'perforce': 1,\n", " 'perform': 2,\n", " 'performance': 1,\n", " 'performances': 1,\n", " 'performed': 2,\n", " 'performing': 4,\n", " 'perhaps': 42,\n", " 'peril': 7,\n", " 'perils': 1,\n", " 'period': 5,\n", " 'periodic': 1,\n", " 'periodical': 1,\n", " 'periods': 1,\n", " 'perish': 3,\n", " 'perished': 3,\n", " 'perishing': 1,\n", " 'permanent': 2,\n", " 'permission': 13,\n", " 'permitted': 6,\n", " 'pernicious': 1,\n", " 'peroration': 1,\n", " 'perpendicular': 3,\n", " 'perpetually': 1,\n", " 'perpetuate': 1,\n", " 'perpetuating': 1,\n", " 'perpetuation': 1,\n", " 'perplexed': 3,\n", " 'perplexedly': 1,\n", " 'perplexity': 3,\n", " 'perplexity--as': 1,\n", " 'perquisitions': 1,\n", " 'perseverance': 2,\n", " 'persevering': 1,\n", " 'perseveringly': 1,\n", " 'persisted': 4,\n", " 'persistent': 2,\n", " 'person': 31,\n", " 'personage': 2,\n", " 'personages': 1,\n", " 'personal': 12,\n", " 'personality': 1,\n", " 'persons': 8,\n", " 'perspective': 1,\n", " 'perspective-glass': 1,\n", " 'perspiration': 1,\n", " 'persuade': 3,\n", " 'persuaded': 1,\n", " 'persuasion': 2,\n", " 'perturbation': 1,\n", " 'pervaded': 2,\n", " 'perverted': 3,\n", " 'pestilence': 1,\n", " 'pestilent': 1,\n", " 'pet': 2,\n", " 'petition': 6,\n", " 'petitioner': 1,\n", " 'petitions': 4,\n", " 'petrified': 2,\n", " 'petrify': 1,\n", " 'petulantly': 1,\n", " 'pg': 1,\n", " 'pglaf': 1,\n", " 'phantom': 1,\n", " 'phenomenon': 2,\n", " 'philosopher': 2,\n", " 'philosophers': 1,\n", " 'philosophy': 4,\n", " 'phrase': 5,\n", " 'phrases': 1,\n", " 'physical': 4,\n", " 'physically': 1,\n", " 'physician': 10,\n", " 'pick': 8,\n", " 'picked': 4,\n", " 'picking': 6,\n", " 'pickle': 2,\n", " 'picnic': 1,\n", " 'picture': 8,\n", " 'pictured': 4,\n", " 'pictures': 2,\n", " 'picturesque': 3,\n", " 'piece': 9,\n", " 'pieces': 18,\n", " 'pieces--die--come': 1,\n", " 'pieman': 1,\n", " 'pier-glass': 1,\n", " 'pierced': 1,\n", " 'piercing': 3,\n", " 'pies': 1,\n", " 'piety': 1,\n", " 'pig': 1,\n", " 'pig-like': 1,\n", " 'pigmy': 1,\n", " 'pigs': 1,\n", " 'pike': 4,\n", " 'pikes': 4,\n", " 'pile': 5,\n", " 'pilferer': 1,\n", " 'pilgrimages': 1,\n", " 'pill': 1,\n", " 'pillaged': 1,\n", " 'pillar': 1,\n", " 'pillars': 2,\n", " 'pillory': 2,\n", " 'pillow': 7,\n", " 'pillows': 4,\n", " 'pilotage': 1,\n", " 'pin': 1,\n", " 'pincers': 1,\n", " 'pinch': 3,\n", " 'pinched': 1,\n", " 'pined': 1,\n", " 'pinioned': 1,\n", " 'pint': 2,\n", " 'pipe': 14,\n", " 'pipe-smoking': 1,\n", " 'pipes': 4,\n", " 'piscatory': 1,\n", " 'pistol': 2,\n", " 'pistols': 2,\n", " 'pitch': 1,\n", " 'pith': 1,\n", " 'pitiable': 2,\n", " 'pitied': 2,\n", " 'pitt': 1,\n", " 'pitted': 2,\n", " 'pity': 22,\n", " 'pity--that': 1,\n", " 'pity--yes': 1,\n", " 'pitying': 2,\n", " 'place': 108,\n", " 'place--then': 1,\n", " 'placed': 5,\n", " 'places': 14,\n", " 'placid': 1,\n", " 'placidity': 1,\n", " 'placing': 2,\n", " 'plain': 16,\n", " 'plain--can': 1,\n", " 'plainer': 1,\n", " 'plainly': 1,\n", " 'plains': 1,\n", " 'plaintiff': 1,\n", " 'plaintive': 1,\n", " 'plaiting': 1,\n", " 'plan': 2,\n", " 'plane-tree': 14,\n", " 'plane-tree--and': 1,\n", " 'planned': 1,\n", " 'plans': 1,\n", " 'plant': 1,\n", " 'plastered': 1,\n", " 'plate': 3,\n", " 'plated': 1,\n", " 'platform': 1,\n", " 'play': 17,\n", " 'played': 5,\n", " 'players': 2,\n", " 'playfully': 1,\n", " 'playfulness': 1,\n", " 'playing': 4,\n", " 'plaything': 1,\n", " 'plea': 2,\n", " 'pleaded': 4,\n", " 'pleading': 1,\n", " 'pleasant': 16,\n", " 'pleasantly': 3,\n", " 'please': 17,\n", " 'pleased': 6,\n", " 'pleasure': 12,\n", " 'pleasures': 2,\n", " 'pledge': 2,\n", " 'pledged': 1,\n", " 'plentiful': 1,\n", " 'plenty': 3,\n", " 'plied': 1,\n", " 'plight': 1,\n", " 'plodding': 2,\n", " 'plot': 3,\n", " 'plots': 4,\n", " 'plotting': 3,\n", " 'plough': 3,\n", " 'ploughed': 3,\n", " 'ploughs': 1,\n", " 'pluck': 2,\n", " 'plump': 3,\n", " 'plunder': 3,\n", " 'plunder-wrecked': 1,\n", " 'plundered': 1,\n", " 'plunderers': 1,\n", " 'plundering': 1,\n", " 'plunge': 1,\n", " 'plunged': 2,\n", " 'plunges': 1,\n", " 'plunging': 1,\n", " 'pocket': 7,\n", " 'pocket-book': 2,\n", " 'pocket-handkerchief': 1,\n", " 'pockets': 11,\n", " 'poet': 2,\n", " 'poetical': 1,\n", " 'poets': 1,\n", " 'point': 26,\n", " 'pointed': 12,\n", " 'pointedly': 1,\n", " 'pointing': 15,\n", " 'points': 6,\n", " 'poison': 1,\n", " 'poisoned': 1,\n", " 'poisoning': 2,\n", " 'poisons': 1,\n", " 'poles': 1,\n", " 'police': 4,\n", " 'polish': 1,\n", " 'polished': 2,\n", " 'polite': 6,\n", " 'politely': 1,\n", " 'politeness': 2,\n", " 'politenesses': 1,\n", " 'politic': 1,\n", " 'political': 1,\n", " 'politics': 1,\n", " 'polluted': 2,\n", " 'poltroon': 1,\n", " 'pondering': 4,\n", " 'poniarded': 1,\n", " 'pont-neuf': 1,\n", " 'pooh': 2,\n", " 'pools': 1,\n", " 'poor': 87,\n", " 'poorer': 2,\n", " 'populace': 10,\n", " 'popular': 7,\n", " 'popularity': 2,\n", " 'popularly': 2,\n", " 'population': 1,\n", " 'pore': 2,\n", " 'poring': 1,\n", " 'porkman': 1,\n", " 'porringer': 1,\n", " 'port': 3,\n", " 'portend': 1,\n", " 'portended': 2,\n", " 'portentously': 1,\n", " 'porter': 4,\n", " 'porterage': 1,\n", " 'porters': 2,\n", " 'portion': 3,\n", " 'portions': 1,\n", " 'portly': 1,\n", " 'portrait': 4,\n", " 'portraits': 1,\n", " 'position': 7,\n", " 'positions': 2,\n", " 'positively': 3,\n", " 'possess': 3,\n", " 'possessed': 4,\n", " 'possesses': 1,\n", " 'possessing': 2,\n", " 'possession': 5,\n", " 'possessions': 2,\n", " 'possessor': 1,\n", " 'possibility': 5,\n", " 'possible': 23,\n", " 'possible--that': 1,\n", " 'possible--you': 1,\n", " 'possibly': 8,\n", " 'post': 8,\n", " 'post-horses': 5,\n", " 'posted': 8,\n", " 'postilion': 1,\n", " 'postilions': 9,\n", " 'posting-house': 7,\n", " 'posting-houses': 1,\n", " 'posting-yard': 1,\n", " 'postmaster': 7,\n", " 'postponed': 1,\n", " 'posture': 1,\n", " 'pot': 1,\n", " 'pot-lid': 1,\n", " 'potato': 1,\n", " 'potent': 2,\n", " 'potentate': 1,\n", " 'poultry': 1,\n", " 'pound': 1,\n", " 'pounding': 1,\n", " 'poured': 12,\n", " 'pouring': 7,\n", " 'poverty': 7,\n", " 'poverty-stricken': 1,\n", " 'powder': 3,\n", " 'powdered': 2,\n", " 'powdering': 1,\n", " 'power': 26,\n", " 'powerful': 5,\n", " 'powerfully': 2,\n", " 'powerless': 1,\n", " 'powers': 4,\n", " 'practicable': 1,\n", " 'practical': 3,\n", " 'practically': 1,\n", " 'practice': 3,\n", " 'practice--\"which': 1,\n", " 'practices': 1,\n", " 'practise': 1,\n", " 'practised': 4,\n", " 'prattling': 1,\n", " 'pray': 21,\n", " 'prayed': 4,\n", " 'prayer': 6,\n", " 'prayers': 8,\n", " 'praying': 9,\n", " 'preach': 1,\n", " 'precaution': 7,\n", " 'precautions': 2,\n", " 'preceded': 2,\n", " 'preceding': 2,\n", " 'precept': 1,\n", " 'precious': 14,\n", " 'precipitate': 1,\n", " 'precipitated': 1,\n", " 'precipitating': 1,\n", " 'precipitation': 1,\n", " 'precise': 1,\n", " 'precisely': 3,\n", " 'precision': 1,\n", " 'precocious': 1,\n", " 'predicated': 1,\n", " 'prediction': 1,\n", " 'predominate': 1,\n", " 'predominating': 1,\n", " 'preface': 1,\n", " 'prefer': 4,\n", " 'prefer--work': 1,\n", " 'preferred': 1,\n", " 'prejudged': 1,\n", " 'preliminaries': 1,\n", " 'prematurely': 2,\n", " 'preoccupied': 2,\n", " 'preparation': 9,\n", " 'preparations': 3,\n", " 'prepare': 9,\n", " 'prepared': 6,\n", " 'preparing': 2,\n", " 'preparings': 1,\n", " 'prescribed': 1,\n", " 'presence': 13,\n", " 'presence--nobles': 1,\n", " 'present': 41,\n", " 'presented': 19,\n", " 'presentiment': 1,\n", " 'presenting': 3,\n", " 'presently': 13,\n", " 'preservation': 2,\n", " 'preserve': 3,\n", " 'preserved': 4,\n", " 'preserves': 1,\n", " 'presided': 3,\n", " 'president': 19,\n", " 'presiding': 2,\n", " 'press': 7,\n", " 'pressed': 11,\n", " 'presses': 1,\n", " 'pressing': 9,\n", " 'pressure': 2,\n", " 'presume': 1,\n", " 'presumed': 1,\n", " 'presumption': 1,\n", " 'pretence': 3,\n", " 'pretend': 2,\n", " 'pretended': 1,\n", " 'pretending': 2,\n", " 'pretty': 33,\n", " 'prevail': 1,\n", " 'prevailing': 2,\n", " 'prevalent': 4,\n", " 'prevaricate': 1,\n", " 'prevent': 8,\n", " 'prevented': 5,\n", " 'prevention--it': 1,\n", " 'previous': 6,\n", " 'previously': 5,\n", " 'prewaricate': 1,\n", " 'prey': 3,\n", " 'price': 6,\n", " 'pricked': 2,\n", " 'pride': 16,\n", " 'priestly': 1,\n", " 'prime': 1,\n", " 'prince': 1,\n", " 'princes': 1,\n", " 'principal': 3,\n", " 'principally': 2,\n", " 'principle': 1,\n", " 'print': 1,\n", " 'printed': 2,\n", " 'prised': 1,\n", " 'prison': 70,\n", " 'prison--seemed': 1,\n", " 'prison-sheep': 1,\n", " 'prison-wall': 1,\n", " 'prison-walls': 1,\n", " 'prison-window': 1,\n", " 'prison?--come': 1,\n", " 'prisoner': 115,\n", " \"prisoner's\": 23,\n", " 'prisoners': 30,\n", " 'prisoners--dates': 1,\n", " 'prisons': 15,\n", " 'private': 11,\n", " 'privately': 2,\n", " 'privilege': 4,\n", " 'privileged': 1,\n", " 'privileges': 2,\n", " 'privy': 1,\n", " 'prize': 2,\n", " 'probable': 8,\n", " 'probably': 15,\n", " 'problem': 2,\n", " 'procedure': 1,\n", " 'proceed': 1,\n", " 'proceeded': 7,\n", " 'proceeding': 1,\n", " 'proceedings': 6,\n", " 'process': 4,\n", " 'processing': 1,\n", " 'procession': 9,\n", " 'processions': 1,\n", " 'procured': 2,\n", " 'prodigious': 1,\n", " 'produce': 5,\n", " 'produced': 11,\n", " 'production': 2,\n", " 'professed': 3,\n", " 'professing': 1,\n", " 'profession': 6,\n", " 'professional': 2,\n", " 'professionally': 1,\n", " 'professions': 1,\n", " 'professor': 2,\n", " 'professors': 1,\n", " 'profit': 3,\n", " 'profitable': 1,\n", " 'profits': 1,\n", " 'profligates': 2,\n", " 'profound': 5,\n", " 'profounder': 1,\n", " 'profoundly': 2,\n", " 'progress': 4,\n", " 'prohibition': 1,\n", " 'project': 84,\n", " 'projected': 1,\n", " 'projectile': 1,\n", " 'projecting': 1,\n", " 'projectors': 1,\n", " 'projects': 1,\n", " 'prolonged': 4,\n", " 'promenading': 1,\n", " 'prominent': 1,\n", " 'prominently': 2,\n", " 'promise': 18,\n", " 'promised': 1,\n", " 'promises': 2,\n", " 'promising': 1,\n", " 'promoting': 2,\n", " 'promotion': 3,\n", " 'promptly': 1,\n", " 'pronoun': 1,\n", " 'pronounced': 2,\n", " 'pronunciation': 1,\n", " 'proof': 5,\n", " 'proofread': 1,\n", " 'proofs': 1,\n", " 'propensities': 1,\n", " 'proper': 4,\n", " 'properties': 1,\n", " 'property': 17,\n", " 'property--somebody': 1,\n", " 'prophetic': 3,\n", " 'propitiate': 1,\n", " 'propitiate--when': 1,\n", " 'proposal': 4,\n", " 'propose': 3,\n", " 'proposed': 7,\n", " 'proposition': 1,\n", " 'proprietary': 1,\n", " 'proscribed': 2,\n", " 'proscription': 1,\n", " 'prosecution': 2,\n", " 'prosecutor': 5,\n", " 'prospect': 2,\n", " 'prospect--life': 1,\n", " 'prospects': 1,\n", " 'prosper': 4,\n", " 'prospered': 3,\n", " 'prospering': 1,\n", " 'prosperity': 2,\n", " 'prosperous': 8,\n", " 'pross': 149,\n", " \"pross's\": 12,\n", " 'pross--to': 1,\n", " 'prostrated': 1,\n", " 'protect': 3,\n", " 'protected': 2,\n", " 'protection': 4,\n", " 'protector': 1,\n", " 'protest': 6,\n", " 'protestations': 1,\n", " 'protested': 4,\n", " 'protesting': 1,\n", " 'protracted': 1,\n", " 'prot\\xc3\\xa9g\\xc3\\xa9s': 1,\n", " 'proud': 10,\n", " 'prove': 3,\n", " 'proved': 3,\n", " 'provender': 1,\n", " 'provide': 9,\n", " 'provided': 6,\n", " 'providence': 2,\n", " 'provident': 1,\n", " 'providing': 6,\n", " 'province': 1,\n", " 'provinces': 2,\n", " 'provincial': 2,\n", " 'provision': 1,\n", " 'provisions': 1,\n", " 'proviso': 1,\n", " 'provocation': 1,\n", " 'prowl': 1,\n", " 'proxy': 1,\n", " 'public': 41,\n", " 'public-house': 1,\n", " 'public-houses': 1,\n", " 'publicly': 3,\n", " 'puddles': 1,\n", " 'puff': 1,\n", " 'pull': 8,\n", " 'pulled': 9,\n", " 'pulley': 1,\n", " 'pulleys': 1,\n", " 'pulpit--\"and': 1,\n", " 'pulsation': 2,\n", " 'pulse': 2,\n", " 'pulses': 1,\n", " 'pumped': 1,\n", " 'pumps': 1,\n", " 'punch': 13,\n", " 'punishment': 2,\n", " 'punitive': 1,\n", " 'pupil': 1,\n", " 'pupils': 1,\n", " 'purchase': 3,\n", " 'purchased': 2,\n", " 'purchases': 2,\n", " 'pure': 4,\n", " 'purely': 1,\n", " 'purified': 1,\n", " 'purity': 1,\n", " 'purloiner': 1,\n", " 'purple': 1,\n", " 'purported': 1,\n", " 'purpose': 25,\n", " 'purpose--and': 1,\n", " 'purposeless': 4,\n", " 'purposely': 1,\n", " 'purposes': 1,\n", " 'purse': 1,\n", " 'purses': 1,\n", " 'pursuance': 1,\n", " 'pursue': 1,\n", " 'pursued': 24,\n", " 'pursuer': 2,\n", " 'pursuing': 4,\n", " 'pursuit': 5,\n", " 'pursuits': 1,\n", " 'purveyors': 1,\n", " 'pushed': 4,\n", " 'pushing': 3,\n", " 'put': 111,\n", " 'putting': 14,\n", " 'puzzling': 1,\n", " 'quaint': 1,\n", " 'quainter': 1,\n", " 'qualified': 1,\n", " 'qualities': 1,\n", " 'quality': 5,\n", " 'qualms': 1,\n", " 'quantities': 1,\n", " 'quantity': 8,\n", " 'quarrel': 2,\n", " 'quarter': 15,\n", " 'quarter--a': 1,\n", " 'quartered': 1,\n", " 'quartering': 2,\n", " 'quarters': 4,\n", " 'quash': 1,\n", " 'quavering': 1,\n", " 'quay': 1,\n", " 'queen': 11,\n", " 'queer': 1,\n", " 'quench': 1,\n", " 'quest': 3,\n", " 'question': 51,\n", " 'questionable': 3,\n", " 'questioned': 3,\n", " 'questioner': 4,\n", " 'questions': 10,\n", " 'quick': 22,\n", " 'quickened': 3,\n", " 'quickening': 1,\n", " 'quicker': 1,\n", " 'quickest': 2,\n", " 'quickly': 15,\n", " 'quickness': 3,\n", " 'quiet': 40,\n", " 'quieted': 1,\n", " 'quieter': 1,\n", " 'quieting': 1,\n", " 'quietly': 11,\n", " 'quit': 1,\n", " 'quite': 64,\n", " 'quitted': 2,\n", " 'quivered': 3,\n", " 'quoth': 1,\n", " 'rabbit': 2,\n", " 'rabble': 1,\n", " 'race': 15,\n", " 'rack': 1,\n", " 'racks': 1,\n", " 'radiance': 2,\n", " 'radiant': 3,\n", " 'rag': 3,\n", " 'rage': 3,\n", " 'ragged': 7,\n", " 'raggedest': 1,\n", " 'raggedly': 2,\n", " 'raging': 11,\n", " 'rags': 9,\n", " 'railing': 2,\n", " 'railings': 1,\n", " 'rain': 15,\n", " 'rain-drops': 2,\n", " 'rains': 3,\n", " 'rainy': 1,\n", " 'raise': 8,\n", " 'raised': 30,\n", " 'raising': 12,\n", " 'raked': 1,\n", " 'rally': 1,\n", " 'ran': 28,\n", " 'random': 1,\n", " 'ranelagh': 1,\n", " 'rang': 15,\n", " 'range': 3,\n", " 'ranged': 1,\n", " 'ranging': 1,\n", " 'rank': 5,\n", " 'ranks': 1,\n", " 'rapacious': 1,\n", " 'rapid': 7,\n", " 'rapidly': 7,\n", " 'rapped': 2,\n", " 'rapping': 1,\n", " 'rapturous': 1,\n", " 'rapturously': 1,\n", " 'rare': 2,\n", " 'rarely': 3,\n", " 'rarity': 2,\n", " 'rarity--and': 1,\n", " 'rarity--monsieur': 1,\n", " 'rascal': 2,\n", " 'rascal-people': 1,\n", " 'rashness': 1,\n", " 'rate': 5,\n", " 'rather': 43,\n", " 'rational': 1,\n", " 'rats': 4,\n", " 'rattle': 8,\n", " 'rattled': 4,\n", " 'rattling': 1,\n", " 'ravaged': 1,\n", " 'raving': 2,\n", " 'raw': 1,\n", " 'ray': 5,\n", " 'rays': 2,\n", " 'rayther': 1,\n", " 'razor': 2,\n", " 're-echoed': 1,\n", " 're-use': 1,\n", " 'reaccused': 1,\n", " 'reach': 4,\n", " 'reached': 2,\n", " 'reaching': 2,\n", " 'read': 36,\n", " 'read--first': 1,\n", " 'readable': 2,\n", " 'reader': 1,\n", " 'readily': 6,\n", " 'readiness': 3,\n", " 'reading': 11,\n", " 'reading-chair': 1,\n", " 'ready': 32,\n", " 'ready--hewed': 1,\n", " 'real': 20,\n", " 'realisation': 3,\n", " 'realise': 1,\n", " 'realised': 1,\n", " 'reality': 4,\n", " 'really': 31,\n", " 'reaping': 1,\n", " 'reappear': 1,\n", " 'reappeared': 1,\n", " 'rear': 2,\n", " 'reared': 2,\n", " 'rearing': 1,\n", " 'reason': 26,\n", " 'reason--a': 1,\n", " 'reason--and': 1,\n", " 'reason--that': 1,\n", " 'reasonable': 3,\n", " 'reasoned': 2,\n", " 'reasons': 15,\n", " 'reassurance': 2,\n", " 'reassurances': 1,\n", " 'reassuring': 2,\n", " 'rebuilding': 1,\n", " 'rebuke': 1,\n", " 'recall': 11,\n", " 'recalled': 16,\n", " 'recalled--say': 1,\n", " 'recalling': 4,\n", " 'recalls': 2,\n", " 'receipt': 4,\n", " 'receive': 7,\n", " 'received': 28,\n", " 'receiving': 4,\n", " 'recent': 1,\n", " 'recently': 2,\n", " 'reception': 6,\n", " 'recipe': 1,\n", " 'reckless': 2,\n", " 'recklessly': 1,\n", " 'recklessness': 3,\n", " 'reckoning': 3,\n", " 'reckonings': 1,\n", " 'reclaim': 1,\n", " 'reclaimed': 2,\n", " 'reclining': 1,\n", " 'recognisant': 1,\n", " 'recognise': 4,\n", " 'recognised': 5,\n", " 'recognises': 2,\n", " 'recognition': 2,\n", " 'recoiled': 3,\n", " 'recollect': 1,\n", " 'recollected': 1,\n", " 'recollection': 1,\n", " 'recommend': 3,\n", " 'recommended': 1,\n", " 'recommends': 1,\n", " 'recompense': 2,\n", " 'recompensed': 1,\n", " 'reconcile': 2,\n", " 'reconcilement': 1,\n", " 'record': 6,\n", " 'recorded': 4,\n", " 'records': 1,\n", " 'recounted': 1,\n", " 'recourse': 1,\n", " 'recover': 2,\n", " 'recovered': 13,\n", " 'recovering': 3,\n", " 'recovery': 2,\n", " 'recrossed': 1,\n", " 'recruited': 1,\n", " 'recruiting': 2,\n", " 'red': 52,\n", " 'red-cap': 2,\n", " 'red-eyed': 1,\n", " 'red-hot': 1,\n", " 'reddened': 4,\n", " 'reddening': 4,\n", " 'redeemed': 1,\n", " 'redheads': 1,\n", " 'redistribute': 1,\n", " 'redistributing': 2,\n", " 'redistribution': 2,\n", " 'redress': 1,\n", " 'reduced': 4,\n", " 'redundancy': 1,\n", " 'reek': 1,\n", " 'refection': 1,\n", " 'refer': 6,\n", " 'referable': 3,\n", " 'reference': 7,\n", " 'references': 2,\n", " 'referred': 9,\n", " 'referring': 2,\n", " 'refilled': 1,\n", " 'refined': 2,\n", " 'refinement': 1,\n", " 'refinements': 1,\n", " 'reflect': 4,\n", " 'reflect--a': 1,\n", " 'reflected': 4,\n", " 'reflecting': 1,\n", " 'reflection': 4,\n", " 'reflections': 3,\n", " 'reflectively': 1,\n", " 'refolded': 1,\n", " 'refractory': 1,\n", " 'refresh': 1,\n", " 'refreshed': 2,\n", " 'refreshment': 4,\n", " 'refuge': 3,\n", " 'refugee': 3,\n", " 'refund': 10,\n", " 'refusal': 1,\n", " 'refuse': 4,\n", " \"reg'lar\": 1,\n", " 'regained': 1,\n", " 'regard': 2,\n", " 'regarded': 6,\n", " 'regarding': 4,\n", " 'regards': 1,\n", " 'regeneration': 2,\n", " 'region': 3,\n", " 'regions': 3,\n", " 'register': 7,\n", " 'registered': 5,\n", " 'registers': 3,\n", " 'regret': 4,\n", " 'regretted': 4,\n", " 'regrinding': 1,\n", " 'regular': 11,\n", " 'regularly': 3,\n", " 'regulating': 1,\n", " 'rehearsed': 1,\n", " 'reigned': 1,\n", " 'reigning': 1,\n", " 'rein': 1,\n", " 'reining': 1,\n", " 'reins': 1,\n", " 'reiterate': 1,\n", " 'reiterated': 1,\n", " 'rejection': 1,\n", " 'rejoice': 1,\n", " 'rejoiced': 1,\n", " 'rejoicing': 2,\n", " 'rejoinder': 2,\n", " 'rejoined': 10,\n", " 'rejoining': 1,\n", " 'relapse': 7,\n", " 'relapses': 1,\n", " 'relate': 3,\n", " 'relation': 1,\n", " 'relations': 8,\n", " 'relationship': 1,\n", " 'relative': 4,\n", " 'relays': 1,\n", " 'release': 5,\n", " 'released': 20,\n", " 'released--congratulating': 1,\n", " 'releases': 1,\n", " 'releasing': 1,\n", " 'relent': 1,\n", " 'relenting': 2,\n", " 'reliance': 4,\n", " 'relics': 1,\n", " 'relied': 2,\n", " 'relief': 8,\n", " 'reliefs': 1,\n", " 'relieve': 3,\n", " 'relieved': 6,\n", " 'relieving': 1,\n", " 'religious': 4,\n", " 'religiously': 1,\n", " 'relinquish': 1,\n", " 'relinquished': 4,\n", " 'relish': 4,\n", " 'relocked': 1,\n", " 'reluctance': 2,\n", " 'reluctant': 3,\n", " 'reluctantly': 1,\n", " 'rely': 3,\n", " 'relying': 1,\n", " 'remain': 14,\n", " 'remainder': 1,\n", " 'remained': 25,\n", " 'remaining': 6,\n", " 'remains': 4,\n", " 'remark': 4,\n", " 'remarkable': 19,\n", " 'remarked': 8,\n", " 'remarking': 3,\n", " 'remarks': 2,\n", " 'remedies': 2,\n", " 'remedy': 4,\n", " 'remember': 36,\n", " 'remembered': 11,\n", " 'remembering': 3,\n", " 'remembrance': 10,\n", " 'remembrance--and': 1,\n", " 'remembrance--until': 1,\n", " 'remembrances': 3,\n", " 'reminded': 6,\n", " 'reminder': 3,\n", " 'remittances': 1,\n", " 'remitted': 2,\n", " 'remodelled': 1,\n", " 'remodelling': 1,\n", " 'remonstrance': 4,\n", " 'remonstrated': 2,\n", " 'remorse': 1,\n", " 'remorseless': 1,\n", " 'remote': 5,\n", " 'remotely': 1,\n", " 'removal': 3,\n", " 'remove': 3,\n", " 'removed': 17,\n", " 'removing': 2,\n", " 'renamed': 1,\n", " 'rend': 2,\n", " 'render': 5,\n", " 'rendered': 14,\n", " 'rendering': 3,\n", " 'renew': 3,\n", " 'renewal': 1,\n", " 'renounce': 2,\n", " 'renouncing': 1,\n", " 'rent': 5,\n", " 'rents': 1,\n", " 'renunciation': 1,\n", " 'repair': 1,\n", " 'reparable': 1,\n", " 'repassing': 1,\n", " 'repast': 3,\n", " 'repay': 2,\n", " 'repaying': 1,\n", " 'repeat': 7,\n", " 'repeated': 44,\n", " 'repeating': 2,\n", " 'repent': 1,\n", " 'repentance': 1,\n", " 'repented': 1,\n", " 'repeople': 1,\n", " 'repetition': 5,\n", " 'replace': 1,\n", " 'replaced': 2,\n", " 'replacement': 5,\n", " 'replenished': 1,\n", " 'replied': 18,\n", " 'reply': 8,\n", " 'replying': 2,\n", " 'reported': 3,\n", " 'reports': 1,\n", " 'repose': 4,\n", " 'reposed': 2,\n", " 'represent': 4,\n", " 'representations': 2,\n", " 'represented': 8,\n", " 'representing': 2,\n", " 'represents': 1,\n", " 'repressed': 4,\n", " 'repressing': 1,\n", " 'repression': 2,\n", " 'reproach': 3,\n", " 'reproachful': 3,\n", " 'reproachfully': 1,\n", " 'reproaching': 1,\n", " 'republic': 33,\n", " 'republican': 11,\n", " 'republicans': 3,\n", " 'repudiated': 1,\n", " 'reputation': 6,\n", " 'repute': 1,\n", " 'request': 6,\n", " 'requested': 4,\n", " 'require': 4,\n", " 'required': 13,\n", " 'requirements': 4,\n", " 'requiring': 2,\n", " 'requisition': 2,\n", " 'rescue': 1,\n", " 'rescued': 1,\n", " 'research': 2,\n", " 'resemblance': 9,\n", " 'resemble': 1,\n", " 'resembles': 1,\n", " 'resented': 2,\n", " 'resentful': 2,\n", " 'reservation': 1,\n", " 'reserve': 3,\n", " 'reserved': 7,\n", " 'reservoirs': 1,\n", " 'resided': 1,\n", " 'residence': 5,\n", " 'resident': 1,\n", " 'resides': 1,\n", " 'resignation': 1,\n", " 'resigned': 2,\n", " 'resignedly': 1,\n", " 'resigning': 1,\n", " 'resin': 1,\n", " 'resistance': 1,\n", " 'resistless': 1,\n", " 'resolute': 4,\n", " 'resolute-looking': 1,\n", " 'resolutely': 2,\n", " 'resolution': 5,\n", " 'resolve': 2,\n", " 'resolved': 12,\n", " 'resonance': 1,\n", " 'resort': 1,\n", " 'resorted': 5,\n", " 'resound': 1,\n", " 'resounded': 2,\n", " 'resounding': 2,\n", " 'resoundingly': 1,\n", " 'resource': 1,\n", " 'resources': 1,\n", " 'respect': 13,\n", " 'respectability': 1,\n", " 'respectable': 7,\n", " 'respected': 1,\n", " 'respectfully': 2,\n", " 'respectin': 4,\n", " 'respecting': 4,\n", " 'respective': 1,\n", " 'respects': 2,\n", " 'respects--as': 1,\n", " 'respects--or': 1,\n", " 'responded': 4,\n", " 'responding': 2,\n", " 'response': 4,\n", " 'response--dropped': 1,\n", " 'responsibility': 3,\n", " 'responsible': 4,\n", " 'responsive': 1,\n", " 'rest': 42,\n", " 'rest--along': 1,\n", " 'rested': 12,\n", " 'resting': 6,\n", " 'restless': 9,\n", " 'restlessly': 2,\n", " 'restlessness': 1,\n", " 'restoration': 3,\n", " 'restoration--the': 1,\n", " 'restorative': 1,\n", " 'restoratives': 1,\n", " 'restore': 5,\n", " 'restored': 7,\n", " 'restoring': 2,\n", " 'restrain': 3,\n", " 'restrained': 1,\n", " 'restraining': 1,\n", " 'restraint': 2,\n", " 'restraints': 1,\n", " 'restrictions': 1,\n", " 'rests': 1,\n", " 'result': 6,\n", " 'results': 1,\n", " 'resume': 1,\n", " 'resumed': 12,\n", " 'resuming': 4,\n", " 'resumption': 1,\n", " 'resurrection': 4,\n", " 'resurrection-man': 2,\n", " 'retain': 1,\n", " 'retained': 3,\n", " 'retainer': 1,\n", " 'retaken': 2,\n", " 'retaliative': 1,\n", " 'retarded': 1,\n", " 'retention': 2,\n", " 'reticule': 1,\n", " 'retinue': 1,\n", " 'retire': 4,\n", " 'retired': 8,\n", " 'retirement': 1,\n", " 'retorted': 6,\n", " 'retraced': 1,\n", " 'retreated': 3,\n", " 'retreating': 2,\n", " 'retreats': 1,\n", " 'retribution': 1,\n", " 'retributive': 2,\n", " 'retrospect': 1,\n", " 'retrospectively': 1,\n", " 'return': 25,\n", " 'return-passage': 1,\n", " 'returned': 78,\n", " 'returning': 4,\n", " 'returns': 1,\n", " 'reunited--the': 1,\n", " 'reveal': 1,\n", " 'revealed': 5,\n", " 'revealing': 1,\n", " 'reveals': 1,\n", " 'revelations': 1,\n", " 'revenge': 2,\n", " 'revengeful': 3,\n", " 'revenue': 1,\n", " 'reverence': 1,\n", " 'reverently': 2,\n", " 'reverse': 1,\n", " 'reverse--but': 1,\n", " 'reversed': 4,\n", " 'reverses': 2,\n", " 'reversionary': 1,\n", " 'reverted': 2,\n", " 'reverting': 2,\n", " 'reviewed': 1,\n", " 'revival': 2,\n", " 'revive': 3,\n", " 'revived': 1,\n", " 'reviving': 1,\n", " 'revolution': 7,\n", " 'revolution-fever': 1,\n", " 'revolutionary': 4,\n", " 'revolved': 1,\n", " 'revulsion': 2,\n", " 'reward': 1,\n", " 'ribbon': 5,\n", " 'ribbons': 2,\n", " 'rich': 9,\n", " 'riches': 1,\n", " 'richest': 2,\n", " 'rickety': 1,\n", " 'rid': 1,\n", " 'ride': 9,\n", " 'rider': 5,\n", " \"rider's\": 2,\n", " 'riders': 2,\n", " 'ridge': 3,\n", " 'ridges': 2,\n", " 'ridiculous': 2,\n", " 'riding': 8,\n", " 'riding-cloak': 1,\n", " 'riding-coat': 3,\n", " 'riding-rods': 1,\n", " 'riding-whips': 2,\n", " 'rifting': 1,\n", " 'right': 54,\n", " 'rightly': 1,\n", " 'rights': 5,\n", " 'ring': 7,\n", " 'ringed': 1,\n", " 'ringer': 1,\n", " 'ringing': 11,\n", " 'rings': 1,\n", " 'rip': 2,\n", " 'ripened': 1,\n", " 'ripening': 1,\n", " 'ripples': 1,\n", " 'rise': 7,\n", " 'risen': 6,\n", " 'rises': 3,\n", " 'rising': 26,\n", " 'risings': 3,\n", " 'risk': 2,\n", " 'river': 10,\n", " \"river's\": 1,\n", " 'river-walls': 1,\n", " 'rivers': 2,\n", " 'riving': 1,\n", " 'road': 46,\n", " 'road--assisted': 1,\n", " 'road-mender': 3,\n", " 'roads': 54,\n", " 'roads--the': 1,\n", " 'roadside': 4,\n", " 'roadway': 1,\n", " 'roamed': 1,\n", " 'roar': 12,\n", " 'roared': 1,\n", " 'roaring': 1,\n", " 'roast': 1,\n", " 'roasting': 1,\n", " 'robbed': 4,\n", " 'robber': 1,\n", " 'robberies': 1,\n", " 'robbers': 2,\n", " 'robe': 2,\n", " 'robed': 1,\n", " 'robing-room': 1,\n", " 'rock': 6,\n", " 'rocked': 1,\n", " 'rocking': 2,\n", " 'rode': 8,\n", " 'roger': 4,\n", " 'roll': 8,\n", " 'rolled': 11,\n", " 'rolling': 5,\n", " 'romance': 1,\n", " 'rome': 5,\n", " 'roof': 12,\n", " 'room': 79,\n", " 'room-door': 1,\n", " 'rooms': 23,\n", " 'roosted': 1,\n", " 'root': 3,\n", " 'root-ivy': 1,\n", " 'rooted': 3,\n", " 'rooting': 1,\n", " 'rope': 6,\n", " 'ropes': 3,\n", " 'rose': 32,\n", " 'roses': 1,\n", " 'rosy': 1,\n", " 'rot': 1,\n", " 'rotten': 2,\n", " 'rough': 15,\n", " 'roughened': 2,\n", " 'roughly': 2,\n", " 'roughness': 1,\n", " 'rouleau': 2,\n", " 'round': 65,\n", " 'rounding': 1,\n", " 'rounds': 2,\n", " 'rouse': 1,\n", " 'roused': 7,\n", " 'rousing': 3,\n", " 'routine': 4,\n", " 'row': 1,\n", " 'rows': 2,\n", " 'royal': 5,\n", " 'royalties': 2,\n", " 'royalty': 5,\n", " 'rub': 1,\n", " 'rubbed': 3,\n", " 'rubbing': 4,\n", " 'rude': 2,\n", " 'rudely': 1,\n", " 'rue': 1,\n", " 'ruffian': 1,\n", " 'ruffians': 1,\n", " 'ruffle': 1,\n", " 'ruffled': 1,\n", " 'rugged': 3,\n", " 'ruin': 3,\n", " 'ruinating': 1,\n", " 'ruinating--stark': 1,\n", " 'ruined': 3,\n", " 'ruinous': 2,\n", " 'rule': 5,\n", " 'ruled': 2,\n", " 'ruler': 1,\n", " 'rules': 2,\n", " 'rum': 2,\n", " 'rumble': 1,\n", " 'rumbled': 2,\n", " 'rumbling': 1,\n", " 'ruminated': 1,\n", " 'ruminating': 1,\n", " 'rumour': 4,\n", " 'rumoured': 3,\n", " 'run': 14,\n", " 'running': 14,\n", " 'running--hiding--doing': 1,\n", " 'runs': 1,\n", " 'rush': 4,\n", " 'rush-candles': 1,\n", " 'rushed': 8,\n", " 'rushes': 2,\n", " 'rushing': 3,\n", " 'rust': 6,\n", " 'rusted': 3,\n", " 'rustic': 5,\n", " 'rustle': 2,\n", " 'rustled': 4,\n", " 'rustling': 2,\n", " 'rusty': 6,\n", " 'ruthless': 1,\n", " 'ruts': 1,\n", " 'rye': 1,\n", " 's': 2,\n", " 's/he': 1,\n", " 'sabres': 2,\n", " 'sack': 3,\n", " 'sacked': 1,\n", " 'sacred': 10,\n", " 'sacrifice': 6,\n", " 'sacrificed': 2,\n", " 'sacrifices': 2,\n", " 'sacristan': 1,\n", " 'sad': 6,\n", " 'saddened': 1,\n", " 'sadder': 1,\n", " 'saddle': 5,\n", " 'saddles': 1,\n", " 'saddling': 2,\n", " 'sadly': 4,\n", " 'sadness': 1,\n", " 'safe': 19,\n", " 'safely': 2,\n", " 'safest': 4,\n", " 'safety': 8,\n", " 'sagacious': 1,\n", " 'sagacity': 3,\n", " 'said': 660,\n", " 'sail': 3,\n", " 'sailing': 1,\n", " 'saint': 56,\n", " \"saint's\": 2,\n", " 'sainte': 3,\n", " 'saintly': 1,\n", " 'saith': 4,\n", " 'sake': 23,\n", " 'sake--and': 1,\n", " 'sakes': 1,\n", " 'sale': 1,\n", " 'sallow': 3,\n", " 'salt': 3,\n", " 'salutation': 2,\n", " 'salute': 3,\n", " 'saluted': 2,\n", " 'samaritans': 1,\n", " 'same': 79,\n", " 'sample': 1,\n", " 'samples': 1,\n", " 'samson': 4,\n", " 'sanction': 1,\n", " 'sanctuaries': 1,\n", " 'sanctuary': 4,\n", " 'sand': 2,\n", " 'sanded': 1,\n", " 'sandy': 1,\n", " 'sane': 1,\n", " 'sang': 2,\n", " 'sanguine': 1,\n", " 'sank': 4,\n", " 'sarcasm': 1,\n", " 'sarcastic': 1,\n", " \"sardanapalus's\": 1,\n", " 'sarse': 1,\n", " 'sashes': 1,\n", " 'sat': 99,\n", " 'satellite': 1,\n", " 'satisfaction': 8,\n", " 'satisfied': 7,\n", " 'satisfy': 1,\n", " 'saturday': 2,\n", " 'sauce': 1,\n", " 'saucer': 1,\n", " 'saucers': 1,\n", " 'saunter': 1,\n", " 'sausage-shop': 1,\n", " 'savage': 2,\n", " 'savages': 1,\n", " 'save': 27,\n", " 'saved': 11,\n", " 'saving': 2,\n", " 'saviour': 1,\n", " 'savoury': 1,\n", " 'saw': 85,\n", " 'saw--so': 1,\n", " 'sawed': 2,\n", " 'sawing': 2,\n", " 'sawn': 1,\n", " 'sawyer': 2,\n", " 'say': 164,\n", " 'say:--it': 1,\n", " 'saying': 26,\n", " 'says': 19,\n", " 'scaffold': 3,\n", " 'scale': 1,\n", " 'scaling': 1,\n", " 'scantily': 1,\n", " 'scanty': 4,\n", " 'scarce': 2,\n", " 'scarcely': 17,\n", " 'scarcity': 1,\n", " 'scarecrows': 6,\n", " 'scared': 3,\n", " 'scarf': 4,\n", " 'scatter': 1,\n", " 'scattered': 3,\n", " 'scavenger': 1,\n", " 'scene': 14,\n", " 'scenes': 2,\n", " 'scent': 1,\n", " 'scents': 3,\n", " 'scheme': 2,\n", " 'schemes': 1,\n", " 'scholar': 1,\n", " 'school': 3,\n", " 'scientific': 3,\n", " 'scoops': 1,\n", " 'scorched': 1,\n", " 'score': 6,\n", " 'scores': 5,\n", " 'scorn': 2,\n", " 'scorned': 1,\n", " 'scornfully': 1,\n", " 'scoundrel': 2,\n", " 'scoundrels': 1,\n", " 'scouring': 1,\n", " 'scowling': 1,\n", " 'scrags': 1,\n", " 'scramble': 1,\n", " 'scrambled': 2,\n", " 'scrap': 5,\n", " 'scrapings': 1,\n", " 'scraps': 4,\n", " 'scratch': 1,\n", " 'scratched': 1,\n", " 'scrawl': 1,\n", " 'scrawled': 2,\n", " 'scream': 2,\n", " 'screaming': 3,\n", " 'screeched': 1,\n", " 'screeching': 1,\n", " 'screen': 1,\n", " 'screw': 1,\n", " 'screwed': 1,\n", " 'screwing': 1,\n", " 'scripture': 1,\n", " 'scrubbed': 1,\n", " 'scruple': 2,\n", " 'scuffle': 1,\n", " 'scuffled': 1,\n", " 'sculleries': 1,\n", " 'sculptured': 1,\n", " 'scum': 1,\n", " 'sea': 31,\n", " 'sea--the': 1,\n", " 'sea-coal': 1,\n", " 'sea-sand': 1,\n", " 'sea-shore': 2,\n", " 'sea.--\"like': 1,\n", " 'seacoast': 1,\n", " 'sealed': 1,\n", " 'seamstress': 3,\n", " 'search': 7,\n", " 'seared': 1,\n", " 'season': 7,\n", " 'seasons': 1,\n", " 'seat': 24,\n", " 'seated': 14,\n", " 'seats': 1,\n", " 'seaward': 1,\n", " 'seclusion': 1,\n", " 'second': 32,\n", " 'second--the': 1,\n", " 'second-hand': 2,\n", " 'secondly': 1,\n", " 'seconds': 3,\n", " 'secrecy': 4,\n", " 'secret': 41,\n", " 'secretary': 1,\n", " 'secrete': 2,\n", " 'secreted': 2,\n", " 'secretly': 1,\n", " 'secrets': 2,\n", " 'sect': 2,\n", " 'section': 11,\n", " 'sections': 1,\n", " 'secure': 4,\n", " 'secured': 3,\n", " 'securely': 2,\n", " 'security': 3,\n", " 'sediment': 1,\n", " 'see': 198,\n", " 'see--sydney': 1,\n", " 'see--worked': 1,\n", " 'seed': 1,\n", " 'seeds': 1,\n", " 'seeing': 19,\n", " 'seek': 12,\n", " 'seeking': 6,\n", " 'seeks': 2,\n", " 'seem': 14,\n", " 'seemed': 59,\n", " 'seeming': 4,\n", " 'seems': 9,\n", " 'seen': 113,\n", " 'seers': 1,\n", " 'sees': 5,\n", " 'seesaw': 1,\n", " 'seine': 3,\n", " 'seize': 2,\n", " 'seized': 7,\n", " 'seizing': 1,\n", " 'seldom': 6,\n", " 'selection': 2,\n", " 'selections': 1,\n", " 'self': 2,\n", " 'self-abnegating': 1,\n", " 'self-appointed': 1,\n", " 'self-communing': 1,\n", " 'self-conviction': 1,\n", " 'self-deceit': 1,\n", " 'self-denial': 2,\n", " 'self-destruction': 1,\n", " 'self-immolations': 1,\n", " 'self-possessed': 2,\n", " 'self-possession': 1,\n", " 'self-reproachful': 1,\n", " 'self-same': 1,\n", " 'selfish': 2,\n", " 'selling': 1,\n", " 'selves': 1,\n", " 'semblance': 1,\n", " 'send': 11,\n", " 'sending': 3,\n", " 'sensation': 3,\n", " 'sense': 24,\n", " 'senseless': 1,\n", " 'senses': 7,\n", " 'sensibilities': 1,\n", " 'sensibility': 1,\n", " 'sensible': 5,\n", " 'sensibly': 1,\n", " 'sensitive': 2,\n", " 'sensitiveness': 1,\n", " 'sensual': 1,\n", " 'sensuality': 1,\n", " 'sent': 16,\n", " 'sentence': 7,\n", " 'sentence--had': 1,\n", " 'sentenced': 1,\n", " 'sentences': 1,\n", " 'sentencing': 1,\n", " 'sentiment': 4,\n", " 'sentimental': 1,\n", " 'sentinel': 1,\n", " 'separate': 8,\n", " 'separated': 3,\n", " 'separately': 2,\n", " 'separation': 3,\n", " 'september': 1,\n", " 'sequestrated': 1,\n", " 'sequestration': 1,\n", " 'serene': 5,\n", " 'serf': 1,\n", " 'series': 2,\n", " 'serious': 3,\n", " 'sermon': 1,\n", " 'servant': 16,\n", " 'servants': 3,\n", " 'serve': 9,\n", " 'served': 5,\n", " 'service': 24,\n", " 'serviceable': 2,\n", " 'services': 2,\n", " 'servility': 1,\n", " 'serving': 1,\n", " 'sessions': 2,\n", " 'set': 56,\n", " 'set-off': 1,\n", " 'sets': 3,\n", " 'setting': 12,\n", " 'settle': 1,\n", " 'settled': 5,\n", " 'settlement': 1,\n", " 'settles': 1,\n", " 'settling': 3,\n", " 'seven': 24,\n", " 'seventeen': 5,\n", " 'seventy': 1,\n", " 'seventy-eight': 3,\n", " 'seventy-eighth': 1,\n", " 'seventy-five': 5,\n", " 'several': 21,\n", " 'severe': 1,\n", " 'severity': 1,\n", " 'sewing': 1,\n", " 'sexes': 4,\n", " 'sextons': 1,\n", " 'shade': 5,\n", " 'shaded': 3,\n", " 'shades': 1,\n", " 'shadow': 31,\n", " 'shadows': 21,\n", " 'shadowy': 2,\n", " 'shady': 1,\n", " 'shaft': 1,\n", " 'shaggy': 3,\n", " 'shaggy-haired': 1,\n", " 'shake': 6,\n", " 'shaken': 6,\n", " 'shakes': 1,\n", " 'shaking': 18,\n", " 'shall': 100,\n", " 'shallow': 1,\n", " 'sham': 2,\n", " 'shame': 1,\n", " 'shameful': 3,\n", " 'shamefully': 1,\n", " 'shaming': 1,\n", " 'shape': 7,\n", " 'shaped': 1,\n", " 'shapes': 3,\n", " 'shaping': 1,\n", " 'share': 3,\n", " 'shared': 3,\n", " 'sharing': 3,\n", " 'sharp': 11,\n", " 'sharpened': 3,\n", " 'sharpening-stone': 1,\n", " 'sharpness': 1,\n", " 'shattered': 2,\n", " 'shave': 1,\n", " 'shaved': 3,\n", " 'shawl': 1,\n", " 'she': 458,\n", " \"she'll\": 1,\n", " 'she--have': 1,\n", " 'sheared': 1,\n", " 'shed': 5,\n", " 'shedding': 1,\n", " 'sheep': 8,\n", " 'sheep--whom': 1,\n", " 'sheer': 1,\n", " 'sheets': 2,\n", " 'shelter': 3,\n", " 'sheltered': 2,\n", " 'sheltering': 1,\n", " 'shelves': 1,\n", " 'shelving': 1,\n", " 'shied': 1,\n", " 'shield': 1,\n", " 'shifted': 2,\n", " 'shilling': 2,\n", " 'shillings': 4,\n", " 'shine': 1,\n", " 'shining': 15,\n", " 'ship': 3,\n", " \"ship's\": 1,\n", " 'shirt': 4,\n", " 'shirt-sleeves': 1,\n", " 'shiver': 2,\n", " 'shivered': 5,\n", " 'shivering--chilled': 1,\n", " 'shock': 9,\n", " 'shocked': 1,\n", " 'shoe': 14,\n", " 'shoe--the': 1,\n", " 'shoemaker': 12,\n", " \"shoemaker's\": 6,\n", " 'shoemaking': 8,\n", " 'shoes': 27,\n", " 'shone': 10,\n", " 'shook': 29,\n", " \"shooter's\": 3,\n", " 'shop': 12,\n", " 'shop-door': 1,\n", " 'shop-window': 1,\n", " 'shopkeeper': 1,\n", " 'shops': 7,\n", " 'shore': 6,\n", " 'shore--as': 1,\n", " 'shore--three': 1,\n", " 'short': 40,\n", " 'short-sighted': 1,\n", " 'shortened': 1,\n", " 'shortest': 1,\n", " 'shortly': 2,\n", " 'shortness': 1,\n", " 'shot': 9,\n", " 'should': 138,\n", " 'shoulder': 25,\n", " 'shouldered': 6,\n", " 'shouldering': 8,\n", " 'shoulders': 11,\n", " \"shouldn't\": 4,\n", " 'shout': 2,\n", " 'shouted': 1,\n", " 'shouting': 3,\n", " 'shouts': 2,\n", " 'shoved': 1,\n", " 'show': 45,\n", " 'showed': 25,\n", " 'shower': 1,\n", " 'shower-bath': 1,\n", " 'showering': 1,\n", " 'showers': 1,\n", " 'showing': 11,\n", " 'shown': 10,\n", " 'shown--yet': 1,\n", " 'shows': 1,\n", " 'shred': 1,\n", " 'shredding': 1,\n", " 'shrewd': 5,\n", " 'shrewsbury': 5,\n", " 'shriek': 1,\n", " 'shrieked': 2,\n", " 'shrieking': 2,\n", " 'shrieks': 7,\n", " 'shrill': 4,\n", " 'shrink': 2,\n", " 'shrivelled': 4,\n", " 'shrouds': 1,\n", " 'shrug': 2,\n", " 'shrugging': 1,\n", " 'shrugs': 1,\n", " 'shudder': 3,\n", " 'shuddered': 1,\n", " 'shuddering': 1,\n", " 'shun': 1,\n", " 'shunned': 1,\n", " 'shut': 21,\n", " 'shuts': 1,\n", " 'shutters': 2,\n", " 'shutting': 3,\n", " 'shy': 1,\n", " 'sick': 4,\n", " 'sick-bed': 1,\n", " 'sickening': 1,\n", " 'sickliest': 1,\n", " 'sickly': 2,\n", " 'sickness': 2,\n", " 'side': 69,\n", " 'side--perhaps': 1,\n", " 'sides': 5,\n", " 'sides--like': 1,\n", " 'sideways': 3,\n", " 'sigh': 9,\n", " 'sigh--almost': 1,\n", " 'sighed': 1,\n", " 'sighing': 1,\n", " 'sighs': 1,\n", " 'sight': 40,\n", " 'sight--except': 1,\n", " 'sights': 2,\n", " 'sign': 10,\n", " 'signal': 2,\n", " 'signalling': 2,\n", " 'signally': 1,\n", " 'signals': 3,\n", " 'signature': 1,\n", " 'significance': 3,\n", " 'significant': 1,\n", " 'signified': 2,\n", " 'signing': 1,\n", " 'signs': 7,\n", " 'silence': 35,\n", " 'silences': 1,\n", " 'silent': 19,\n", " 'silently': 11,\n", " 'silk': 4,\n", " 'silks': 1,\n", " 'sill': 1,\n", " 'silver': 3,\n", " 'similar': 14,\n", " 'similarly': 6,\n", " 'simple': 4,\n", " 'simplicity': 1,\n", " 'simply': 2,\n", " 'simultaneously': 1,\n", " 'sin': 2,\n", " 'since': 39,\n", " 'since--to': 1,\n", " 'sincere': 1,\n", " 'sing': 1,\n", " 'singing': 2,\n", " 'single': 17,\n", " 'singly': 3,\n", " 'sings': 1,\n", " 'singular': 6,\n", " 'singular--and': 1,\n", " 'sinister': 4,\n", " 'sink': 1,\n", " 'sinking': 3,\n", " 'sinner': 1,\n", " 'sins': 1,\n", " 'sip': 2,\n", " 'sipped': 1,\n", " 'sipping': 3,\n", " 'sir': 99,\n", " 'sir!--and': 1,\n", " 'sir--and': 1,\n", " 'sister': 23,\n", " \"sister's\": 1,\n", " 'sister-woman': 1,\n", " 'sister-women': 1,\n", " 'sisterhood': 2,\n", " 'sisters': 2,\n", " 'sit': 9,\n", " 'site': 4,\n", " 'sits': 2,\n", " 'sitting': 19,\n", " 'situation': 6,\n", " 'situation--as': 1,\n", " 'six': 16,\n", " 'sixpence': 2,\n", " 'sixth': 1,\n", " 'sixties': 1,\n", " 'sixty': 7,\n", " 'sixty-three': 3,\n", " 'sixty-two': 1,\n", " 'size': 5,\n", " 'skid': 1,\n", " 'skies': 2,\n", " 'skilful': 2,\n", " 'skill': 10,\n", " 'skinny': 1,\n", " 'skins': 2,\n", " 'skirt': 1,\n", " 'skirting': 1,\n", " 'skirts': 1,\n", " 'sky': 21,\n", " 'slab': 1,\n", " 'slackened': 2,\n", " 'slain': 3,\n", " 'slake': 1,\n", " 'slapping': 1,\n", " 'slave': 3,\n", " 'slavery': 2,\n", " 'slaves': 1,\n", " 'sleek': 2,\n", " 'sleep': 21,\n", " 'sleeper': 4,\n", " 'sleeping': 5,\n", " 'sleeps': 1,\n", " 'sleepy': 1,\n", " 'sleeve': 2,\n", " 'slender': 1,\n", " 'slept': 10,\n", " 'sliced': 1,\n", " 'slid': 2,\n", " 'slight': 19,\n", " 'slightest': 1,\n", " 'slighting': 1,\n", " 'slightly': 7,\n", " 'slinking': 1,\n", " 'slip': 3,\n", " 'slipped': 3,\n", " 'slippers': 1,\n", " 'sloth': 1,\n", " 'slough': 1,\n", " 'sloughs': 1,\n", " 'slovenly': 1,\n", " 'slow': 9,\n", " 'slowly': 38,\n", " 'slowness': 1,\n", " 'slumber': 2,\n", " 'slumbering': 2,\n", " 'slung': 3,\n", " 'slunk': 2,\n", " 'sly': 1,\n", " 'smacked': 1,\n", " 'small': 44,\n", " 'smaller': 1,\n", " 'smallness': 1,\n", " 'smash': 2,\n", " 'smear': 2,\n", " 'smeared': 1,\n", " 'smell': 4,\n", " 'smelling': 2,\n", " 'smelling-salts': 1,\n", " 'smelt': 3,\n", " 'smile': 24,\n", " 'smiled': 3,\n", " 'smiles': 1,\n", " 'smiling': 5,\n", " 'smilingly': 1,\n", " 'smite': 2,\n", " 'smith': 2,\n", " \"smith's\": 3,\n", " 'smiths': 1,\n", " 'smithy': 1,\n", " 'smiting': 1,\n", " 'smoke': 12,\n", " 'smoke--in': 1,\n", " 'smoked': 4,\n", " 'smoked-out': 1,\n", " 'smokeless': 1,\n", " 'smoking': 6,\n", " 'smoky': 1,\n", " 'smooth': 3,\n", " 'smoothed': 1,\n", " 'smoother': 1,\n", " 'smoothing': 2,\n", " 'smoothings': 1,\n", " 'smoothly': 1,\n", " 'smoothness': 1,\n", " 'smote': 2,\n", " 'smothered': 1,\n", " 'smotherings': 1,\n", " 'smouldering': 1,\n", " 'smuggler': 1,\n", " 'snake-like': 1,\n", " 'snap': 3,\n", " 'snapping': 1,\n", " 'snatched': 2,\n", " 'snatches': 1,\n", " 'sneak': 1,\n", " 'sneaking': 1,\n", " 'sneers': 1,\n", " 'sneezed': 1,\n", " 'snipped': 1,\n", " 'snooks': 1,\n", " 'snorting': 1,\n", " 'snow': 6,\n", " 'snowy': 1,\n", " 'snuff': 4,\n", " 'snuff-box': 2,\n", " 'snuffed': 1,\n", " 'so': 582,\n", " 'so--by': 1,\n", " 'so--i': 1,\n", " 'so-ho': 1,\n", " 'so-ho-then': 1,\n", " 'so.--what': 1,\n", " 'soared': 1,\n", " 'sob': 1,\n", " 'sobbed': 1,\n", " 'sobbing': 1,\n", " 'sober': 5,\n", " 'soberer': 1,\n", " 'sobriety': 1,\n", " 'sobs': 1,\n", " 'social': 3,\n", " 'society': 6,\n", " 'society--in': 1,\n", " 'sodden': 1,\n", " 'sofa': 6,\n", " 'soft': 6,\n", " 'soften': 3,\n", " 'softened': 7,\n", " 'softening': 2,\n", " 'softer': 2,\n", " 'softly': 17,\n", " 'softly-slippered': 1,\n", " 'soho': 17,\n", " 'soho-square': 1,\n", " 'soil': 2,\n", " 'soiled': 2,\n", " 'soils': 1,\n", " 'sold': 3,\n", " 'soldier': 2,\n", " \"soldier's\": 1,\n", " 'soldiers': 19,\n", " 'soldiery': 2,\n", " 'sole': 2,\n", " 'solely': 1,\n", " 'solemn': 10,\n", " 'solemnity': 1,\n", " 'solemnly': 5,\n", " 'solicit': 2,\n", " 'solicitation': 1,\n", " 'solicitor': 1,\n", " 'solicitor-general': 1,\n", " 'solicitude': 2,\n", " 'solicitude--had': 1,\n", " 'solid': 3,\n", " 'soliloquy': 1,\n", " 'solitary': 15,\n", " 'solitude': 5,\n", " 'solomon': 24,\n", " 'solve': 1,\n", " 'solved': 1,\n", " 'solving': 1,\n", " 'sombre': 3,\n", " 'some': 229,\n", " 'somebody': 13,\n", " \"somebody's\": 1,\n", " 'somehow': 1,\n", " 'something': 57,\n", " 'something--that': 1,\n", " 'sometimes': 34,\n", " 'somewhat': 2,\n", " 'somewhere': 9,\n", " 'son': 14,\n", " 'son-in-law': 4,\n", " 'song': 6,\n", " 'song-roaring': 1,\n", " 'sonorous': 1,\n", " 'sons': 2,\n", " 'soon': 55,\n", " 'sooner': 8,\n", " 'soot': 1,\n", " 'soot-begrimed': 1,\n", " 'soothed': 3,\n", " 'soothing': 5,\n", " 'soothingly': 2,\n", " 'sorceress': 1,\n", " 'sore': 1,\n", " 'sorely': 2,\n", " 'sores': 1,\n", " 'sorrow': 7,\n", " 'sorrowful': 3,\n", " 'sorrowing': 1,\n", " 'sorrows': 3,\n", " 'sorry': 10,\n", " 'sort': 13,\n", " 'sorts': 4,\n", " 'sought': 8,\n", " 'sought--how': 1,\n", " 'soul': 18,\n", " 'souls': 4,\n", " 'sound': 43,\n", " 'sounded': 4,\n", " 'sounders': 1,\n", " 'sounding': 4,\n", " 'soundly': 2,\n", " 'soundness': 1,\n", " 'sounds': 5,\n", " 'soup': 1,\n", " 'sour': 1,\n", " 'source': 1,\n", " 'sources': 1,\n", " 'soured': 1,\n", " 'souring': 1,\n", " 'south': 8,\n", " 'southcott': 1,\n", " 'southern': 2,\n", " 'sow': 2,\n", " 'sown': 1,\n", " 'sown--as': 1,\n", " 'space': 11,\n", " 'spaces': 1,\n", " 'spade': 2,\n", " 'span': 1,\n", " 'spare': 14,\n", " 'spared': 2,\n", " 'spared--by': 1,\n", " 'sparing': 1,\n", " 'spark': 1,\n", " 'sparkled': 3,\n", " 'sparkling': 1,\n", " 'sparks': 5,\n", " 'sparrows': 1,\n", " 'spat': 1,\n", " 'speak': 59,\n", " 'speaker': 5,\n", " \"speaker's\": 1,\n", " 'speaking': 17,\n", " 'speaks': 2,\n", " 'spear': 1,\n", " 'spears': 1,\n", " 'special': 6,\n", " 'specially': 2,\n", " 'species': 3,\n", " 'specific': 1,\n", " 'specified': 2,\n", " 'specimens': 1,\n", " 'speck': 1,\n", " 'speckled': 1,\n", " 'specks': 1,\n", " 'spectacle': 6,\n", " 'spectacles': 2,\n", " 'spectacularly': 1,\n", " 'spectators': 9,\n", " 'spectral': 4,\n", " 'spectre': 6,\n", " 'speculate': 3,\n", " 'speculating': 1,\n", " 'speech': 7,\n", " 'speed': 5,\n", " 'speeding': 1,\n", " 'speedy': 1,\n", " 'spell': 1,\n", " 'spells': 1,\n", " 'spelt': 1,\n", " 'spencer': 1,\n", " 'spend': 1,\n", " 'spending': 1,\n", " 'spent': 3,\n", " 'sphere': 1,\n", " 'spi--i--ies': 1,\n", " 'spi--ies': 1,\n", " 'spies': 12,\n", " 'spiked': 2,\n", " 'spikes': 3,\n", " 'spiky': 4,\n", " 'spile': 2,\n", " 'spilled': 3,\n", " 'spilt': 2,\n", " 'spin': 2,\n", " 'spinning': 1,\n", " 'spires': 1,\n", " 'spirit': 15,\n", " 'spirited': 1,\n", " 'spirits': 10,\n", " 'spiritual': 2,\n", " 'spite': 4,\n", " 'spittoon': 1,\n", " 'splashed': 1,\n", " 'splashing': 2,\n", " 'splendour': 1,\n", " 'splinter': 1,\n", " 'split': 2,\n", " 'splits': 1,\n", " 'spluttered': 1,\n", " 'spoiling': 1,\n", " 'spoils': 2,\n", " 'spoilt': 2,\n", " 'spoke': 40,\n", " 'spoken': 29,\n", " 'spoken--distinctly': 1,\n", " 'spoon': 1,\n", " 'sport': 2,\n", " 'sport--a': 1,\n", " 'sports': 1,\n", " 'spot': 19,\n", " 'spot--had': 1,\n", " 'spot--thereby': 1,\n", " 'spots': 1,\n", " 'sprang': 2,\n", " 'spray': 2,\n", " 'spread': 2,\n", " 'spreading': 2,\n", " 'sprig': 1,\n", " 'spring': 5,\n", " 'springing': 3,\n", " 'sprinkled': 3,\n", " 'sprinkling': 1,\n", " 'sprites': 1,\n", " 'sprung': 2,\n", " 'spun': 5,\n", " 'spurning': 1,\n", " 'spurring': 2,\n", " 'sputtering': 1,\n", " 'spy': 59,\n", " 'spy--witness': 1,\n", " 'squalid': 2,\n", " 'squalor': 1,\n", " 'square': 3,\n", " 'squares': 1,\n", " 'squaring': 4,\n", " 'squashing': 1,\n", " 'squeeze': 2,\n", " 'squeezed': 6,\n", " 'squeezing': 2,\n", " 'st': 7,\n", " 'stable': 3,\n", " 'stable-yard': 1,\n", " 'stables': 3,\n", " 'stabs': 1,\n", " 'stack': 1,\n", " 'staff': 2,\n", " 'stage': 3,\n", " 'staggering': 1,\n", " 'staid': 2,\n", " 'stain': 7,\n", " 'stained': 7,\n", " 'staining': 1,\n", " 'stair': 3,\n", " 'staircase': 22,\n", " 'staircase--left': 1,\n", " 'staircases': 2,\n", " 'stairs': 12,\n", " 'stake': 4,\n", " 'stakes': 1,\n", " 'stalwart': 1,\n", " 'stammered': 1,\n", " 'stamped': 1,\n", " 'stamping': 2,\n", " 'stand': 18,\n", " 'standard': 2,\n", " 'standing': 27,\n", " 'standing--for': 1,\n", " 'stands': 7,\n", " 'star': 1,\n", " 'stare': 5,\n", " 'stared': 10,\n", " 'starers': 1,\n", " 'staring': 13,\n", " 'starlight': 2,\n", " 'stars': 5,\n", " 'start': 12,\n", " 'started': 17,\n", " 'starting': 4,\n", " 'startled': 4,\n", " 'starved': 5,\n", " 'starving': 2,\n", " 'state': 56,\n", " \"state's\": 1,\n", " 'state-projector': 1,\n", " 'stated': 3,\n", " 'stateliness': 1,\n", " 'stately': 2,\n", " 'statement': 2,\n", " 'statements': 2,\n", " 'states': 15,\n", " 'states--as': 1,\n", " 'stating': 2,\n", " 'station': 7,\n", " 'station--though': 1,\n", " 'stationed': 4,\n", " 'statue': 1,\n", " 'statues': 1,\n", " 'stature': 3,\n", " 'status': 4,\n", " 'staunch': 1,\n", " 'staves': 2,\n", " 'stay': 7,\n", " 'stayed': 4,\n", " 'staying': 1,\n", " 'stead': 3,\n", " 'steadfastly': 4,\n", " 'steadfastness': 1,\n", " 'steadily': 12,\n", " 'steady': 16,\n", " 'stealing': 2,\n", " 'stealth': 1,\n", " 'stealthily': 1,\n", " 'steamed': 2,\n", " 'steaming': 3,\n", " 'steel': 3,\n", " 'steeling': 1,\n", " 'steep': 6,\n", " 'steeped': 4,\n", " 'steeper': 1,\n", " 'steepest': 1,\n", " 'steeping': 1,\n", " 'steeple': 1,\n", " 'steepness': 1,\n", " 'steering': 1,\n", " 'stem': 1,\n", " 'stench': 1,\n", " 'step': 13,\n", " 'stepped': 7,\n", " 'steps': 24,\n", " 'stern': 3,\n", " 'sterner': 1,\n", " 'sternly': 4,\n", " 'stew': 1,\n", " 'stick': 3,\n", " 'sticking': 3,\n", " 'stiff': 5,\n", " 'stiffening': 1,\n", " 'stifled': 2,\n", " 'still': 98,\n", " 'stillness': 8,\n", " 'stillness--the': 1,\n", " 'stilton': 1,\n", " 'stimulate': 1,\n", " 'stimulating': 1,\n", " 'stinking': 1,\n", " 'stint': 2,\n", " 'stipulations': 2,\n", " 'stir': 5,\n", " 'stirred': 5,\n", " 'stirring': 1,\n", " 'stitches': 1,\n", " 'stock': 9,\n", " 'stockades': 1,\n", " 'stockinged': 1,\n", " 'stockings': 4,\n", " 'stole': 1,\n", " 'stolen': 1,\n", " 'stolid': 2,\n", " 'stomachs': 2,\n", " 'stone': 50,\n", " 'stones': 21,\n", " 'stony': 4,\n", " 'stood': 92,\n", " 'stool': 13,\n", " 'stooped': 8,\n", " 'stooping': 7,\n", " 'stop': 18,\n", " 'stop!--look': 1,\n", " 'stoppage': 1,\n", " 'stoppages': 1,\n", " 'stopped': 62,\n", " 'stoppers': 1,\n", " 'stopping': 9,\n", " 'stops': 1,\n", " 'store': 1,\n", " 'stored': 2,\n", " 'stores': 3,\n", " 'stories': 1,\n", " 'storm': 13,\n", " 'stormed': 1,\n", " 'storms--emblem': 1,\n", " 'stormy': 2,\n", " 'story': 21,\n", " 'stout': 3,\n", " 'stowed': 1,\n", " 'straggling': 1,\n", " 'straight': 29,\n", " 'straightforward': 1,\n", " 'straightway': 1,\n", " 'strain': 3,\n", " 'strained': 5,\n", " 'straining': 2,\n", " 'strait': 1,\n", " 'strand': 1,\n", " 'strange': 23,\n", " 'strange\"--said': 1,\n", " 'strange--now': 1,\n", " 'strangely': 2,\n", " 'stranger': 13,\n", " 'strangers': 1,\n", " 'strangest': 1,\n", " 'strangled': 1,\n", " 'strap': 2,\n", " 'straw': 20,\n", " 'stray': 2,\n", " 'strayed': 3,\n", " 'straying': 2,\n", " 'streak': 1,\n", " 'streaks': 1,\n", " 'stream': 4,\n", " 'stream--saving': 1,\n", " 'streaming': 3,\n", " 'streams': 3,\n", " 'street': 49,\n", " 'street--when': 1,\n", " 'street-corner': 2,\n", " 'street-stones': 1,\n", " 'streets': 75,\n", " 'streets--much': 1,\n", " 'strength': 12,\n", " 'strengthen': 2,\n", " 'strengthened': 2,\n", " 'stress': 4,\n", " 'stretch': 2,\n", " 'stretched': 6,\n", " 'stretching': 1,\n", " 'strew': 1,\n", " 'strewn': 1,\n", " 'stricken': 1,\n", " 'strict': 4,\n", " 'striding': 1,\n", " 'strife': 1,\n", " 'strike': 15,\n", " 'strikes': 2,\n", " 'striking': 13,\n", " 'strikingly': 2,\n", " 'string': 5,\n", " 'stringing': 1,\n", " 'strings': 1,\n", " 'strip': 1,\n", " 'stripped': 2,\n", " 'strips': 1,\n", " 'striven': 1,\n", " 'striving': 4,\n", " 'strivings': 1,\n", " 'stroke': 3,\n", " 'stroll': 1,\n", " 'strolled': 1,\n", " 'strolling': 1,\n", " 'strong': 63,\n", " 'strong-rooms': 2,\n", " 'stronger': 8,\n", " 'strongest': 2,\n", " 'strongly': 12,\n", " 'strove': 2,\n", " 'struck': 52,\n", " 'structure': 2,\n", " 'struggle': 11,\n", " 'struggled': 6,\n", " 'struggles': 1,\n", " 'struggling': 1,\n", " 'strung': 1,\n", " 'stryver': 103,\n", " \"stryver's\": 5,\n", " 'stuart': 1,\n", " 'stubble': 1,\n", " 'stubbornness': 1,\n", " 'stuck': 3,\n", " 'student': 1,\n", " \"student's\": 1,\n", " 'student-quarter': 1,\n", " 'studied': 2,\n", " 'studious': 4,\n", " 'study': 2,\n", " 'studying': 1,\n", " 'stuff': 1,\n", " 'stuffed': 1,\n", " 'stumbled': 2,\n", " 'stumbling': 1,\n", " 'stung': 1,\n", " 'stunned': 1,\n", " 'stupefied': 1,\n", " 'stupidly': 2,\n", " 'stupor': 1,\n", " 'style': 1,\n", " 'subdued': 7,\n", " 'subject': 16,\n", " 'subjects': 3,\n", " 'sublime': 3,\n", " 'sublimer': 1,\n", " 'submerged': 1,\n", " 'submission': 5,\n", " 'submissive': 7,\n", " 'submit': 2,\n", " 'submitted': 1,\n", " 'submitting': 1,\n", " 'subordinates': 1,\n", " 'subornation': 1,\n", " 'subscribe': 1,\n", " 'subsided': 1,\n", " 'substance': 3,\n", " 'substantial': 1,\n", " 'substitute': 1,\n", " 'substitutes': 1,\n", " 'substituting': 2,\n", " 'substratum': 1,\n", " 'subtle': 3,\n", " 'suburb': 3,\n", " 'succeed': 3,\n", " 'succeeded': 1,\n", " 'success': 5,\n", " 'successfully': 2,\n", " 'succession': 5,\n", " 'successor': 1,\n", " 'successor--of': 1,\n", " 'succour': 1,\n", " 'such': 180,\n", " 'such--like': 1,\n", " 'suck': 1,\n", " 'sucked': 2,\n", " 'sucking': 2,\n", " 'suction': 1,\n", " 'sudden': 13,\n", " 'suddenly': 20,\n", " 'suddenness': 2,\n", " 'suffer': 10,\n", " 'suffered': 6,\n", " 'sufferer': 4,\n", " \"sufferer's\": 2,\n", " 'sufferers': 1,\n", " 'suffering': 10,\n", " 'sufferings': 3,\n", " 'sufficient': 2,\n", " 'sufficiently': 5,\n", " 'suffocated': 2,\n", " 'suffocation': 1,\n", " 'sugar': 1,\n", " 'suggest': 2,\n", " 'suggested': 8,\n", " 'suggesting': 1,\n", " 'suggestion': 3,\n", " 'suggestions': 1,\n", " 'suicidal': 1,\n", " 'suit': 10,\n", " 'suitable': 2,\n", " 'suitably': 1,\n", " 'suite': 1,\n", " 'suited': 1,\n", " 'suitor': 1,\n", " \"suitor's\": 1,\n", " 'suits': 1,\n", " 'sulky': 1,\n", " 'sullen': 3,\n", " 'sullenly': 2,\n", " 'sulphur': 1,\n", " 'sultry': 2,\n", " 'sum': 1,\n", " 'summed': 1,\n", " 'summer': 12,\n", " 'summer--and': 1,\n", " 'summer-houses': 1,\n", " 'summit': 3,\n", " 'summits': 1,\n", " 'summon': 4,\n", " 'summoned': 17,\n", " 'summons': 1,\n", " 'sumptuous': 2,\n", " 'sun': 36,\n", " 'sunburnt': 1,\n", " 'sunday': 11,\n", " 'sundays': 3,\n", " 'sundry': 2,\n", " 'sunflower': 1,\n", " 'sunk': 3,\n", " 'sunken': 2,\n", " 'sunlight': 2,\n", " 'sunny': 5,\n", " 'sunrise': 2,\n", " 'sunset': 4,\n", " 'sunshine': 4,\n", " 'superb': 2,\n", " 'superciliously': 1,\n", " 'superintendence.--o': 1,\n", " 'superior': 2,\n", " 'superiority': 2,\n", " 'superlative': 1,\n", " 'supernatural': 1,\n", " 'supernaturally': 1,\n", " 'superscribed': 1,\n", " 'superseded': 1,\n", " 'superstition': 1,\n", " 'superstitious': 1,\n", " 'supervised': 1,\n", " 'supped': 1,\n", " 'supper': 12,\n", " 'supper-table': 1,\n", " 'suppers': 1,\n", " 'supping': 1,\n", " 'supple': 1,\n", " 'supplementary': 1,\n", " 'suppliant': 1,\n", " 'supplicate': 1,\n", " 'supplication': 3,\n", " 'supplicatory': 1,\n", " 'supplied': 2,\n", " 'supplies': 1,\n", " 'supply': 1,\n", " 'support': 6,\n", " 'supported': 5,\n", " 'supporting': 1,\n", " 'suppose': 17,\n", " 'suppose--you': 1,\n", " 'supposed': 14,\n", " 'supposing': 1,\n", " 'supposition': 2,\n", " 'suppressed': 8,\n", " 'suppression': 1,\n", " 'supreme': 1,\n", " 'sure': 39,\n", " 'surely': 18,\n", " 'surer': 1,\n", " 'surf': 1,\n", " 'surface': 10,\n", " 'surfaces': 1,\n", " 'surge': 1,\n", " 'surgeon': 1,\n", " 'surgeon--on': 1,\n", " 'surging': 1,\n", " 'surmise': 1,\n", " 'surmounted': 1,\n", " 'surname': 1,\n", " 'surprise': 15,\n", " 'surprised': 10,\n", " 'surprises': 1,\n", " 'surprising': 2,\n", " 'surprisingly': 1,\n", " 'surrender': 1,\n", " 'surrendered': 1,\n", " 'surrounded': 8,\n", " 'surrounding': 5,\n", " 'survey': 1,\n", " 'surveyed': 3,\n", " 'surveying': 3,\n", " 'survive': 2,\n", " 'surviving': 1,\n", " 'susceptibility': 1,\n", " 'suspect': 3,\n", " 'suspected': 13,\n", " 'suspended': 5,\n", " 'suspended--not': 1,\n", " 'suspense': 6,\n", " 'suspicion': 13,\n", " 'suspicions': 4,\n", " 'suspicious': 2,\n", " 'sustain': 3,\n", " 'sustained': 6,\n", " 'sustaining': 2,\n", " 'swallow': 6,\n", " 'swallowed': 3,\n", " 'swallowing': 3,\n", " 'swamp': 1,\n", " 'swamped': 1,\n", " 'swarmed': 1,\n", " 'swarming': 2,\n", " 'swart': 2,\n", " 'swarthy': 1,\n", " 'swaying': 1,\n", " 'swear': 10,\n", " 'swearers': 1,\n", " 'swearing': 2,\n", " 'sweat': 1,\n", " 'sweaty': 1,\n", " 'sweep': 3,\n", " 'sweeps': 1,\n", " 'sweet': 14,\n", " 'sweetest': 1,\n", " 'sweetly': 1,\n", " 'swell': 2,\n", " 'swelled': 2,\n", " 'swelling': 1,\n", " 'swells': 1,\n", " 'swept': 5,\n", " 'swift': 6,\n", " 'swiftly': 3,\n", " 'swing': 1,\n", " 'swinging': 6,\n", " 'swollen': 2,\n", " 'swoon': 3,\n", " 'swooned': 1,\n", " 'swoons': 1,\n", " 'swooped': 2,\n", " 'swooping': 1,\n", " 'sword': 5,\n", " 'sword--like': 1,\n", " 'sword-hilt': 1,\n", " 'sword-thrust': 1,\n", " 'swords': 7,\n", " 'swore': 1,\n", " 'sworn': 2,\n", " 'swung': 4,\n", " 'syd': 1,\n", " 'sydney': 72,\n", " \"sydney's\": 3,\n", " 'syllable': 4,\n", " 'syllables': 2,\n", " 'symbolical': 1,\n", " 'symbols': 1,\n", " 'sympathise': 1,\n", " 'sympathised': 1,\n", " 'sympathy': 12,\n", " 'symptoms': 1,\n", " 'synonymous': 1,\n", " 'system': 4,\n", " 'systematically': 2,\n", " 't': 1,\n", " \"t'other\": 2,\n", " 'table': 34,\n", " 'table-drawers': 1,\n", " 'tables': 3,\n", " 'taciturn': 1,\n", " 'tackle': 1,\n", " 'tact': 1,\n", " 'tactician': 1,\n", " 'tail': 1,\n", " 'tails': 2,\n", " 'taint': 1,\n", " 'tainted': 2,\n", " 'take': 88,\n", " 'taken': 74,\n", " 'takes': 5,\n", " 'takin': 1,\n", " 'taking': 41,\n", " 'tale': 3,\n", " 'talents': 3,\n", " 'talisman': 1,\n", " 'talk': 10,\n", " 'talked': 6,\n", " 'talkers': 3,\n", " 'talking': 8,\n", " 'tall': 18,\n", " 'tame': 3,\n", " 'tamed': 1,\n", " 'tamper': 1,\n", " 'tangle': 1,\n", " 'tanneries': 2,\n", " 'tannery': 1,\n", " 'tapped': 1,\n", " 'tapping': 1,\n", " 'tarnish': 1,\n", " 'task': 8,\n", " 'taste': 7,\n", " 'tasted': 1,\n", " 'tastes': 1,\n", " 'tattered': 1,\n", " 'tatters': 1,\n", " 'taught': 3,\n", " 'tavern': 4,\n", " 'tax': 11,\n", " 'taxed': 1,\n", " 'taxers': 1,\n", " 'taxes': 2,\n", " 'taxes--though': 1,\n", " 'taxing': 2,\n", " 'taxing-house': 1,\n", " 'tea': 5,\n", " 'tea-pot': 1,\n", " 'tea-table': 1,\n", " 'tea-time': 1,\n", " 'teaboard': 1,\n", " 'teach': 2,\n", " 'teacher': 2,\n", " 'team': 1,\n", " 'tear': 3,\n", " 'tear-fraught': 1,\n", " 'tearing': 5,\n", " 'tears': 29,\n", " 'tedious': 1,\n", " 'teems': 1,\n", " 'teeth': 8,\n", " 'telegraph': 1,\n", " 'tell': 91,\n", " 'telling': 4,\n", " 'tells': 2,\n", " 'tellson': 6,\n", " \"tellson's\": 83,\n", " \"tellson's--have\": 1,\n", " \"tellson's--never\": 1,\n", " 'temper': 5,\n", " 'temperament': 2,\n", " 'tempest': 2,\n", " 'temple': 21,\n", " 'temporarily': 1,\n", " 'temporary': 1,\n", " 'tempt': 1,\n", " 'tempted': 1,\n", " 'tempter': 2,\n", " 'ten': 21,\n", " 'tenacity': 1,\n", " 'tenant': 1,\n", " 'tenants': 1,\n", " 'tenants--serfs--what': 1,\n", " 'tend': 3,\n", " 'tended': 5,\n", " 'tendency': 7,\n", " 'tender': 5,\n", " 'tenderer': 2,\n", " 'tenderly': 4,\n", " 'tenderness': 4,\n", " 'tending': 7,\n", " 'tenth': 3,\n", " 'tergiversation': 1,\n", " 'term': 5,\n", " 'terminate': 3,\n", " 'terminated': 2,\n", " 'terms': 25,\n", " 'terrace': 5,\n", " 'terraces': 1,\n", " 'terrestrial': 1,\n", " 'terrible': 15,\n", " 'terrific': 1,\n", " 'terrified': 7,\n", " 'terror': 7,\n", " 'terror--he': 1,\n", " 'terrors': 4,\n", " 'test': 1,\n", " 'testaments': 1,\n", " 'testified': 1,\n", " 'testify': 1,\n", " 'testimony': 3,\n", " 'tethered': 1,\n", " 'text': 1,\n", " 'texture': 1,\n", " 'thames': 1,\n", " 'than': 216,\n", " 'than--than': 1,\n", " 'thank': 26,\n", " 'thanked': 4,\n", " 'thankful': 7,\n", " 'thanking': 3,\n", " 'thankless': 1,\n", " 'thanks': 6,\n", " 'that': 1904,\n", " \"that's\": 30,\n", " 'that--as': 1,\n", " 'thatched': 1,\n", " 'the': 8157,\n", " 'the--the--as': 1,\n", " 'the--the--image': 1,\n", " 'theatre': 1,\n", " 'theatre-doors': 1,\n", " 'theatres': 2,\n", " 'theatrical': 1,\n", " 'thee': 6,\n", " 'thee--which': 1,\n", " 'their': 318,\n", " 'theirs': 3,\n", " 'them': 393,\n", " 'them!--i': 1,\n", " 'them--all': 1,\n", " 'them--by': 1,\n", " 'them--so': 1,\n", " 'them--that': 1,\n", " 'them--the': 1,\n", " 'theme': 4,\n", " 'themselves': 25,\n", " 'then': 253,\n", " 'then--sharply': 1,\n", " 'thence': 1,\n", " 'thenceforth': 1,\n", " 'theophile': 1,\n", " 'theory': 3,\n", " 'there': 567,\n", " 'there!--and': 1,\n", " 'there\"--it': 1,\n", " \"there'd\": 1,\n", " \"there's\": 7,\n", " 'there--and': 1,\n", " 'there--had': 1,\n", " 'there--i': 1,\n", " 'there--if': 1,\n", " 'there--not': 1,\n", " 'there--tell': 1,\n", " 'there--with': 1,\n", " 'thereabouts': 1,\n", " 'thereby': 1,\n", " 'therefore': 21,\n", " 'thereof': 2,\n", " 'therese': 4,\n", " 'thereupon': 1,\n", " 'these': 187,\n", " 'they': 564,\n", " \"they'll\": 2,\n", " 'thick': 4,\n", " 'thicken': 1,\n", " 'thickened': 1,\n", " 'thickest': 1,\n", " 'thickness': 1,\n", " 'thief': 1,\n", " 'thief-and-rascal': 1,\n", " 'thieves': 2,\n", " 'thin': 12,\n", " 'thine': 1,\n", " 'thing': 48,\n", " 'thing--nothing--startles': 1,\n", " 'things': 68,\n", " 'things--for': 1,\n", " 'think': 120,\n", " 'think\"--the': 1,\n", " 'think--i': 1,\n", " 'think-not': 1,\n", " 'thinking': 11,\n", " 'thinks': 4,\n", " 'thinness': 1,\n", " 'third': 23,\n", " 'third--the': 1,\n", " 'thirdly': 1,\n", " 'thirst': 3,\n", " 'thirsty': 1,\n", " 'thirty': 4,\n", " 'thirty-five': 1,\n", " 'thirty-seven': 1,\n", " 'this': 588,\n", " 'this--ha': 1,\n", " 'this--nor': 1,\n", " \"this--tellson's\": 1,\n", " 'this:--if': 1,\n", " 'this:--that': 1,\n", " 'this?--_was': 1,\n", " 'thorns': 1,\n", " 'thorough': 2,\n", " 'thoroughfare': 1,\n", " 'thoroughfares': 1,\n", " 'thoroughly': 4,\n", " 'those': 111,\n", " 'thou': 6,\n", " 'thou--is': 1,\n", " 'though': 93,\n", " 'thought': 61,\n", " 'thought--of': 1,\n", " 'thoughtful': 4,\n", " 'thoughtfully': 4,\n", " 'thoughts': 22,\n", " 'thousand': 26,\n", " 'thousands': 2,\n", " 'thread': 5,\n", " 'threaded': 1,\n", " 'threat': 2,\n", " 'threatened': 1,\n", " 'threatening': 5,\n", " 'three': 117,\n", " 'three-cornered': 2,\n", " 'three-fourths': 1,\n", " 'threes': 2,\n", " 'threescore': 1,\n", " 'threshold': 2,\n", " 'threw': 11,\n", " 'thrice': 3,\n", " 'thrift': 2,\n", " 'thrill': 2,\n", " 'thrilled': 1,\n", " 'thrive': 1,\n", " 'throat': 16,\n", " 'throats': 1,\n", " 'throne': 3,\n", " 'throng': 5,\n", " 'thronging': 1,\n", " 'throttle': 1,\n", " 'throttled': 1,\n", " 'through': 161,\n", " 'throughout': 4,\n", " 'throw': 5,\n", " 'throwing': 4,\n", " 'thrown': 20,\n", " 'throws': 1,\n", " 'thrust': 3,\n", " 'thumb': 1,\n", " 'thumb-nail': 1,\n", " 'thumbs': 1,\n", " 'thump': 1,\n", " 'thunder': 2,\n", " 'thunder-gusts': 1,\n", " 'thundered': 2,\n", " 'thundering': 2,\n", " 'thus': 33,\n", " 'thy': 2,\n", " 'ticking': 1,\n", " 'tickle': 2,\n", " 'tide': 8,\n", " 'tides': 3,\n", " 'tidings': 8,\n", " 'tie': 1,\n", " 'tied': 5,\n", " 'tied--the': 1,\n", " 'ties': 3,\n", " 'tiger': 3,\n", " 'tiger:--looked': 1,\n", " 'tigerish': 1,\n", " 'tight': 5,\n", " 'tight-fitting': 1,\n", " 'tighter': 1,\n", " 'tightly': 1,\n", " 'tigress': 1,\n", " 'tile': 1,\n", " 'tile-paved': 2,\n", " 'tiled': 1,\n", " 'till': 16,\n", " 'tillers': 1,\n", " 'tilson': 1,\n", " 'timber': 1,\n", " 'time': 260,\n", " 'time--and': 1,\n", " 'time--i': 2,\n", " 'time--through': 1,\n", " 'time--when': 1,\n", " 'timed': 1,\n", " 'timely': 3,\n", " 'times': 51,\n", " 'timid': 7,\n", " 'timidity': 1,\n", " 'timidly': 2,\n", " 'timorous': 1,\n", " 'tinder-box': 1,\n", " 'tinged': 2,\n", " 'tiny': 1,\n", " 'tip': 1,\n", " 'tips': 1,\n", " 'tiptoe': 1,\n", " 'tired': 4,\n", " 'tiresome': 1,\n", " 'tissue': 2,\n", " 'title': 2,\n", " 'to': 3540,\n", " 'to--and': 1,\n", " 'to--this': 1,\n", " 'to--what': 1,\n", " 'to-day': 26,\n", " 'to-morrow': 33,\n", " \"to-morrow's\": 3,\n", " 'to-morrow--you': 1,\n", " 'to-night': 30,\n", " 'to-night--come': 1,\n", " 'toast': 3,\n", " 'toasts': 1,\n", " 'tobacco': 1,\n", " 'tobaccoey': 1,\n", " 'tocsin': 3,\n", " 'toes': 1,\n", " 'together': 61,\n", " 'together--as': 1,\n", " 'together--that': 1,\n", " 'together;--with': 1,\n", " 'toil': 2,\n", " 'toil-worn': 1,\n", " 'toiled': 1,\n", " 'toilet': 1,\n", " 'toilette': 1,\n", " 'toilettes': 1,\n", " 'told': 45,\n", " 'tolerable': 2,\n", " 'tolerate': 1,\n", " 'tolerated': 4,\n", " 'tom': 4,\n", " 'tomb': 3,\n", " 'tomorrow': 2,\n", " 'tone': 27,\n", " 'toned': 1,\n", " 'tones': 6,\n", " 'tongue': 7,\n", " 'tongues': 3,\n", " 'too': 116,\n", " 'too--as': 2,\n", " 'took': 108,\n", " 'took--and': 1,\n", " 'tools': 15,\n", " 'toothache': 1,\n", " 'toothpick': 6,\n", " 'top': 16,\n", " 'top-boots': 1,\n", " 'topic': 5,\n", " 'topics': 3,\n", " 'topmost': 1,\n", " 'tops': 3,\n", " 'torch': 2,\n", " 'torches': 2,\n", " 'tore': 7,\n", " 'torment': 1,\n", " 'torn': 10,\n", " 'tortuous': 1,\n", " 'torture': 5,\n", " 'tortured': 2,\n", " 'tortures': 1,\n", " 'tossed': 4,\n", " 'tossing': 2,\n", " 'total': 1,\n", " 'totally': 1,\n", " 'touch': 30,\n", " 'touched': 20,\n", " 'touches': 1,\n", " 'touching': 19,\n", " 'towards': 62,\n", " 'towed': 1,\n", " 'towel': 1,\n", " 'towelling': 1,\n", " 'towels': 3,\n", " 'tower': 15,\n", " 'tower--ages': 1,\n", " 'towers': 14,\n", " 'town': 13,\n", " 'town-gate': 1,\n", " 'towns': 1,\n", " 'townspeople': 1,\n", " 'toy-puzzle': 1,\n", " 'trace': 5,\n", " 'traced': 2,\n", " 'traces': 3,\n", " 'tracing': 1,\n", " 'track': 3,\n", " 'tracked': 1,\n", " 'tracks': 1,\n", " 'trade': 9,\n", " 'trademark': 10,\n", " 'trademark/copyright': 1,\n", " 'trades': 2,\n", " 'tradesman': 14,\n", " \"tradesman's\": 2,\n", " 'tradesmen': 3,\n", " 'trading-boat': 1,\n", " 'traffic': 2,\n", " 'trafficker': 1,\n", " 'traffickers': 1,\n", " 'trailing': 1,\n", " 'train': 4,\n", " 'training': 1,\n", " 'traitor': 7,\n", " 'traitorous': 2,\n", " 'traitorously': 1,\n", " 'tramp': 2,\n", " 'tramping': 2,\n", " 'trampled': 2,\n", " 'tranquil': 3,\n", " 'tranquillised': 1,\n", " 'tranquilly': 2,\n", " 'transact': 1,\n", " 'transacted': 1,\n", " 'transactions': 1,\n", " 'transcribe': 1,\n", " 'transcription': 1,\n", " 'transferred': 2,\n", " 'transformation': 1,\n", " 'transformations': 1,\n", " 'transition': 1,\n", " 'transitory': 1,\n", " 'translator': 1,\n", " 'transmutation': 1,\n", " 'transparent': 3,\n", " 'transparently': 1,\n", " 'transport': 1,\n", " 'trap': 1,\n", " 'trappings': 1,\n", " 'traps': 1,\n", " 'travel': 2,\n", " 'travelled': 6,\n", " 'traveller': 9,\n", " 'travellers': 3,\n", " 'travelling': 17,\n", " 'travelling-hat': 1,\n", " 'traversed': 4,\n", " 'traversing': 3,\n", " 'tray': 2,\n", " 'treacherous': 1,\n", " 'treachery': 2,\n", " 'tread': 9,\n", " 'treason': 5,\n", " 'treasonable': 1,\n", " 'treasure': 1,\n", " 'treated': 1,\n", " 'treatment': 2,\n", " 'treble': 1,\n", " 'trebly': 1,\n", " 'tree': 3,\n", " 'trees': 14,\n", " 'tremble': 5,\n", " 'trembled': 5,\n", " 'trembling': 6,\n", " 'tremendous': 5,\n", " 'tremulous': 2,\n", " 'tremulously': 1,\n", " 'trenchant': 1,\n", " 'trenches': 1,\n", " 'trepidation': 1,\n", " 'tri-colour': 2,\n", " 'tri-coloured': 1,\n", " 'trial': 14,\n", " 'trial--evoke': 1,\n", " 'trials': 2,\n", " 'tribe': 2,\n", " 'tribunal': 20,\n", " \"tribunal's\": 1,\n", " 'tribunal--of': 1,\n", " 'tribunals': 1,\n", " 'trickled': 1,\n", " 'tricks': 3,\n", " 'tricoloured': 3,\n", " 'trident': 1,\n", " 'tried': 17,\n", " 'tries': 1,\n", " 'trifle': 1,\n", " 'trifles': 2,\n", " 'trifling': 1,\n", " 'trim': 2,\n", " 'trimming': 1,\n", " 'trinkets': 1,\n", " 'trip': 2,\n", " 'triumph': 5,\n", " 'triumph--i': 1,\n", " 'triumphant': 1,\n", " 'triumphs': 2,\n", " 'triumvirate': 1,\n", " 'trivial': 1,\n", " 'trod': 5,\n", " 'trodden': 2,\n", " 'trodden-down': 1,\n", " 'trooping': 2,\n", " 'troops': 1,\n", " 'trot': 3,\n", " 'trotted': 1,\n", " 'trotting': 1,\n", " 'trouble': 16,\n", " 'troubled': 15,\n", " 'troubles': 4,\n", " 'troublesome': 4,\n", " 'troubling': 1,\n", " 'trudged': 3,\n", " 'true': 41,\n", " 'true-hearted': 1,\n", " 'truest': 1,\n", " 'truly': 12,\n", " 'trust': 13,\n", " 'trusted': 3,\n", " 'trustee': 1,\n", " 'trustees': 1,\n", " 'trustfulness': 1,\n", " 'trusting': 5,\n", " 'trustworthy': 1,\n", " 'trusty': 2,\n", " 'truth': 20,\n", " 'truth--which': 1,\n", " 'truthfully': 1,\n", " 'try': 14,\n", " 'trying': 12,\n", " 'tst': 7,\n", " 'tuesday': 1,\n", " 'tuileries': 2,\n", " 'tumbled': 2,\n", " 'tumbling': 2,\n", " 'tumbril': 3,\n", " 'tumbrils': 15,\n", " 'tumult': 2,\n", " 'tumultuous': 1,\n", " 'tune': 2,\n", " 'turban': 1,\n", " 'turbid': 1,\n", " 'turbulent': 2,\n", " 'turbulently': 1,\n", " 'turkey': 1,\n", " 'turn': 31,\n", " 'turned': 119,\n", " 'turnham': 1,\n", " 'turning': 27,\n", " 'turnkey': 9,\n", " \"turnkey's\": 1,\n", " 'turnkeys': 2,\n", " 'turns': 5,\n", " 'tut': 3,\n", " 'tutor': 2,\n", " 'tutor-fellow': 1,\n", " 'twelve': 14,\n", " 'twentieth': 1,\n", " 'twenty': 20,\n", " 'twenty-four': 3,\n", " 'twenty-one': 1,\n", " 'twenty-second': 1,\n", " 'twenty-six': 1,\n", " 'twenty-three': 2,\n", " 'twenty-two': 2,\n", " 'twice': 16,\n", " 'twilight': 4,\n", " 'twin': 1,\n", " 'twin-brother': 1,\n", " 'twined': 2,\n", " 'twinkle': 1,\n", " 'twinkled': 1,\n", " 'twinkling': 2,\n", " 'twist': 1,\n", " 'twisted': 1,\n", " 'twitching': 1,\n", " 'two': 210,\n", " 'two-thirds': 1,\n", " 'twopence': 1,\n", " 'twos': 2,\n", " 'tyburn': 1,\n", " 'tying': 1,\n", " 'types': 2,\n", " 'typified': 1,\n", " 'tyranny': 1,\n", " 'tyrant': 1,\n", " 'tyrants': 3,\n", " 'u.s': 3,\n", " 'ubiquitous': 2,\n", " 'ud': 1,\n", " 'ugh': 1,\n", " 'uglier': 1,\n", " 'ugliness': 1,\n", " 'ugly': 3,\n", " 'ultimate': 1,\n", " 'un': 2,\n", " \"un's\": 1,\n", " 'unable': 5,\n", " 'unaccountable': 1,\n", " 'unaccountably': 3,\n", " 'unaccused': 1,\n", " 'unaccustomed': 1,\n", " 'unacquainted': 1,\n", " 'unaltered': 1,\n", " 'unanimously': 1,\n", " 'unattainable': 1,\n", " 'unattended': 1,\n", " 'unavailing': 1,\n", " 'unavenged': 1,\n", " 'unbarred': 1,\n", " 'unbearable': 2,\n", " 'unbecoming': 1,\n", " 'unbeliever': 1,\n", " 'unbelieving': 2,\n", " 'unbent': 1,\n", " 'unbidden': 1,\n", " 'unblushing': 1,\n", " 'unborn': 2,\n", " 'unbrutalised': 1,\n", " 'unbuilt': 1,\n", " 'uncarpeted': 1,\n", " 'unceasingly': 1,\n", " 'uncertain': 5,\n", " 'uncertainties': 1,\n", " 'uncertainty': 3,\n", " 'unchangeable': 2,\n", " 'unchanged': 2,\n", " 'uncle': 13,\n", " \"uncle's\": 1,\n", " 'uncleansed': 1,\n", " 'unclosed': 1,\n", " 'uncomfortable': 2,\n", " 'uncomfortably': 1,\n", " 'uncommon': 1,\n", " 'uncomplaining': 1,\n", " 'uncompromising': 1,\n", " 'unconnected': 2,\n", " 'unconscious': 10,\n", " 'unconsciously': 1,\n", " 'unconsciousness': 1,\n", " 'uncontrollable': 1,\n", " 'uncorrupted': 1,\n", " 'under': 145,\n", " 'under-jaw': 1,\n", " 'undergo': 1,\n", " 'undergone': 2,\n", " 'undergraduates': 1,\n", " 'underground': 3,\n", " 'underneath': 1,\n", " 'understand': 28,\n", " 'understanding': 5,\n", " 'understood': 8,\n", " 'undertake': 5,\n", " 'undertakers': 3,\n", " 'undertaking': 1,\n", " 'undertook': 1,\n", " 'underwent': 1,\n", " 'undeserved': 1,\n", " 'undeserving': 1,\n", " 'undirected': 1,\n", " 'undisclosed': 1,\n", " 'undiscovered': 1,\n", " 'undisguised': 1,\n", " 'undistinguishable': 1,\n", " 'undisturbed': 2,\n", " 'undoubted': 1,\n", " 'undoubtedly': 3,\n", " 'undressing': 1,\n", " 'undug--if': 1,\n", " 'undutiful': 1,\n", " 'unearthly': 2,\n", " 'uneasily': 3,\n", " 'uneasiness': 9,\n", " 'uneasy': 5,\n", " 'unencumbered': 1,\n", " 'unenforceability': 1,\n", " 'unenlightened': 1,\n", " 'unequal': 1,\n", " 'uneven': 2,\n", " 'unexpected': 1,\n", " 'unexpectedly': 3,\n", " 'unexplained': 1,\n", " 'unfailing': 1,\n", " 'unfair': 1,\n", " 'unfashionable': 1,\n", " 'unfastened': 1,\n", " 'unfathomable': 1,\n", " 'unfathomed': 1,\n", " 'unfavourable': 1,\n", " 'unfeeling': 2,\n", " 'unfinished': 3,\n", " 'unfit': 2,\n", " 'unforeseen': 1,\n", " 'unformed': 1,\n", " 'unfortunate': 8,\n", " 'unfortunately': 1,\n", " 'unfounded': 1,\n", " 'unfrequently': 2,\n", " 'unfruitful': 1,\n", " 'ungenerous': 1,\n", " 'ungently': 1,\n", " 'unglazed': 2,\n", " 'ungrateful': 1,\n", " 'unhandsomely': 1,\n", " 'unhappily': 4,\n", " 'unhappy': 11,\n", " 'unhardened': 1,\n", " 'unhealthy': 1,\n", " 'unheard': 1,\n", " 'unheard--both': 1,\n", " 'unheeded': 1,\n", " 'uniform': 3,\n", " 'uniformity': 1,\n", " 'uniformly': 1,\n", " 'unimagined': 1,\n", " 'unimpaired': 1,\n", " 'unimpeachable': 3,\n", " 'unintelligible': 3,\n", " 'uninvited': 1,\n", " 'unison': 2,\n", " 'united': 16,\n", " 'units': 1,\n", " 'universal': 7,\n", " 'universe': 1,\n", " 'unjust': 2,\n", " 'unjustly': 1,\n", " 'unkempt': 1,\n", " 'unkind': 1,\n", " 'unknown': 8,\n", " 'unlawful': 2,\n", " 'unless': 8,\n", " 'unlike': 4,\n", " 'unlikely': 1,\n", " 'unlink': 1,\n", " 'unluckily': 1,\n", " 'unlucky': 1,\n", " 'unmixed': 1,\n", " 'unmoved': 1,\n", " \"unnat'ral\": 2,\n", " 'unnatural': 2,\n", " 'unnaturally': 1,\n", " 'unnecessarily': 1,\n", " 'unnecessary': 1,\n", " 'unopened': 1,\n", " 'unornamental': 1,\n", " 'unpopular': 1,\n", " 'unpopularity': 1,\n", " 'unprecedented': 1,\n", " 'unprepared': 2,\n", " 'unpromising': 1,\n", " 'unprosperous': 1,\n", " 'unprotected': 1,\n", " 'unquestionably': 3,\n", " 'unreal': 3,\n", " 'unreality': 2,\n", " 'unreasonable': 2,\n", " 'unrelenting': 1,\n", " 'unreserved': 1,\n", " 'unreservedly': 1,\n", " 'unrobed': 1,\n", " 'unruly': 1,\n", " 'unsafe': 1,\n", " 'unscrupulous': 1,\n", " 'unseen': 6,\n", " 'unselfish': 2,\n", " 'unselfishness': 1,\n", " 'unsettled': 1,\n", " 'unshaded': 1,\n", " 'unshaken': 1,\n", " 'unshaped': 1,\n", " 'unsolicited': 1,\n", " 'unspeakable': 2,\n", " 'unsteadily': 1,\n", " 'unsteady': 3,\n", " 'unsubstantial': 1,\n", " 'unsuccessful': 1,\n", " 'unsuitable': 1,\n", " 'unsuspicious': 1,\n", " 'unswallowed': 1,\n", " 'untidy': 1,\n", " 'until': 96,\n", " 'untimely': 2,\n", " 'untiring': 1,\n", " 'unto': 1,\n", " 'untold': 1,\n", " 'untouched': 1,\n", " 'untracked': 1,\n", " 'untrimmed': 1,\n", " 'untroubled': 1,\n", " 'unusual': 6,\n", " 'unusually': 4,\n", " 'unwholesome': 3,\n", " 'unwholesomely': 1,\n", " 'unwilling': 2,\n", " 'unwillingly--a': 1,\n", " 'unwillingness': 3,\n", " 'unwonted': 1,\n", " 'unworthily': 1,\n", " 'unyoked': 1,\n", " 'up': 309,\n", " 'up--as': 1,\n", " 'up-hill': 1,\n", " 'up-stairs': 6,\n", " 'up-stairs--and': 1,\n", " 'updated': 1,\n", " 'upheaving': 1,\n", " 'uphold': 2,\n", " 'upholsterers': 1,\n", " 'uplifted': 1,\n", " 'upon': 291,\n", " 'upper': 4,\n", " 'uppermost': 1,\n", " 'upright': 3,\n", " 'uproar': 3,\n", " 'upshot': 1,\n", " 'upstairs': 2,\n", " 'upturning': 1,\n", " 'upward': 9,\n", " 'upwards': 1,\n", " 'urchin': 2,\n", " 'urge': 2,\n", " 'urged': 5,\n", " 'urgent': 2,\n", " 'urging': 1,\n", " 'urns': 1,\n", " 'us': 107,\n", " 'us--i': 1,\n", " 'us--much': 1,\n", " 'usage': 3,\n", " 'use': 27,\n", " 'use--to': 1,\n", " 'used': 27,\n", " 'useful': 10,\n", " 'usefulness': 1,\n", " 'useless': 11,\n", " 'user': 3,\n", " 'using': 8,\n", " 'usual': 48,\n", " 'usually': 8,\n", " 'ut': 1,\n", " 'utmost': 9,\n", " 'utter': 3,\n", " 'utterance': 2,\n", " 'uttered': 8,\n", " 'utterer': 1,\n", " 'uttering': 1,\n", " 'utterly': 3,\n", " 'v': 3,\n", " 'vacant': 5,\n", " 'vacantly': 2,\n", " 'vacation': 4,\n", " \"vacation's\": 1,\n", " 'vagabond': 1,\n", " 'vagrancy': 1,\n", " 'vague': 4,\n", " 'vaguely': 2,\n", " 'vain': 17,\n", " 'vain;--then': 1,\n", " 'vainest': 1,\n", " 'vainly': 1,\n", " 'valet': 7,\n", " 'valise': 2,\n", " 'valuable': 3,\n", " 'value': 3,\n", " 'valued': 1,\n", " 'vanilla': 2,\n", " 'vanished': 4,\n", " 'vanities': 1,\n", " 'vanity': 1,\n", " 'vapour': 3,\n", " 'vapouring': 2,\n", " 'vapours': 1,\n", " 'variation': 1,\n", " 'varieties': 2,\n", " 'variety': 5,\n", " 'various': 14,\n", " 'variously': 1,\n", " 'varying': 2,\n", " 'vassal': 1,\n", " 'vast': 4,\n", " 'vaulted': 3,\n", " 'vaults': 1,\n", " 'vaunted': 1,\n", " 'vaunting': 1,\n", " 'vauxhall': 1,\n", " 'vegetable': 2,\n", " 'vegetating': 1,\n", " 'vehemence': 1,\n", " 'vehement': 1,\n", " 'vehicle': 4,\n", " 'vehicles': 2,\n", " 'veil': 2,\n", " 'veinous': 1,\n", " 'veins': 1,\n", " 'vendor': 3,\n", " 'venerable': 1,\n", " 'vengeance': 43,\n", " 'ventured': 2,\n", " 'verbal': 1,\n", " 'verdict': 2,\n", " 'verging': 1,\n", " 'vermin': 2,\n", " 'vermin-haunted': 1,\n", " 'versailles': 1,\n", " 'version': 2,\n", " 'very': 217,\n", " 'vessel': 2,\n", " 'vestige': 3,\n", " 'vexation': 1,\n", " 'vexed': 3,\n", " 'vi': 3,\n", " 'viands': 1,\n", " 'vice': 1,\n", " 'vices': 1,\n", " 'vicious': 1,\n", " 'victim': 5,\n", " 'victims': 5,\n", " 'victorious': 1,\n", " 'victory': 1,\n", " 'vied': 1,\n", " 'view': 7,\n", " 'view--it': 1,\n", " 'viewed': 2,\n", " 'viewing': 1,\n", " 'views': 1,\n", " 'vigilance': 1,\n", " 'vigilant': 1,\n", " 'vigorous': 2,\n", " 'vigour': 1,\n", " 'vigourous': 1,\n", " 'vii': 2,\n", " 'viii': 2,\n", " 'vile': 4,\n", " 'vilest': 1,\n", " 'village': 50,\n", " 'village--had': 1,\n", " 'villagers': 1,\n", " 'villages': 1,\n", " 'villain': 2,\n", " 'villainy': 1,\n", " 'ville': 4,\n", " 'vindicating': 1,\n", " 'vinegar': 2,\n", " 'vineyards': 1,\n", " 'vinous': 1,\n", " 'violates': 1,\n", " 'violence': 1,\n", " 'violent': 6,\n", " 'violently': 4,\n", " 'virtually': 1,\n", " 'virtue': 6,\n", " 'virtues': 2,\n", " 'virtuous': 3,\n", " 'virus': 1,\n", " 'visage': 5,\n", " 'visages': 1,\n", " 'visible': 8,\n", " 'visibly': 2,\n", " 'vision': 3,\n", " 'visit': 4,\n", " 'visitation': 1,\n", " 'visited': 1,\n", " 'visitor': 8,\n", " 'visitors': 2,\n", " 'vista': 1,\n", " 'vivacious': 1,\n", " 'vivacity': 1,\n", " 'vivid': 3,\n", " 'vividly': 2,\n", " 'vociferating': 1,\n", " 'vogue': 2,\n", " 'voice': 83,\n", " 'voice--i': 1,\n", " 'voices': 13,\n", " 'voices--among': 1,\n", " 'voices--voices': 1,\n", " 'void': 1,\n", " 'volleys': 1,\n", " 'voluble': 2,\n", " 'voluntarily': 3,\n", " 'voluntary': 1,\n", " 'volunteer': 1,\n", " 'volunteers': 7,\n", " 'voluptuous': 1,\n", " 'vortex': 1,\n", " 'vote': 2,\n", " 'voted': 2,\n", " 'votes': 1,\n", " 'vow': 1,\n", " 'voyage': 2,\n", " 'vulgar': 3,\n", " 'wager': 1,\n", " 'wages': 1,\n", " 'waggonloads': 1,\n", " 'waifs': 1,\n", " 'wail': 1,\n", " 'wailing': 2,\n", " 'waist': 8,\n", " 'waist-coat': 1,\n", " 'waistband': 3,\n", " 'waistcoat': 3,\n", " 'wait': 14,\n", " 'waited': 12,\n", " 'waiter': 3,\n", " 'waiters': 1,\n", " 'waiting': 17,\n", " 'wake': 5,\n", " 'wakened': 1,\n", " 'waking': 2,\n", " 'wales': 1,\n", " 'walk': 10,\n", " 'walked': 43,\n", " 'walking': 22,\n", " 'walking-shoe': 1,\n", " 'walks': 1,\n", " 'wall': 43,\n", " 'wall--there': 1,\n", " 'walls': 18,\n", " 'walnut-shell': 1,\n", " 'walton': 1,\n", " 'wander': 1,\n", " 'wandered': 6,\n", " 'wanderer': 1,\n", " 'wandering': 8,\n", " 'waning': 1,\n", " 'want': 36,\n", " 'wanted': 16,\n", " 'wanting': 3,\n", " 'wantonly': 1,\n", " 'wants': 2,\n", " 'war': 1,\n", " 'warbled': 1,\n", " 'ward': 3,\n", " 'warehouses': 1,\n", " 'warm': 6,\n", " 'warmed': 2,\n", " 'warmer': 1,\n", " 'warming': 1,\n", " 'warmly': 3,\n", " 'warmth': 2,\n", " \"warn't\": 3,\n", " 'warned': 2,\n", " 'warning': 5,\n", " 'warnings': 1,\n", " 'warped': 2,\n", " 'warranties': 3,\n", " 'warranty': 2,\n", " 'wars': 1,\n", " 'warwickshire': 1,\n", " 'wary': 2,\n", " 'was': 1764,\n", " 'was--and': 1,\n", " 'was--before': 1,\n", " 'was--or': 1,\n", " 'was--quite': 1,\n", " 'was--without': 1,\n", " 'washed': 2,\n", " 'washing': 1,\n", " 'washington': 4,\n", " \"wasn't\": 2,\n", " 'waste': 6,\n", " 'wasted': 9,\n", " 'watch': 13,\n", " 'watch-fire': 1,\n", " 'watched': 13,\n", " 'watches': 5,\n", " 'watchful': 6,\n", " 'watchfully': 1,\n", " 'watchfulness': 4,\n", " 'watching': 12,\n", " 'watchman': 1,\n", " 'watchmen': 2,\n", " 'watchtower': 1,\n", " 'water': 37,\n", " 'water-colours': 1,\n", " 'waterfalls': 1,\n", " 'waters': 4,\n", " 'waterspout': 1,\n", " 'watery': 2,\n", " 'wave': 9,\n", " 'waved': 5,\n", " 'waves': 5,\n", " 'wax': 1,\n", " 'way': 180,\n", " 'way--\"though': 1,\n", " 'way--and': 1,\n", " 'way--charles': 1,\n", " 'way--have': 1,\n", " 'way--tend': 1,\n", " 'way--the': 1,\n", " 'way--to': 1,\n", " 'wayfarer': 1,\n", " 'waylaid': 1,\n", " 'ways': 18,\n", " 'wayside': 1,\n", " 'we': 177,\n", " 'we--since': 1,\n", " 'weak': 16,\n", " 'weaken': 1,\n", " 'weakened': 1,\n", " 'weaker': 1,\n", " 'weakest': 1,\n", " 'weakness': 10,\n", " 'weaknesses': 1,\n", " 'weapon': 7,\n", " 'weapons': 7,\n", " 'wear': 9,\n", " 'wearer': 2,\n", " \"wearer's\": 2,\n", " 'wearied': 1,\n", " 'wearing': 1,\n", " 'weary': 8,\n", " 'weary--worn': 1,\n", " 'weather': 8,\n", " 'weather-beaten': 1,\n", " 'weathers': 3,\n", " 'weaving': 1,\n", " 'web': 6,\n", " 'wednesday': 1,\n", " 'weeds': 1,\n", " 'week': 14,\n", " 'weekly': 1,\n", " 'weeks': 6,\n", " 'weep': 14,\n", " 'weeping': 6,\n", " 'weigh': 1,\n", " 'weighs': 1,\n", " 'weight': 8,\n", " 'weird': 2,\n", " 'welcome': 3,\n", " 'well': 167,\n", " 'well--thousands': 1,\n", " 'well-directed': 1,\n", " 'well-grown': 1,\n", " 'well-known': 2,\n", " 'well-looking': 1,\n", " 'well-made': 1,\n", " 'well-remembered': 1,\n", " 'well-satisfied': 1,\n", " 'well-worn': 1,\n", " 'wells': 1,\n", " 'wending': 1,\n", " 'went': 109,\n", " 'wenturs': 1,\n", " 'wept': 6,\n", " 'were': 657,\n", " 'were--charles': 1,\n", " \"weren't\": 1,\n", " 'wery': 1,\n", " 'west': 5,\n", " 'westminster': 2,\n", " 'westward': 2,\n", " 'wet': 11,\n", " 'wet-towelling': 1,\n", " 'wetted': 1,\n", " 'what': 371,\n", " \"what's\": 9,\n", " 'whatever': 16,\n", " 'whatsoever': 2,\n", " 'wheat': 1,\n", " 'wheel': 2,\n", " 'wheel--the': 1,\n", " 'wheeled': 1,\n", " 'wheels': 10,\n", " 'when': 434,\n", " 'whence': 2,\n", " 'whenever': 6,\n", " 'where': 158,\n", " 'whereas': 4,\n", " 'whereat': 1,\n", " 'wherein': 3,\n", " 'whereof': 1,\n", " 'whereunto': 1,\n", " 'whereupon': 2,\n", " 'wherever': 1,\n", " 'whet': 1,\n", " 'whether': 43,\n", " 'whew': 1,\n", " 'which': 409,\n", " 'whiffed': 1,\n", " 'while': 97,\n", " 'whiles': 2,\n", " 'whimpering': 1,\n", " 'whims': 1,\n", " 'whip': 5,\n", " 'whip-corrected': 1,\n", " 'whipping-post': 2,\n", " 'whips': 3,\n", " 'whirled': 4,\n", " 'whirling': 4,\n", " 'whirlings': 1,\n", " 'whirlpool': 1,\n", " 'whirrs': 1,\n", " 'whisper': 17,\n", " 'whispered': 14,\n", " 'whispering': 6,\n", " 'whispers': 4,\n", " 'whistled': 1,\n", " 'whistling': 1,\n", " 'white': 28,\n", " 'white-haired': 4,\n", " 'white-silk': 1,\n", " 'whitefriars': 1,\n", " 'whiteness': 2,\n", " 'whiter': 1,\n", " 'whitewashed': 1,\n", " 'who': 375,\n", " \"who's\": 3,\n", " 'whole': 37,\n", " 'wholesale': 1,\n", " 'wholesome': 2,\n", " 'wholly': 4,\n", " 'whom': 70,\n", " 'whoop': 1,\n", " 'whose': 45,\n", " 'whosoever': 4,\n", " 'why': 70,\n", " 'wicked': 9,\n", " 'wickedly': 1,\n", " 'wickedness': 1,\n", " 'wicket': 3,\n", " 'wicks': 1,\n", " 'wide': 13,\n", " 'widely': 1,\n", " 'wider': 2,\n", " 'widest': 2,\n", " 'widow': 3,\n", " 'widowhood': 1,\n", " 'width': 1,\n", " 'wielders': 1,\n", " 'wife': 93,\n", " 'wife!--we': 1,\n", " \"wife's\": 3,\n", " 'wife--o': 1,\n", " 'wife--so': 1,\n", " 'wig': 15,\n", " 'wig--lorry--of': 1,\n", " 'wigged': 6,\n", " 'wigs': 2,\n", " 'wild': 25,\n", " 'wild-beast': 1,\n", " 'wild-looking': 1,\n", " 'wilderness': 4,\n", " 'wildest': 4,\n", " 'wildly': 5,\n", " 'wildness': 2,\n", " 'wilfully': 1,\n", " 'will': 295,\n", " 'will--he': 1,\n", " 'willing': 4,\n", " 'willingly': 6,\n", " 'wills': 1,\n", " 'wilt': 1,\n", " 'win': 1,\n", " 'wind': 17,\n", " 'winding': 8,\n", " 'winding-sheet': 1,\n", " 'windmill': 1,\n", " 'window': 49,\n", " 'window-breaking': 1,\n", " 'window-ledges': 1,\n", " 'windows': 28,\n", " 'winds': 7,\n", " 'windy': 3,\n", " 'wine': 63,\n", " 'wine--but': 1,\n", " 'wine-lees--blood': 1,\n", " 'wine-rotted': 1,\n", " 'wine-shop': 51,\n", " 'wine-shops': 2,\n", " 'wine-vendor': 1,\n", " 'wing': 1,\n", " 'wings': 4,\n", " 'wink': 1,\n", " 'winking': 3,\n", " 'winning': 3,\n", " 'winnowing': 1,\n", " 'winter': 11,\n", " 'wintry': 2,\n", " 'wipe': 2,\n", " 'wiped': 2,\n", " 'wiping': 1,\n", " 'wiry': 1,\n", " 'wisdom': 2,\n", " 'wise': 5,\n", " 'wisely': 1,\n", " 'wiser': 2,\n", " 'wisest': 1,\n", " 'wish': 26,\n", " 'wished': 5,\n", " 'wishes': 8,\n", " 'wishing': 2,\n", " 'wisited': 1,\n", " 'wistfully': 1,\n", " 'wit': 2,\n", " 'wital': 1,\n", " 'with': 1351,\n", " 'with--had': 1,\n", " 'withal': 1,\n", " 'withdrawing': 1,\n", " 'withdrawn': 1,\n", " 'withdraws': 1,\n", " 'withdrew': 6,\n", " 'wither': 1,\n", " 'withered': 2,\n", " 'withheld--to': 1,\n", " 'within': 68,\n", " 'without': 112,\n", " 'witness': 25,\n", " 'witness-box': 1,\n", " 'witnessed': 1,\n", " 'witnesses': 8,\n", " 'wittles': 3,\n", " 'wives': 3,\n", " 'wo-ho': 2,\n", " 'woe': 3,\n", " 'wolf-procession': 1,\n", " 'wolfishly': 1,\n", " 'woman': 66,\n", " \"woman's\": 5,\n", " 'woman--had': 1,\n", " 'womanly': 1,\n", " 'women': 52,\n", " \"women's\": 3,\n", " 'women--who': 1,\n", " 'won': 3,\n", " \"won't\": 11,\n", " 'wonder': 14,\n", " 'wonder!--much': 1,\n", " 'wondered': 1,\n", " 'wonderful': 11,\n", " 'wondering': 4,\n", " 'wonders': 2,\n", " 'wood': 13,\n", " 'wood-ashes': 2,\n", " 'wood-sawyer': 12,\n", " \"wood-sawyer's\": 1,\n", " 'wooden': 9,\n", " 'woodman': 3,\n", " 'woods': 3,\n", " 'woollen': 3,\n", " 'word': 69,\n", " 'words': 77,\n", " 'wore': 20,\n", " 'work': 128,\n", " 'work-table': 1,\n", " 'work-worn': 1,\n", " 'worked': 21,\n", " 'workers': 1,\n", " 'working': 7,\n", " 'workings': 3,\n", " 'workman': 3,\n", " 'workmen': 3,\n", " 'works': 34,\n", " 'workshop': 1,\n", " 'world': 41,\n", " 'world--the': 2,\n", " 'world--which': 1,\n", " 'worldly': 6,\n", " 'worm-eaten': 1,\n", " 'wormy': 1,\n", " 'worn': 15,\n", " 'worn-out': 1,\n", " 'worried': 2,\n", " 'worse': 19,\n", " 'worse--and': 1,\n", " 'worshippers': 2,\n", " 'worst': 18,\n", " 'worth': 22,\n", " 'worthier': 1,\n", " 'worthless': 2,\n", " 'worthlessness': 1,\n", " 'worthy': 10,\n", " 'wos': 10,\n", " 'wot': 18,\n", " \"wot's\": 1,\n", " 'would': 341,\n", " \"wouldn't\": 13,\n", " 'wouldst': 1,\n", " 'wound': 9,\n", " 'wounded': 6,\n", " 'wounds': 2,\n", " 'woven': 1,\n", " 'wows': 1,\n", " 'wrap': 1,\n", " 'wrapped': 6,\n", " 'wrapper': 1,\n", " 'wrappers': 2,\n", " 'wrappings': 1,\n", " 'wrath': 1,\n", " 'wrath--the': 1,\n", " 'wrathfully': 2,\n", " 'wreaking': 1,\n", " 'wreaths': 2,\n", " 'wreck': 2,\n", " 'wrecks': 2,\n", " 'wrench': 1,\n", " 'wrested': 1,\n", " 'wretch': 4,\n", " 'wretched': 13,\n", " 'wretchedest': 1,\n", " 'wretchedly': 1,\n", " 'wretches': 1,\n", " 'wring': 1,\n", " 'wringing': 2,\n", " 'wrist': 4,\n", " 'wrists': 2,\n", " 'write': 22,\n", " 'write--and': 1,\n", " 'writer': 1,\n", " \"writer's\": 1,\n", " 'writing': 14,\n", " 'written': 21,\n", " 'wrong': 20,\n", " 'wronged': 1,\n", " 'wrongfully': 1,\n", " 'wrongs': 2,\n", " 'wrote': 13,\n", " 'wrought': 2,\n", " 'wrung': 5,\n", " 'www.gutenberg.org': 2,\n", " 'x': 2,\n", " 'xi': 2,\n", " 'xii': 2,\n", " 'xiii': 2,\n", " 'xiv': 2,\n", " 'xix': 1,\n", " 'xv': 2,\n", " 'xvi': 1,\n", " 'xvii': 1,\n", " 'xviii': 1,\n", " 'xx': 1,\n", " 'xxi': 1,\n", " 'xxii': 1,\n", " 'xxiii': 1,\n", " 'xxiv': 1,\n", " 'yah': 3,\n", " 'yaha': 4,\n", " 'yard': 6,\n", " 'yards': 4,\n", " 'yawned': 1,\n", " 'ye': 2,\n", " 'ye-es': 1,\n", " 'year': 36,\n", " 'yearned': 1,\n", " 'yearning': 1,\n", " 'years': 86,\n", " 'years--a': 1,\n", " 'years--because': 1,\n", " 'yellow': 5,\n", " 'yells': 1,\n", " 'yes': 117,\n", " 'yes--i': 2,\n", " 'yesterday': 18,\n", " 'yet': 108,\n", " 'yield': 3,\n", " 'yielded': 8,\n", " 'yielded:--not': 1,\n", " 'yielding': 3,\n", " 'yieldings': 1,\n", " 'yo': 1,\n", " 'yoked': 1,\n", " 'yonder': 5,\n", " 'yore': 1,\n", " 'you': 1455,\n", " 'you!--under': 1,\n", " \"you'd\": 3,\n", " \"you'll\": 7,\n", " \"you're\": 10,\n", " \"you've\": 7,\n", " 'you--_are': 1,\n", " 'you--and': 1,\n", " 'you--does': 1,\n", " 'you--forgive': 1,\n", " 'you--ties': 1,\n", " 'you:--does': 1,\n", " 'young': 127,\n", " 'younger': 9,\n", " 'youngest': 1,\n", " 'your': 345,\n", " \"your'n\": 1,\n", " 'yourn': 1,\n", " 'yours': 16,\n", " 'yourself': 40,\n", " 'yourself--flung': 1,\n", " 'yourself--that': 1,\n", " 'yourselves': 3,\n", " 'youth': 9,\n", " 'youthful': 3,\n", " 'youthfulness': 1,\n", " 'youths': 1,\n", " 'zealous': 2}" ] } ], "prompt_number": 7 }, { "cell_type": "code", "collapsed": false, "input": [ "from toolz import concat\n", "from toolz.curried import drop\n", "\n", "pipe('data/tale-of-two-cities.txt', open, drop(112), map(str.split), concat, map(stem), frequencies)" ], "language": "python", "metadata": {}, "outputs": [ { "metadata": {}, "output_type": "pyout", "prompt_number": 8, "text": [ "{'': 35,\n", " '1': 2,\n", " '1.a': 1,\n", " '1.b': 1,\n", " '1.c': 2,\n", " '1.d': 1,\n", " '1.e': 2,\n", " '1.e.1': 5,\n", " '1.e.2': 1,\n", " '1.e.3': 1,\n", " '1.e.4': 1,\n", " '1.e.5': 1,\n", " '1.e.6': 1,\n", " '1.e.7': 3,\n", " '1.e.8': 4,\n", " '1.e.9': 3,\n", " '1.f': 1,\n", " '1.f.1': 1,\n", " '1.f.2': 1,\n", " '1.f.3': 4,\n", " '1.f.4': 1,\n", " '1.f.5': 1,\n", " '1.f.6': 1,\n", " '1500': 1,\n", " '1757': 1,\n", " '1767': 2,\n", " '1792': 1,\n", " '2': 1,\n", " '20%': 1,\n", " '2001': 1,\n", " '21': 1,\n", " '3': 3,\n", " '30': 1,\n", " '4': 3,\n", " '4557': 1,\n", " '5': 1,\n", " '5,000': 1,\n", " '50': 1,\n", " '501(c)(3': 2,\n", " '596-1887': 1,\n", " '60': 1,\n", " '64-6221541': 1,\n", " '801': 1,\n", " '809': 1,\n", " '84116': 1,\n", " '90': 2,\n", " '98-8.txt': 1,\n", " '98-8.zip': 1,\n", " '99712': 1,\n", " 'a': 2967,\n", " 'a--a': 1,\n", " 'a-a-a-business': 1,\n", " 'a-a-matter': 1,\n", " 'a-buzz': 1,\n", " 'a-tiptoe': 1,\n", " 'aback': 1,\n", " 'abandon': 1,\n", " 'abandoned': 10,\n", " 'abandoning': 1,\n", " 'abandonment': 1,\n", " 'abashed': 1,\n", " 'abate': 1,\n", " 'abated': 1,\n", " 'abbaye': 4,\n", " 'abbaye--in': 1,\n", " 'abed': 2,\n", " 'abhorrence': 1,\n", " 'abide': 1,\n", " 'abided': 1,\n", " 'abiding': 1,\n", " 'abilities': 1,\n", " 'ability': 2,\n", " 'abject': 1,\n", " 'ablaze': 1,\n", " 'able': 17,\n", " 'aboard': 1,\n", " 'abode': 1,\n", " 'abolished': 2,\n", " 'abolished--expression': 1,\n", " 'abolishing': 1,\n", " 'abolition': 1,\n", " 'abominable': 2,\n", " 'abounding': 1,\n", " 'about': 169,\n", " 'above': 23,\n", " 'abreast': 2,\n", " 'abridge': 1,\n", " 'abroad': 2,\n", " 'abrupt': 3,\n", " 'abruptly': 1,\n", " 'absence': 8,\n", " 'absent': 5,\n", " 'absolute': 3,\n", " 'absolutely': 7,\n", " 'absolving': 1,\n", " 'absorbed': 4,\n", " 'absorption': 1,\n", " 'abstractedly': 1,\n", " 'abstraction': 3,\n", " 'absurd': 1,\n", " 'abundance': 1,\n", " 'abundant': 4,\n", " 'abuse': 1,\n", " 'abused': 1,\n", " 'abyss': 1,\n", " 'abyssinia': 1,\n", " 'accent': 2,\n", " 'accents': 1,\n", " 'accept': 5,\n", " 'acceptable': 1,\n", " 'acceptation': 1,\n", " 'accepted': 3,\n", " 'accepting': 1,\n", " 'access': 14,\n", " 'accessed': 1,\n", " 'accessible': 2,\n", " 'accessories': 1,\n", " 'accident': 2,\n", " 'accident--a': 1,\n", " 'accidental': 3,\n", " 'accidentally': 3,\n", " 'acclamation': 1,\n", " 'acclamations': 2,\n", " 'accommodation': 1,\n", " 'accompanied': 4,\n", " 'accompaniment': 2,\n", " 'accompany': 4,\n", " 'accompanying': 1,\n", " 'accomplices': 1,\n", " 'accomplished': 5,\n", " 'accomplishing': 1,\n", " 'accomplishments': 2,\n", " 'accord': 1,\n", " 'accordance': 4,\n", " 'accorded': 1,\n", " 'according': 10,\n", " 'accordingly': 6,\n", " 'accost': 1,\n", " 'accosted': 1,\n", " 'account': 19,\n", " 'account--it': 1,\n", " 'account--was': 1,\n", " 'accounts': 2,\n", " 'accoutred': 1,\n", " 'accumulated': 1,\n", " 'accumulating': 1,\n", " 'accurate': 1,\n", " 'accurately': 1,\n", " 'accursed': 5,\n", " 'accusation': 2,\n", " 'accused': 13,\n", " 'accustomed': 7,\n", " 'ace': 3,\n", " 'achieve': 1,\n", " 'achieved': 1,\n", " 'achievement': 1,\n", " 'achievements': 1,\n", " 'achieving': 1,\n", " 'acknowledge': 1,\n", " 'acknowledged': 5,\n", " 'acknowledgment': 2,\n", " 'acknowledgments': 1,\n", " 'acoustical': 1,\n", " 'acquaintance': 1,\n", " 'acquainted': 2,\n", " 'acquiesced': 1,\n", " 'acquiescence': 1,\n", " 'acquired': 2,\n", " 'acquirements--a': 1,\n", " 'acquisition': 1,\n", " 'acquit': 1,\n", " 'acquittal': 1,\n", " 'acquitted': 3,\n", " 'acres': 1,\n", " 'across': 36,\n", " 'act': 11,\n", " 'acted': 9,\n", " 'action': 20,\n", " 'action--not': 1,\n", " 'actions': 1,\n", " 'active': 6,\n", " 'actively': 2,\n", " 'actor': 1,\n", " 'actual': 4,\n", " 'actually': 5,\n", " 'acute': 1,\n", " 'acuteness': 1,\n", " 'adam': 1,\n", " 'add': 7,\n", " 'added': 32,\n", " 'addition': 3,\n", " 'additional': 8,\n", " 'additionally': 2,\n", " 'additions': 3,\n", " 'address': 8,\n", " 'addressed': 8,\n", " 'addresses': 2,\n", " 'addressing': 5,\n", " 'adequately': 1,\n", " 'adieu': 3,\n", " 'adjacent': 5,\n", " 'adjective': 1,\n", " 'adjoining': 4,\n", " 'adjourned': 1,\n", " 'adjuration': 1,\n", " 'adjure': 1,\n", " 'adjured': 2,\n", " 'adjusted': 2,\n", " 'adjusting': 2,\n", " 'administered': 2,\n", " 'admirable': 4,\n", " 'admiration': 5,\n", " 'admire': 3,\n", " 'admired': 1,\n", " 'admirers': 1,\n", " 'admiring': 4,\n", " 'admission': 3,\n", " 'admit': 7,\n", " 'admittance': 1,\n", " 'admitted': 4,\n", " 'admonish': 1,\n", " 'admonitory': 1,\n", " 'adopted': 1,\n", " 'adorable': 1,\n", " 'adorn--the': 1,\n", " 'adorned': 1,\n", " 'adornments': 1,\n", " 'adust': 1,\n", " 'advance': 10,\n", " 'advanced': 9,\n", " 'advancing': 5,\n", " 'advantage': 5,\n", " 'advantages': 2,\n", " 'adventurous': 3,\n", " 'advice': 7,\n", " 'advisable': 1,\n", " 'advise': 6,\n", " 'advised': 3,\n", " 'adviser--a': 1,\n", " 'advocate': 2,\n", " \"advocate's\": 1,\n", " 'afar': 4,\n", " 'affably': 1,\n", " 'affair': 1,\n", " 'affairs': 12,\n", " 'affect': 3,\n", " 'affected': 4,\n", " 'affectingly': 1,\n", " 'affection': 6,\n", " 'affectionate': 6,\n", " 'affectionately': 3,\n", " 'affections': 3,\n", " 'affidavit': 1,\n", " 'affirmative': 2,\n", " 'afflicted': 6,\n", " 'affliction': 3,\n", " 'afford': 3,\n", " 'afforded': 1,\n", " 'affrighted': 1,\n", " 'afire': 1,\n", " 'afoot': 1,\n", " 'afore': 1,\n", " 'aforesaid': 2,\n", " 'afraid': 17,\n", " 'afresh': 4,\n", " 'after': 138,\n", " 'afternoon': 18,\n", " 'afterwards': 25,\n", " 'again': 227,\n", " 'again!--to': 1,\n", " 'against': 78,\n", " 'age': 20,\n", " 'aged': 2,\n", " 'agency': 1,\n", " 'agent': 2,\n", " 'ages': 4,\n", " 'aggerawayter': 3,\n", " 'aggravated': 1,\n", " 'aggravation': 1,\n", " 'agicultooral': 1,\n", " 'agility': 1,\n", " 'agin': 6,\n", " 'agitated': 6,\n", " 'agitation': 9,\n", " 'agitation--a': 1,\n", " 'ago': 32,\n", " 'agonised': 1,\n", " 'agony': 7,\n", " 'agree': 9,\n", " 'agreeable': 9,\n", " 'agreed': 5,\n", " 'agreement': 19,\n", " 'agreement--they': 1,\n", " 'ah': 23,\n", " 'aha': 1,\n", " 'ahead': 2,\n", " 'aid': 14,\n", " 'aids': 1,\n", " 'ailing': 1,\n", " 'aiming': 2,\n", " 'aims': 1,\n", " \"ain't\": 9,\n", " 'air': 67,\n", " 'airily': 1,\n", " 'airs': 2,\n", " 'airy': 2,\n", " 'ajar': 1,\n", " 'ak': 1,\n", " 'akin': 2,\n", " 'al-ways': 2,\n", " 'alacrity': 1,\n", " 'alarm': 5,\n", " 'alarm-bells': 1,\n", " 'alarmed': 4,\n", " 'alarming': 4,\n", " 'alarmingly': 1,\n", " 'alas': 2,\n", " 'albeit': 1,\n", " 'alcove': 1,\n", " 'ale': 1,\n", " 'ale-house': 1,\n", " 'ale-houses': 1,\n", " 'alert': 1,\n", " 'alexandre': 6,\n", " 'alienated': 1,\n", " 'alight': 2,\n", " 'alighted': 4,\n", " 'alighting': 1,\n", " 'alike': 6,\n", " 'alive': 10,\n", " 'all': 571,\n", " 'alleys': 1,\n", " 'allied': 1,\n", " 'allow': 4,\n", " 'allowance': 1,\n", " 'allowed': 4,\n", " 'allowing': 3,\n", " 'allusion': 2,\n", " 'allusions': 1,\n", " 'alluvial': 1,\n", " 'ally': 1,\n", " 'almost': 46,\n", " \"almost-child's\": 1,\n", " 'aloft': 2,\n", " 'alone': 52,\n", " 'alone--blinded': 1,\n", " 'alone--for': 1,\n", " 'along': 42,\n", " 'aloud': 8,\n", " 'already': 41,\n", " 'already--banishing': 1,\n", " 'also': 30,\n", " 'altar': 3,\n", " 'alter': 3,\n", " 'alteration': 1,\n", " 'alterations': 1,\n", " 'altercation': 1,\n", " 'altered': 6,\n", " 'alternate': 1,\n", " 'alternating': 1,\n", " 'although': 16,\n", " 'altitude': 1,\n", " 'altogether': 13,\n", " 'always': 101,\n", " 'always--as': 1,\n", " 'always-vain': 1,\n", " 'am': 225,\n", " 'amazed': 3,\n", " 'amazement': 3,\n", " 'amazingly': 1,\n", " 'ambassadors': 1,\n", " 'ambition': 4,\n", " 'ambuscade': 1,\n", " 'amendment': 1,\n", " 'amends': 3,\n", " 'america': 3,\n", " 'americans': 1,\n", " 'amiable': 2,\n", " 'amiably': 1,\n", " 'amicably': 1,\n", " 'amidst': 3,\n", " 'amiss': 2,\n", " 'ammunition': 1,\n", " 'among': 106,\n", " 'amount': 1,\n", " 'ample': 1,\n", " 'amused': 3,\n", " 'an': 348,\n", " 'analyse': 1,\n", " 'anathematised': 1,\n", " 'anatomise': 1,\n", " 'ancestors': 1,\n", " 'ancestral': 1,\n", " 'anchor': 1,\n", " 'anchorage': 1,\n", " 'ancient': 10,\n", " 'and': 4993,\n", " 'and--but': 1,\n", " 'and--in': 1,\n", " 'and--miss': 1,\n", " 'anew': 7,\n", " 'angel': 2,\n", " \"angel's\": 1,\n", " 'angels': 3,\n", " 'anger': 6,\n", " 'angering': 1,\n", " 'angle': 3,\n", " 'angrily': 3,\n", " 'angry': 15,\n", " 'anguish': 4,\n", " 'animal': 1,\n", " 'animals': 2,\n", " 'animated': 5,\n", " 'animosity': 2,\n", " 'aniseed': 1,\n", " 'ankles': 1,\n", " 'anna': 1,\n", " 'annihilated': 1,\n", " 'annihilation': 1,\n", " 'anniversary': 1,\n", " 'anno': 1,\n", " 'announce': 2,\n", " 'announced': 2,\n", " 'announcement': 2,\n", " 'announcing': 1,\n", " 'annoyed': 2,\n", " 'anon': 1,\n", " 'another': 132,\n", " \"another's\": 2,\n", " 'another--this': 1,\n", " 'answer': 51,\n", " 'answer--\"various': 1,\n", " 'answered': 53,\n", " 'answering': 10,\n", " 'answers': 2,\n", " 'ante-chambers': 1,\n", " 'antecedents': 2,\n", " 'anti-climax': 1,\n", " 'anticipate': 3,\n", " 'anticipating': 3,\n", " 'anticipation': 2,\n", " 'antipathies': 1,\n", " 'antipathy': 1,\n", " 'antiquity': 5,\n", " 'antoine': 49,\n", " \"antoine's\": 3,\n", " 'anxieties': 1,\n", " 'anxiety': 8,\n", " 'anxious': 16,\n", " 'anxiously': 2,\n", " 'any': 261,\n", " 'anybody': 8,\n", " \"anybody's\": 5,\n", " 'anyone': 4,\n", " 'anything': 57,\n", " 'anyways': 1,\n", " 'anywhere': 5,\n", " 'apart': 16,\n", " 'apartment': 3,\n", " 'apartments': 2,\n", " 'aphorism': 1,\n", " 'apocryphal': 1,\n", " 'apologetic': 1,\n", " 'apology': 1,\n", " 'apostrophe': 1,\n", " 'apostrophise': 1,\n", " 'apostrophising': 1,\n", " 'apparatus': 1,\n", " 'apparent': 4,\n", " 'apparently': 6,\n", " 'apparition': 2,\n", " 'apparitions': 2,\n", " 'appeal': 7,\n", " 'appealed': 2,\n", " 'appealing': 3,\n", " 'appeals': 1,\n", " 'appear': 8,\n", " 'appearance': 29,\n", " 'appearances': 1,\n", " 'appeared': 21,\n", " 'appearing': 5,\n", " 'appears': 2,\n", " 'appellation': 1,\n", " 'applauding': 1,\n", " 'applause': 1,\n", " 'apple': 1,\n", " 'apples': 1,\n", " 'applicable': 3,\n", " 'application': 3,\n", " 'applied': 1,\n", " 'applies': 1,\n", " 'apply': 1,\n", " 'appointed': 8,\n", " 'appointment': 2,\n", " 'appointments': 1,\n", " 'appreciate': 1,\n", " 'appreciated': 1,\n", " 'appreciative': 2,\n", " 'apprehend': 2,\n", " 'apprehension': 5,\n", " 'apprehensions': 2,\n", " 'apprehensive': 1,\n", " 'apprised': 1,\n", " 'approach': 7,\n", " 'approached': 6,\n", " 'approaches': 1,\n", " 'approaching': 1,\n", " 'approbation': 1,\n", " 'appropriate': 1,\n", " 'approval': 3,\n", " 'approve': 2,\n", " 'approved': 2,\n", " 'approvingly': 2,\n", " 'aquiline': 3,\n", " 'arabian': 1,\n", " 'arch': 1,\n", " 'arched': 1,\n", " 'arches': 2,\n", " 'architecture': 3,\n", " 'archive': 13,\n", " 'ardent': 3,\n", " 'ardour': 2,\n", " 'are': 333,\n", " 'are!--perhaps': 1,\n", " 'area-railings': 1,\n", " 'argued': 3,\n", " 'argument': 1,\n", " 'argumentative': 1,\n", " 'arise': 6,\n", " 'arisen': 2,\n", " 'aristocrat': 10,\n", " 'aristocratic': 3,\n", " 'aristocrats': 2,\n", " 'arm': 60,\n", " \"arm's\": 1,\n", " 'arm--it': 1,\n", " 'arm-chair': 1,\n", " 'arm-chest': 2,\n", " 'armed': 14,\n", " 'armorial': 1,\n", " 'armoury': 1,\n", " 'arms': 49,\n", " 'army': 3,\n", " 'arose': 19,\n", " 'around': 19,\n", " 'arouse': 1,\n", " 'arraigned': 1,\n", " 'arrange': 1,\n", " 'arranged': 5,\n", " 'arrangement': 7,\n", " 'arrangements': 9,\n", " 'arranging': 1,\n", " 'array': 1,\n", " 'arrears': 1,\n", " 'arrest': 3,\n", " 'arrested': 4,\n", " 'arrival': 7,\n", " 'arrive': 5,\n", " 'arrived': 14,\n", " 'arriving': 2,\n", " 'art': 6,\n", " 'artful': 1,\n", " 'article': 2,\n", " 'articles': 5,\n", " 'articulate': 1,\n", " 'artificially': 1,\n", " 'artless': 1,\n", " 'arts': 4,\n", " 'as': 1148,\n", " 'as-is': 1,\n", " 'ascended': 6,\n", " 'ascending': 2,\n", " 'ascents': 1,\n", " 'ascertain': 2,\n", " 'ascertained': 3,\n", " 'ascii': 2,\n", " 'ashamed': 4,\n", " 'ashantee': 1,\n", " 'ashes': 6,\n", " 'ashy': 2,\n", " 'aside': 23,\n", " 'ask': 61,\n", " 'asked': 86,\n", " 'asking': 6,\n", " 'asks': 4,\n", " 'asleep': 21,\n", " 'aspect': 17,\n", " 'aspirations': 2,\n", " 'aspired': 1,\n", " 'assailant': 1,\n", " 'assassinated': 1,\n", " 'assassination': 1,\n", " 'assassins': 1,\n", " 'assault': 1,\n", " 'assemblage': 1,\n", " 'assemblages': 1,\n", " 'assemble': 1,\n", " 'assembled': 2,\n", " 'assembles': 1,\n", " 'assented': 5,\n", " 'assert': 2,\n", " 'asserted': 2,\n", " 'assertion': 1,\n", " 'asseveration': 1,\n", " 'assiduously': 1,\n", " 'assignation': 1,\n", " 'assigned': 2,\n", " 'assist': 5,\n", " 'assistance': 6,\n", " 'assisted': 12,\n", " 'assisting': 1,\n", " 'associated': 10,\n", " 'associating': 2,\n", " 'association': 6,\n", " 'associations': 5,\n", " 'assorted': 1,\n", " 'assume': 2,\n", " 'assumed': 4,\n", " 'assuming': 1,\n", " 'assumption': 2,\n", " 'assurance': 2,\n", " 'assurances': 2,\n", " 'assure': 6,\n", " 'assured': 4,\n", " 'assuredly': 3,\n", " 'assures': 1,\n", " 'astern': 1,\n", " 'astir': 1,\n", " 'astonished': 2,\n", " 'astonishment': 3,\n", " 'astounded': 2,\n", " 'astounding': 1,\n", " 'astray': 1,\n", " 'asunder': 1,\n", " 'at': 1043,\n", " 'ate': 7,\n", " 'atheistical': 1,\n", " 'athirst': 1,\n", " 'atmosphere': 3,\n", " 'atmospheric': 1,\n", " 'atomics': 1,\n", " 'atonement': 1,\n", " 'atop': 1,\n", " 'atrocious': 1,\n", " 'attached': 10,\n", " 'attachment': 4,\n", " 'attack': 3,\n", " 'attainable': 1,\n", " 'attained': 1,\n", " 'attainments': 1,\n", " 'attempt': 3,\n", " 'attempted': 2,\n", " 'attempts': 1,\n", " 'attend': 5,\n", " 'attendance': 3,\n", " 'attendant': 5,\n", " 'attendants': 1,\n", " 'attended': 10,\n", " 'attention': 20,\n", " 'attentive': 6,\n", " 'attentively': 5,\n", " 'attenuated': 1,\n", " 'attitude': 9,\n", " 'attorney-general': 12,\n", " \"attorney-general's\": 2,\n", " 'attract': 3,\n", " 'attracted': 5,\n", " 'attracting': 1,\n", " 'attraction': 3,\n", " 'attractive': 1,\n", " 'attributable': 1,\n", " 'attribute': 1,\n", " 'audible': 9,\n", " 'audibly': 2,\n", " 'audience': 7,\n", " 'auditory': 1,\n", " 'augment': 1,\n", " 'august': 2,\n", " 'august--he': 1,\n", " 'auspicious': 1,\n", " 'authorised': 1,\n", " 'authoritative': 1,\n", " 'authorities': 3,\n", " 'authority': 10,\n", " 'autumn': 3,\n", " 'avail': 3,\n", " 'available': 2,\n", " 'avenge': 3,\n", " 'avenged': 1,\n", " 'avenue': 2,\n", " 'avenues': 2,\n", " 'aversion': 1,\n", " 'avert': 1,\n", " 'averted': 1,\n", " 'avocations': 1,\n", " 'avoid': 9,\n", " 'avoidance': 1,\n", " 'avoided': 1,\n", " 'avoiding': 1,\n", " 'avow': 1,\n", " 'avowal': 1,\n", " 'awaited': 7,\n", " 'awaiting': 5,\n", " 'awake': 7,\n", " 'awaken': 4,\n", " 'awakened': 4,\n", " 'awakening': 1,\n", " 'aware': 3,\n", " 'awaricious': 1,\n", " 'away': 134,\n", " 'away--for': 1,\n", " 'away--you': 1,\n", " 'awe': 1,\n", " 'awe-stricken': 2,\n", " 'awful': 8,\n", " 'awfulness': 1,\n", " 'awkward': 1,\n", " 'awoke': 5,\n", " 'awry': 2,\n", " 'axe': 9,\n", " 'axe--a': 1,\n", " 'axes': 2,\n", " 'ay': 5,\n", " 'b': 2,\n", " 'b-u-u-ust': 1,\n", " 'babble': 1,\n", " 'babel': 1,\n", " 'babies': 1,\n", " 'baby': 5,\n", " 'bacchanalian': 2,\n", " 'bachelor': 6,\n", " 'bachelor-fashion': 1,\n", " 'back': 134,\n", " 'backgammon': 1,\n", " 'background': 1,\n", " 'backs': 2,\n", " 'backward': 2,\n", " 'backwards': 3,\n", " 'bad': 43,\n", " \"bad's\": 1,\n", " 'baffled': 2,\n", " 'bag': 2,\n", " 'bah': 3,\n", " 'bailey': 20,\n", " 'bailiff': 1,\n", " 'baker': 1,\n", " \"baker's\": 1,\n", " 'bakers': 1,\n", " 'balance': 1,\n", " 'balanced': 1,\n", " 'balances': 1,\n", " 'bald': 1,\n", " 'ball': 6,\n", " 'ball--when': 1,\n", " 'ballad': 1,\n", " 'balustrades': 2,\n", " 'band': 1,\n", " 'bandages': 1,\n", " 'banished': 2,\n", " 'bank': 49,\n", " 'bank-notes': 1,\n", " 'bank-notes--may': 1,\n", " 'banker': 4,\n", " 'bankers': 1,\n", " 'banking': 5,\n", " 'banking-house': 7,\n", " 'bankruptcy': 1,\n", " 'banks': 2,\n", " 'banquets': 1,\n", " 'bar': 27,\n", " 'barbarian': 1,\n", " 'barbarous': 4,\n", " 'barber': 5,\n", " 'bare': 9,\n", " 'bare-armed': 1,\n", " 'bare-breasted': 1,\n", " 'bare-foot': 1,\n", " 'bare-legged': 1,\n", " 'bared': 1,\n", " 'barefoot': 1,\n", " 'bareheaded': 1,\n", " 'barely': 1,\n", " 'bargain': 3,\n", " 'barges': 1,\n", " 'bark': 1,\n", " 'barked': 1,\n", " 'barmecide': 1,\n", " 'barred': 5,\n", " 'barrel': 1,\n", " 'barrels': 2,\n", " 'barren': 2,\n", " 'barricades': 1,\n", " 'barrier': 16,\n", " 'barrier--i': 1,\n", " 'barriers': 1,\n", " 'barrister': 2,\n", " 'bars': 10,\n", " 'barsad': 44,\n", " \"barsad's\": 1,\n", " 'base': 2,\n", " 'based': 2,\n", " 'basement': 1,\n", " 'baseness': 1,\n", " 'basin': 7,\n", " 'basket': 4,\n", " 'baskets': 2,\n", " 'bastille': 22,\n", " 'batch': 2,\n", " 'bathed': 1,\n", " 'battered': 1,\n", " 'battles': 1,\n", " 'bawled': 1,\n", " 'bawling': 1,\n", " 'bay': 2,\n", " 'bayonets': 3,\n", " 'be': 781,\n", " 'be--he': 1,\n", " 'be--perhaps': 1,\n", " 'be--unless': 1,\n", " 'beach': 5,\n", " 'beacon': 1,\n", " 'beaming': 1,\n", " 'beamingly': 1,\n", " 'beams': 2,\n", " 'beans': 1,\n", " 'bear': 32,\n", " 'bear-leader': 1,\n", " 'beard': 4,\n", " 'bearded': 1,\n", " 'bearer': 2,\n", " 'bearers': 1,\n", " 'bearing': 8,\n", " 'bearings': 1,\n", " 'bears': 2,\n", " 'beast': 1,\n", " 'beastly': 1,\n", " 'beasts': 5,\n", " 'beat': 9,\n", " 'beaten': 5,\n", " 'beating': 9,\n", " 'beats': 1,\n", " 'beauties': 1,\n", " 'beautified': 1,\n", " 'beautiful': 14,\n", " 'beautifully': 1,\n", " 'beautifying': 1,\n", " 'beauty': 9,\n", " 'beauvais': 11,\n", " 'beauvais--which': 1,\n", " 'became': 30,\n", " 'because': 42,\n", " 'beckoned': 5,\n", " 'beckoning': 1,\n", " 'become': 23,\n", " 'becomes': 2,\n", " 'becoming': 3,\n", " 'becomingly': 1,\n", " 'bed': 42,\n", " 'bed-chamber': 5,\n", " 'bed-gown': 1,\n", " 'bed-winches': 1,\n", " 'bedlam--only': 1,\n", " 'bedroom': 7,\n", " 'beds': 2,\n", " 'bedside': 2,\n", " 'been': 435,\n", " 'been--been': 1,\n", " 'been--like': 1,\n", " 'been--nay': 1,\n", " 'been--oh': 1,\n", " 'beer': 3,\n", " 'beer-drinking': 1,\n", " 'beery': 1,\n", " 'befall': 1,\n", " 'befitting': 1,\n", " 'before': 232,\n", " 'beforehand': 4,\n", " 'befriend': 1,\n", " 'beg': 9,\n", " 'began': 48,\n", " 'beggars': 1,\n", " 'begged': 2,\n", " 'begin': 11,\n", " 'beginning': 12,\n", " 'begirt': 1,\n", " 'begrimed': 1,\n", " 'beguile': 1,\n", " 'beguiled': 2,\n", " 'begun': 8,\n", " 'behalf': 2,\n", " 'beheaded': 2,\n", " 'beheld': 4,\n", " 'behind': 54,\n", " 'behold': 4,\n", " 'beholder': 1,\n", " 'beholders': 2,\n", " 'behoved': 1,\n", " 'being': 134,\n", " 'beings--taxed': 1,\n", " 'belated': 1,\n", " 'belief': 6,\n", " 'believe': 46,\n", " 'believe--but': 1,\n", " 'believed': 6,\n", " 'believeth': 6,\n", " 'believing': 1,\n", " 'bell': 17,\n", " 'bell-ringing': 1,\n", " 'belligerent': 1,\n", " 'bells': 4,\n", " 'belong': 6,\n", " 'belonged': 3,\n", " 'belonging': 4,\n", " 'beloved': 5,\n", " 'below': 15,\n", " 'belt': 1,\n", " 'bench': 26,\n", " 'bench-walk': 1,\n", " 'bending': 6,\n", " 'beneath': 5,\n", " 'benefactor': 1,\n", " 'benefactors': 1,\n", " 'beneficial': 2,\n", " 'benefit': 1,\n", " 'benevolence': 1,\n", " 'benevolent': 1,\n", " 'benighted': 1,\n", " 'bent': 26,\n", " 'benumbed': 1,\n", " 'bereft': 2,\n", " 'beseeching': 1,\n", " 'beset': 1,\n", " 'besetting': 1,\n", " 'beside': 21,\n", " 'besides': 18,\n", " 'besieged': 1,\n", " 'besmeared': 1,\n", " 'besmirched': 1,\n", " 'besought': 4,\n", " 'bespattered': 1,\n", " 'best': 40,\n", " 'bestow': 2,\n", " 'bestowal': 1,\n", " 'bestowed': 7,\n", " 'bestowing': 1,\n", " 'bestrewn': 1,\n", " 'bethinking': 1,\n", " 'bethought': 2,\n", " 'betimes': 1,\n", " 'betook': 1,\n", " 'betray': 1,\n", " 'betrothal': 1,\n", " 'betrothed': 1,\n", " 'better': 88,\n", " 'better--although': 1,\n", " 'better--i': 1,\n", " 'between': 63,\n", " 'betwixt': 1,\n", " 'beware': 1,\n", " 'bewildered': 4,\n", " 'bewildering': 1,\n", " 'bewilderment': 2,\n", " 'beyond': 27,\n", " 'bid': 4,\n", " 'bidden': 2,\n", " 'biding': 1,\n", " 'big': 3,\n", " 'bill': 1,\n", " 'billet': 1,\n", " 'billets': 2,\n", " 'billows': 1,\n", " 'billowy': 1,\n", " 'binary': 1,\n", " 'bind': 3,\n", " 'bird': 4,\n", " 'birds': 10,\n", " 'birth': 4,\n", " 'birthday': 2,\n", " 'birthdays': 1,\n", " 'bit': 5,\n", " 'bite': 4,\n", " 'biting': 2,\n", " 'bitter': 5,\n", " 'bitterly': 5,\n", " 'bitterness': 1,\n", " 'black': 37,\n", " 'black-haired': 1,\n", " 'blackened': 4,\n", " 'blackguard': 1,\n", " 'blackheath': 1,\n", " \"blacksmith's\": 1,\n", " 'blade': 4,\n", " 'blades': 1,\n", " 'blameless': 2,\n", " 'blank': 9,\n", " 'blaring': 1,\n", " 'blasphemous': 1,\n", " 'blast': 1,\n", " 'blatant': 1,\n", " 'blaze': 2,\n", " 'blazed': 2,\n", " 'blazing': 7,\n", " 'bleeding': 5,\n", " 'blended': 2,\n", " 'blending': 1,\n", " 'bless': 15,\n", " 'blessed': 7,\n", " 'blessed--my': 1,\n", " 'blessing': 8,\n", " 'blest': 5,\n", " 'blew': 2,\n", " 'blight': 2,\n", " 'blighted': 2,\n", " 'blind': 8,\n", " 'blinder': 1,\n", " 'blindly': 2,\n", " 'blindness--but': 1,\n", " 'blindnesses': 1,\n", " 'blinds': 4,\n", " 'blink': 1,\n", " 'bliss': 2,\n", " 'bloated': 5,\n", " 'blood': 31,\n", " 'blood-money': 1,\n", " 'blood-vessels': 1,\n", " 'bloodless': 1,\n", " 'bloodshed': 2,\n", " 'bloody': 2,\n", " 'bloody-minded': 2,\n", " 'bloom': 1,\n", " 'blooming': 4,\n", " 'blossomed': 1,\n", " 'blot': 1,\n", " 'blots': 1,\n", " 'blotting': 1,\n", " 'blotting-paper': 1,\n", " 'blouse': 1,\n", " 'blow': 6,\n", " 'blowed': 1,\n", " 'blowing': 3,\n", " 'blowings': 1,\n", " 'blown': 2,\n", " 'blows': 4,\n", " 'blue': 18,\n", " 'blue-flies': 4,\n", " 'blue-mould': 1,\n", " 'bluff': 1,\n", " 'blunderbuss': 4,\n", " 'blunderbusses': 1,\n", " 'blunt': 1,\n", " 'blurred': 1,\n", " 'blush': 1,\n", " 'boar-spears': 2,\n", " 'board': 10,\n", " 'boards': 1,\n", " 'boast': 1,\n", " 'boastful': 3,\n", " 'boastfully': 1,\n", " 'boastfulness': 1,\n", " 'boasting': 1,\n", " 'boat': 3,\n", " 'boded': 1,\n", " 'bodies': 7,\n", " 'bodily': 3,\n", " 'body': 20,\n", " 'body-women': 1,\n", " 'bodyguard': 1,\n", " 'boiled': 2,\n", " 'boiling': 4,\n", " 'bold': 5,\n", " 'boldest': 2,\n", " 'boldface': 1,\n", " 'boldly': 1,\n", " 'bolt': 1,\n", " 'bond': 1,\n", " 'bonds': 1,\n", " 'bones': 3,\n", " 'bonfires': 1,\n", " 'bonnet': 4,\n", " 'bony': 2,\n", " 'book': 8,\n", " 'booked': 2,\n", " 'books': 7,\n", " 'books--these': 1,\n", " 'boom': 1,\n", " 'boot': 4,\n", " 'boot-cleaning': 1,\n", " 'booted': 2,\n", " 'booting': 1,\n", " 'bootless': 1,\n", " 'boots': 9,\n", " 'bordeaux': 1,\n", " 'borders': 1,\n", " 'bore': 12,\n", " 'born': 10,\n", " 'borne': 4,\n", " 'borrow': 1,\n", " 'borrowed': 1,\n", " 'bosom': 18,\n", " 'boss': 1,\n", " 'both': 86,\n", " 'both--you': 1,\n", " 'botheration': 2,\n", " 'bottle': 7,\n", " 'bottles': 2,\n", " 'bottom': 3,\n", " 'boulogne': 1,\n", " 'bound': 17,\n", " 'bound--tied': 1,\n", " 'boundaries': 1,\n", " 'boundless': 1,\n", " 'bow': 5,\n", " 'bowed': 7,\n", " 'bowing': 4,\n", " 'bowl': 4,\n", " 'box': 8,\n", " 'boxes': 2,\n", " 'boy': 38,\n", " \"boy's\": 5,\n", " 'boy--a': 1,\n", " 'boys': 4,\n", " 'braced': 1,\n", " 'brain': 2,\n", " 'brains': 3,\n", " 'branch': 1,\n", " 'branched': 1,\n", " 'branches': 2,\n", " 'branded': 1,\n", " 'branding-iron': 1,\n", " 'brandy': 7,\n", " 'brave': 9,\n", " 'bravely': 1,\n", " 'bravery': 1,\n", " 'bravo': 1,\n", " 'brawling': 1,\n", " 'brawny': 1,\n", " 'brazen': 1,\n", " 'breach': 2,\n", " 'bread': 14,\n", " 'bread-and-butter': 3,\n", " 'bread-and-cheese': 2,\n", " 'breadless': 1,\n", " 'breadth': 5,\n", " 'break': 9,\n", " 'break--the': 1,\n", " 'breakfast': 14,\n", " 'breakfast-hour': 2,\n", " 'breakfast-table': 1,\n", " 'breaking': 6,\n", " 'breast': 50,\n", " 'breast--looked': 1,\n", " 'breasts': 5,\n", " 'breath': 20,\n", " 'breath--\"a': 1,\n", " 'breathe': 3,\n", " 'breathed': 3,\n", " 'breathing': 12,\n", " 'breathless': 5,\n", " 'bred': 2,\n", " 'bred--that': 1,\n", " 'breeches': 2,\n", " 'breed': 1,\n", " 'breeding': 4,\n", " 'brethren': 1,\n", " 'brevity': 1,\n", " 'brewery': 1,\n", " 'brick': 2,\n", " 'bricks': 1,\n", " 'bride': 2,\n", " \"bride's\": 1,\n", " 'bridegroom': 1,\n", " 'bridesmaid': 1,\n", " 'bridge': 5,\n", " 'bridle': 4,\n", " 'bridles': 1,\n", " 'brief': 6,\n", " 'brigand': 1,\n", " 'bright': 26,\n", " 'brightened': 1,\n", " 'brighter': 8,\n", " 'brightly': 3,\n", " 'brightness': 3,\n", " 'brilliant': 1,\n", " 'brilliantly': 2,\n", " 'bring': 31,\n", " 'bringing': 6,\n", " 'brings': 1,\n", " 'brink': 2,\n", " 'brisk': 3,\n", " 'briskly': 3,\n", " 'bristled': 1,\n", " 'britain': 1,\n", " 'british': 5,\n", " 'briton': 2,\n", " 'broaching': 1,\n", " 'broad': 8,\n", " 'broadcast': 1,\n", " 'broader': 1,\n", " 'brocade': 1,\n", " 'broke': 15,\n", " 'broken': 18,\n", " 'broken-backed': 1,\n", " 'broken-hearted': 1,\n", " 'broken-hearted--having': 1,\n", " 'bronze': 1,\n", " 'brood': 2,\n", " 'brooded': 1,\n", " 'brooding': 6,\n", " 'brother': 48,\n", " \"brother's\": 3,\n", " 'brother--and': 1,\n", " 'brotherhood': 1,\n", " 'brothers': 15,\n", " 'brought': 80,\n", " 'brow': 1,\n", " 'brown': 12,\n", " 'brown-haired': 1,\n", " 'brows': 3,\n", " 'bruised': 1,\n", " 'brushed': 1,\n", " 'brutality': 1,\n", " 'brute': 2,\n", " 'brutus': 4,\n", " 'buckles': 1,\n", " 'buffeted': 1,\n", " 'building': 10,\n", " 'building--that': 1,\n", " 'buildings': 6,\n", " 'built': 4,\n", " 'bulk': 1,\n", " 'bulky': 1,\n", " \"bull's\": 3,\n", " 'bull-dog': 1,\n", " 'bull-necked': 1,\n", " 'bullets': 1,\n", " 'bully': 1,\n", " 'bullying': 2,\n", " 'bump': 1,\n", " 'bumped': 2,\n", " 'bumper': 3,\n", " 'bumpers': 1,\n", " 'bunch': 1,\n", " 'bunches': 1,\n", " 'bundle': 8,\n", " 'burden': 2,\n", " 'burdens': 1,\n", " 'burglaries': 1,\n", " 'burial': 1,\n", " 'burial-ground': 2,\n", " 'burial-place': 1,\n", " 'burial-places': 2,\n", " 'buried': 14,\n", " 'burn': 4,\n", " 'burned': 3,\n", " 'burning': 10,\n", " 'burnt': 7,\n", " 'burst': 10,\n", " 'bursting': 7,\n", " 'buryin': 1,\n", " 'burying': 1,\n", " 'bushels': 1,\n", " 'busily': 4,\n", " 'business': 123,\n", " 'business--a': 1,\n", " 'business--business': 1,\n", " \"business--don't\": 1,\n", " 'business--if': 1,\n", " 'business-absorption': 1,\n", " 'business-like': 3,\n", " 'business-meaning': 1,\n", " 'business:--is': 1,\n", " 'business@pglaf.org': 1,\n", " 'bust': 2,\n", " 'bustled': 1,\n", " 'busy': 11,\n", " 'but': 654,\n", " 'but--really': 1,\n", " 'butcher': 1,\n", " 'butchered': 1,\n", " 'butcherly': 1,\n", " 'butchery': 1,\n", " 'butt-end': 1,\n", " 'butt-ends': 1,\n", " 'butted': 1,\n", " 'buy': 6,\n", " 'buzz': 3,\n", " 'buzzed': 1,\n", " 'buzzing': 1,\n", " 'by': 576,\n", " 'by\"--the': 1,\n", " 'by-and-bye': 7,\n", " 'by-street': 1,\n", " 'bye': 1,\n", " 'bye-street': 1,\n", " 'byway': 1,\n", " 'byways': 1,\n", " 'c': 3,\n", " 'cabin': 2,\n", " 'cabinet': 1,\n", " 'cachet': 1,\n", " 'cadaverous': 2,\n", " 'cadence': 1,\n", " 'cage': 3,\n", " 'cages': 1,\n", " 'calais': 5,\n", " 'calamity': 3,\n", " 'calculate': 3,\n", " 'calculated': 2,\n", " 'calculations': 1,\n", " 'caldron': 1,\n", " 'calendar': 1,\n", " 'call': 32,\n", " \"call--blacksmith's\": 1,\n", " 'called': 51,\n", " 'called?--in': 1,\n", " 'calling': 10,\n", " 'callings': 2,\n", " 'calls': 1,\n", " 'calm': 10,\n", " 'calmed': 1,\n", " 'calmly': 3,\n", " 'calmness': 2,\n", " 'cambridge': 1,\n", " 'came': 140,\n", " 'can': 131,\n", " \"can't\": 20,\n", " \"can't-be\": 1,\n", " 'canada': 1,\n", " 'candle': 7,\n", " 'candles': 4,\n", " 'cane': 1,\n", " 'cannibal-looking': 1,\n", " 'cannon': 5,\n", " 'cannonier': 1,\n", " 'cannonier--defarge': 1,\n", " 'cannot': 43,\n", " 'canonised': 1,\n", " 'cant': 1,\n", " 'canter': 1,\n", " 'canvas': 1,\n", " 'cap': 25,\n", " 'capable': 7,\n", " 'capacity': 5,\n", " 'capital': 4,\n", " 'capitulated': 1,\n", " 'capricious': 1,\n", " 'capriciously': 1,\n", " 'caps': 8,\n", " 'captain': 1,\n", " \"captain's\": 1,\n", " 'captive': 5,\n", " 'captivity': 6,\n", " 'captured': 1,\n", " 'car': 1,\n", " 'card': 7,\n", " 'card--a': 1,\n", " 'card-towers': 1,\n", " 'cards': 11,\n", " 'care': 35,\n", " 'cared': 7,\n", " 'career': 1,\n", " 'careful': 4,\n", " 'carefully': 9,\n", " 'careless': 8,\n", " 'carelessly': 3,\n", " 'carelessness': 1,\n", " 'cares': 6,\n", " 'caresses': 1,\n", " 'caressing': 2,\n", " 'caressingly': 1,\n", " 'caricaturing': 1,\n", " 'caring': 1,\n", " 'carmagnole': 5,\n", " 'carnage': 1,\n", " 'carol': 1,\n", " 'carousing': 1,\n", " 'carpenters': 1,\n", " 'carpet': 1,\n", " 'carriage': 49,\n", " 'carriage-door': 1,\n", " 'carriage-door--tenderly': 1,\n", " 'carriages': 6,\n", " 'carriages--ah': 1,\n", " 'carriages--where': 1,\n", " 'carried': 45,\n", " 'carries': 1,\n", " 'carrion': 1,\n", " 'carry': 12,\n", " 'carrying': 5,\n", " 'cart': 5,\n", " 'carton': 147,\n", " \"carton's\": 8,\n", " 'carton,--who': 1,\n", " 'carton--his': 1,\n", " 'cartridges': 1,\n", " 'carts': 8,\n", " 'carved': 2,\n", " 'carver': 1,\n", " 'case': 47,\n", " 'casement': 1,\n", " 'casements': 2,\n", " 'cases': 4,\n", " 'cases--to': 1,\n", " 'cashiers': 1,\n", " 'cask': 5,\n", " 'cast': 12,\n", " 'caste': 2,\n", " 'casting': 6,\n", " 'casual': 2,\n", " 'casually': 1,\n", " 'cat': 3,\n", " 'cataleptic': 1,\n", " 'catch': 5,\n", " 'catching': 1,\n", " 'catechist': 1,\n", " 'cathedral': 5,\n", " 'cattle': 2,\n", " 'caught': 19,\n", " 'cause': 18,\n", " 'caused': 8,\n", " 'causes': 4,\n", " 'causing': 1,\n", " 'caution': 1,\n", " 'cautionary': 1,\n", " 'cautioned': 1,\n", " 'cautious': 4,\n", " 'cautiously': 5,\n", " 'cavalcade': 1,\n", " 'cavalier': 1,\n", " 'cavalry': 1,\n", " 'cavernous': 1,\n", " 'cease': 3,\n", " 'ceased': 12,\n", " 'ceiling': 12,\n", " 'celebration': 1,\n", " 'celestial': 1,\n", " 'cell': 14,\n", " 'cellars': 2,\n", " 'cells': 4,\n", " 'central': 1,\n", " 'centre': 4,\n", " 'centres': 1,\n", " 'centuries': 2,\n", " 'ceremonies': 2,\n", " 'ceremony': 4,\n", " 'certain': 34,\n", " 'certainly': 15,\n", " 'certainty': 5,\n", " 'certificate': 4,\n", " 'cessation': 3,\n", " 'cesspools': 1,\n", " 'chafed': 3,\n", " 'chaff': 1,\n", " 'chain': 10,\n", " 'chain--like': 1,\n", " 'chained--not': 1,\n", " 'chains': 2,\n", " 'chair': 34,\n", " 'chair--who': 1,\n", " 'chair-back': 1,\n", " 'chairs': 4,\n", " 'chaise': 1,\n", " 'chaldean': 1,\n", " 'chalk': 1,\n", " 'challenged': 1,\n", " 'chamber': 10,\n", " 'chamber-robe': 1,\n", " 'chambers': 4,\n", " 'champing': 1,\n", " 'chance': 13,\n", " 'chanced': 2,\n", " 'chances': 3,\n", " 'chancing': 1,\n", " 'change': 31,\n", " 'changed': 23,\n", " 'changeless': 1,\n", " 'changes': 7,\n", " 'changing': 2,\n", " 'changingly': 1,\n", " 'channel': 4,\n", " 'channel--though': 1,\n", " 'character': 19,\n", " 'characterise': 1,\n", " 'characterised': 1,\n", " 'characteristic': 2,\n", " 'characteristics': 1,\n", " 'characters': 2,\n", " 'charcoal': 1,\n", " 'charge': 20,\n", " 'charged': 5,\n", " 'charger': 1,\n", " 'charges': 1,\n", " 'charging': 1,\n", " 'chariot': 1,\n", " 'charitable': 1,\n", " 'charities': 1,\n", " 'charity--never': 1,\n", " 'charles': 95,\n", " \"charles's\": 3,\n", " 'charm': 2,\n", " 'charmed': 1,\n", " 'charming': 4,\n", " 'charmingly': 1,\n", " 'chary': 1,\n", " 'chase': 5,\n", " 'chase--now': 1,\n", " 'chased': 1,\n", " 'chaste': 1,\n", " 'chateau': 27,\n", " \"chateau's\": 1,\n", " 'chattered': 1,\n", " 'chatting': 2,\n", " 'cheapest': 1,\n", " 'cheated': 1,\n", " 'cheating': 2,\n", " 'check': 8,\n", " 'checked': 4,\n", " 'checking': 3,\n", " 'checks': 1,\n", " 'cheek': 13,\n", " 'cheekbones': 1,\n", " 'cheeks': 1,\n", " 'cheer': 1,\n", " 'cheered': 1,\n", " 'cheerful': 6,\n", " 'cheerfully': 4,\n", " 'cheerfulness': 3,\n", " 'cheering': 1,\n", " 'cheery': 1,\n", " 'cheese': 2,\n", " 'chemist': 2,\n", " \"chemist's\": 1,\n", " 'chemists': 1,\n", " 'cheque': 1,\n", " 'cherish': 1,\n", " 'cherished': 1,\n", " 'cherishing': 1,\n", " 'chest': 4,\n", " 'chestnuts': 1,\n", " 'chewing': 2,\n", " 'chickens': 1,\n", " 'chief': 13,\n", " 'child': 88,\n", " \"child's\": 3,\n", " \"child's--and\": 1,\n", " 'child--should': 1,\n", " 'childhood': 3,\n", " 'children': 22,\n", " 'children--resounded': 1,\n", " 'chill': 1,\n", " 'chilled': 1,\n", " 'chimney': 6,\n", " 'chimney-sweep': 1,\n", " 'chimneys': 3,\n", " 'chin': 8,\n", " 'chink': 1,\n", " 'chinked': 1,\n", " 'chinks': 3,\n", " 'chips': 1,\n", " 'chisel': 1,\n", " 'chiselled': 1,\n", " 'chivalrous': 1,\n", " 'chocolate': 10,\n", " 'chocolate-pot': 1,\n", " 'choice': 6,\n", " 'choke': 3,\n", " 'choking': 1,\n", " 'choose': 5,\n", " 'chopped': 1,\n", " 'chopper': 1,\n", " 'chord': 1,\n", " 'chorus': 1,\n", " 'chosen': 2,\n", " 'choused': 1,\n", " 'christian': 6,\n", " 'christmas': 1,\n", " 'chronically': 1,\n", " 'chronicle': 1,\n", " 'chubby': 1,\n", " 'chum': 1,\n", " 'church': 15,\n", " 'church-organs': 1,\n", " 'church-tower': 1,\n", " 'churches': 3,\n", " 'churchyard': 2,\n", " 'churchyard--it': 1,\n", " \"cinderella's\": 1,\n", " 'cinderous': 1,\n", " 'circle': 4,\n", " 'circled': 2,\n", " 'circling': 2,\n", " 'circuit': 2,\n", " 'circuitously': 1,\n", " 'circulated': 1,\n", " 'circumference': 3,\n", " 'circumstance': 9,\n", " 'circumstances': 21,\n", " 'circumstances--say': 1,\n", " 'circumstantial': 1,\n", " 'circumstantial--and': 1,\n", " 'circumwented': 1,\n", " 'cities': 3,\n", " 'citizen': 56,\n", " \"citizen's\": 2,\n", " 'citizen-doctor': 1,\n", " 'citizen-patriots': 1,\n", " 'citizeness': 13,\n", " 'citizens': 2,\n", " 'citizens.--and': 1,\n", " 'city': 38,\n", " 'civil': 1,\n", " 'claim': 6,\n", " 'claimed': 3,\n", " 'claims': 1,\n", " 'clammy': 1,\n", " 'clamorous': 1,\n", " 'clanged': 1,\n", " 'clanging': 1,\n", " 'clapped': 3,\n", " 'clapping': 4,\n", " 'claptrap': 1,\n", " 'claret': 1,\n", " 'clash': 1,\n", " 'clashed': 1,\n", " 'clashing': 1,\n", " 'clasp': 2,\n", " 'clasped': 9,\n", " 'clasping': 5,\n", " 'clasps': 1,\n", " 'class': 5,\n", " 'classes': 1,\n", " 'clatter': 2,\n", " 'clattered': 2,\n", " 'clattering': 2,\n", " 'clay': 1,\n", " 'clay-soiled': 1,\n", " 'clean': 7,\n", " 'cleaner': 1,\n", " 'clear': 13,\n", " 'clear-headed': 2,\n", " 'clearance': 2,\n", " 'cleared': 4,\n", " 'clearer': 1,\n", " 'clearing': 1,\n", " 'clearly': 10,\n", " 'clearness': 1,\n", " 'clears': 1,\n", " 'clemency': 1,\n", " 'clenched': 4,\n", " 'clergy': 1,\n", " 'clerk': 7,\n", " 'clerkenwell': 3,\n", " 'clerks': 7,\n", " 'client': 4,\n", " 'clients': 1,\n", " 'cliffs': 2,\n", " 'climate': 1,\n", " 'climbed': 3,\n", " 'climbing': 3,\n", " 'clinging': 6,\n", " 'clink': 1,\n", " 'cloak': 4,\n", " 'cloaks': 3,\n", " 'clock': 8,\n", " 'clocks': 3,\n", " 'close': 51,\n", " 'closed': 29,\n", " 'closely': 6,\n", " 'closeness': 2,\n", " 'closer': 11,\n", " 'closet': 5,\n", " 'closing': 12,\n", " 'cloth': 1,\n", " 'clothed': 1,\n", " 'clothes': 18,\n", " 'clothing': 2,\n", " 'cloud': 9,\n", " 'clouded': 4,\n", " 'clouds': 5,\n", " 'cloudy': 1,\n", " 'clumsily': 1,\n", " 'clumsy': 3,\n", " 'clung': 2,\n", " 'cluster': 1,\n", " 'clustered': 1,\n", " 'clutched': 4,\n", " 'clutching': 3,\n", " 'cly': 13,\n", " \"cly's\": 1,\n", " 'co': 3,\n", " \"co.'s\": 1,\n", " 'coach': 41,\n", " 'coach-door': 3,\n", " 'coach-lamp': 2,\n", " 'coach-lamps': 2,\n", " 'coach-step': 1,\n", " 'coach-trimming': 1,\n", " 'coach-windows': 1,\n", " 'coaches': 4,\n", " 'coachman': 9,\n", " 'coals': 3,\n", " 'coarse': 12,\n", " 'coarsest': 1,\n", " 'coast': 2,\n", " 'coat': 12,\n", " 'coat-collar': 1,\n", " 'coats': 1,\n", " 'coaxed': 1,\n", " 'cock-lane': 2,\n", " 'cockade': 2,\n", " 'cockades': 1,\n", " 'cocked': 2,\n", " 'cocked-hat': 1,\n", " 'cocking': 1,\n", " 'code': 1,\n", " 'codes': 1,\n", " 'codgers': 1,\n", " 'coercion': 1,\n", " 'coffee': 5,\n", " 'coffee-houses': 1,\n", " 'coffee-room': 4,\n", " 'coffin': 6,\n", " 'cogitated': 1,\n", " 'cogitation': 1,\n", " 'cognac': 7,\n", " 'coherently': 1,\n", " 'coin': 3,\n", " 'coinage': 1,\n", " 'coincidence': 4,\n", " 'coincidences': 1,\n", " 'coiner': 1,\n", " 'coins': 1,\n", " 'cold': 29,\n", " 'coldly': 7,\n", " 'collar': 1,\n", " 'collect': 2,\n", " 'collected': 5,\n", " 'collectedly': 2,\n", " 'collecting': 1,\n", " 'collection': 7,\n", " 'college': 1,\n", " 'colonnade': 1,\n", " 'colour': 15,\n", " 'colours': 2,\n", " 'combated': 1,\n", " 'combed': 1,\n", " 'combination': 2,\n", " 'combined': 3,\n", " 'come': 156,\n", " 'comedy': 3,\n", " 'comely': 1,\n", " 'comer': 1,\n", " 'comers': 1,\n", " 'comes': 14,\n", " 'comfort': 9,\n", " 'comfortable': 1,\n", " 'comforted': 3,\n", " 'comforting': 2,\n", " 'comically': 1,\n", " 'coming': 49,\n", " 'coming-up': 1,\n", " 'command': 2,\n", " 'commanded': 3,\n", " 'commands': 1,\n", " 'commence': 2,\n", " 'commenced': 1,\n", " 'commencement': 2,\n", " 'commences': 1,\n", " 'commendations': 1,\n", " 'commended': 4,\n", " 'comment': 1,\n", " 'commenting': 1,\n", " 'commercial': 1,\n", " 'commiserated': 1,\n", " 'commiseration': 2,\n", " 'commission': 2,\n", " 'commissioned': 1,\n", " 'committed': 6,\n", " 'committee': 1,\n", " 'committees': 2,\n", " 'committing': 1,\n", " 'common': 22,\n", " 'common-places': 1,\n", " 'commonly': 1,\n", " 'commons': 1,\n", " 'communicate': 4,\n", " 'communicated': 6,\n", " 'communication': 6,\n", " 'communications': 3,\n", " 'compact': 2,\n", " 'companies': 1,\n", " 'companion': 8,\n", " \"companion's\": 1,\n", " 'companions': 6,\n", " 'companionship': 2,\n", " 'company': 17,\n", " \"company's\": 1,\n", " 'company--at': 1,\n", " 'company--over': 1,\n", " 'company--set': 1,\n", " 'company--would': 1,\n", " 'comparatively': 2,\n", " 'compared': 1,\n", " 'comparing': 1,\n", " 'comparison': 4,\n", " 'compass': 2,\n", " 'compassion': 10,\n", " 'compassionate': 7,\n", " 'compatriot': 2,\n", " 'compeers': 2,\n", " 'compelled': 1,\n", " 'compelling': 1,\n", " 'compensate': 1,\n", " 'competitors': 1,\n", " 'compilation': 1,\n", " 'complacency': 1,\n", " 'complacent': 2,\n", " 'complacently': 1,\n", " 'complain': 1,\n", " 'complaining': 2,\n", " 'complaint': 2,\n", " 'complaints': 1,\n", " 'complete': 6,\n", " 'completed': 3,\n", " 'completely': 5,\n", " 'completeness': 1,\n", " 'completing': 1,\n", " 'completion': 1,\n", " 'complexion': 4,\n", " 'complexions': 1,\n", " 'compliance': 5,\n", " 'complicated': 1,\n", " 'complied': 5,\n", " 'compliment': 3,\n", " 'complimentary': 1,\n", " 'complimented': 1,\n", " 'compliments': 3,\n", " 'comply': 8,\n", " 'complying': 3,\n", " 'comportable': 1,\n", " 'compose': 4,\n", " 'composed': 9,\n", " 'composedly': 6,\n", " 'composing': 1,\n", " 'composition': 1,\n", " 'composure': 6,\n", " 'compound': 1,\n", " 'comprehend': 4,\n", " 'comprehended': 3,\n", " 'compressed': 3,\n", " 'compression': 1,\n", " 'compressions': 1,\n", " 'compromise': 1,\n", " 'compromised': 1,\n", " 'compromising': 1,\n", " 'compunction': 1,\n", " 'computer': 2,\n", " 'computers': 2,\n", " 'comrade': 1,\n", " 'comrades': 1,\n", " 'conceal': 2,\n", " 'concealed': 5,\n", " 'concealment': 3,\n", " 'conceded': 1,\n", " 'conceited': 1,\n", " 'conceivable': 1,\n", " 'conceive': 1,\n", " 'conceived': 2,\n", " 'concentrated': 4,\n", " 'concentration': 1,\n", " 'concept': 2,\n", " 'conception': 1,\n", " 'conceptions': 1,\n", " 'concerning': 6,\n", " 'concert': 1,\n", " 'concession': 1,\n", " 'conciergerie': 10,\n", " 'concluded': 2,\n", " 'concluding': 1,\n", " 'conclusion': 5,\n", " 'concocting': 1,\n", " 'concord': 7,\n", " 'concourse': 6,\n", " 'concussion': 1,\n", " 'condemnation': 2,\n", " 'condemned': 9,\n", " 'condemning': 1,\n", " 'condescension': 1,\n", " 'condition': 20,\n", " 'condition--fully': 1,\n", " 'conditions': 1,\n", " 'condole': 1,\n", " 'condoling': 1,\n", " 'conduced': 1,\n", " 'conducive': 1,\n", " 'conduct': 4,\n", " 'conducted': 4,\n", " 'conducting': 2,\n", " 'conductor': 3,\n", " 'conductors': 2,\n", " 'confer': 2,\n", " 'conference': 11,\n", " 'conferences': 1,\n", " 'conferred': 2,\n", " 'conferring': 1,\n", " 'confess': 2,\n", " 'confide': 5,\n", " 'confided': 3,\n", " 'confidence': 33,\n", " 'confidences': 1,\n", " 'confident': 6,\n", " 'confidential': 4,\n", " 'confidentially': 1,\n", " 'confiding': 1,\n", " 'confidingly': 1,\n", " 'confined': 3,\n", " 'confinement': 2,\n", " 'confines': 1,\n", " 'confirm': 1,\n", " 'confirmable': 1,\n", " 'confirmation': 2,\n", " 'confirmed': 4,\n", " 'confirms': 1,\n", " 'confiscated': 2,\n", " 'confiscation': 2,\n", " 'conflagration': 1,\n", " 'conflict': 1,\n", " 'confound': 3,\n", " 'confronted': 5,\n", " 'confronting': 2,\n", " 'confuse': 1,\n", " 'confused': 9,\n", " 'confusedly': 1,\n", " 'confusion': 6,\n", " 'congenial': 2,\n", " 'congratulate': 2,\n", " 'congratulated': 1,\n", " 'congratulations': 2,\n", " 'congratulatory': 1,\n", " 'congress': 1,\n", " 'conjunction': 1,\n", " 'conjuration': 1,\n", " 'connected': 8,\n", " 'connection': 4,\n", " 'connections': 1,\n", " 'conquered': 1,\n", " 'conscience': 3,\n", " 'conscious': 7,\n", " 'consciousness': 5,\n", " 'consecrated': 1,\n", " 'consent': 4,\n", " 'consequence': 4,\n", " 'consequences': 4,\n", " 'consequent': 2,\n", " 'consequential': 1,\n", " 'consequently': 4,\n", " 'consider': 9,\n", " 'considerable': 6,\n", " 'considerate': 1,\n", " 'consideration': 14,\n", " 'considerations': 2,\n", " 'considered': 10,\n", " 'considering': 4,\n", " 'consigned': 3,\n", " 'consignment': 1,\n", " 'consisted': 3,\n", " 'consistently': 1,\n", " 'consolation': 5,\n", " 'consolatory': 1,\n", " 'console': 1,\n", " 'consolidation': 1,\n", " 'conspicuous': 4,\n", " 'conspicuous--gave': 1,\n", " 'conspirator': 1,\n", " 'constancy': 2,\n", " 'constant': 3,\n", " 'constantly': 7,\n", " 'consternation': 1,\n", " 'constituted': 1,\n", " 'constraining': 1,\n", " 'constraint': 2,\n", " 'construction': 1,\n", " 'consultation': 1,\n", " 'consulting-room': 2,\n", " 'consumed': 1,\n", " 'consumption': 1,\n", " 'contact': 4,\n", " 'contagion': 2,\n", " 'contagious': 1,\n", " 'contain': 2,\n", " 'contained': 1,\n", " 'containing': 2,\n", " 'contamination': 1,\n", " 'contemplating': 4,\n", " 'contemplation': 2,\n", " 'contemporaries': 1,\n", " 'contempt': 3,\n", " 'contemptuous': 1,\n", " 'contemptuously': 3,\n", " 'contend': 1,\n", " 'contended': 3,\n", " 'contending': 1,\n", " 'content': 3,\n", " 'contention': 1,\n", " 'contentious': 2,\n", " 'contents': 3,\n", " 'contest': 1,\n", " 'continually': 1,\n", " 'continued': 2,\n", " 'continuing': 1,\n", " 'continuity': 1,\n", " 'continuous': 2,\n", " 'continuously': 1,\n", " 'contraband': 2,\n", " 'contract': 1,\n", " 'contracted': 2,\n", " 'contradicted': 1,\n", " 'contradicting': 1,\n", " 'contradiction': 1,\n", " 'contradictory': 1,\n", " 'contrary': 1,\n", " 'contrast': 2,\n", " 'contrasted': 1,\n", " 'contrasting': 1,\n", " 'contributions': 2,\n", " 'contrivances': 1,\n", " 'contrived': 1,\n", " 'control': 4,\n", " 'control--the': 1,\n", " 'convenience': 1,\n", " 'convenient': 5,\n", " 'convent': 1,\n", " 'conventionally': 1,\n", " 'conversant': 1,\n", " 'conversation': 20,\n", " 'conversations': 1,\n", " 'converse': 1,\n", " 'conversing': 1,\n", " 'conversion': 1,\n", " 'convert': 1,\n", " 'convey': 3,\n", " 'conveyance': 2,\n", " 'conveyed': 4,\n", " 'conveying': 2,\n", " 'conviction': 3,\n", " 'convivial': 1,\n", " 'convulsionists': 1,\n", " 'convulsively': 1,\n", " 'conwenient': 1,\n", " 'conwey': 1,\n", " 'conwictions': 1,\n", " 'cook': 2,\n", " \"cook's\": 1,\n", " 'cooked': 2,\n", " 'cooks': 1,\n", " 'cool': 7,\n", " 'coolest': 2,\n", " 'coolly': 2,\n", " 'cope': 1,\n", " 'copied': 2,\n", " 'copies': 7,\n", " 'coppice-wood': 1,\n", " 'copy': 11,\n", " 'copying': 4,\n", " 'copyright': 13,\n", " 'coquetry': 1,\n", " 'coquette': 1,\n", " 'cordial': 1,\n", " 'cords': 1,\n", " 'corkscrew': 1,\n", " 'corn': 4,\n", " 'corner': 57,\n", " 'corners': 5,\n", " 'corporation': 1,\n", " 'correct': 2,\n", " 'corrected': 1,\n", " 'correcting': 1,\n", " 'correction': 2,\n", " 'correctly': 1,\n", " 'correctness': 1,\n", " 'correspondence': 3,\n", " 'corresponding': 1,\n", " 'correspondingly': 2,\n", " 'corridor': 2,\n", " 'corridors': 1,\n", " 'corroborate': 1,\n", " 'corroborations': 1,\n", " 'corrupt': 1,\n", " 'corrupted': 1,\n", " 'corruption': 1,\n", " 'cost': 5,\n", " 'costs': 2,\n", " 'cottage': 1,\n", " 'cottage--our': 1,\n", " 'cottages': 2,\n", " 'couch': 1,\n", " 'cough': 5,\n", " 'coughed': 3,\n", " 'coughing': 1,\n", " 'could': 282,\n", " 'could--i': 1,\n", " \"couldn't\": 5,\n", " 'council': 2,\n", " 'counsel': 12,\n", " 'counsellor': 1,\n", " 'count': 7,\n", " 'counted': 7,\n", " 'countenance': 5,\n", " 'countenances': 3,\n", " 'counter': 20,\n", " 'counter-prayed': 1,\n", " 'counterfeit': 1,\n", " 'countermined': 1,\n", " 'counterpane': 1,\n", " 'counterpart': 1,\n", " 'counters': 2,\n", " 'countersigned': 1,\n", " 'counterweight': 1,\n", " 'counting': 7,\n", " 'counting-house': 1,\n", " 'countless': 1,\n", " 'countries': 3,\n", " 'country': 36,\n", " 'country--he': 1,\n", " 'country-people': 1,\n", " 'countryman': 2,\n", " \"countryman's\": 1,\n", " 'countrymen': 2,\n", " 'county': 1,\n", " 'couple': 1,\n", " 'coupled': 1,\n", " 'courage': 15,\n", " 'courageous': 2,\n", " 'courier': 3,\n", " 'course': 30,\n", " 'courses': 1,\n", " 'court': 50,\n", " \"court's\": 1,\n", " 'court--except': 1,\n", " 'court--only': 1,\n", " 'courtesies': 1,\n", " 'courtly': 4,\n", " 'courts': 2,\n", " 'courtyard': 35,\n", " 'courtyards': 1,\n", " 'cousin': 1,\n", " 'cover': 2,\n", " 'covered': 12,\n", " 'covering': 1,\n", " 'coverlet': 2,\n", " 'cow': 2,\n", " 'cowardice': 1,\n", " 'cowed': 1,\n", " 'cows': 4,\n", " 'cracked': 2,\n", " 'cracking': 1,\n", " 'cradle': 3,\n", " 'craft': 1,\n", " 'craftily': 1,\n", " 'crag': 8,\n", " 'cramped': 1,\n", " 'crane': 1,\n", " 'craned': 1,\n", " 'crash': 5,\n", " 'crash!--a': 1,\n", " 'crash!--and': 1,\n", " 'crashing': 1,\n", " 'cravat': 2,\n", " 'craven': 1,\n", " 'craving': 7,\n", " 'crawl': 1,\n", " 'crawled': 1,\n", " 'crawling': 1,\n", " 'crazed': 2,\n", " 'crazy': 2,\n", " 'creasing': 1,\n", " 'created': 2,\n", " 'creating': 4,\n", " 'creation': 3,\n", " 'creator': 2,\n", " 'creature': 23,\n", " \"creature's\": 1,\n", " 'creatures': 6,\n", " 'creatures--found': 1,\n", " 'creatures--the': 1,\n", " 'credentials': 1,\n", " 'credit': 4,\n", " 'creditors': 1,\n", " 'creep': 2,\n", " 'creeping': 2,\n", " 'creeps': 1,\n", " 'creeturs': 1,\n", " 'crept': 4,\n", " 'crestfallen': 1,\n", " 'crevice': 2,\n", " 'crew': 1,\n", " 'cried': 46,\n", " 'cries': 15,\n", " 'crime': 8,\n", " 'crimes': 5,\n", " 'criminal': 1,\n", " \"criminal's\": 1,\n", " 'criminals': 2,\n", " 'crimson': 1,\n", " 'crimsoned': 1,\n", " 'cringing': 1,\n", " 'cripples': 1,\n", " 'crippling': 1,\n", " 'crisis': 2,\n", " 'crisp': 2,\n", " 'crisply-curling': 1,\n", " 'critical': 1,\n", " 'croak': 1,\n", " 'croaked': 9,\n", " 'croaking': 1,\n", " 'crockery': 1,\n", " 'crones': 1,\n", " 'crooked': 5,\n", " 'crookedly': 1,\n", " 'cropped': 1,\n", " 'crops': 1,\n", " 'cross': 10,\n", " 'cross-examining': 1,\n", " 'cross-questioned': 1,\n", " 'crossed': 12,\n", " 'crosses': 1,\n", " 'crossing': 2,\n", " 'crouching': 4,\n", " \"crow's\": 1,\n", " 'crowbar': 3,\n", " 'crowd': 40,\n", " \"crowd's\": 1,\n", " 'crowded': 6,\n", " 'crowds': 4,\n", " 'crown': 5,\n", " 'crowning': 1,\n", " 'cruel': 16,\n", " 'cruelest': 1,\n", " 'cruelly': 1,\n", " 'cruelty': 1,\n", " 'crumble': 1,\n", " 'crumbled': 1,\n", " 'crumbling': 2,\n", " 'crumbs': 2,\n", " 'crumpled': 1,\n", " 'cruncher': 108,\n", " \"cruncher!--don't\": 1,\n", " \"cruncher's\": 12,\n", " 'cruncher--though': 1,\n", " 'crunches': 2,\n", " 'crush': 2,\n", " 'crushed': 2,\n", " 'cry': 25,\n", " 'crying': 7,\n", " 'crystal': 1,\n", " 'crystallisation': 1,\n", " 'cud': 1,\n", " 'cuffs': 1,\n", " 'culinary': 1,\n", " 'culminated': 1,\n", " 'culminating': 1,\n", " 'culpability': 1,\n", " 'cultivated': 2,\n", " 'cunning': 1,\n", " 'cunningly': 1,\n", " 'cup-bearer': 1,\n", " 'cupboard': 1,\n", " 'cupboards': 1,\n", " 'cupid': 2,\n", " 'cupids': 2,\n", " 'cups': 1,\n", " 'curator': 1,\n", " 'cure': 1,\n", " 'curiosity': 11,\n", " 'curious': 16,\n", " 'curiously': 3,\n", " 'curling': 1,\n", " 'curls': 1,\n", " 'current': 6,\n", " 'curse': 3,\n", " 'cursed': 3,\n", " 'curses': 1,\n", " 'curtain': 2,\n", " 'curtained': 2,\n", " 'curtains': 3,\n", " 'curtly': 1,\n", " 'curtseyed': 2,\n", " 'curtseys': 1,\n", " 'curved': 1,\n", " 'cushion': 1,\n", " 'cushions': 1,\n", " 'custodian': 1,\n", " 'custody': 2,\n", " 'custom': 4,\n", " 'custom-house': 1,\n", " 'customary': 2,\n", " 'customer': 8,\n", " 'customers': 18,\n", " 'customs': 1,\n", " 'cut': 10,\n", " 'cutlass': 1,\n", " \"cutler's\": 1,\n", " 'cutter': 1,\n", " 'cutting': 1,\n", " 'cylinder': 1,\n", " 'd': 1,\n", " \"d'aulnais\": 1,\n", " \"d'ye\": 4,\n", " 'd--n': 3,\n", " 'dab': 1,\n", " 'dagger': 1,\n", " 'daggers': 1,\n", " 'daily': 6,\n", " 'dainty': 3,\n", " 'damage': 2,\n", " 'damaged': 2,\n", " 'damages': 4,\n", " 'dame': 2,\n", " 'damiens': 1,\n", " 'dammed': 1,\n", " 'damned': 1,\n", " 'damp': 8,\n", " 'dance': 4,\n", " 'dance-figure': 1,\n", " 'danced': 6,\n", " 'dancing': 5,\n", " 'danger': 28,\n", " 'dangerous': 14,\n", " 'dangers': 1,\n", " 'dangling': 2,\n", " 'dank': 1,\n", " 'dare': 8,\n", " 'dared': 3,\n", " 'daring': 1,\n", " 'dark': 89,\n", " 'darkened': 5,\n", " 'darkening': 5,\n", " 'darker': 1,\n", " 'darkest': 1,\n", " 'darkly': 5,\n", " 'darkness': 28,\n", " 'darling': 13,\n", " \"darling's\": 2,\n", " 'darling--or': 1,\n", " 'darlings': 1,\n", " 'darnay': 139,\n", " \"darnay's\": 7,\n", " 'darnay--as': 1,\n", " 'darnay--just': 1,\n", " 'darted': 4,\n", " 'darting': 2,\n", " 'dashed': 1,\n", " 'data': 1,\n", " 'date': 7,\n", " 'date--he': 1,\n", " 'dated': 3,\n", " 'daughter': 60,\n", " \"daughter's\": 8,\n", " \"daughter's--his\": 1,\n", " 'daughter--_his': 1,\n", " 'daughter--he': 1,\n", " 'daughters': 2,\n", " 'dawn': 3,\n", " 'dawning': 2,\n", " 'day': 169,\n", " \"day's\": 9,\n", " 'day--work': 1,\n", " 'daybreak': 3,\n", " 'daylight': 3,\n", " 'days': 51,\n", " 'days--became': 1,\n", " 'days--three': 1,\n", " 'dazed': 1,\n", " 'de': 5,\n", " 'dead': 64,\n", " 'dead--i': 1,\n", " 'dead--no': 1,\n", " 'dead-dog': 1,\n", " 'deaden': 1,\n", " 'deadly': 4,\n", " 'deaf': 2,\n", " 'deafened': 1,\n", " 'deafening': 1,\n", " 'deal': 10,\n", " 'deals': 1,\n", " 'dealt': 1,\n", " 'dear': 123,\n", " 'dearer': 4,\n", " 'dearest': 13,\n", " 'dearest,--take': 1,\n", " 'dearly': 2,\n", " 'death': 62,\n", " \"death's\": 1,\n", " 'death--a': 1,\n", " 'death--were': 1,\n", " 'death-carts': 1,\n", " 'death;--the': 1,\n", " 'debated': 1,\n", " 'debating': 2,\n", " 'debauched': 1,\n", " 'debauchery': 1,\n", " 'debt': 1,\n", " 'debtors': 2,\n", " 'decayed': 2,\n", " 'decease': 1,\n", " 'deceased': 1,\n", " 'deceit': 1,\n", " 'deceive': 4,\n", " 'deceived': 2,\n", " 'december': 3,\n", " 'decent': 1,\n", " 'decently': 1,\n", " 'deception': 1,\n", " 'decide': 1,\n", " 'decided': 7,\n", " 'decidedly': 4,\n", " 'decipher': 2,\n", " 'decision': 1,\n", " 'deck': 2,\n", " 'declaiming': 1,\n", " 'declare': 3,\n", " 'declared': 6,\n", " 'declaring': 2,\n", " 'declined': 2,\n", " 'declining': 1,\n", " 'decomposing': 1,\n", " 'decomposition': 1,\n", " 'decorated': 1,\n", " 'decoration': 5,\n", " 'decree': 9,\n", " 'decreed': 2,\n", " 'decrees': 1,\n", " 'deduce': 1,\n", " 'deducing': 1,\n", " 'deductible': 1,\n", " 'deducting': 1,\n", " 'deed': 6,\n", " 'deeds': 4,\n", " 'deem': 1,\n", " 'deemed': 2,\n", " 'deep': 24,\n", " 'deepened': 8,\n", " 'deepening': 1,\n", " 'deeper': 3,\n", " 'deeply': 6,\n", " 'deer': 1,\n", " 'defaced': 1,\n", " 'defarge': 280,\n", " \"defarge's\": 20,\n", " 'defarge--who': 1,\n", " 'defarges': 9,\n", " 'defeat': 1,\n", " 'defeats': 1,\n", " 'defect': 3,\n", " 'defective': 3,\n", " 'defects': 1,\n", " 'defence': 1,\n", " 'defenceless': 1,\n", " 'defend': 1,\n", " 'defendant': 1,\n", " 'defended': 1,\n", " 'deference': 4,\n", " 'deferentially': 1,\n", " 'defiance': 4,\n", " 'deficient': 1,\n", " 'defined': 3,\n", " 'definite': 2,\n", " 'deftly': 1,\n", " 'defy': 1,\n", " 'degenerate': 1,\n", " 'degradation': 1,\n", " 'degraded': 1,\n", " 'degrading': 1,\n", " 'degree': 11,\n", " 'degrees': 8,\n", " 'deigning': 1,\n", " 'dejected': 4,\n", " 'dejectedly': 1,\n", " 'delay': 12,\n", " 'delayed': 1,\n", " 'deletions': 1,\n", " 'deliberate': 1,\n", " 'deliberately': 4,\n", " 'deliberating': 1,\n", " 'delicacy': 10,\n", " 'delicate': 12,\n", " 'delicately': 4,\n", " 'delight': 1,\n", " 'delight--divided': 1,\n", " 'delighted': 1,\n", " 'delightful': 1,\n", " 'deliver': 7,\n", " 'deliverance': 1,\n", " 'delivered': 14,\n", " 'deluge': 2,\n", " 'delusion': 2,\n", " 'delve': 1,\n", " 'demand': 6,\n", " 'demanded': 10,\n", " 'demanding': 1,\n", " 'demands': 2,\n", " 'demean': 1,\n", " 'demeanour': 2,\n", " 'demented': 1,\n", " 'demons': 1,\n", " 'demonstration': 2,\n", " 'demonstration--but': 1,\n", " 'demonstrations': 2,\n", " 'demonstrative': 2,\n", " 'demur': 2,\n", " 'den': 1,\n", " 'denial': 2,\n", " 'denied': 1,\n", " 'denote': 1,\n", " 'denoted': 1,\n", " 'denounce': 5,\n", " 'denounced': 6,\n", " 'denounced--and': 1,\n", " 'denouncer': 1,\n", " 'denouncing': 1,\n", " 'dens': 2,\n", " 'dense': 1,\n", " 'denunciation': 6,\n", " 'deny': 1,\n", " 'denying': 1,\n", " 'depart': 3,\n", " 'departed': 5,\n", " 'departing': 1,\n", " 'departure': 1,\n", " 'depend': 8,\n", " 'depended': 2,\n", " 'depends': 6,\n", " 'deplorable': 1,\n", " 'deplore': 1,\n", " 'deportment': 1,\n", " 'deposited': 1,\n", " 'depositors': 1,\n", " 'depository': 1,\n", " 'deprecated': 1,\n", " 'deprecatory': 2,\n", " 'depressed': 3,\n", " 'deprivation': 2,\n", " 'depth': 3,\n", " 'depths': 6,\n", " 'deriding': 1,\n", " 'derivative': 3,\n", " 'derive': 1,\n", " 'derived': 6,\n", " 'dervishes': 1,\n", " 'descend': 4,\n", " 'descendants': 2,\n", " 'descended': 3,\n", " 'descending': 1,\n", " 'descends': 3,\n", " 'descent': 5,\n", " 'describe': 6,\n", " 'described': 7,\n", " 'describes': 1,\n", " 'describing': 1,\n", " 'descried': 2,\n", " 'description': 5,\n", " 'desert': 4,\n", " 'desert-sand': 1,\n", " 'deserted': 5,\n", " 'desertion': 1,\n", " 'deserve': 3,\n", " 'deserved': 3,\n", " 'deserves': 2,\n", " 'design': 2,\n", " 'designation': 1,\n", " 'designed': 2,\n", " 'designedly': 1,\n", " 'desirable': 4,\n", " 'desire': 14,\n", " 'desired': 5,\n", " 'desirous': 1,\n", " 'desk': 13,\n", " 'desolate': 7,\n", " 'desolately': 1,\n", " 'desolation': 1,\n", " 'despair': 6,\n", " 'despatch': 2,\n", " 'despatched': 3,\n", " 'desperate': 9,\n", " 'desperation': 3,\n", " 'despise': 1,\n", " 'despite': 1,\n", " 'despoil': 1,\n", " 'despoiled': 1,\n", " 'despond': 1,\n", " 'despondency': 3,\n", " 'despondent': 1,\n", " 'destination': 7,\n", " 'destinations': 1,\n", " 'destined': 1,\n", " 'destiny': 4,\n", " 'destitute': 1,\n", " 'destroy': 3,\n", " 'destroyed': 3,\n", " 'destroyed--razed': 1,\n", " 'destruction': 7,\n", " 'destructive': 1,\n", " 'detach': 2,\n", " 'detached': 1,\n", " 'detachment': 1,\n", " 'detail': 3,\n", " 'details': 5,\n", " 'detain': 2,\n", " 'detained': 3,\n", " 'detect': 2,\n", " 'detected': 5,\n", " 'detecting': 1,\n", " 'detention': 1,\n", " 'determination': 6,\n", " 'determine': 1,\n", " 'determined': 8,\n", " 'detestation': 1,\n", " 'detested': 3,\n", " 'detriment': 1,\n", " 'developed': 2,\n", " 'device': 1,\n", " 'devices': 2,\n", " 'devil': 16,\n", " 'devilish': 1,\n", " 'devilishly': 1,\n", " 'devilry': 1,\n", " 'devilry--a': 1,\n", " 'devils': 1,\n", " 'devils--which': 1,\n", " 'devise': 1,\n", " 'devonshire': 1,\n", " 'devote': 3,\n", " 'devoted': 7,\n", " 'devotedly': 3,\n", " 'devotees': 1,\n", " 'devotion': 1,\n", " 'devouring': 3,\n", " 'devoutest': 1,\n", " 'devoutly': 1,\n", " 'dewelop': 2,\n", " 'dexterously': 1,\n", " 'diabolic': 1,\n", " 'dialect': 1,\n", " 'dialogue': 5,\n", " 'diamond': 1,\n", " 'diamond-cut-diamond': 1,\n", " 'diamonds': 2,\n", " 'dice': 1,\n", " 'dickens': 1,\n", " 'dictate': 1,\n", " 'dictated': 1,\n", " 'dictating': 1,\n", " 'dictionary': 1,\n", " 'did': 161,\n", " \"did--don't\": 1,\n", " \"didn't\": 9,\n", " 'didst': 1,\n", " 'die': 23,\n", " 'died': 20,\n", " 'died--i': 1,\n", " 'dies': 1,\n", " 'differed': 1,\n", " 'difference': 5,\n", " 'different': 11,\n", " 'differing': 1,\n", " 'difficult': 17,\n", " 'difficult--how': 1,\n", " 'difficulties': 1,\n", " 'difficulty': 15,\n", " 'diffidence': 2,\n", " 'dig': 8,\n", " 'dig--dig--dig--until': 1,\n", " 'dig--now': 1,\n", " 'digestive': 1,\n", " 'digger': 1,\n", " 'diggin': 2,\n", " 'digging': 3,\n", " 'dignity': 2,\n", " 'dilated': 2,\n", " 'dim': 8,\n", " 'dimensions': 1,\n", " 'diminished': 2,\n", " 'diminishing': 1,\n", " 'dimly': 3,\n", " 'dimly-lighted': 1,\n", " 'dimmed': 1,\n", " 'dimmer': 1,\n", " 'dine': 4,\n", " \"dine--it's\": 1,\n", " 'dined': 3,\n", " 'dingier': 1,\n", " 'dingiest': 1,\n", " 'dingy': 4,\n", " 'dining': 1,\n", " 'dining-room': 1,\n", " 'dining-table': 1,\n", " 'dinner': 14,\n", " 'dinner-time': 1,\n", " 'dinners': 1,\n", " 'dints': 3,\n", " 'diplomacy': 1,\n", " 'dipped': 5,\n", " 'dire': 3,\n", " 'direct': 9,\n", " 'directed': 10,\n", " 'directing': 2,\n", " 'direction': 15,\n", " 'direction--the': 1,\n", " 'directions': 4,\n", " 'directly': 11,\n", " 'director': 1,\n", " 'directress': 1,\n", " 'dirt': 3,\n", " 'dirtied': 1,\n", " 'dirtier': 1,\n", " 'dirty': 6,\n", " 'disadvantage': 2,\n", " 'disagreeable': 4,\n", " 'disappear': 1,\n", " 'disappearance': 2,\n", " 'disappeared': 3,\n", " 'disappointed': 3,\n", " 'disappointing': 1,\n", " 'disappointment': 3,\n", " 'disapproving': 1,\n", " 'disarmed': 1,\n", " 'discarded': 1,\n", " 'discern': 2,\n", " 'discernible': 1,\n", " 'discharge': 3,\n", " 'discharged': 2,\n", " 'discharging': 1,\n", " 'disciple': 1,\n", " 'disciples': 1,\n", " 'disclaim': 1,\n", " 'disclaimer': 3,\n", " 'disclaimers': 1,\n", " 'disclose': 2,\n", " 'disclosed': 2,\n", " 'disclosure': 4,\n", " 'discoloured': 1,\n", " 'discomfited': 1,\n", " 'discomfort': 1,\n", " 'discomposed': 1,\n", " 'disconcerted': 2,\n", " 'disconcerting': 2,\n", " 'discontent': 1,\n", " 'discontinue': 1,\n", " 'discourse': 4,\n", " 'discoursing': 1,\n", " 'discover': 4,\n", " 'discovered': 10,\n", " 'discovering': 2,\n", " 'discovery': 5,\n", " 'discreditable': 1,\n", " 'discreet': 1,\n", " 'discreet--as': 1,\n", " 'discretion': 1,\n", " 'discuss': 3,\n", " 'discussed': 1,\n", " 'discussing': 1,\n", " 'discussion': 1,\n", " 'disdainful': 1,\n", " 'disease': 1,\n", " 'disease--a': 1,\n", " 'diseases': 2,\n", " 'disengaging': 1,\n", " 'disfigured': 1,\n", " 'disfigurement': 1,\n", " 'disfigurement--and': 1,\n", " 'disfiguring': 2,\n", " 'disgrace': 6,\n", " 'disguise': 1,\n", " 'disguised': 1,\n", " 'disguises': 1,\n", " 'dishonour': 1,\n", " 'disinclined': 1,\n", " 'disinherit': 1,\n", " 'disinherited': 1,\n", " 'disinterestedly': 2,\n", " 'disjointed': 1,\n", " 'disk': 1,\n", " 'dislike': 2,\n", " 'disliked': 2,\n", " 'dismal': 5,\n", " 'dismiss': 1,\n", " 'dismissal': 2,\n", " 'dismissed': 2,\n", " 'dismount': 2,\n", " 'dismounted': 1,\n", " 'disobey': 1,\n", " 'disorder': 5,\n", " 'disordered': 3,\n", " 'disorderly': 1,\n", " 'disorders': 1,\n", " 'disorganised': 3,\n", " 'disparagement': 1,\n", " 'disparaging': 1,\n", " 'dispense': 2,\n", " 'dispersal': 1,\n", " 'dispersed': 4,\n", " 'dispersing': 1,\n", " 'displace': 1,\n", " 'displaced': 1,\n", " 'displacements': 1,\n", " 'display': 1,\n", " 'displayed': 3,\n", " 'displaying': 4,\n", " 'displeased': 1,\n", " 'displeasure': 2,\n", " 'disposed': 6,\n", " 'disposing': 1,\n", " 'disposition': 3,\n", " 'disproportionate': 1,\n", " 'disquiet': 1,\n", " 'disquieted': 1,\n", " 'disreputable': 1,\n", " 'disrespectful': 1,\n", " 'disrespectfully': 1,\n", " 'dissatisfaction': 1,\n", " 'dissatisfied': 2,\n", " 'dissimulation': 1,\n", " 'dissipated': 1,\n", " 'dissociated': 2,\n", " 'dissolute': 1,\n", " 'dissolved': 1,\n", " 'dissonance': 1,\n", " 'distance': 22,\n", " 'distant': 11,\n", " 'distasteful': 2,\n", " 'distinct': 1,\n", " 'distinction': 2,\n", " 'distinctions': 1,\n", " 'distinctly': 3,\n", " 'distinctness': 1,\n", " 'distinguish': 1,\n", " 'distinguished': 1,\n", " 'distortedly': 1,\n", " 'distracted': 7,\n", " 'distracting': 2,\n", " 'distractions': 1,\n", " 'distress': 8,\n", " 'distressed': 3,\n", " 'distressful': 1,\n", " 'distressing': 1,\n", " 'distribute': 6,\n", " 'distributed': 4,\n", " 'distributed--so': 1,\n", " 'distributing': 7,\n", " 'distribution': 7,\n", " 'distributor': 1,\n", " 'distrust': 5,\n", " 'distrusted': 1,\n", " 'distrustfully': 1,\n", " 'disturb': 1,\n", " 'disturbance': 1,\n", " 'disturbed': 10,\n", " 'disturbing': 3,\n", " 'disuse': 1,\n", " 'disused': 1,\n", " 'ditch': 3,\n", " 'ditches': 1,\n", " 'diverging': 1,\n", " 'divers': 2,\n", " 'diversified': 2,\n", " 'diversion': 2,\n", " 'diversity': 1,\n", " 'diverted': 1,\n", " 'divide': 3,\n", " 'divided': 3,\n", " 'dividing': 1,\n", " 'divine': 3,\n", " 'divined': 1,\n", " 'divinities': 1,\n", " 'division': 1,\n", " 'do': 315,\n", " 'do--beyond': 1,\n", " 'do--go': 1,\n", " 'do--well': 1,\n", " 'docile': 1,\n", " 'dock': 4,\n", " 'dockyard': 1,\n", " 'doctor': 192,\n", " \"doctor's\": 30,\n", " 'doctors': 3,\n", " 'doctrine': 1,\n", " 'doctrines': 1,\n", " 'document': 2,\n", " 'documents': 2,\n", " 'doers': 1,\n", " 'does': 40,\n", " \"doesn't\": 6,\n", " 'doffed': 1,\n", " 'dog': 9,\n", " \"dog's\": 1,\n", " 'dog-hut': 1,\n", " 'dog-kennel': 1,\n", " 'dogged': 2,\n", " 'doggedly': 1,\n", " 'dogs': 15,\n", " 'doing': 10,\n", " 'doleful': 3,\n", " 'doll': 7,\n", " 'dolls': 2,\n", " 'dolorous': 1,\n", " 'dolt': 1,\n", " 'domain': 8,\n", " 'domestic': 4,\n", " 'domesticated': 1,\n", " 'domestics': 2,\n", " 'domicile': 1,\n", " 'dominant': 2,\n", " 'dominated': 1,\n", " 'domination': 1,\n", " 'domini': 1,\n", " 'dominion': 1,\n", " 'dominions': 2,\n", " 'dominoes': 4,\n", " \"don't\": 132,\n", " 'donate': 3,\n", " 'donation': 1,\n", " 'donations': 15,\n", " 'done': 94,\n", " 'done--done': 1,\n", " 'done--why': 1,\n", " 'donors': 1,\n", " 'doom': 2,\n", " 'doomed': 7,\n", " 'door': 119,\n", " 'door--evidently': 1,\n", " 'door-bell': 1,\n", " 'door-keeper': 3,\n", " 'door-post': 3,\n", " 'door-step': 1,\n", " 'door-steps': 1,\n", " 'doorpost': 2,\n", " 'doors': 24,\n", " 'doorway': 5,\n", " 'doorways': 3,\n", " 'dormant': 1,\n", " 'dormer': 1,\n", " 'dose': 1,\n", " 'double': 6,\n", " 'double-laden': 1,\n", " 'doubly': 3,\n", " 'doubt': 41,\n", " 'doubted': 2,\n", " 'doubtful': 2,\n", " 'doubtfully': 2,\n", " 'doubting': 1,\n", " 'doubtless': 2,\n", " 'doubts': 4,\n", " 'doubts--hopes': 1,\n", " 'dover': 16,\n", " 'down': 232,\n", " 'down--down': 1,\n", " 'down-stairs': 5,\n", " 'downloading': 1,\n", " 'downstairs': 6,\n", " 'downward': 1,\n", " 'doze': 1,\n", " 'dozen': 7,\n", " 'dozens': 2,\n", " 'dozing': 3,\n", " 'dr': 2,\n", " 'drafts': 1,\n", " 'drag': 5,\n", " 'dragged': 5,\n", " \"dragon's\": 1,\n", " 'dragoon': 1,\n", " 'drags': 1,\n", " 'drainage': 1,\n", " 'drained': 1,\n", " 'drank': 18,\n", " 'drapery': 1,\n", " 'draught': 1,\n", " 'draw': 16,\n", " 'drawback': 1,\n", " 'drawbridge': 8,\n", " 'drawbridges': 1,\n", " 'drawer': 6,\n", " 'drawers': 1,\n", " 'drawing': 18,\n", " 'drawing-room': 1,\n", " 'drawing-rooms': 1,\n", " 'drawl': 1,\n", " 'drawn': 19,\n", " 'dread': 15,\n", " 'dread--pressed': 1,\n", " 'dreaded': 7,\n", " 'dreadful': 24,\n", " 'dreadfully': 4,\n", " 'dream': 8,\n", " 'dream--had': 1,\n", " 'dreaming': 1,\n", " 'dreamlike': 1,\n", " 'dreams': 2,\n", " 'drearily': 1,\n", " 'dreary': 3,\n", " 'dregs': 2,\n", " 'dress': 24,\n", " 'dressed': 11,\n", " 'dresses': 2,\n", " 'dressing': 1,\n", " 'drew': 15,\n", " 'drier': 1,\n", " 'drifted': 3,\n", " 'drill': 1,\n", " 'drily': 1,\n", " 'drink': 18,\n", " 'drink-money': 1,\n", " 'drinkers': 1,\n", " 'drinking': 26,\n", " 'drinking-table': 2,\n", " 'dripping': 2,\n", " 'drive': 6,\n", " 'driven': 9,\n", " 'driver': 5,\n", " 'drives': 1,\n", " 'driving': 8,\n", " 'droll': 3,\n", " 'drooped': 4,\n", " 'drooping': 5,\n", " 'drop': 7,\n", " 'dropped': 43,\n", " 'dropping': 5,\n", " 'drops': 5,\n", " 'dropsical': 1,\n", " 'drove': 6,\n", " 'drown': 1,\n", " 'drowned': 3,\n", " 'drowning': 2,\n", " 'drudge': 1,\n", " 'drum': 4,\n", " \"drum's\": 1,\n", " 'drummer': 1,\n", " 'drums': 6,\n", " 'drunk': 7,\n", " 'drunken': 4,\n", " 'drunkenness': 1,\n", " 'dry': 9,\n", " 'drying': 1,\n", " 'dubious': 1,\n", " 'dubiously': 3,\n", " 'ducked': 1,\n", " 'due': 5,\n", " 'dues': 1,\n", " 'dug': 5,\n", " 'dull': 12,\n", " 'duly': 1,\n", " 'dumb': 2,\n", " 'dumb-show': 1,\n", " 'dumpling': 1,\n", " 'dungeon': 1,\n", " \"dunstan's\": 1,\n", " 'duration': 1,\n", " 'during': 18,\n", " 'durst': 1,\n", " 'dusk': 3,\n", " 'dusky': 2,\n", " 'dust': 21,\n", " 'dusty': 5,\n", " 'duties': 5,\n", " 'dutiful': 2,\n", " 'duty': 18,\n", " 'dwarf': 1,\n", " 'dwell': 4,\n", " 'dwelling': 2,\n", " 'dwelling-place': 1,\n", " 'dwelt': 2,\n", " 'dye': 1,\n", " 'dye-works': 2,\n", " 'dyed': 1,\n", " 'dyeing': 1,\n", " 'dying': 7,\n", " 'e': 1,\n", " 'e-mail': 1,\n", " 'each': 25,\n", " 'eager': 7,\n", " 'eagerly': 1,\n", " 'eagerness': 4,\n", " 'eagles': 1,\n", " 'ear': 12,\n", " 'earlier': 6,\n", " 'earliest': 1,\n", " 'early': 15,\n", " 'earned': 3,\n", " 'earnest': 9,\n", " 'earnestly': 3,\n", " 'earnestness': 5,\n", " 'earning': 1,\n", " 'earrings': 1,\n", " 'ears': 23,\n", " 'earth': 30,\n", " \"earth's\": 1,\n", " 'earthenware': 1,\n", " 'earthly': 5,\n", " 'earthquake': 2,\n", " 'ease': 12,\n", " 'eased': 1,\n", " 'easier': 4,\n", " 'easiest': 1,\n", " 'easily': 13,\n", " 'east': 3,\n", " 'easterly': 1,\n", " 'eastward': 1,\n", " 'easy': 14,\n", " 'eat': 11,\n", " 'eaten': 2,\n", " 'eating': 2,\n", " 'eavesdropper': 2,\n", " 'ebb': 1,\n", " 'ebbing': 1,\n", " 'ebook': 6,\n", " 'ebooks': 7,\n", " 'eccentric': 2,\n", " 'eccentricities': 1,\n", " 'eccentricity': 1,\n", " 'ecclesiastic': 1,\n", " 'ecclesiastics': 1,\n", " 'echo': 3,\n", " 'echoed': 5,\n", " 'echoes': 28,\n", " 'echoing': 4,\n", " 'echoless': 1,\n", " 'ecod': 1,\n", " 'economy': 1,\n", " 'eddy': 1,\n", " 'eddying': 1,\n", " 'eden': 1,\n", " 'edge': 4,\n", " 'edifice': 2,\n", " 'edifying': 1,\n", " 'edition': 1,\n", " 'editions': 4,\n", " 'editor': 1,\n", " 'educational': 1,\n", " 'effect': 15,\n", " 'effected': 2,\n", " 'efficacy': 3,\n", " 'effort': 7,\n", " 'efforts': 8,\n", " 'egress': 1,\n", " 'eh': 9,\n", " 'eight': 15,\n", " 'eighteen': 7,\n", " 'eightieth': 1,\n", " 'eighty': 3,\n", " 'eighty-nine': 2,\n", " 'ein': 1,\n", " 'either': 32,\n", " 'ejaculated': 1,\n", " 'eke': 1,\n", " 'elastic': 1,\n", " 'elate': 1,\n", " 'elbow': 8,\n", " 'elbow-room': 1,\n", " 'elbows': 4,\n", " 'elder': 13,\n", " 'elderly': 5,\n", " 'elect': 1,\n", " 'electronic': 27,\n", " 'electronically': 2,\n", " 'elegance': 1,\n", " 'elegant': 3,\n", " 'elegantly': 2,\n", " 'elephants': 1,\n", " 'elevate': 1,\n", " 'elevated': 2,\n", " 'elevation': 1,\n", " 'eleven': 5,\n", " 'elicit': 2,\n", " 'elicited': 2,\n", " 'eligible': 4,\n", " 'elongate': 1,\n", " 'eloquent': 1,\n", " 'else': 25,\n", " 'else-deserted': 1,\n", " 'elsewhere': 5,\n", " 'em': 13,\n", " 'emaciated': 1,\n", " 'email': 3,\n", " 'embarrassed': 1,\n", " 'embarrassing': 1,\n", " 'embarrassment': 2,\n", " 'embarrassments': 1,\n", " 'embellished': 1,\n", " 'embellishment': 1,\n", " 'embers': 3,\n", " 'emblem': 1,\n", " 'embrace': 5,\n", " 'embrace--madame': 1,\n", " 'embraced': 5,\n", " 'embraces': 4,\n", " 'embracing': 5,\n", " 'embracings': 1,\n", " 'embrasure': 1,\n", " 'embroidered': 1,\n", " 'embroidering': 1,\n", " 'embroidery': 1,\n", " 'emerged': 7,\n", " 'emergence': 1,\n", " 'emergency': 1,\n", " 'emerging': 2,\n", " 'emigrant': 18,\n", " 'emigrants': 5,\n", " 'eminence': 1,\n", " 'eminent': 1,\n", " 'emissaries': 1,\n", " 'emissary': 2,\n", " 'emotion': 4,\n", " 'emotional': 1,\n", " 'emotions': 3,\n", " 'empannelled': 1,\n", " 'emphasis': 3,\n", " 'emphatic': 4,\n", " 'emphatically': 2,\n", " 'employ': 2,\n", " 'employed': 7,\n", " 'employee': 1,\n", " 'employees': 2,\n", " 'employers': 1,\n", " 'employing': 1,\n", " 'employment': 4,\n", " 'employments': 1,\n", " 'empties': 1,\n", " 'empty': 8,\n", " 'empty-headed': 1,\n", " 'emptying': 1,\n", " 'emulative': 1,\n", " 'enable': 2,\n", " 'enables': 1,\n", " 'enabling': 1,\n", " 'encamped': 1,\n", " 'encampment': 1,\n", " 'enchanted': 3,\n", " 'enchanter': 1,\n", " 'enchantment': 1,\n", " 'encircled': 1,\n", " 'encloses': 2,\n", " 'encompass': 1,\n", " 'encompassed': 4,\n", " 'encountered': 4,\n", " 'encounters': 1,\n", " 'encouraged': 5,\n", " 'encouragement': 3,\n", " 'encouraging': 3,\n", " 'encumbered': 1,\n", " 'end': 39,\n", " 'endanger': 1,\n", " 'endangered': 2,\n", " 'endeavour': 3,\n", " 'endeavouring': 1,\n", " 'ended': 5,\n", " 'ending': 1,\n", " 'endowments': 1,\n", " 'ends': 5,\n", " 'endued': 1,\n", " 'endurance': 4,\n", " 'endure': 3,\n", " 'endured': 1,\n", " 'enduring': 1,\n", " 'enemies': 5,\n", " 'enemy': 10,\n", " 'energetic': 2,\n", " 'energy': 6,\n", " 'enfolded': 1,\n", " 'enfolding': 1,\n", " 'enforced': 1,\n", " 'enforcing': 1,\n", " 'engaged': 15,\n", " 'engagement': 1,\n", " 'engaging': 3,\n", " 'engendered': 5,\n", " 'engine': 2,\n", " 'england': 39,\n", " \"england's\": 1,\n", " 'english': 46,\n", " 'englishman': 6,\n", " 'englishwoman': 1,\n", " 'engrained': 1,\n", " 'engrossing': 1,\n", " 'enjoy': 2,\n", " 'enjoyable': 1,\n", " 'enjoying': 1,\n", " 'enjoyment': 4,\n", " 'enlarged': 1,\n", " 'enough': 71,\n", " 'enraged': 1,\n", " 'enriching': 1,\n", " 'ensured': 1,\n", " 'ensuring': 2,\n", " 'entangling': 1,\n", " 'enter': 7,\n", " 'entered': 20,\n", " 'entering': 4,\n", " 'entertain': 2,\n", " 'entertained': 1,\n", " 'entertainment': 3,\n", " 'entertainments': 1,\n", " 'enthroned': 1,\n", " 'enthusiastically': 1,\n", " 'entirely': 4,\n", " 'entity': 3,\n", " 'entrance': 2,\n", " 'entreat': 6,\n", " 'entreated': 3,\n", " 'entreaties': 1,\n", " 'entreatin': 1,\n", " 'entreating': 1,\n", " 'entreats': 1,\n", " 'entreaty': 3,\n", " 'entries': 3,\n", " 'entrusted': 2,\n", " 'entry': 1,\n", " 'enumerated': 1,\n", " 'environed': 2,\n", " 'environing': 1,\n", " 'envy': 1,\n", " 'epicure': 1,\n", " 'episcopal': 1,\n", " 'epoch': 2,\n", " 'equably': 1,\n", " 'equal': 2,\n", " 'equality': 7,\n", " 'equally': 9,\n", " 'equidistant': 1,\n", " 'equipages': 2,\n", " 'equipment': 3,\n", " 'equipped': 1,\n", " 'era': 2,\n", " 'erase': 2,\n", " 'ernest': 3,\n", " 'errand': 3,\n", " 'erring': 1,\n", " 'errors': 2,\n", " 'erst': 1,\n", " 'escape': 11,\n", " 'escaping': 2,\n", " 'escort': 14,\n", " 'escort--and': 1,\n", " 'escorted': 8,\n", " 'escutcheon': 1,\n", " 'especial': 1,\n", " 'especially': 7,\n", " 'essence': 1,\n", " 'essential': 2,\n", " 'established': 6,\n", " 'establishment': 6,\n", " 'estate': 2,\n", " 'estates': 1,\n", " 'esteem': 1,\n", " 'esteemed': 1,\n", " 'estimate': 1,\n", " 'estranged': 1,\n", " 'estrangement': 1,\n", " 'eternal': 5,\n", " 'eternally': 1,\n", " 'eternity': 1,\n", " 'european': 1,\n", " 'evaded': 1,\n", " 'evanescence': 1,\n", " 'evasively': 1,\n", " 'even': 127,\n", " 'evening': 31,\n", " 'event': 1,\n", " 'eventide': 1,\n", " 'events': 7,\n", " 'events--out': 1,\n", " 'ever': 117,\n", " 'ever-growing': 1,\n", " 'everlasting': 1,\n", " 'evermore': 1,\n", " 'every': 122,\n", " 'everybody': 14,\n", " 'everything': 27,\n", " 'everywhere': 5,\n", " 'evidence': 8,\n", " 'evident': 3,\n", " 'evidently': 11,\n", " 'evil': 9,\n", " 'evil-adverbiously': 1,\n", " 'evils': 1,\n", " 'evincing': 1,\n", " 'evoke': 1,\n", " 'evremonde': 46,\n", " 'exact': 4,\n", " 'exacted': 2,\n", " 'exactly': 16,\n", " 'exaggerated': 1,\n", " 'exaggeration': 1,\n", " 'exaltation': 1,\n", " 'exalted': 4,\n", " 'examination': 5,\n", " 'examine': 5,\n", " 'examined': 11,\n", " 'examining': 1,\n", " 'example': 4,\n", " 'exasperation': 1,\n", " 'exceeding': 1,\n", " 'exceedingly': 6,\n", " 'excellent': 6,\n", " 'except': 23,\n", " 'excepted': 1,\n", " 'excepting': 1,\n", " 'exception': 1,\n", " 'exceptional': 1,\n", " 'exceptions': 1,\n", " 'exchange': 3,\n", " 'exchanged': 3,\n", " 'excited': 6,\n", " 'excitement': 3,\n", " 'exclaim': 1,\n", " 'exclaimed': 15,\n", " 'exclamation': 2,\n", " 'exclude': 1,\n", " 'excluded': 1,\n", " 'exclusion': 1,\n", " 'exclusive': 1,\n", " 'excursion': 1,\n", " 'excuse': 5,\n", " 'excused': 1,\n", " 'excusing': 1,\n", " 'execrations': 1,\n", " 'execute': 3,\n", " 'executed': 5,\n", " 'executed.--you': 1,\n", " 'execution': 5,\n", " 'executioner': 3,\n", " 'executive': 1,\n", " 'exemplary': 1,\n", " 'exempt': 2,\n", " 'exercise': 10,\n", " 'exercised': 1,\n", " 'exercises': 1,\n", " 'exertion': 1,\n", " 'exertions': 1,\n", " 'exhausted': 3,\n", " 'exhaustion': 2,\n", " 'exile': 2,\n", " 'exist': 1,\n", " 'existed': 2,\n", " 'existence': 4,\n", " 'existence--which': 1,\n", " 'exists': 1,\n", " 'exordium': 1,\n", " 'expect': 11,\n", " 'expectantly': 1,\n", " 'expectation': 5,\n", " 'expectations': 2,\n", " 'expected': 15,\n", " 'expeditiously': 1,\n", " 'expend': 1,\n", " 'expense': 2,\n", " 'expenses': 2,\n", " 'experience': 4,\n", " 'experience--_in': 1,\n", " 'experiences': 1,\n", " 'experiments': 2,\n", " 'expert': 2,\n", " 'expiation': 1,\n", " 'explain': 10,\n", " 'explained': 7,\n", " 'explainin': 1,\n", " 'explaining': 3,\n", " 'explanation': 4,\n", " 'explanatory': 1,\n", " 'explicit': 3,\n", " 'exploring': 1,\n", " 'explosive': 1,\n", " 'exponent': 1,\n", " 'exporting': 1,\n", " 'exposed': 1,\n", " 'expostulation': 1,\n", " 'expounded': 2,\n", " 'express': 12,\n", " 'expressed': 4,\n", " 'expressing': 2,\n", " 'expression': 31,\n", " 'expression--but': 1,\n", " 'expressions': 1,\n", " 'expressions--as': 1,\n", " 'expressive': 6,\n", " 'expressly': 7,\n", " 'exquisite': 2,\n", " 'extemporised': 1,\n", " 'extend': 1,\n", " 'extended': 6,\n", " 'extending': 4,\n", " 'extensive': 2,\n", " 'extent': 5,\n", " 'extent--that': 1,\n", " 'exterior': 1,\n", " 'exterminate': 1,\n", " 'exterminated': 1,\n", " 'exterminating': 1,\n", " 'extermination': 4,\n", " 'external': 3,\n", " 'extinguished': 5,\n", " 'extinguisher': 1,\n", " 'extinguisher-topped': 1,\n", " 'extortion': 1,\n", " 'extra': 5,\n", " 'extract': 2,\n", " 'extracted': 1,\n", " 'extracting': 1,\n", " 'extraction': 1,\n", " 'extraordinary': 10,\n", " 'extravagant': 2,\n", " 'extravagantly': 1,\n", " 'extreme': 2,\n", " 'extremely': 4,\n", " 'extremes': 1,\n", " 'exuding': 1,\n", " 'exultant': 2,\n", " 'exultation': 1,\n", " 'eye': 34,\n", " 'eyebrows': 12,\n", " 'eyed': 2,\n", " 'eyeing': 1,\n", " 'eyelids': 1,\n", " 'eyes': 163,\n", " 'eyes;--eyes': 1,\n", " 'f3': 1,\n", " 'fabled': 1,\n", " 'fabric': 1,\n", " 'fabulous': 1,\n", " 'face': 187,\n", " 'faced': 1,\n", " 'faces': 53,\n", " 'faces--each': 1,\n", " 'facilitate': 1,\n", " 'facilities': 1,\n", " 'facility': 1,\n", " 'fact': 12,\n", " 'facts': 1,\n", " 'faculties': 3,\n", " 'faculty': 1,\n", " 'faded': 5,\n", " 'fagged': 1,\n", " 'fagots': 1,\n", " 'fail': 6,\n", " 'failed': 7,\n", " 'failing': 2,\n", " 'failure': 2,\n", " 'fain': 1,\n", " 'faint': 14,\n", " 'fainter': 3,\n", " 'fainting': 1,\n", " 'faintly': 4,\n", " 'faintness': 3,\n", " 'faints': 2,\n", " 'fair': 20,\n", " 'fair-faced': 1,\n", " 'fairbanks': 1,\n", " 'fairy': 3,\n", " 'faith': 9,\n", " 'faithful': 7,\n", " 'faithfully': 3,\n", " 'fall': 14,\n", " 'fallen': 24,\n", " 'falling': 12,\n", " 'falls': 5,\n", " 'false': 7,\n", " 'falsely': 1,\n", " 'falter': 1,\n", " 'faltered': 3,\n", " 'faltering': 4,\n", " 'familiar': 7,\n", " 'familiars': 1,\n", " 'families': 3,\n", " 'family': 33,\n", " \"family's\": 2,\n", " 'famine': 1,\n", " 'famine-pinched': 1,\n", " 'famished': 3,\n", " 'famous': 5,\n", " 'fan': 1,\n", " 'fancied': 3,\n", " 'fancied--but': 1,\n", " 'fancies': 2,\n", " 'fanciful': 1,\n", " 'fancy': 22,\n", " 'fanned': 2,\n", " 'fantastic': 2,\n", " 'far': 81,\n", " 'far-off': 1,\n", " 'fardens': 1,\n", " 'fardens--fardens': 1,\n", " 'fardens--half': 1,\n", " 'fare': 1,\n", " 'fared': 3,\n", " 'farewell': 5,\n", " 'faring': 1,\n", " 'farmer': 3,\n", " \"farmer's\": 2,\n", " 'farmer-general': 6,\n", " 'farmer-general--howsoever': 1,\n", " 'farmer-generals': 1,\n", " 'farms': 2,\n", " 'farrier': 3,\n", " 'farthing': 1,\n", " 'fascinated': 1,\n", " 'fascinating': 1,\n", " 'fascination': 1,\n", " 'fashion': 10,\n", " 'fast': 27,\n", " 'fast-dying': 1,\n", " 'fast-sailing': 1,\n", " 'fast-spreading': 1,\n", " 'fast-thinning': 1,\n", " 'fastened': 1,\n", " 'fastening': 2,\n", " 'faster': 9,\n", " 'fastest': 2,\n", " 'fasting': 1,\n", " 'fat': 1,\n", " 'fatal': 8,\n", " 'fatally': 1,\n", " 'fate': 11,\n", " 'fate--for': 1,\n", " 'father': 160,\n", " \"father's\": 33,\n", " \"father's--for\": 1,\n", " 'father--do': 1,\n", " 'fathers': 2,\n", " 'fatigue': 1,\n", " 'fatigued': 5,\n", " 'fault': 4,\n", " 'faults': 3,\n", " 'favour': 20,\n", " 'favourable': 1,\n", " 'favoured': 5,\n", " 'favoured!--always': 1,\n", " 'favourite': 5,\n", " 'favours': 1,\n", " 'fawning': 1,\n", " 'fear': 26,\n", " 'feared': 2,\n", " 'fearful': 7,\n", " 'fearfully': 2,\n", " 'fearless': 1,\n", " 'fears': 6,\n", " 'feasting': 1,\n", " 'feather': 2,\n", " 'feathered': 1,\n", " 'feathers': 2,\n", " 'feathery': 2,\n", " 'feature': 3,\n", " 'features': 4,\n", " 'fed': 1,\n", " 'federal': 2,\n", " 'fee': 8,\n", " 'feeble': 7,\n", " 'feebler': 3,\n", " 'feebly-burning': 1,\n", " 'feed': 2,\n", " 'feed--if': 1,\n", " 'feel': 23,\n", " 'feeling': 13,\n", " 'feelingly': 2,\n", " 'feelings': 5,\n", " 'feels': 2,\n", " 'fees': 4,\n", " 'feet': 44,\n", " 'feigned': 4,\n", " 'feint': 1,\n", " 'felicitously': 1,\n", " 'felicity': 2,\n", " 'fell': 42,\n", " 'fellow': 32,\n", " 'fellow-citizen': 3,\n", " 'fellow-countryman': 1,\n", " 'fellow-creature': 1,\n", " 'fellow-creatures': 1,\n", " 'fellow-inscrutables': 1,\n", " 'fellow-jurymen': 1,\n", " 'fellow-passenger': 1,\n", " 'fellow-passengers': 1,\n", " 'fellow-patriots': 1,\n", " 'fellow-plotter': 1,\n", " 'fellow-sheep': 1,\n", " 'fellow-students': 1,\n", " 'fellow-tradesman': 1,\n", " 'fellow?--where': 1,\n", " 'fellows': 3,\n", " 'fellowship': 1,\n", " 'felons': 1,\n", " 'felt': 24,\n", " 'female': 6,\n", " 'feminine': 2,\n", " 'fences': 1,\n", " 'ferocious': 2,\n", " 'ferocity': 2,\n", " 'ferret': 1,\n", " 'ferreted': 1,\n", " 'fervent': 5,\n", " 'fervently': 3,\n", " 'fervour': 3,\n", " 'festival': 1,\n", " 'fetch': 3,\n", " 'fetched': 1,\n", " 'fetters': 1,\n", " 'feudal': 1,\n", " 'fever': 4,\n", " 'feverish': 2,\n", " 'few': 88,\n", " 'fewer': 3,\n", " 'fickleness': 1,\n", " 'fictitious': 1,\n", " 'fidelity': 4,\n", " 'fidget': 1,\n", " 'field': 1,\n", " 'fields': 4,\n", " 'fiend': 1,\n", " 'fierce': 10,\n", " 'fiercely': 2,\n", " 'fiercer': 1,\n", " 'fifteen': 5,\n", " 'fifth': 3,\n", " 'fifty': 12,\n", " 'fifty-two': 7,\n", " 'fight': 4,\n", " 'fighting': 1,\n", " 'figure': 41,\n", " 'figures': 16,\n", " 'filaments': 1,\n", " 'file': 4,\n", " 'files': 3,\n", " 'filing': 1,\n", " 'fill': 5,\n", " 'filled': 13,\n", " 'filling': 4,\n", " 'filtered': 1,\n", " 'filthy': 2,\n", " 'final': 8,\n", " 'finally': 12,\n", " 'finances': 3,\n", " 'financial': 1,\n", " 'find': 45,\n", " 'finding': 4,\n", " 'finds': 3,\n", " 'fine': 27,\n", " 'fineness': 1,\n", " 'finesse': 1,\n", " 'finest': 3,\n", " 'finger': 17,\n", " 'finger--and': 1,\n", " 'finger-nails': 1,\n", " 'finger-post': 1,\n", " 'fingers': 33,\n", " 'finish': 9,\n", " 'finished': 7,\n", " 'finishing': 1,\n", " 'fire': 52,\n", " 'fire--a': 1,\n", " 'fire--perhaps': 1,\n", " 'fire-charred': 1,\n", " 'fire-grate': 1,\n", " 'fire-light': 1,\n", " 'fired': 8,\n", " 'fires': 2,\n", " 'firewood': 4,\n", " 'firing': 1,\n", " 'firm': 4,\n", " 'firmly': 4,\n", " 'firmness': 6,\n", " 'first': 115,\n", " 'firstly': 1,\n", " 'fish': 4,\n", " 'fished': 1,\n", " 'fisherman': 2,\n", " 'fishermen': 2,\n", " 'fishes': 1,\n", " 'fishing': 5,\n", " 'fishing-rod': 1,\n", " 'fist': 1,\n", " 'fit': 9,\n", " 'fitful': 3,\n", " 'fitfully': 1,\n", " 'fitness': 1,\n", " 'fits': 1,\n", " 'fitted': 4,\n", " 'five': 37,\n", " 'five-and-forty': 1,\n", " 'five-and-twentieth': 1,\n", " 'five-and-twenty': 2,\n", " 'fix': 2,\n", " 'fixed': 11,\n", " 'fixedly': 5,\n", " 'flag': 4,\n", " 'flambeau': 4,\n", " 'flambeau-bearer': 1,\n", " 'flambeaux': 1,\n", " 'flame': 4,\n", " 'flamed': 1,\n", " 'flames': 3,\n", " 'flaming': 2,\n", " 'flanks': 1,\n", " 'flapped': 2,\n", " 'flapping': 1,\n", " 'flaps': 1,\n", " 'flare': 1,\n", " 'flaring': 4,\n", " 'flash': 4,\n", " 'flashed': 3,\n", " 'flashes': 1,\n", " 'flashing': 2,\n", " 'flat': 1,\n", " 'flattened': 1,\n", " 'flatter': 1,\n", " 'flattered': 3,\n", " 'flattering': 1,\n", " 'flavour': 3,\n", " 'flaxen': 4,\n", " 'flay': 1,\n", " 'fled': 1,\n", " 'fleet-street': 12,\n", " 'flew': 1,\n", " 'flickered': 1,\n", " 'flickering': 1,\n", " 'flies': 5,\n", " 'flight': 5,\n", " 'flights': 3,\n", " 'flinched': 1,\n", " 'flinging': 2,\n", " 'flint': 2,\n", " 'flints': 1,\n", " 'flinty': 1,\n", " 'flirting': 1,\n", " 'floated': 3,\n", " 'floating': 1,\n", " 'flock': 1,\n", " 'flocked': 1,\n", " 'flood': 2,\n", " 'floor': 21,\n", " 'floor--a': 1,\n", " 'floors': 2,\n", " 'flop': 5,\n", " 'flop--catch': 1,\n", " 'floppin': 1,\n", " 'flopping': 9,\n", " 'floppings': 1,\n", " 'florid': 3,\n", " 'floundering': 2,\n", " 'flourish': 1,\n", " 'flourished': 1,\n", " 'flourishes': 1,\n", " 'flourishing': 2,\n", " 'flow': 3,\n", " 'flowed': 3,\n", " 'flower': 1,\n", " 'flowers': 5,\n", " 'flowing': 1,\n", " 'flown': 1,\n", " 'flung': 3,\n", " 'flush': 2,\n", " 'flushed': 1,\n", " 'flushing': 1,\n", " 'flutter': 3,\n", " 'fluttered': 1,\n", " 'fluttering': 3,\n", " 'fly': 2,\n", " 'flying': 7,\n", " 'foaled': 1,\n", " 'foam': 3,\n", " 'foe': 3,\n", " 'fogs': 2,\n", " 'foisted': 1,\n", " 'fold': 1,\n", " 'folded': 11,\n", " 'folding': 1,\n", " 'folks': 1,\n", " 'follies': 1,\n", " 'follow': 17,\n", " 'followed': 34,\n", " 'follower': 1,\n", " 'followers': 1,\n", " 'following': 14,\n", " 'follows': 1,\n", " 'fondly': 1,\n", " 'food': 4,\n", " 'food--he': 1,\n", " 'fool': 2,\n", " 'foolish': 3,\n", " 'foolishness': 1,\n", " 'fools': 2,\n", " 'foot': 22,\n", " 'foot-pads': 1,\n", " 'footing': 1,\n", " 'footpace': 1,\n", " 'footpath': 1,\n", " 'footsore': 1,\n", " 'footstep': 2,\n", " 'footsteps': 19,\n", " 'footstool': 1,\n", " 'footways': 2,\n", " 'for': 971,\n", " 'for-_bid': 1,\n", " 'forage': 1,\n", " 'forasmuch': 2,\n", " 'forays': 1,\n", " 'forbade': 2,\n", " 'forbearance': 1,\n", " 'forbid': 5,\n", " 'forbidden': 1,\n", " 'forborne': 2,\n", " 'force': 29,\n", " 'forced': 7,\n", " 'forces': 5,\n", " 'forcible': 2,\n", " 'forcibly': 1,\n", " 'forcing': 1,\n", " 'fore-legs': 1,\n", " 'fore-most': 2,\n", " 'forebodings': 1,\n", " 'forefathers': 1,\n", " 'forefinger': 6,\n", " 'forefinger--they': 1,\n", " 'forehead': 21,\n", " 'foreheads': 2,\n", " 'foreign': 6,\n", " 'foreigner': 3,\n", " 'foreigners': 2,\n", " 'foreman': 1,\n", " 'foremost': 4,\n", " 'forenoon': 2,\n", " 'forensic': 1,\n", " 'forensically': 1,\n", " 'foresaw': 3,\n", " 'foresee': 3,\n", " 'foreseen': 2,\n", " 'foreshadowed': 1,\n", " 'forest': 5,\n", " 'forest-trees': 1,\n", " 'forester': 2,\n", " 'forever': 1,\n", " 'forfeit': 4,\n", " 'forfeits': 1,\n", " 'forge': 3,\n", " 'forged': 2,\n", " 'forger': 1,\n", " 'forgeries': 1,\n", " 'forgers': 1,\n", " 'forgery': 2,\n", " 'forget': 9,\n", " 'forgetful': 2,\n", " 'forgetfulness': 1,\n", " 'forgetting': 1,\n", " 'forgive': 4,\n", " 'forgiven': 1,\n", " 'forgiveness': 1,\n", " 'forgot': 3,\n", " 'forgotten': 10,\n", " 'fork': 1,\n", " 'forlorn': 5,\n", " 'forlorner': 1,\n", " 'forlornness': 1,\n", " 'form': 18,\n", " 'formal': 4,\n", " 'formally': 1,\n", " 'format': 4,\n", " 'formats': 2,\n", " 'formed': 9,\n", " 'former': 14,\n", " 'formerly': 4,\n", " 'forming': 2,\n", " 'forms': 6,\n", " 'forth': 30,\n", " 'fortified': 1,\n", " 'fortitude': 1,\n", " 'fortnight': 2,\n", " \"fortnight's\": 2,\n", " 'fortnightly': 1,\n", " 'fortress': 8,\n", " 'fortress-walls': 1,\n", " 'fortunate': 7,\n", " 'fortunately': 1,\n", " 'fortune': 11,\n", " 'fortunes': 4,\n", " 'forty': 11,\n", " 'forty-five': 1,\n", " 'forty-two': 1,\n", " 'forward': 27,\n", " 'forwarded': 1,\n", " 'forwards': 2,\n", " 'fought': 2,\n", " 'foul': 3,\n", " 'foulon': 18,\n", " 'found': 63,\n", " 'foundation': 22,\n", " \"foundation's\": 3,\n", " 'foundations': 2,\n", " 'fountain': 40,\n", " 'fountains': 2,\n", " 'four': 41,\n", " 'four--i': 1,\n", " 'four-and-twenty': 1,\n", " 'four-footed': 1,\n", " 'four-poster': 1,\n", " 'fourscore': 1,\n", " 'fourteenth': 4,\n", " 'fourth': 3,\n", " 'fowl': 1,\n", " 'fragment': 3,\n", " 'fragments': 5,\n", " 'frame': 6,\n", " 'framework': 1,\n", " 'france': 57,\n", " 'france--all': 1,\n", " 'france--who': 1,\n", " 'frantic': 3,\n", " 'fraternal': 2,\n", " 'fraternity': 7,\n", " 'fraud': 1,\n", " 'fraught': 2,\n", " 'frayed': 1,\n", " 'free': 28,\n", " 'freed': 1,\n", " 'freedom': 8,\n", " 'freely': 7,\n", " 'french': 44,\n", " 'frenchman': 6,\n", " 'frenchmen': 1,\n", " 'frenzied': 2,\n", " 'frenzy': 3,\n", " 'frequent': 5,\n", " 'frequently': 3,\n", " 'fresh': 9,\n", " 'fresher': 1,\n", " 'freshness': 1,\n", " 'fretted': 1,\n", " 'friday': 4,\n", " 'fried': 1,\n", " 'friend': 76,\n", " \"friend's\": 3,\n", " 'friendliest': 1,\n", " 'friendliness': 1,\n", " 'friendly': 7,\n", " 'friends': 18,\n", " 'friendship': 3,\n", " 'fright': 3,\n", " 'frightened': 10,\n", " 'frightened--rave--tear': 1,\n", " 'frightening': 1,\n", " 'frightful': 7,\n", " 'frightfully': 3,\n", " 'frill': 1,\n", " 'fringed': 1,\n", " 'frivolity': 1,\n", " 'frizzled': 2,\n", " 'frizzling': 1,\n", " 'fro': 13,\n", " 'frock': 1,\n", " 'frogs': 1,\n", " 'frolicsome': 1,\n", " 'from': 529,\n", " 'front': 11,\n", " 'frontier': 1,\n", " 'fronts': 1,\n", " 'frost': 3,\n", " 'frosty': 1,\n", " 'frothed': 1,\n", " 'frown': 4,\n", " 'frowned': 2,\n", " 'frowning': 2,\n", " 'frozen': 1,\n", " 'frugal': 1,\n", " 'fruit': 3,\n", " 'fruitful': 1,\n", " 'fruitless': 2,\n", " 'fruits': 4,\n", " 'frustrate': 1,\n", " 'frying': 1,\n", " 'fuel': 1,\n", " 'fulfilment': 1,\n", " 'full': 37,\n", " 'full-blown': 1,\n", " 'full-bodied': 2,\n", " 'fully': 4,\n", " 'fulness': 1,\n", " 'fumbled': 1,\n", " 'function': 2,\n", " 'functionaries': 2,\n", " 'functionary': 8,\n", " \"functionary's\": 1,\n", " 'functions': 1,\n", " 'funeral': 6,\n", " 'funerals': 1,\n", " 'funereal': 1,\n", " 'fur': 4,\n", " 'furies': 4,\n", " 'furious': 7,\n", " 'furiously': 1,\n", " 'furnace': 2,\n", " 'furnaces': 1,\n", " 'furnished': 5,\n", " 'furnished--evidently': 1,\n", " 'furniture': 4,\n", " 'furrow': 3,\n", " 'further': 9,\n", " 'furtherance': 1,\n", " 'furthest': 1,\n", " 'furtive': 1,\n", " 'furtively': 1,\n", " 'fury': 1,\n", " 'fused': 1,\n", " 'futur': 1,\n", " 'future': 12,\n", " 'g': 1,\n", " 'gabelle': 25,\n", " \"gabelle's\": 4,\n", " 'gag--tied': 1,\n", " 'gaily': 1,\n", " 'gain': 3,\n", " 'gained': 6,\n", " 'gaining': 2,\n", " 'gainsay': 1,\n", " 'gaiters': 1,\n", " 'gallant': 1,\n", " 'gallantly': 1,\n", " 'gallantries': 1,\n", " 'gallantry': 5,\n", " 'galleries': 1,\n", " 'galley': 1,\n", " 'galling': 1,\n", " 'gallon': 1,\n", " 'gallop': 5,\n", " 'galloped': 1,\n", " 'gallows': 7,\n", " 'gallows-rope': 1,\n", " 'game': 4,\n", " 'games': 4,\n", " 'gamut': 1,\n", " 'gander': 1,\n", " 'gaol': 5,\n", " 'gaoler': 15,\n", " \"gaoler's\": 3,\n", " 'gaoler-joke': 1,\n", " 'gaolers': 4,\n", " 'gaols': 2,\n", " 'garb': 1,\n", " 'garden': 7,\n", " 'garden-full': 1,\n", " 'garden-tomb': 1,\n", " 'gardens': 3,\n", " 'garment': 2,\n", " 'garnering': 1,\n", " 'garnished': 1,\n", " 'garret': 14,\n", " 'garret--formerly': 1,\n", " 'garrison': 1,\n", " 'garrison-and-dockyard': 1,\n", " 'gaspard': 7,\n", " \"gaspard's\": 1,\n", " 'gate': 30,\n", " 'gates': 6,\n", " 'gateway': 1,\n", " 'gathered': 6,\n", " 'gathering': 3,\n", " 'gathering-place': 1,\n", " 'gaul': 1,\n", " 'gaunt': 4,\n", " 'gauze': 1,\n", " 'gave': 27,\n", " 'gay': 1,\n", " 'gayest': 1,\n", " 'gaze': 3,\n", " 'gazette': 1,\n", " 'gazing': 2,\n", " 'gbnewby@pglaf.org': 1,\n", " 'gender--and': 1,\n", " 'general': 32,\n", " 'general-light-job': 1,\n", " 'generality': 1,\n", " 'generally': 4,\n", " 'generation': 2,\n", " 'generations': 4,\n", " 'generosity': 6,\n", " 'generous': 3,\n", " 'genial': 1,\n", " 'genius': 2,\n", " 'genteel': 1,\n", " 'gentility': 1,\n", " 'gentle': 11,\n", " 'gentleman': 70,\n", " \"gentleman's\": 6,\n", " 'gentlemen': 27,\n", " 'gentlemen--my': 1,\n", " 'gentlemen--officers': 1,\n", " 'gentleness': 2,\n", " 'gentlest': 1,\n", " 'gently': 15,\n", " 'genuine': 2,\n", " 'george': 11,\n", " 'germain': 1,\n", " 'german': 1,\n", " 'gesticulation': 1,\n", " 'gesture': 6,\n", " 'gestures': 1,\n", " 'get': 61,\n", " 'gets': 2,\n", " 'getting': 18,\n", " 'ghastliness': 1,\n", " 'ghastly': 3,\n", " 'ghost': 15,\n", " 'ghost--not': 1,\n", " 'ghostly': 5,\n", " 'ghosts': 5,\n", " 'giant': 4,\n", " 'giants': 1,\n", " 'giddily': 1,\n", " 'giddinesses': 1,\n", " 'gifts': 1,\n", " 'gigantically': 1,\n", " \"giles's\": 1,\n", " 'gin': 1,\n", " 'girded': 1,\n", " 'girdle': 2,\n", " 'girl': 10,\n", " \"girl's\": 1,\n", " 'girlhood': 1,\n", " 'girlish': 1,\n", " 'girls': 3,\n", " 'give': 46,\n", " 'give--and': 1,\n", " 'give--such': 1,\n", " 'give--which': 1,\n", " 'given': 15,\n", " 'gives': 5,\n", " 'giving': 12,\n", " 'giving--with': 1,\n", " 'glad': 6,\n", " 'gladden': 1,\n", " 'gladness': 1,\n", " 'glance': 10,\n", " 'glanced': 17,\n", " 'glances': 1,\n", " 'glancing': 14,\n", " 'glare': 2,\n", " 'glaring': 4,\n", " 'glass': 26,\n", " 'glass--which': 1,\n", " 'glasses': 2,\n", " 'glassful': 3,\n", " 'glassful--drank': 1,\n", " 'glassful--pushed': 1,\n", " 'gleam': 1,\n", " 'gleamed': 3,\n", " 'gleaming': 2,\n", " 'gleams': 2,\n", " 'gleaned': 1,\n", " 'glib': 1,\n", " 'glided': 3,\n", " 'gliding': 1,\n", " 'glimmering': 1,\n", " 'glimpses': 2,\n", " 'glinted': 1,\n", " 'glittering': 2,\n", " 'gloom': 5,\n", " 'gloomily': 4,\n", " 'gloomy': 13,\n", " 'glorious': 2,\n", " 'glory': 2,\n", " 'gloss': 1,\n", " 'glove': 1,\n", " 'glow': 5,\n", " 'gloweringly': 1,\n", " 'glowing': 1,\n", " 'glutinous': 1,\n", " 'gnashing': 1,\n", " 'gnats': 1,\n", " 'gnawed': 1,\n", " 'gnawing': 1,\n", " 'go': 137,\n", " 'go--as': 1,\n", " 'goals': 1,\n", " 'goblet': 1,\n", " 'goblin': 1,\n", " 'god': 30,\n", " \"god's\": 2,\n", " 'goddess': 1,\n", " 'godmother': 1,\n", " 'goers': 1,\n", " 'goes': 15,\n", " 'goin': 1,\n", " 'going': 87,\n", " 'going--as': 1,\n", " 'gold': 8,\n", " 'gold-laced': 2,\n", " 'golden': 28,\n", " 'golden-haired': 4,\n", " 'gone': 70,\n", " 'good': 209,\n", " 'good--that': 1,\n", " 'good-fellowship': 1,\n", " 'good-humour': 2,\n", " 'good-humoured': 2,\n", " 'good-natured': 2,\n", " 'goodly': 1,\n", " 'goodness': 2,\n", " 'goods': 5,\n", " 'goodwill': 1,\n", " 'goose': 1,\n", " 'gore': 1,\n", " 'gorged': 1,\n", " 'gorgeous': 2,\n", " 'gorgon': 1,\n", " \"gorgon's\": 2,\n", " 'gory': 1,\n", " 'gossamer': 1,\n", " 'gossip': 3,\n", " 'gossiping': 1,\n", " 'got': 82,\n", " 'govern': 1,\n", " 'governed': 1,\n", " 'government': 7,\n", " 'governor': 3,\n", " \"governor's\": 1,\n", " 'gown': 2,\n", " 'grace': 4,\n", " 'graced': 1,\n", " 'graceful': 1,\n", " 'graces': 2,\n", " 'gracious': 10,\n", " 'graciously': 2,\n", " 'gradations': 1,\n", " 'gradual': 3,\n", " 'gradually': 15,\n", " 'grain': 4,\n", " 'grains': 1,\n", " 'grand': 10,\n", " 'grandchildren': 1,\n", " 'grandeur': 2,\n", " 'grandfather': 1,\n", " 'grandmammas': 1,\n", " 'grant': 2,\n", " 'granted': 3,\n", " 'grape': 1,\n", " 'grasp': 2,\n", " 'grasped': 2,\n", " 'grasping': 3,\n", " 'grass': 18,\n", " 'grasses': 1,\n", " 'grated': 3,\n", " 'grateful': 2,\n", " 'gratefully': 5,\n", " 'grates': 2,\n", " 'gratified': 2,\n", " 'grating': 2,\n", " 'gratitude': 2,\n", " 'grave': 17,\n", " 'grave-clothes': 1,\n", " 'gravel': 1,\n", " 'gravely': 2,\n", " 'gravely--by': 1,\n", " 'graves': 2,\n", " 'gravestones': 1,\n", " 'gravity': 2,\n", " 'great': 161,\n", " 'greater': 13,\n", " 'greatest': 12,\n", " 'greatly': 11,\n", " 'greatnesses': 2,\n", " 'greece': 1,\n", " 'greedily': 2,\n", " 'greedy': 3,\n", " 'greek': 1,\n", " 'green': 5,\n", " 'greeting': 1,\n", " 'greetings': 1,\n", " 'gregarious': 1,\n", " 'gregory': 1,\n", " 'grenadier': 1,\n", " 'grew': 9,\n", " 'grey': 9,\n", " 'gridiron-pattern': 1,\n", " 'grief': 4,\n", " 'grieve': 2,\n", " 'grieving': 2,\n", " 'grim': 11,\n", " 'grimaces': 1,\n", " 'grimly': 1,\n", " 'grimmer': 1,\n", " 'grimness': 2,\n", " 'grimy': 1,\n", " 'grin': 1,\n", " 'grind': 2,\n", " 'grinding': 1,\n", " 'grinds': 2,\n", " 'grindstone': 10,\n", " 'grinning': 1,\n", " 'grip': 1,\n", " 'gripping': 1,\n", " 'grisly': 2,\n", " 'grist': 1,\n", " 'grizzled': 2,\n", " 'groan': 1,\n", " 'groaned': 1,\n", " 'groaning': 1,\n", " 'grocer': 2,\n", " 'grocery': 1,\n", " 'groped': 2,\n", " 'gross': 1,\n", " 'grossly': 1,\n", " 'ground': 32,\n", " 'grounds': 5,\n", " 'grounds--the': 1,\n", " 'group': 19,\n", " 'grouped': 1,\n", " 'groups': 1,\n", " 'grove': 3,\n", " 'grovelling': 1,\n", " 'grow': 5,\n", " 'growed': 2,\n", " 'growing': 11,\n", " 'growled': 4,\n", " 'growling': 2,\n", " 'growlingly': 1,\n", " 'grown': 9,\n", " 'grudge': 1,\n", " 'grudging': 1,\n", " 'grudgingly': 1,\n", " 'gruff': 3,\n", " 'grumbled': 2,\n", " 'grumbling': 1,\n", " 'grunt': 1,\n", " 'guard': 36,\n", " 'guard-house': 4,\n", " 'guard-houses': 1,\n", " 'guard-room': 2,\n", " 'guarded': 4,\n", " 'guarded--except': 1,\n", " 'guardhouse': 2,\n", " 'guards': 3,\n", " 'guess': 6,\n", " 'guesses': 1,\n", " 'guest': 1,\n", " 'guidance': 5,\n", " 'guide': 1,\n", " 'guided': 1,\n", " 'guiding': 1,\n", " 'guillotine': 25,\n", " 'guillotine\"--for': 1,\n", " 'guillotined': 1,\n", " 'guilt': 1,\n", " 'guilty': 8,\n", " 'guinea': 5,\n", " 'guineas': 5,\n", " 'gulf': 1,\n", " 'gun': 5,\n", " \"gunmaker's\": 1,\n", " 'gunpowder': 2,\n", " 'guns': 2,\n", " 'guns--like': 1,\n", " 'gutenberg': 27,\n", " 'gutenberg-tm': 56,\n", " \"gutenberg-tm's\": 1,\n", " 'guttering': 1,\n", " 'ha': 8,\n", " 'ha!--beats': 1,\n", " 'habit': 8,\n", " 'habitation': 1,\n", " 'habitations': 1,\n", " 'habits': 4,\n", " 'habitual': 1,\n", " 'habitually': 3,\n", " 'hacked': 2,\n", " 'hackney-coach': 2,\n", " 'had': 1297,\n", " 'had--that': 1,\n", " \"hadn't\": 2,\n", " 'haggard': 5,\n", " 'hah': 7,\n", " 'hail': 4,\n", " 'hail-clouds': 1,\n", " 'hailed': 2,\n", " 'hailing': 2,\n", " 'hair': 62,\n", " 'hair-breadth': 1,\n", " 'hairs': 1,\n", " 'hairy': 1,\n", " 'half': 55,\n", " \"half's\": 1,\n", " 'half-crowns': 1,\n", " 'half-door': 1,\n", " 'half-dozen': 5,\n", " 'half-hour': 2,\n", " 'half-imagined': 1,\n", " 'half-insolent': 1,\n", " 'half-past': 1,\n", " 'half-seen': 1,\n", " 'half-shut': 1,\n", " 'hall': 12,\n", " 'hall--as': 1,\n", " 'hallo': 3,\n", " 'halloa': 4,\n", " 'hallowed': 1,\n", " 'halls': 1,\n", " 'halo': 1,\n", " 'halting': 2,\n", " 'hammer': 7,\n", " 'hammering': 2,\n", " 'hammers': 2,\n", " 'hand': 246,\n", " 'hand--separated': 1,\n", " 'hand.--where': 1,\n", " 'handed': 11,\n", " 'handful': 3,\n", " 'handkerchief': 4,\n", " 'handkerchiefs': 2,\n", " 'handle': 2,\n", " 'handmaid': 1,\n", " 'hands': 112,\n", " 'hands--to': 1,\n", " 'handsome': 11,\n", " 'handsomely': 5,\n", " 'handsomest': 1,\n", " 'handwriting': 1,\n", " 'handy': 2,\n", " 'hang': 1,\n", " 'hangdog': 1,\n", " 'hanged': 7,\n", " 'hanging': 12,\n", " 'hanging-sword-alley': 1,\n", " 'hangings': 1,\n", " 'hangman': 2,\n", " 'happen': 9,\n", " 'happened': 23,\n", " 'happening': 2,\n", " 'happier': 3,\n", " 'happiest': 1,\n", " 'happily': 12,\n", " 'happiness': 12,\n", " 'happy': 29,\n", " 'harass': 1,\n", " 'harbour': 2,\n", " 'harboured': 1,\n", " 'hard': 48,\n", " 'hard--impatiently--as': 1,\n", " 'hardened': 1,\n", " 'hardest': 1,\n", " 'hardihood': 1,\n", " 'hardly': 15,\n", " 'hardship': 1,\n", " 'hare': 1,\n", " 'hares': 1,\n", " 'hark': 3,\n", " 'harlequin': 1,\n", " 'harm': 9,\n", " \"harm's\": 1,\n", " 'harm--if': 1,\n", " 'harming': 2,\n", " 'harmless': 3,\n", " 'harms': 1,\n", " 'harness': 6,\n", " 'harnessed': 1,\n", " 'harping': 1,\n", " 'harsh': 4,\n", " 'harshly': 1,\n", " 'hart': 2,\n", " 'harvest': 2,\n", " 'has': 151,\n", " 'hast': 1,\n", " 'haste': 2,\n", " 'hastened': 2,\n", " 'hastily': 4,\n", " 'hasty': 1,\n", " 'hat': 12,\n", " 'hat-brim': 1,\n", " 'hatband': 1,\n", " 'hatchets': 1,\n", " 'hate': 2,\n", " 'hated': 1,\n", " 'hateful': 1,\n", " 'hatred': 2,\n", " 'hats': 2,\n", " 'haughtily': 1,\n", " 'haughty': 1,\n", " 'hauled': 3,\n", " 'hauling': 1,\n", " 'haunches': 1,\n", " 'haunt': 1,\n", " 'haunted': 7,\n", " 'haunting': 1,\n", " 'have': 742,\n", " 'have--as': 1,\n", " 'have--but': 1,\n", " 'have--make': 1,\n", " 'havin': 1,\n", " 'having': 71,\n", " 'hawthorn': 1,\n", " 'hay': 4,\n", " 'hay--\"some': 1,\n", " 'hazard': 6,\n", " 'hazarded': 1,\n", " 'he': 1832,\n", " \"he'd\": 3,\n", " \"he'll\": 5,\n", " \"he's\": 4,\n", " 'he,--that': 1,\n", " 'head': 172,\n", " 'head--they': 1,\n", " 'head-board': 1,\n", " 'head-dress': 3,\n", " 'head-quarters': 1,\n", " 'headache': 1,\n", " 'headgear': 1,\n", " 'heading': 1,\n", " 'headless': 1,\n", " 'headlong': 2,\n", " 'heads': 38,\n", " 'healer': 1,\n", " 'healing': 1,\n", " 'health': 10,\n", " 'healths': 1,\n", " 'healthy': 5,\n", " 'heap': 16,\n", " 'heaps': 4,\n", " 'hear': 52,\n", " 'heard': 63,\n", " 'hearers': 2,\n", " 'hearing': 13,\n", " 'hearse': 3,\n", " 'hearse--advised': 1,\n", " 'heart': 70,\n", " 'heart--do': 1,\n", " 'heart--if': 1,\n", " 'heart--or': 1,\n", " 'heart--so': 1,\n", " 'hearth': 6,\n", " 'hearth--\"you': 1,\n", " 'hearths': 1,\n", " 'heartily': 1,\n", " 'heartless': 2,\n", " 'hearts': 9,\n", " 'hearts,--such': 1,\n", " 'heat': 5,\n", " 'heated': 3,\n", " 'heathen': 1,\n", " 'heave': 2,\n", " 'heaved': 1,\n", " 'heaven': 35,\n", " \"heaven's\": 1,\n", " 'heaven--which': 1,\n", " 'heavens': 2,\n", " 'heavier': 9,\n", " 'heavily': 15,\n", " 'heavily-grated': 1,\n", " 'heavily-splashed': 1,\n", " 'heaving': 4,\n", " 'heavy': 37,\n", " 'heavy--cold': 1,\n", " 'heavy-treading': 1,\n", " 'hebrew': 1,\n", " 'hedge': 1,\n", " 'heed': 5,\n", " 'heedful': 1,\n", " 'heedless': 1,\n", " 'heels': 3,\n", " 'heigh-ho-hum': 1,\n", " 'height': 5,\n", " 'heightened': 1,\n", " 'held': 55,\n", " 'hell': 1,\n", " 'help': 38,\n", " 'helped': 6,\n", " 'helpful': 3,\n", " 'helping': 1,\n", " 'helpless': 3,\n", " 'hem': 1,\n", " 'hemmed': 1,\n", " 'hence': 7,\n", " 'henceforth': 4,\n", " 'her': 1038,\n", " 'her\"--he': 1,\n", " 'her--and': 1,\n", " 'her--such': 1,\n", " 'her--though': 1,\n", " 'her--which': 1,\n", " 'her--your': 1,\n", " 'heralded': 2,\n", " 'herbs': 5,\n", " 'herd': 1,\n", " 'here': 184,\n", " \"here's\": 3,\n", " 'here--and': 1,\n", " 'herein': 1,\n", " 'heresy': 1,\n", " 'heretofore': 9,\n", " 'hereupon': 1,\n", " 'heroism': 1,\n", " 'hers': 7,\n", " 'herself': 41,\n", " 'hesitated': 2,\n", " 'hesitating': 3,\n", " 'hesitation': 3,\n", " 'hew': 1,\n", " 'hey': 2,\n", " 'hi': 4,\n", " 'hid': 7,\n", " 'hidden': 10,\n", " 'hide': 1,\n", " 'hideous': 5,\n", " 'hiding': 1,\n", " 'hiding-place': 1,\n", " 'hiding-places': 1,\n", " 'high': 41,\n", " 'high--and': 1,\n", " 'high--formed': 1,\n", " 'high-booted': 1,\n", " 'high-fever': 2,\n", " 'high-roofed': 1,\n", " 'high-shouldered': 1,\n", " 'higher': 12,\n", " 'highest': 2,\n", " 'highly': 12,\n", " 'highway': 5,\n", " 'highwayman': 3,\n", " 'highwaymen': 1,\n", " 'highways': 1,\n", " 'hilary': 2,\n", " 'hill': 34,\n", " 'hill-side': 4,\n", " 'hill-top': 2,\n", " 'hilt': 1,\n", " 'him': 965,\n", " 'him--\"ten': 1,\n", " 'him--\"that': 1,\n", " 'him--an': 1,\n", " 'him--by': 1,\n", " 'him--for': 2,\n", " 'him--is': 1,\n", " 'him--like': 1,\n", " 'him--stood': 1,\n", " 'him--which': 1,\n", " 'him--would': 1,\n", " 'himself': 219,\n", " 'himself--as': 1,\n", " 'himself--thrust': 1,\n", " 'himself--which': 1,\n", " 'hinds': 1,\n", " 'hinges': 1,\n", " 'hint': 2,\n", " 'hinted': 2,\n", " 'hips': 1,\n", " 'hire': 1,\n", " 'hired': 2,\n", " 'hiring': 1,\n", " 'his': 2005,\n", " 'his--that': 1,\n", " 'hissing': 1,\n", " 'history': 12,\n", " 'hit': 1,\n", " 'hither': 2,\n", " 'hitherto': 1,\n", " 'hitting': 1,\n", " 'ho': 1,\n", " 'hoarse': 4,\n", " 'hoarsely': 3,\n", " 'hoarser': 1,\n", " 'hoarsest': 1,\n", " 'hob': 1,\n", " 'hoisted': 1,\n", " 'hoisting': 2,\n", " 'hoisting-up': 1,\n", " 'hold': 55,\n", " 'hold,--mr': 1,\n", " 'holden': 1,\n", " 'holder': 6,\n", " 'holding': 10,\n", " 'holds': 3,\n", " 'hole': 1,\n", " 'holes': 5,\n", " 'holiest': 2,\n", " 'holiests': 2,\n", " 'hollow': 8,\n", " 'hollowness': 1,\n", " 'hollows': 1,\n", " 'holsters': 1,\n", " 'holy': 1,\n", " 'homage': 4,\n", " 'home': 58,\n", " 'home-spun': 1,\n", " 'homeliest': 1,\n", " 'homes': 3,\n", " 'honest': 20,\n", " 'honester': 1,\n", " 'honore': 2,\n", " 'honour': 28,\n", " 'honourable': 4,\n", " 'honoured': 11,\n", " 'honouring': 2,\n", " 'hoofs': 1,\n", " 'hook': 1,\n", " 'hoops': 1,\n", " 'hooray': 1,\n", " 'hooroar': 1,\n", " 'hooroaring': 1,\n", " 'hooroars': 1,\n", " 'hope': 84,\n", " 'hope--so': 1,\n", " 'hoped': 8,\n", " 'hopeful': 2,\n", " 'hopefulness': 2,\n", " 'hopeless': 7,\n", " 'hopes': 7,\n", " 'hoping': 1,\n", " 'hopping': 4,\n", " 'horizon': 2,\n", " 'horizontal': 4,\n", " 'horn': 1,\n", " 'horrible': 8,\n", " 'horribly': 1,\n", " 'horrified': 1,\n", " 'horror': 10,\n", " 'horrors': 1,\n", " 'horse': 21,\n", " \"horse's\": 2,\n", " 'horse-pistols': 1,\n", " 'horseback': 2,\n", " 'horsehair': 1,\n", " 'horseman': 1,\n", " 'horsemen': 2,\n", " 'horses': 35,\n", " 'hospital': 4,\n", " 'host': 1,\n", " 'hostile': 1,\n", " 'hot': 16,\n", " 'hotel': 11,\n", " 'hounsditch': 1,\n", " 'hour': 54,\n", " \"hour's\": 1,\n", " 'hours': 38,\n", " 'house': 82,\n", " 'house-top': 2,\n", " 'housebreaker': 1,\n", " 'household': 6,\n", " 'housekeeping': 2,\n", " 'houses': 14,\n", " 'housetop': 1,\n", " 'hovel': 1,\n", " 'hovering': 1,\n", " 'how': 160,\n", " 'howbeit': 1,\n", " 'however': 30,\n", " 'howling': 3,\n", " 'http://gutenberg.org/license': 1,\n", " 'http://pglaf.org': 2,\n", " 'http://pglaf.org/donate': 1,\n", " 'http://pglaf.org/fundraising': 1,\n", " 'http://www.gutenberg.org': 1,\n", " 'http://www.gutenberg.org/9/98/': 1,\n", " 'http://www.pglaf.org': 1,\n", " 'hue': 1,\n", " 'huge': 1,\n", " 'hum': 1,\n", " 'human': 23,\n", " 'humane': 2,\n", " 'humanising': 1,\n", " 'humanity': 6,\n", " 'humble': 1,\n", " 'humbly': 3,\n", " 'humiliation': 1,\n", " 'humility': 2,\n", " 'hummed': 1,\n", " 'humour': 1,\n", " 'humph': 1,\n", " 'hundred': 42,\n", " 'hundreds': 14,\n", " 'hung': 4,\n", " 'hunger': 13,\n", " 'hunger-worn': 1,\n", " 'hungered': 2,\n", " 'hungry': 6,\n", " 'hunted': 2,\n", " 'hunters': 1,\n", " 'hunting': 2,\n", " 'hurdle': 1,\n", " 'hurricane': 1,\n", " 'hurried': 17,\n", " 'hurriedly': 7,\n", " 'hurries': 2,\n", " 'hurry': 15,\n", " 'hurrying': 2,\n", " 'hurt': 3,\n", " 'husband': 84,\n", " \"husband's\": 12,\n", " 'husbands': 3,\n", " 'hush': 16,\n", " 'hushed': 2,\n", " 'hushing': 2,\n", " 'husky': 2,\n", " 'hustled': 1,\n", " 'hut': 1,\n", " 'hutches': 1,\n", " 'huts': 1,\n", " 'hypertext': 1,\n", " 'i': 1913,\n", " \"i'd\": 2,\n", " \"i'll\": 31,\n", " \"i'm\": 8,\n", " \"i've\": 2,\n", " 'i--came': 1,\n", " 'i--were': 1,\n", " 'i-i': 1,\n", " \"i_'m\": 1,\n", " 'ice': 2,\n", " 'idea': 18,\n", " 'ideas': 1,\n", " 'identical': 1,\n", " 'identification': 4,\n", " 'identified': 5,\n", " 'identify': 5,\n", " 'idiomatic': 1,\n", " 'idiotic': 1,\n", " 'idiots': 1,\n", " 'idle': 4,\n", " 'idleness': 2,\n", " 'idlest': 1,\n", " 'idling': 1,\n", " 'idly': 1,\n", " 'if': 471,\n", " 'if--the': 1,\n", " 'ignobly': 1,\n", " 'ignorance': 2,\n", " 'ignorant': 7,\n", " 'ii': 3,\n", " 'iii': 3,\n", " 'ill': 12,\n", " 'ill-blood': 1,\n", " 'ill-conditioned': 1,\n", " 'ill-conwenient': 1,\n", " 'ill-humour': 1,\n", " 'ill-omened': 1,\n", " 'ill-smelling': 1,\n", " 'illness': 1,\n", " 'illuminated': 3,\n", " 'illuminating': 1,\n", " 'illusion': 1,\n", " 'illustration': 4,\n", " 'illustrations': 2,\n", " 'illustrious': 6,\n", " 'image': 4,\n", " 'imaginary': 5,\n", " 'imagination': 3,\n", " 'imagine': 4,\n", " 'imagined': 6,\n", " 'imagining': 1,\n", " 'imaginings': 1,\n", " 'imbecile': 1,\n", " 'imbued': 1,\n", " 'imitated': 2,\n", " 'imitation': 1,\n", " 'imitations': 1,\n", " 'immaculate': 1,\n", " 'immature': 1,\n", " 'immeasurably': 2,\n", " 'immediate': 6,\n", " 'immediately': 20,\n", " 'immemorial': 1,\n", " 'immense': 5,\n", " 'immersion': 1,\n", " 'immolate': 1,\n", " 'immortal': 2,\n", " 'immovable': 6,\n", " 'immunities': 1,\n", " 'impaired': 1,\n", " 'impart': 3,\n", " 'imparted': 1,\n", " 'impartially': 1,\n", " 'imparts': 1,\n", " 'impassable': 1,\n", " 'impassive': 3,\n", " 'impatience': 6,\n", " 'impatient': 4,\n", " 'impatiently': 2,\n", " 'impeach': 2,\n", " 'impeaching': 1,\n", " 'impeachment': 1,\n", " 'impediments': 1,\n", " 'impelled': 2,\n", " 'impelling': 1,\n", " 'impended': 1,\n", " 'impending': 1,\n", " 'impenitently': 1,\n", " 'imperative': 1,\n", " 'imperfect': 1,\n", " 'imperfectly': 1,\n", " 'imperil': 1,\n", " 'imperious': 1,\n", " 'impertinence': 1,\n", " 'imperturbable': 1,\n", " 'impetuous': 1,\n", " 'implacable-looking': 1,\n", " 'implacably': 1,\n", " 'implements': 1,\n", " 'implicitly': 1,\n", " 'implied': 2,\n", " 'implore': 3,\n", " 'implored': 4,\n", " 'imploring': 1,\n", " 'imploringly': 1,\n", " 'imply': 1,\n", " 'importance': 4,\n", " 'important': 9,\n", " 'important--no': 1,\n", " 'importunity': 1,\n", " 'imposed': 4,\n", " 'imposes': 1,\n", " 'imposing': 1,\n", " 'impositions': 1,\n", " 'impossibility': 1,\n", " 'impossible': 10,\n", " 'impossible--it': 1,\n", " 'impostors': 1,\n", " 'imposts': 1,\n", " 'impoverished': 3,\n", " 'impracticable': 1,\n", " 'impress': 1,\n", " 'impressed': 4,\n", " 'impressible': 1,\n", " 'impressing': 1,\n", " 'impression': 8,\n", " 'impression--which': 1,\n", " 'impressive': 2,\n", " 'impressively': 1,\n", " 'imprinted': 1,\n", " 'imprisoned': 4,\n", " 'imprisonment': 10,\n", " 'improbable': 1,\n", " 'improved': 3,\n", " 'improvement': 2,\n", " 'improvements': 1,\n", " 'improving': 1,\n", " 'impulse': 1,\n", " 'impulses': 1,\n", " 'impure': 1,\n", " 'impurities': 1,\n", " 'imputation': 1,\n", " 'in': 2634,\n", " 'in--a': 1,\n", " 'in--even': 1,\n", " 'in--looking': 1,\n", " 'in--was': 1,\n", " 'in-looking': 1,\n", " 'in;--and': 1,\n", " 'inaccurate': 1,\n", " 'inanimate': 1,\n", " 'inappropriate': 3,\n", " 'inarticulately': 1,\n", " 'inasmuch': 1,\n", " 'inaudible': 1,\n", " 'inaugurated': 1,\n", " 'incapable': 5,\n", " 'incessant': 1,\n", " 'incessantly': 2,\n", " 'inch': 3,\n", " 'incident': 1,\n", " 'incidental': 3,\n", " 'incidents': 1,\n", " 'incidents--he': 1,\n", " 'inclement': 1,\n", " 'inclination': 7,\n", " 'inclined': 1,\n", " 'include': 2,\n", " 'included': 4,\n", " 'includes': 1,\n", " 'including': 8,\n", " 'incoherences': 1,\n", " 'income': 1,\n", " 'incommode': 2,\n", " 'incommodious': 1,\n", " 'incommodiousness': 1,\n", " 'incomplete': 4,\n", " 'incompleteness': 1,\n", " 'incomprehensible': 1,\n", " 'inconsistencies': 1,\n", " 'inconsistency': 2,\n", " 'inconsistent': 1,\n", " 'inconvenience': 3,\n", " 'inconveniences': 1,\n", " 'inconvenient': 1,\n", " 'incorrigible': 3,\n", " 'increase': 1,\n", " 'increasing': 2,\n", " 'incredulity': 1,\n", " 'incumbent': 2,\n", " 'incumbrance': 1,\n", " 'incur': 1,\n", " 'indebted': 1,\n", " 'indecision': 1,\n", " 'indeed': 44,\n", " 'indefinitely': 1,\n", " 'indemnify': 1,\n", " 'indemnity': 1,\n", " 'independent': 1,\n", " 'indescribable': 2,\n", " 'indicate': 2,\n", " 'indicated': 3,\n", " 'indicates': 1,\n", " 'indicating': 1,\n", " 'indication': 1,\n", " 'indictment': 2,\n", " 'indifference': 7,\n", " 'indifferent': 5,\n", " 'indifferently': 2,\n", " 'indignant': 2,\n", " 'indignantly': 2,\n", " 'indignation': 2,\n", " 'indignity': 1,\n", " 'indirect': 1,\n", " 'indirectly': 1,\n", " 'indispensable': 4,\n", " 'indistinct': 1,\n", " 'individual': 8,\n", " 'individuality': 1,\n", " 'individually': 1,\n", " 'indivisible': 5,\n", " 'indoor': 1,\n", " 'induce': 2,\n", " 'induced': 1,\n", " 'inducement': 1,\n", " 'industrious': 1,\n", " 'industry': 3,\n", " 'inevitable': 1,\n", " 'inevitably': 3,\n", " 'inexorable': 1,\n", " 'inexperienced': 1,\n", " 'infallible': 1,\n", " 'infallibly': 2,\n", " 'infamous': 7,\n", " 'infamy': 2,\n", " 'infancy': 2,\n", " 'infants': 1,\n", " 'infected': 2,\n", " 'infection': 1,\n", " 'infer': 1,\n", " 'inference': 1,\n", " 'infernal': 2,\n", " 'inferred': 1,\n", " 'infinite': 4,\n", " 'infinitely': 1,\n", " 'infirmity': 1,\n", " 'inflating': 1,\n", " 'inflict': 1,\n", " 'inflicted': 1,\n", " 'inflicting': 1,\n", " 'influence': 31,\n", " 'influential': 1,\n", " 'inform': 3,\n", " 'informant': 1,\n", " 'information': 19,\n", " 'informed': 5,\n", " 'informer': 1,\n", " 'informing': 1,\n", " 'infraction': 1,\n", " 'infringement': 1,\n", " 'infused': 1,\n", " 'ingenious': 1,\n", " 'ingenuity': 4,\n", " 'ingress': 1,\n", " 'inhabitants': 4,\n", " 'inhabited': 1,\n", " 'inheritance': 3,\n", " 'inherited': 2,\n", " 'inheritor': 1,\n", " 'inhuman': 1,\n", " 'initial': 1,\n", " 'initials': 2,\n", " 'injunction': 1,\n", " 'injunctions': 1,\n", " 'injured': 3,\n", " 'injuries': 1,\n", " 'injuring': 1,\n", " 'injurious': 1,\n", " 'injury': 1,\n", " 'ink': 2,\n", " 'inmate': 3,\n", " 'inmates': 1,\n", " 'inn': 4,\n", " 'inn-yard': 2,\n", " 'innately': 1,\n", " 'inner': 5,\n", " 'innermost': 2,\n", " 'innocent': 17,\n", " 'inns': 1,\n", " 'inoffensive': 1,\n", " 'inquire': 3,\n", " 'inquired': 8,\n", " 'inquiries': 3,\n", " 'inquiring': 4,\n", " 'inquiringly': 2,\n", " 'inquiry': 6,\n", " 'inquisitive': 2,\n", " 'inquisitively': 2,\n", " 'insatiate': 1,\n", " 'inscribed': 2,\n", " 'inscription': 4,\n", " 'inscriptions': 1,\n", " 'inscrutability': 1,\n", " 'inscrutable': 1,\n", " 'insensate': 1,\n", " 'insensible': 7,\n", " 'inseparable': 1,\n", " 'inside': 11,\n", " 'insinuation': 1,\n", " 'insisted': 2,\n", " 'insolent': 3,\n", " 'insomuch': 1,\n", " 'inspected': 1,\n", " 'inspecting': 1,\n", " 'inspection': 2,\n", " 'inspiration': 1,\n", " 'inspire': 1,\n", " 'inspired': 4,\n", " 'inspiring': 2,\n", " 'installed': 1,\n", " 'instalment': 1,\n", " 'instance': 7,\n", " 'instant': 16,\n", " 'instantly': 7,\n", " 'instead': 8,\n", " 'instinct': 1,\n", " 'instinctive': 4,\n", " 'instinctively': 2,\n", " 'institution': 2,\n", " 'instructed': 1,\n", " 'instruction': 1,\n", " 'instructions': 3,\n", " 'instructs': 1,\n", " 'instrument': 7,\n", " 'instruments': 4,\n", " 'insufferable': 1,\n", " 'insufficient': 2,\n", " 'insulters': 1,\n", " 'insults': 1,\n", " 'insupportable': 1,\n", " 'intangible': 1,\n", " 'integrity': 1,\n", " 'intellectual': 3,\n", " 'intelligence': 6,\n", " 'intelligence--or': 1,\n", " 'intelligences': 1,\n", " 'intelligent': 1,\n", " 'intelligible': 5,\n", " 'intelligibly': 1,\n", " 'intend': 4,\n", " 'intended': 2,\n", " 'intending': 1,\n", " 'intense': 1,\n", " 'intensely': 3,\n", " 'intensified': 1,\n", " 'intensity': 2,\n", " 'intent': 16,\n", " 'intention': 8,\n", " 'intentions': 3,\n", " 'intently': 1,\n", " 'interchange': 5,\n", " 'interchanged': 1,\n", " 'interest': 28,\n", " 'interested': 7,\n", " 'interesting': 2,\n", " 'interests': 1,\n", " 'interfere': 2,\n", " 'interfering': 2,\n", " 'interior': 1,\n", " 'intermediate': 1,\n", " 'interment': 1,\n", " 'intermission': 1,\n", " 'internal': 3,\n", " 'internally': 1,\n", " 'international': 1,\n", " 'interpose': 2,\n", " 'interposed': 5,\n", " 'interpreted': 1,\n", " 'interpreter': 1,\n", " 'interrogate': 2,\n", " 'interrupt': 1,\n", " 'interrupted': 4,\n", " 'interrupting': 1,\n", " 'interruption': 1,\n", " 'intersect': 1,\n", " 'interval': 4,\n", " 'intervals': 9,\n", " 'intervening': 2,\n", " 'interview': 4,\n", " 'interviews': 1,\n", " 'intimacy': 1,\n", " 'intimate': 4,\n", " 'into': 319,\n", " 'intolerable': 1,\n", " 'intoxicated': 1,\n", " 'intoxication': 2,\n", " 'intricate': 1,\n", " 'intrigue': 1,\n", " 'introduce': 1,\n", " 'introduction': 2,\n", " 'inundation': 2,\n", " 'invalidity': 1,\n", " 'invariably': 3,\n", " 'invention': 1,\n", " 'inversion': 1,\n", " 'invested': 3,\n", " 'inveteracy': 1,\n", " 'inveterate': 1,\n", " 'invigorated': 1,\n", " 'inviolate': 2,\n", " 'invisible': 4,\n", " 'invite': 1,\n", " 'invited': 3,\n", " 'involuntary': 3,\n", " 'involve': 2,\n", " 'involved': 4,\n", " 'involving': 3,\n", " 'inward': 2,\n", " 'iron': 19,\n", " 'iron-bound': 1,\n", " 'iron-grated': 1,\n", " 'ironical': 1,\n", " 'irregular': 1,\n", " 'irreligious': 1,\n", " 'irrepressible': 2,\n", " 'irresolute': 1,\n", " 'irresolutely': 1,\n", " 'irruption': 3,\n", " 'irs': 1,\n", " 'is': 842,\n", " 'is--and': 1,\n", " 'is--as': 1,\n", " 'is--at': 1,\n", " 'is--if': 1,\n", " 'is--wot': 1,\n", " 'island': 2,\n", " 'isolated': 1,\n", " 'issue': 1,\n", " 'issued': 5,\n", " 'issuing': 1,\n", " 'it': 2013,\n", " 'it!--joe': 1,\n", " \"it's\": 34,\n", " 'it--\"as': 1,\n", " 'it--as': 1,\n", " 'it--for': 1,\n", " 'it--in': 2,\n", " 'it--it': 1,\n", " 'it--like': 1,\n", " 'it--not': 2,\n", " 'it--or': 1,\n", " 'it--outwatched': 1,\n", " 'it--suddenly': 1,\n", " 'it--take': 1,\n", " 'it--that': 1,\n", " 'it--the': 1,\n", " 'it--which': 1,\n", " \"it-can't-be\": 1,\n", " 'it.--mind': 1,\n", " 'its': 227,\n", " 'itself': 47,\n", " 'itself,--and': 1,\n", " 'itself--lay': 1,\n", " 'iv': 3,\n", " 'ix': 2,\n", " 'izaak': 1,\n", " 'j': 1,\n", " 'jack': 1,\n", " 'jack-boots': 2,\n", " 'jackal': 15,\n", " 'jacobin': 2,\n", " 'jacquerie': 1,\n", " 'jacques': 72,\n", " 'jaggedly': 1,\n", " 'jalousie-blinds': 1,\n", " 'jangle': 1,\n", " 'jar': 2,\n", " 'jargon': 1,\n", " 'jarring': 1,\n", " 'jarvis': 19,\n", " 'jaw': 2,\n", " 'jaws': 2,\n", " 'jealous': 1,\n", " 'jealously': 1,\n", " 'jeffries': 1,\n", " 'jeremiah': 1,\n", " 'jerked': 2,\n", " 'jerks': 3,\n", " 'jerry': 106,\n", " \"jerry's\": 2,\n", " 'jest': 1,\n", " 'jesting': 1,\n", " 'jests': 1,\n", " 'jewels': 2,\n", " 'jewels--i': 1,\n", " 'jezebels': 1,\n", " 'jingle': 1,\n", " 'jingling': 1,\n", " 'jinte': 1,\n", " 'job': 2,\n", " 'jobbing': 1,\n", " 'jocosely': 1,\n", " 'joe': 6,\n", " 'john': 10,\n", " 'join': 3,\n", " 'joined': 9,\n", " 'joining': 1,\n", " 'joint': 3,\n", " 'joints': 2,\n", " 'joke': 3,\n", " 'joker': 4,\n", " \"joker's\": 2,\n", " 'jolt': 1,\n", " 'jolt--nodded': 1,\n", " 'jolted': 3,\n", " 'jostlement': 1,\n", " 'jostling': 1,\n", " 'journal': 2,\n", " 'journey': 23,\n", " \"journey's\": 2,\n", " 'joy': 5,\n", " 'joy-ringing': 1,\n", " 'joyfully': 1,\n", " 'judas--which': 1,\n", " 'judge': 14,\n", " \"judge's\": 1,\n", " 'judged': 2,\n", " 'judges': 6,\n", " 'judgment': 6,\n", " 'judgment-seat': 1,\n", " 'judicious': 1,\n", " 'judiciously': 2,\n", " 'judith': 1,\n", " 'jug': 2,\n", " 'july': 1,\n", " 'jumbled': 1,\n", " 'juncture': 2,\n", " 'june': 1,\n", " 'junior': 1,\n", " 'jupiter': 1,\n", " 'jury': 30,\n", " \"jury's\": 2,\n", " 'juryman': 5,\n", " \"juryman's\": 1,\n", " 'jurymen': 1,\n", " 'just': 40,\n", " 'justice': 8,\n", " 'justified': 1,\n", " 'justify': 3,\n", " 'justly': 1,\n", " 'keen': 1,\n", " 'keener': 2,\n", " 'keenly': 1,\n", " 'keenness': 1,\n", " 'keep': 52,\n", " 'keeper': 12,\n", " 'keepers': 1,\n", " 'keepin': 1,\n", " 'keeping': 15,\n", " 'keeps': 2,\n", " 'kennel': 1,\n", " 'kep': 1,\n", " 'kept': 42,\n", " 'kept--her': 1,\n", " 'kettle': 1,\n", " 'key': 13,\n", " 'keys': 5,\n", " 'kick': 1,\n", " 'kicked': 3,\n", " 'kicking': 1,\n", " 'kill': 6,\n", " 'killed': 4,\n", " 'kind': 41,\n", " 'kindled': 2,\n", " 'kindly': 4,\n", " 'kindness': 2,\n", " 'kindred': 2,\n", " 'kinds': 5,\n", " 'kine': 1,\n", " 'king': 22,\n", " \"king's\": 8,\n", " 'king--and': 1,\n", " 'kings': 1,\n", " 'kiss': 12,\n", " 'kissed': 14,\n", " 'kisses': 2,\n", " 'kissing': 3,\n", " 'kitchen': 1,\n", " 'kitchens': 1,\n", " 'kite': 1,\n", " 'knavish': 1,\n", " 'knee': 9,\n", " 'knee-high': 1,\n", " 'kneel': 4,\n", " 'kneeled': 5,\n", " 'kneeling': 4,\n", " 'knees': 10,\n", " 'knew': 86,\n", " 'knife': 14,\n", " 'knife--long': 1,\n", " 'knit': 2,\n", " 'knitted': 17,\n", " 'knitting': 41,\n", " 'knitting-needle': 1,\n", " 'knitting-woman': 1,\n", " 'knitting-women': 3,\n", " 'knives': 8,\n", " 'knock': 2,\n", " 'knocked': 2,\n", " 'knocking': 3,\n", " 'knot': 5,\n", " 'knots': 2,\n", " 'knotted': 3,\n", " 'knotting': 1,\n", " 'knotty': 1,\n", " 'know': 230,\n", " 'know--he': 1,\n", " 'know--that': 1,\n", " 'knowed': 1,\n", " 'knowing': 11,\n", " 'knowledge': 20,\n", " 'known': 56,\n", " 'knows': 22,\n", " 'knows--a': 1,\n", " 'knuckle': 1,\n", " 'knuckled': 2,\n", " 'knuckles': 2,\n", " 'la': 30,\n", " 'laboriously': 1,\n", " 'labour': 5,\n", " 'laboured': 2,\n", " 'labourer': 1,\n", " 'labouring': 2,\n", " 'lace': 1,\n", " 'laconic': 1,\n", " 'lacquey': 1,\n", " 'ladder': 1,\n", " 'laden': 1,\n", " 'ladies': 5,\n", " 'lady': 50,\n", " \"lady's\": 5,\n", " 'lady--and': 1,\n", " 'ladybird': 10,\n", " \"ladybird's\": 2,\n", " 'lagged': 1,\n", " 'laid': 52,\n", " 'lain': 3,\n", " 'lake': 1,\n", " 'lame': 4,\n", " 'lamentation': 1,\n", " 'lamenting': 3,\n", " 'lamp': 17,\n", " 'lamp-iron': 1,\n", " 'lamplight': 1,\n", " 'lamplighter': 3,\n", " 'lamps': 11,\n", " 'lamps--swinging': 1,\n", " 'land': 8,\n", " 'land--a': 1,\n", " 'landed': 2,\n", " 'landing': 1,\n", " 'landlady': 2,\n", " 'landlord': 1,\n", " 'lands': 1,\n", " 'landscape': 4,\n", " 'lane': 2,\n", " 'language': 6,\n", " 'languages': 1,\n", " 'languidly': 1,\n", " 'languished': 1,\n", " 'languishing': 2,\n", " 'lantern': 2,\n", " 'lanterns': 3,\n", " 'lap': 1,\n", " 'lapsed': 1,\n", " 'large': 37,\n", " 'large-faced': 1,\n", " 'larger': 4,\n", " 'largest': 1,\n", " 'lashed': 1,\n", " 'lashes': 2,\n", " 'last': 133,\n", " 'last--they': 1,\n", " 'last--to': 1,\n", " 'lasted': 9,\n", " 'lasting': 1,\n", " 'lastly': 1,\n", " 'lasts': 1,\n", " 'late': 22,\n", " 'lately': 4,\n", " 'latent': 5,\n", " 'later': 6,\n", " 'latest': 1,\n", " 'lath': 1,\n", " 'latin': 1,\n", " 'latitudes': 1,\n", " 'latter': 15,\n", " 'lattice': 2,\n", " 'laudable': 3,\n", " 'laudanum': 1,\n", " 'laugh': 8,\n", " 'laughed': 9,\n", " 'laughing': 6,\n", " 'laughingly': 1,\n", " 'laughter': 1,\n", " 'laving': 1,\n", " 'lavished': 1,\n", " 'law': 22,\n", " 'law-work': 1,\n", " 'lawful': 1,\n", " 'lawless': 1,\n", " 'laws': 11,\n", " 'lawyer': 1,\n", " 'lay': 66,\n", " 'lay--down': 1,\n", " 'laying': 14,\n", " 'lazy': 1,\n", " 'lead': 11,\n", " 'lead-colour': 1,\n", " 'leader': 4,\n", " \"leader's\": 1,\n", " 'leading': 6,\n", " 'leads': 1,\n", " 'leaf': 5,\n", " 'leafless': 2,\n", " 'league': 3,\n", " 'leagues': 7,\n", " 'lean': 5,\n", " 'leaned': 12,\n", " 'leanest': 1,\n", " 'leaning': 12,\n", " 'leap-frog': 1,\n", " 'leaped': 2,\n", " 'learn': 2,\n", " 'learned': 11,\n", " 'learnt': 2,\n", " 'least': 20,\n", " 'leastways': 1,\n", " 'leather': 2,\n", " 'leathern': 3,\n", " 'leave': 39,\n", " 'leaves': 11,\n", " 'leaving': 12,\n", " 'led': 12,\n", " 'ledge': 1,\n", " 'ledgers': 1,\n", " 'ledges': 1,\n", " 'lee-dyed': 1,\n", " 'left': 101,\n", " 'leg': 3,\n", " 'legal': 4,\n", " 'legally': 1,\n", " 'legend': 2,\n", " 'legibly': 1,\n", " \"legislation's\": 1,\n", " 'legs': 9,\n", " 'leisure': 3,\n", " 'leisurely': 7,\n", " 'lemons': 1,\n", " 'lend': 1,\n", " 'length': 22,\n", " 'lengthen': 1,\n", " 'lengthening': 2,\n", " 'lengths': 1,\n", " 'lenient': 1,\n", " 'leonora': 1,\n", " 'leprosy': 1,\n", " 'less': 38,\n", " 'less--he': 1,\n", " 'lessened': 1,\n", " 'lesser': 1,\n", " 'lest': 2,\n", " 'let': 108,\n", " \"let's\": 1,\n", " 'lethargic': 1,\n", " 'lethargy': 2,\n", " 'letter': 34,\n", " 'letters': 12,\n", " 'letting': 2,\n", " 'level': 2,\n", " 'levity': 1,\n", " 'lewis': 3,\n", " 'liability': 3,\n", " 'liable': 2,\n", " 'liar': 1,\n", " 'liberal': 1,\n", " 'liberality': 1,\n", " 'liberality--\"i\\'d': 1,\n", " 'liberty': 19,\n", " 'liberty--the': 1,\n", " 'library': 1,\n", " 'license': 15,\n", " 'licensed': 1,\n", " 'licking': 1,\n", " 'lids': 1,\n", " 'lie': 5,\n", " 'lies': 8,\n", " 'lieu': 4,\n", " 'lieutenant': 1,\n", " \"lieutenant's\": 2,\n", " 'life': 147,\n", " \"life's\": 1,\n", " 'life--and': 2,\n", " 'life--his': 1,\n", " 'life--in': 1,\n", " 'life--we': 1,\n", " 'life--when': 1,\n", " 'life-thirsting': 1,\n", " 'life-tide': 1,\n", " 'life.--chair': 1,\n", " 'lifeless': 2,\n", " 'lifetime': 1,\n", " 'lift': 6,\n", " 'lifted': 14,\n", " 'lifting': 5,\n", " 'ligatures': 1,\n", " 'light': 89,\n", " 'light-headed': 1,\n", " 'lighted': 17,\n", " 'lightened': 3,\n", " 'lighter': 7,\n", " 'lighter-hearted': 1,\n", " 'lightest': 1,\n", " 'lightest-wheeled': 1,\n", " 'lighting': 3,\n", " 'lightly': 6,\n", " 'lightly-snowing': 1,\n", " 'lightning': 8,\n", " 'lights': 11,\n", " 'like': 198,\n", " 'liked': 3,\n", " 'likeliest': 3,\n", " 'likelihood': 3,\n", " 'likely': 15,\n", " 'likeness': 6,\n", " 'likewise': 8,\n", " 'liking': 2,\n", " 'limb': 2,\n", " 'limbs': 2,\n", " 'limitation': 3,\n", " 'limited': 5,\n", " 'limp': 1,\n", " 'limped': 1,\n", " 'line': 17,\n", " 'lined': 2,\n", " 'linen': 5,\n", " 'lines': 14,\n", " 'lingered': 5,\n", " 'lingering': 8,\n", " 'link': 2,\n", " 'linked': 4,\n", " 'links': 3,\n", " 'linstock': 1,\n", " 'lion': 9,\n", " \"lion's\": 1,\n", " 'lions': 1,\n", " 'lip': 1,\n", " 'lips': 45,\n", " 'lips--a': 1,\n", " 'liquor': 1,\n", " 'list': 4,\n", " 'listen': 12,\n", " 'listened': 14,\n", " 'listener': 1,\n", " \"listener's\": 1,\n", " 'listening': 8,\n", " 'lists': 12,\n", " 'literary': 13,\n", " 'literature': 2,\n", " 'litter': 2,\n", " 'littered': 2,\n", " 'little': 265,\n", " 'little--listening': 1,\n", " 'littlenesses': 1,\n", " 'live': 40,\n", " 'lived': 15,\n", " 'livelier': 1,\n", " 'liveliest': 1,\n", " 'livelihood': 1,\n", " 'lively': 2,\n", " 'liver': 1,\n", " 'livers': 1,\n", " 'lives': 21,\n", " 'liveth': 3,\n", " 'livid': 1,\n", " 'living': 21,\n", " 'lo': 1,\n", " 'load': 3,\n", " 'loaded': 6,\n", " 'loads': 2,\n", " 'loadstone': 4,\n", " 'loaf': 2,\n", " 'loathsome': 1,\n", " 'loaves': 2,\n", " 'local': 2,\n", " 'locality': 1,\n", " 'located': 4,\n", " 'locations': 2,\n", " 'lock': 4,\n", " 'lock-up': 1,\n", " 'locked': 7,\n", " 'locking': 2,\n", " 'locks': 4,\n", " 'lodge': 1,\n", " 'lodger': 2,\n", " 'lodgers': 1,\n", " 'lodging': 5,\n", " 'lodging-letting': 1,\n", " 'lodgings': 4,\n", " 'loft': 3,\n", " 'loftiest': 1,\n", " 'lofty': 4,\n", " 'log': 3,\n", " 'logs': 1,\n", " 'loitered': 1,\n", " 'loitering': 3,\n", " 'lombard-street': 1,\n", " 'london': 27,\n", " 'london--\"have': 1,\n", " 'loneliness': 2,\n", " 'lonely': 8,\n", " 'long': 192,\n", " 'long-cherished': 1,\n", " 'long-gathering': 1,\n", " 'longer': 14,\n", " 'longevity': 1,\n", " 'longing': 1,\n", " 'loo': 6,\n", " 'look': 140,\n", " 'looked': 193,\n", " 'looker-on': 1,\n", " 'lookers-on': 3,\n", " 'looking': 118,\n", " 'looking-glass': 1,\n", " 'looks': 19,\n", " 'loose': 11,\n", " 'loosed': 3,\n", " 'loosely': 1,\n", " 'loosen': 1,\n", " 'loosened': 1,\n", " 'loosening': 1,\n", " 'looser': 1,\n", " 'lopped': 1,\n", " 'lord': 25,\n", " \"lord's\": 1,\n", " 'lords': 6,\n", " 'lorry': 336,\n", " \"lorry's\": 30,\n", " 'lorry--sitting': 1,\n", " 'lorry--the': 1,\n", " 'lose': 8,\n", " 'losing': 3,\n", " 'loss': 7,\n", " 'lost': 42,\n", " 'lot': 2,\n", " 'lottery': 1,\n", " 'loud': 17,\n", " 'louder': 5,\n", " 'loudly': 4,\n", " 'louis': 2,\n", " 'louis--was': 1,\n", " 'lounge': 1,\n", " 'lounged': 2,\n", " 'lounger': 1,\n", " 'loungers': 1,\n", " 'lounging': 2,\n", " 'love': 55,\n", " 'love--even': 1,\n", " 'loved': 7,\n", " 'loved--the': 1,\n", " 'lovely': 1,\n", " 'lover': 1,\n", " 'lovers': 1,\n", " 'loves': 6,\n", " 'loving': 9,\n", " 'lovingly': 3,\n", " 'low': 52,\n", " 'low-arched': 1,\n", " 'lower': 9,\n", " 'lowered': 4,\n", " 'lowering': 1,\n", " 'lowest': 4,\n", " 'loyal': 2,\n", " 'loyalty': 1,\n", " 'lucie': 124,\n", " \"lucie's\": 5,\n", " 'lucifer': 1,\n", " \"lucifer's\": 1,\n", " 'luck': 5,\n", " 'luckier': 2,\n", " 'lucky': 2,\n", " 'lucrative': 1,\n", " 'ludgate-hill': 1,\n", " 'ludicrous': 1,\n", " 'luggage': 2,\n", " 'lulled': 1,\n", " 'lumber': 1,\n", " 'lumbered': 3,\n", " 'lumbering': 6,\n", " 'luminous': 2,\n", " 'lumps': 3,\n", " 'lunch': 1,\n", " 'lured': 1,\n", " 'lurking': 1,\n", " 'lurks': 1,\n", " 'luxuries': 1,\n", " 'luxurious': 3,\n", " 'luxury': 3,\n", " 'lying': 23,\n", " 'm': 1,\n", " \"ma'amselle\": 1,\n", " 'machine': 2,\n", " 'machine--truly': 1,\n", " 'mad': 9,\n", " 'madam': 1,\n", " 'madame': 191,\n", " \"madame's\": 1,\n", " 'made': 184,\n", " 'madly': 2,\n", " 'madmen': 1,\n", " 'madness': 5,\n", " 'magic': 2,\n", " 'magician': 1,\n", " 'magnanimous': 2,\n", " 'magnificent': 4,\n", " 'magnificently': 1,\n", " 'mahogany': 1,\n", " 'maidenly': 1,\n", " 'maids': 1,\n", " 'mail': 26,\n", " 'mail-coach': 1,\n", " 'maimed': 1,\n", " 'main': 6,\n", " 'maintaining': 1,\n", " 'majestically': 1,\n", " 'majesty': 3,\n", " \"majesty's\": 2,\n", " 'majority': 2,\n", " 'make': 84,\n", " 'maker': 1,\n", " \"maker's\": 2,\n", " 'makes': 3,\n", " 'making': 33,\n", " 'makings': 1,\n", " 'malady': 2,\n", " 'male': 1,\n", " 'malevolent': 1,\n", " 'malice': 3,\n", " 'maligned': 1,\n", " 'maltreated': 1,\n", " \"mam'selle\": 2,\n", " 'mamma': 3,\n", " 'man': 279,\n", " \"man's\": 15,\n", " 'man--which': 1,\n", " 'manette': 155,\n", " \"manette's\": 7,\n", " 'manette--how': 1,\n", " 'manettes': 1,\n", " 'manful': 1,\n", " 'manfully': 1,\n", " 'mangle': 1,\n", " 'mangled': 1,\n", " 'mangy': 1,\n", " 'mania': 1,\n", " 'maniacal': 1,\n", " 'manifest': 5,\n", " 'mankind': 2,\n", " 'mankind--always': 1,\n", " 'manner': 90,\n", " 'manner--\"is': 1,\n", " 'manner--standing': 1,\n", " 'manners': 5,\n", " 'mantle': 1,\n", " 'many': 143,\n", " 'many--i': 1,\n", " 'mar': 1,\n", " 'marble': 1,\n", " 'march': 3,\n", " 'marched': 2,\n", " 'mare': 2,\n", " 'marine': 1,\n", " 'mariner': 1,\n", " 'mark': 8,\n", " 'mark--\"what': 1,\n", " 'marked': 8,\n", " 'market': 1,\n", " 'marketing': 1,\n", " 'marking': 1,\n", " 'markings': 1,\n", " 'marks': 6,\n", " 'marquis': 77,\n", " 'marquis--it': 1,\n", " 'marquis--very': 1,\n", " 'marriage': 10,\n", " 'marriage-day': 1,\n", " 'married': 16,\n", " 'married--an': 1,\n", " 'marrow': 1,\n", " 'marry': 4,\n", " 'marrying': 1,\n", " 'marshy': 1,\n", " 'martial-looking': 1,\n", " 'marvel': 1,\n", " 'marvellous': 3,\n", " 'marvellously': 1,\n", " 'mashed': 1,\n", " 'mask': 4,\n", " 'mass': 4,\n", " 'massacre': 2,\n", " 'massacred': 1,\n", " 'masses': 1,\n", " 'massing': 1,\n", " 'massive': 7,\n", " 'master': 10,\n", " \"master's\": 1,\n", " 'master--nor': 1,\n", " 'masters': 2,\n", " 'mastery': 2,\n", " 'match': 2,\n", " 'material': 3,\n", " 'maternal': 1,\n", " 'mathematics': 1,\n", " 'matrimonial': 3,\n", " 'matted': 2,\n", " 'matter': 35,\n", " 'matter-of-fact': 1,\n", " 'matters': 6,\n", " 'mattress': 2,\n", " 'mature': 2,\n", " 'maturely': 1,\n", " 'maturity': 1,\n", " 'maxim': 1,\n", " 'maximum': 1,\n", " 'may': 140,\n", " 'maybe--for': 1,\n", " \"mayn't\": 2,\n", " 'mayor': 1,\n", " 'me': 522,\n", " 'me--except': 1,\n", " 'me--just': 1,\n", " 'me--rather': 1,\n", " 'me--the': 1,\n", " 'me--well': 1,\n", " 'me--which': 1,\n", " 'me--will': 1,\n", " 'meagre': 2,\n", " 'meagreness': 1,\n", " 'meal': 2,\n", " 'meals': 1,\n", " 'mean': 35,\n", " 'meanest': 1,\n", " 'meaning': 15,\n", " 'means': 30,\n", " 'meant': 7,\n", " 'meantime': 2,\n", " 'meanwhile': 6,\n", " 'measure': 4,\n", " 'measured': 4,\n", " 'measurement': 3,\n", " 'measures': 3,\n", " 'measuring': 1,\n", " 'meat': 5,\n", " 'mechanical': 5,\n", " 'mechanically': 2,\n", " 'meddlesome': 1,\n", " 'mediation': 1,\n", " 'medical': 4,\n", " 'medicine': 1,\n", " 'medicines': 4,\n", " 'meditate': 3,\n", " 'meditated': 1,\n", " 'meditating': 2,\n", " 'meditations': 1,\n", " 'meditative': 1,\n", " 'medium': 5,\n", " 'medley': 2,\n", " 'meekness': 1,\n", " 'meet': 8,\n", " 'meeting': 2,\n", " 'melan': 1,\n", " 'melancholy': 2,\n", " 'melted': 3,\n", " 'melting': 1,\n", " 'member': 1,\n", " 'members': 4,\n", " 'memorable': 4,\n", " 'memoranda': 1,\n", " 'memorials': 2,\n", " 'memory': 11,\n", " 'men': 89,\n", " \"men's\": 1,\n", " 'men--a': 1,\n", " 'men-poets': 1,\n", " 'menace': 1,\n", " 'menaced': 1,\n", " 'menacing': 2,\n", " 'menacingly': 1,\n", " 'menagerie': 1,\n", " 'mended': 4,\n", " 'mender': 45,\n", " 'mental': 4,\n", " 'mentally': 1,\n", " 'mention': 11,\n", " 'mentioned': 8,\n", " 'mentioning': 1,\n", " 'mercenary': 3,\n", " 'merchant': 2,\n", " 'merchantibility': 1,\n", " 'mercies': 5,\n", " 'merciful': 5,\n", " 'mercifully': 1,\n", " 'mercy': 7,\n", " 'mere': 23,\n", " 'merely': 8,\n", " 'merged': 1,\n", " 'merit': 1,\n", " 'merited': 1,\n", " 'merits': 5,\n", " 'merry': 1,\n", " 'message': 11,\n", " 'messages': 3,\n", " 'messenger': 15,\n", " 'messengers': 3,\n", " 'messieurs': 8,\n", " 'messrs': 1,\n", " 'met': 11,\n", " 'metals': 1,\n", " 'metempsychosis': 1,\n", " 'method': 2,\n", " 'methodical': 4,\n", " 'methodically': 1,\n", " 'methods': 1,\n", " 'michael': 2,\n", " 'michaelmas': 2,\n", " 'mid-july': 2,\n", " 'midday': 2,\n", " 'middle': 10,\n", " 'middle-aged': 1,\n", " 'midnight': 6,\n", " 'midnight--at': 1,\n", " 'midst': 14,\n", " 'might': 144,\n", " 'mightily': 3,\n", " 'milder': 1,\n", " 'mildewy': 1,\n", " 'mildly': 2,\n", " 'mile': 1,\n", " 'miles': 6,\n", " 'military': 5,\n", " 'milk': 1,\n", " 'mill': 11,\n", " 'milled': 1,\n", " 'miller': 1,\n", " 'millions': 3,\n", " 'mincing': 4,\n", " 'mind': 116,\n", " 'mind--\"a': 1,\n", " 'mind--i': 1,\n", " 'mind--that': 1,\n", " 'mind--we': 1,\n", " 'mindful': 3,\n", " 'minding': 1,\n", " 'minds': 6,\n", " 'mine': 31,\n", " 'mine--between': 1,\n", " 'mine--this': 1,\n", " 'mingle': 2,\n", " 'mingled': 6,\n", " 'minister': 4,\n", " 'ministers': 2,\n", " 'minority': 1,\n", " 'minute': 13,\n", " \"minute's\": 1,\n", " 'minutely': 1,\n", " 'minutes': 25,\n", " 'miraculous': 1,\n", " 'mirage': 2,\n", " 'mire': 2,\n", " 'mire-deep': 2,\n", " 'mirror': 2,\n", " 'mirrors': 2,\n", " 'miscellaneous': 1,\n", " 'mischance': 1,\n", " 'mischief': 2,\n", " 'miscreant': 1,\n", " 'misdirected': 1,\n", " 'misdoubted': 2,\n", " 'miserable': 16,\n", " 'miserably': 1,\n", " 'miseries': 2,\n", " 'misery': 11,\n", " 'misery-worn': 1,\n", " 'misfortune': 4,\n", " 'misfortunes': 1,\n", " 'misgives': 1,\n", " 'misgiving': 4,\n", " 'misgivings': 1,\n", " 'mismanagement': 1,\n", " 'miss': 232,\n", " 'missed': 4,\n", " 'missing': 1,\n", " 'mission': 4,\n", " 'missionary--there': 1,\n", " 'missions': 1,\n", " 'mississippi': 1,\n", " 'misspent': 1,\n", " 'mist': 16,\n", " 'mistake': 10,\n", " 'mistaken': 6,\n", " 'mistakes': 1,\n", " 'mistrust': 1,\n", " 'mistrustful': 1,\n", " 'mists': 1,\n", " 'misty': 4,\n", " 'misuse': 2,\n", " 'misused': 1,\n", " 'mix': 1,\n", " 'mixed': 3,\n", " 'mixing': 2,\n", " 'moaning': 1,\n", " 'moaningly': 1,\n", " 'moans': 1,\n", " 'mob': 5,\n", " 'mobbed': 1,\n", " 'mock': 1,\n", " 'mock-funeral': 1,\n", " 'mode': 5,\n", " 'models': 1,\n", " 'moderate': 3,\n", " 'modern': 2,\n", " 'modest': 2,\n", " 'modestly': 4,\n", " 'modesty': 1,\n", " 'modicum': 2,\n", " 'modification': 1,\n", " 'modified': 1,\n", " 'moist': 1,\n", " 'moister': 1,\n", " 'moisture': 2,\n", " \"mole's\": 1,\n", " 'molten': 1,\n", " 'moment': 73,\n", " \"moment's\": 4,\n", " 'moment--half': 1,\n", " 'momentarily': 1,\n", " 'momentary': 4,\n", " 'moments': 13,\n", " 'monarchs': 1,\n", " 'monday': 2,\n", " 'money': 25,\n", " 'moneys': 1,\n", " 'monkeys': 1,\n", " 'monks': 1,\n", " 'monotonously': 2,\n", " 'monseigneur': 101,\n", " \"monseigneur's\": 5,\n", " 'monseigneur--forming': 1,\n", " 'monsieur': 116,\n", " \"monsieur's\": 1,\n", " 'monster': 1,\n", " 'monsters': 1,\n", " 'monstrous': 3,\n", " 'monstrously': 1,\n", " 'month': 7,\n", " 'months': 7,\n", " 'mood': 1,\n", " 'moody': 2,\n", " 'moon': 11,\n", " 'moonlight': 6,\n", " 'moral': 6,\n", " 'morality--was': 1,\n", " 'morally': 1,\n", " 'more': 261,\n", " 'more!\"--mr': 1,\n", " 'more--more': 1,\n", " 'more-over': 1,\n", " 'moreover': 5,\n", " 'morn': 1,\n", " 'morning': 53,\n", " \"morning's\": 2,\n", " 'morose': 1,\n", " 'moroseness': 1,\n", " 'morsel': 2,\n", " 'morsels': 1,\n", " 'mortal': 1,\n", " 'mortality': 1,\n", " 'mortally': 2,\n", " 'mortals': 1,\n", " 'mortar': 1,\n", " 'mortgage': 1,\n", " 'moss': 2,\n", " 'most': 73,\n", " 'mostly': 4,\n", " 'mote': 1,\n", " 'mother': 42,\n", " \"mother's\": 12,\n", " 'mother--there': 1,\n", " 'mothers': 3,\n", " 'motion': 4,\n", " 'motioned': 2,\n", " 'motioning': 1,\n", " 'motionless': 2,\n", " 'motive': 1,\n", " 'motives': 3,\n", " 'mount': 3,\n", " 'mounted': 4,\n", " 'mounting': 1,\n", " 'mourn': 2,\n", " 'mourned': 1,\n", " 'mourner': 2,\n", " 'mournful': 2,\n", " 'mournfully': 2,\n", " 'mourning': 6,\n", " 'mouse--and': 1,\n", " 'moustaches': 1,\n", " 'mouth': 21,\n", " 'mouthful': 1,\n", " 'mouths': 5,\n", " 'movable': 1,\n", " 'move': 6,\n", " 'moved': 41,\n", " 'movement': 7,\n", " 'moves': 3,\n", " 'moving': 11,\n", " 'mr': 620,\n", " 'mrs': 18,\n", " 'much': 181,\n", " 'much--and': 1,\n", " 'much--i': 1,\n", " 'mud': 16,\n", " 'mud-embankments': 1,\n", " 'muddy': 3,\n", " 'muffled': 4,\n", " 'muffler': 3,\n", " 'mugs': 1,\n", " 'multitude': 6,\n", " 'multitudes': 1,\n", " 'munching': 1,\n", " 'munificent': 1,\n", " 'murder': 6,\n", " 'murder--for': 1,\n", " 'murdered': 2,\n", " 'murderer': 2,\n", " 'murdering': 1,\n", " 'murderous': 3,\n", " 'murky': 1,\n", " 'murmur': 6,\n", " 'murmur--like': 1,\n", " 'murmured': 6,\n", " 'murmuring': 3,\n", " 'muscle': 1,\n", " 'mused': 5,\n", " 'music': 6,\n", " 'musical': 2,\n", " 'musing': 2,\n", " 'musingly': 1,\n", " 'musket': 2,\n", " 'musketeers': 3,\n", " 'muskets': 8,\n", " 'must': 111,\n", " 'mustard-pot': 1,\n", " 'musty': 2,\n", " 'mutilated': 1,\n", " 'mutilation': 1,\n", " 'mutinous': 1,\n", " 'mutter': 2,\n", " 'muttered': 9,\n", " 'mutton': 2,\n", " 'mutual': 1,\n", " 'my': 653,\n", " 'myriads': 1,\n", " 'myself': 57,\n", " 'myself--_my_self': 1,\n", " 'myself--and': 1,\n", " 'myself--timorous': 1,\n", " 'mysteries': 4,\n", " 'mysterious': 6,\n", " 'mystery': 8,\n", " 'nailed': 1,\n", " 'nails': 2,\n", " 'naked': 3,\n", " 'nakedness': 2,\n", " 'name': 101,\n", " 'name--\"making': 1,\n", " 'name--and': 1,\n", " 'name--jacques': 1,\n", " 'name--to': 1,\n", " 'named': 2,\n", " 'names': 6,\n", " 'namesake': 2,\n", " 'naming': 1,\n", " 'napkin': 2,\n", " 'narcotic': 1,\n", " 'narrative': 3,\n", " 'narrator': 1,\n", " 'narrow': 11,\n", " 'narrowing': 1,\n", " \"nat'ral\": 1,\n", " 'nation': 4,\n", " 'national': 14,\n", " 'native': 6,\n", " 'natives': 1,\n", " 'natural': 21,\n", " 'natural--asked': 1,\n", " 'naturally': 14,\n", " 'nature': 26,\n", " \"nature's\": 1,\n", " 'naught': 1,\n", " 'naval': 1,\n", " 'near': 44,\n", " 'nearer': 16,\n", " 'nearest': 10,\n", " 'nearly': 11,\n", " 'neat': 4,\n", " 'necessarily': 2,\n", " 'necessary': 16,\n", " 'necessitated': 1,\n", " 'necessity': 7,\n", " 'neck': 13,\n", " 'necks': 2,\n", " 'need': 15,\n", " 'needed': 4,\n", " 'needful': 1,\n", " 'needing': 1,\n", " 'needless': 1,\n", " 'needless--to': 1,\n", " 'needs': 2,\n", " 'needy': 1,\n", " 'negative': 1,\n", " 'neglect': 1,\n", " 'neglected': 4,\n", " 'neglects': 1,\n", " 'negligence': 2,\n", " 'negligent': 2,\n", " 'negligently': 1,\n", " 'negro': 2,\n", " 'neighbour': 3,\n", " 'neighbourhood': 6,\n", " 'neighbouring': 7,\n", " 'neighbours': 1,\n", " 'neither': 18,\n", " 'nephew': 25,\n", " 'nerve': 1,\n", " 'nerves': 2,\n", " 'nervous': 2,\n", " 'nervously': 3,\n", " 'nervousness': 1,\n", " 'nest': 1,\n", " 'nestled': 1,\n", " 'net': 2,\n", " 'nettled': 1,\n", " 'network': 2,\n", " 'neutral': 1,\n", " 'never': 192,\n", " 'nevertheless': 10,\n", " 'new': 52,\n", " 'new-comer': 3,\n", " 'newby': 1,\n", " 'newgate': 3,\n", " 'newly': 4,\n", " 'newly-born': 2,\n", " 'newly-lighted': 1,\n", " 'newly-married': 1,\n", " 'news': 6,\n", " 'news-exchange': 1,\n", " 'newsletter': 1,\n", " 'next': 36,\n", " 'nice': 4,\n", " 'nicely': 1,\n", " 'nicety': 1,\n", " \"nick's\": 1,\n", " 'nigh': 2,\n", " 'night': 180,\n", " \"night's\": 1,\n", " 'night--and': 1,\n", " 'night--in': 1,\n", " 'night--it': 1,\n", " 'night-air': 1,\n", " 'night-enshrouded': 1,\n", " 'night.--what': 1,\n", " 'nightcap': 3,\n", " 'nightcaps': 4,\n", " 'nightfall': 1,\n", " 'nightly': 1,\n", " 'nightmare': 1,\n", " 'nights': 11,\n", " 'nimble': 3,\n", " 'nimbly': 3,\n", " 'nine': 15,\n", " 'ninepence': 1,\n", " 'ninety-two': 2,\n", " 'ninth': 1,\n", " 'no': 547,\n", " 'no!--i': 1,\n", " 'noakes': 1,\n", " 'nobility': 4,\n", " 'noble': 13,\n", " 'nobleman': 2,\n", " 'nobles': 7,\n", " 'nobody': 15,\n", " 'nod': 2,\n", " 'nodded': 7,\n", " 'nodding': 5,\n", " 'noise': 17,\n", " 'noises': 2,\n", " 'noisiest': 1,\n", " 'noisily': 1,\n", " 'noisome': 1,\n", " 'non': 1,\n", " 'non-descript': 1,\n", " 'none': 28,\n", " 'none--and': 1,\n", " 'nonproprietary': 1,\n", " 'nonsense': 6,\n", " 'nonsensical': 1,\n", " 'nook': 1,\n", " 'noon': 3,\n", " 'noontide': 2,\n", " 'nor': 35,\n", " 'north': 19,\n", " 'northward': 1,\n", " 'norway': 1,\n", " 'nose': 16,\n", " 'nostril': 1,\n", " 'nostrils': 1,\n", " 'not': 860,\n", " 'not\"--the': 1,\n", " 'not--for': 1,\n", " 'not--forgive': 1,\n", " 'not--mind': 1,\n", " 'not--not': 1,\n", " 'not--thou': 1,\n", " 'not--whose': 1,\n", " 'notabilities': 1,\n", " 'notable': 1,\n", " 'note': 11,\n", " 'note--little': 1,\n", " 'noted': 2,\n", " 'notes': 4,\n", " 'nothing': 149,\n", " 'nothing--since': 1,\n", " 'notice': 21,\n", " 'noticeable': 1,\n", " 'noticed': 7,\n", " 'noticing': 2,\n", " 'notifies': 1,\n", " 'notifying': 1,\n", " 'notion': 2,\n", " 'notoriety': 1,\n", " 'notorious': 1,\n", " 'notre': 2,\n", " 'notre-dame': 1,\n", " 'notwithstanding': 2,\n", " 'noun-substantive': 1,\n", " 'nourishment': 1,\n", " 'novelty': 1,\n", " 'november': 5,\n", " 'now': 256,\n", " 'now--his': 1,\n", " 'now--that': 1,\n", " 'now--though': 1,\n", " 'nowhere': 2,\n", " 'nowise': 1,\n", " 'number': 25,\n", " 'number--so': 1,\n", " 'numbers': 4,\n", " 'numerous': 6,\n", " 'numskulls': 1,\n", " 'nurse': 1,\n", " 'nursed': 1,\n", " 'nurtured': 1,\n", " 'o': 36,\n", " \"o'clock\": 20,\n", " 'oath': 2,\n", " 'obedient': 2,\n", " 'obey': 4,\n", " 'obeyed': 5,\n", " 'obeying': 2,\n", " 'object': 18,\n", " 'objection': 3,\n", " 'objectionable': 3,\n", " 'objects': 10,\n", " 'obligation': 4,\n", " 'obligation--kept': 1,\n", " 'obliged': 6,\n", " 'obliging': 1,\n", " 'obliterated': 2,\n", " 'obliterating': 1,\n", " 'oblivion': 3,\n", " 'oblivious': 1,\n", " 'obnoxious': 1,\n", " 'obscure': 3,\n", " 'obscured': 2,\n", " 'obscurity': 7,\n", " 'obsequiousness': 1,\n", " 'observable': 3,\n", " 'observant': 4,\n", " 'observantly': 1,\n", " 'observation': 5,\n", " 'observations': 1,\n", " 'observatory': 1,\n", " 'observe': 8,\n", " 'observed': 41,\n", " 'observers': 1,\n", " 'observing': 5,\n", " 'obsolete': 1,\n", " 'obstacle': 1,\n", " 'obstacles': 1,\n", " 'obstinacy': 1,\n", " 'obstinate': 1,\n", " 'obstinately': 1,\n", " 'obtain': 5,\n", " 'obtained': 7,\n", " 'obtaining': 2,\n", " 'obtains': 1,\n", " 'obtruded': 1,\n", " 'obvious': 1,\n", " 'obviously': 1,\n", " 'occasion': 22,\n", " 'occasional': 4,\n", " 'occasionally': 9,\n", " 'occasioned': 2,\n", " 'occasions': 4,\n", " 'occupant': 2,\n", " 'occupants': 1,\n", " 'occupation': 9,\n", " 'occupations': 3,\n", " 'occupied': 15,\n", " 'occupy': 2,\n", " 'occur': 1,\n", " 'occurred': 3,\n", " 'occurrence': 1,\n", " 'occurrences': 1,\n", " 'ocean': 6,\n", " 'odd': 7,\n", " 'odd-job-man': 2,\n", " \"odd-job-man's\": 1,\n", " 'oddest': 1,\n", " 'oddly': 1,\n", " 'odds': 1,\n", " 'odour': 1,\n", " 'odours': 1,\n", " 'of': 4119,\n", " 'of--\"live': 1,\n", " 'off': 97,\n", " 'offal': 2,\n", " 'offence': 5,\n", " 'offences': 1,\n", " \"offender's\": 1,\n", " 'offensive': 3,\n", " 'offer': 11,\n", " 'offered': 5,\n", " 'offering': 1,\n", " 'offers': 1,\n", " 'office': 7,\n", " 'officer': 7,\n", " 'officers': 7,\n", " 'offices': 1,\n", " 'official': 7,\n", " 'officials': 1,\n", " 'officiate': 1,\n", " 'officiating': 1,\n", " 'offspring': 1,\n", " 'often': 42,\n", " 'oftener': 1,\n", " 'oftentimes': 1,\n", " 'ogled': 1,\n", " 'ogre': 1,\n", " 'ogreish': 1,\n", " 'oh': 26,\n", " 'oil': 3,\n", " 'oil-lamps': 1,\n", " 'oiled': 2,\n", " 'old': 186,\n", " 'old-fashioned': 4,\n", " 'older': 3,\n", " 'oldest': 5,\n", " 'olfactory': 1,\n", " 'olive-grounds': 1,\n", " 'ominous': 3,\n", " 'ominously': 1,\n", " 'omitted': 1,\n", " 'on': 932,\n", " 'on--and': 1,\n", " 'once': 78,\n", " 'once-peaceful': 1,\n", " 'one': 437,\n", " \"one's\": 3,\n", " 'one--the': 1,\n", " 'ones': 1,\n", " 'onions': 1,\n", " 'oniony': 1,\n", " 'online': 3,\n", " 'only': 121,\n", " 'onward': 1,\n", " 'open': 48,\n", " 'opened': 49,\n", " 'opener': 1,\n", " 'opening': 8,\n", " 'openly': 4,\n", " 'openness': 2,\n", " 'opera': 3,\n", " 'operations': 2,\n", " 'opiate': 1,\n", " 'opinion': 17,\n", " 'opinions': 1,\n", " 'opportunities': 1,\n", " 'opportunity': 17,\n", " 'oppose': 2,\n", " 'opposed': 3,\n", " 'opposing': 1,\n", " 'opposite': 10,\n", " 'opposition': 3,\n", " 'oppressed': 6,\n", " 'oppresses': 1,\n", " 'oppression': 5,\n", " 'oppressions': 1,\n", " 'oppressive': 2,\n", " 'oppressor': 2,\n", " 'oppressors': 2,\n", " 'or': 434,\n", " 'orange-trees': 1,\n", " 'orator': 1,\n", " 'orbits': 1,\n", " 'order': 17,\n", " 'ordered': 8,\n", " 'orderly': 2,\n", " 'orders': 5,\n", " 'ordinance': 1,\n", " 'ordinary': 2,\n", " 'organisation': 1,\n", " 'organized': 1,\n", " 'orgies': 1,\n", " 'original': 4,\n", " 'originality': 1,\n", " 'originally': 3,\n", " 'originate': 2,\n", " 'originated': 3,\n", " 'originated--that': 1,\n", " 'originating': 1,\n", " 'originator': 2,\n", " 'orleans': 1,\n", " 'ornament': 2,\n", " 'ornamented': 1,\n", " 'orphan': 5,\n", " 'orthodoxy': 1,\n", " 'ostensible': 1,\n", " 'ostentatious': 2,\n", " 'ostentatiously': 1,\n", " 'ostrich': 1,\n", " 'other': 193,\n", " \"other's\": 3,\n", " 'others': 33,\n", " 'others--if': 1,\n", " 'otherwise': 26,\n", " 'ought': 15,\n", " 'our': 105,\n", " 'ours': 1,\n", " 'ours--and': 1,\n", " 'ourselves': 5,\n", " 'out': 445,\n", " 'out--she': 1,\n", " 'outdated': 1,\n", " 'outdone': 1,\n", " 'outer': 10,\n", " 'outermost': 3,\n", " 'outhouses': 1,\n", " 'outlandish': 1,\n", " 'outlive': 1,\n", " 'outnumbering': 1,\n", " 'outrage': 1,\n", " 'outrageous': 1,\n", " 'outside': 24,\n", " 'outskirts': 1,\n", " 'outspoken': 1,\n", " 'outstrip': 1,\n", " 'outward': 5,\n", " 'outwardly': 1,\n", " 'outwards': 1,\n", " 'outweigh': 1,\n", " 'over': 172,\n", " 'over--like': 1,\n", " 'over--say': 1,\n", " 'over-hanging': 1,\n", " 'over-swinging': 3,\n", " 'overbearing': 1,\n", " 'overborne': 1,\n", " 'overcast': 2,\n", " 'overclouded': 2,\n", " 'overcoming': 1,\n", " 'overflowed': 3,\n", " 'overflowing': 3,\n", " 'overfraught': 1,\n", " 'overhanging': 1,\n", " 'overhead': 3,\n", " 'overheard': 2,\n", " 'overladen': 1,\n", " 'overlay': 1,\n", " 'overloading': 1,\n", " 'overlooked': 2,\n", " 'overlooking': 1,\n", " 'overpowered': 2,\n", " 'overset': 1,\n", " 'overshadowed': 3,\n", " 'overspread': 1,\n", " 'overstay': 1,\n", " 'overstepping': 1,\n", " 'overtake': 1,\n", " 'overtaken': 1,\n", " 'overtaking': 2,\n", " 'overthrown': 2,\n", " 'overwhelm': 2,\n", " 'overworked': 2,\n", " 'owed': 1,\n", " 'owl': 3,\n", " \"owl's\": 1,\n", " 'own': 159,\n", " 'own--it': 1,\n", " 'owned': 1,\n", " 'owner': 11,\n", " 'owners': 1,\n", " 'owns': 2,\n", " 'ox': 1,\n", " 'oxford-road': 1,\n", " 'oyster': 1,\n", " 'pace': 4,\n", " 'paced': 3,\n", " 'paces': 4,\n", " 'pacifically': 1,\n", " 'pacing': 4,\n", " 'packet': 4,\n", " 'packet-ship': 2,\n", " 'packets': 2,\n", " 'packing': 1,\n", " 'pagan': 1,\n", " 'page': 3,\n", " 'pages': 2,\n", " 'paid': 23,\n", " 'pain': 13,\n", " 'painful': 6,\n", " 'painfully': 1,\n", " 'pains': 4,\n", " 'painted': 1,\n", " 'painter': 1,\n", " 'pair': 8,\n", " 'pairs': 1,\n", " 'palace': 6,\n", " 'pale': 10,\n", " 'pale--which': 1,\n", " 'paleness': 3,\n", " 'paler': 1,\n", " 'palest': 1,\n", " 'pallet': 1,\n", " 'pallet-bed': 2,\n", " 'palpable': 1,\n", " 'paltering': 1,\n", " 'pamphlets': 1,\n", " 'pancras': 1,\n", " 'pancras-in-the-fields': 1,\n", " 'pane': 2,\n", " 'panted': 1,\n", " 'panting': 4,\n", " 'papa': 2,\n", " 'paper': 48,\n", " 'paper-bestrewn': 1,\n", " 'paper-buildings': 1,\n", " 'papers': 26,\n", " 'paperwork': 1,\n", " 'par': 1,\n", " 'parade': 1,\n", " 'paragraph': 11,\n", " 'paragraphs': 3,\n", " 'parallels': 1,\n", " 'parapet': 1,\n", " 'parcelled': 1,\n", " 'parcels': 1,\n", " 'parchment-yellow': 1,\n", " 'parchments': 1,\n", " 'pardon': 8,\n", " 'parent': 8,\n", " 'parents': 1,\n", " 'paris': 62,\n", " 'paris--in': 1,\n", " 'parish': 3,\n", " 'parley--this': 1,\n", " 'parricide': 1,\n", " 'part': 45,\n", " 'parted': 6,\n", " 'partial': 1,\n", " 'partially': 1,\n", " 'participate': 1,\n", " 'particle': 1,\n", " 'particles': 1,\n", " 'particular': 22,\n", " 'particularly': 12,\n", " 'particulars': 2,\n", " 'parties': 2,\n", " 'parting': 9,\n", " 'partly': 5,\n", " 'partner': 2,\n", " 'partners': 3,\n", " 'parts': 3,\n", " 'party': 4,\n", " 'pass': 31,\n", " 'passage': 8,\n", " 'passages': 12,\n", " 'passed': 67,\n", " 'passenger': 23,\n", " 'passenger--with': 1,\n", " 'passengers': 19,\n", " 'passerby': 1,\n", " 'passers': 1,\n", " 'passers-by': 1,\n", " 'passersby': 1,\n", " 'passes': 1,\n", " 'passing': 24,\n", " 'passion': 1,\n", " 'passionate': 5,\n", " 'passionately': 3,\n", " 'passions': 2,\n", " 'passive': 1,\n", " 'past': 26,\n", " 'pastime': 2,\n", " 'pastors': 1,\n", " 'pasture': 1,\n", " 'pasturing': 1,\n", " 'patch': 1,\n", " 'patched': 1,\n", " 'patches': 5,\n", " 'patchwork': 1,\n", " 'path': 1,\n", " 'pathetic': 1,\n", " 'patience': 2,\n", " 'patient': 13,\n", " \"patient's\": 1,\n", " 'patiently': 1,\n", " 'patients': 4,\n", " 'patrician': 1,\n", " 'patriot': 13,\n", " 'patriotic': 5,\n", " 'patriotism': 3,\n", " 'patriots': 18,\n", " 'patrols': 1,\n", " 'patron': 2,\n", " 'patronage': 3,\n", " 'pattern': 4,\n", " 'patting': 1,\n", " \"paul's\": 1,\n", " 'paunch': 1,\n", " 'paupers': 1,\n", " 'pause': 18,\n", " 'paused': 8,\n", " 'paused--\"i': 1,\n", " 'pauses': 3,\n", " 'pausing': 7,\n", " 'pavement': 8,\n", " 'pavements': 3,\n", " 'paving': 1,\n", " 'paving-stones': 1,\n", " 'pawing': 1,\n", " 'pay': 14,\n", " 'paying': 3,\n", " 'payment': 1,\n", " 'payments': 3,\n", " 'peace': 11,\n", " 'peaceful': 3,\n", " 'peacefullest': 1,\n", " 'peaches': 1,\n", " 'peal': 1,\n", " 'peas': 1,\n", " 'peasant': 7,\n", " \"peasant's\": 1,\n", " 'peasants': 5,\n", " 'peck': 1,\n", " 'peculiar': 7,\n", " 'peculiarity': 4,\n", " 'pecuniary': 1,\n", " 'peep': 3,\n", " 'peeped': 4,\n", " 'peeping': 4,\n", " 'peered': 1,\n", " 'peering': 2,\n", " 'peevish': 1,\n", " 'pen': 6,\n", " 'penalty': 1,\n", " 'pencil': 1,\n", " 'pendent': 2,\n", " 'pendulum': 1,\n", " 'penetrate': 2,\n", " 'penetrated': 1,\n", " 'penitential': 1,\n", " 'pensive': 1,\n", " 'people': 137,\n", " \"people's\": 4,\n", " 'people--he': 1,\n", " 'peopled': 1,\n", " 'peppercorn': 1,\n", " 'perceive': 6,\n", " 'perceived': 4,\n", " 'perceptible': 1,\n", " 'perceptibly': 1,\n", " 'perception': 4,\n", " 'perch': 1,\n", " 'perched': 1,\n", " 'perches--when': 1,\n", " 'peremptory': 1,\n", " 'perfect': 9,\n", " 'perfection': 1,\n", " 'perfectly': 12,\n", " 'perforce': 1,\n", " 'perform': 2,\n", " 'performance': 1,\n", " 'performances': 1,\n", " 'performed': 2,\n", " 'performing': 4,\n", " 'perhaps': 42,\n", " 'peril': 7,\n", " 'perils': 1,\n", " 'period': 5,\n", " 'periodic': 1,\n", " 'periodical': 1,\n", " 'periods': 1,\n", " 'perish': 3,\n", " 'perished': 3,\n", " 'perishing': 1,\n", " 'permanent': 2,\n", " 'permission': 13,\n", " 'permitted': 6,\n", " 'pernicious': 1,\n", " 'peroration': 1,\n", " 'perpendicular': 3,\n", " 'perpetually': 1,\n", " 'perpetuate': 1,\n", " 'perpetuating': 1,\n", " 'perpetuation': 1,\n", " 'perplexed': 3,\n", " 'perplexedly': 1,\n", " 'perplexity': 3,\n", " 'perplexity--as': 1,\n", " 'perquisitions': 1,\n", " 'perseverance': 2,\n", " 'persevering': 1,\n", " 'perseveringly': 1,\n", " 'persisted': 4,\n", " 'persistent': 2,\n", " 'person': 31,\n", " 'personage': 2,\n", " 'personages': 1,\n", " 'personal': 12,\n", " 'personality': 1,\n", " 'persons': 8,\n", " 'perspective': 1,\n", " 'perspective-glass': 1,\n", " 'perspiration': 1,\n", " 'persuade': 3,\n", " 'persuaded': 1,\n", " 'persuasion': 2,\n", " 'perturbation': 1,\n", " 'pervaded': 2,\n", " 'perverted': 3,\n", " 'pestilence': 1,\n", " 'pestilent': 1,\n", " 'pet': 2,\n", " 'petition': 6,\n", " 'petitioner': 1,\n", " 'petitions': 4,\n", " 'petrified': 2,\n", " 'petrify': 1,\n", " 'petulantly': 1,\n", " 'pg': 1,\n", " 'pglaf': 1,\n", " 'phantom': 1,\n", " 'phenomenon': 2,\n", " 'philosopher': 2,\n", " 'philosophers': 1,\n", " 'philosophy': 4,\n", " 'phrase': 5,\n", " 'phrases': 1,\n", " 'physical': 4,\n", " 'physically': 1,\n", " 'physician': 10,\n", " 'pick': 8,\n", " 'picked': 4,\n", " 'picking': 6,\n", " 'pickle': 2,\n", " 'picnic': 1,\n", " 'picture': 8,\n", " 'pictured': 4,\n", " 'pictures': 2,\n", " 'picturesque': 3,\n", " 'piece': 9,\n", " 'pieces': 18,\n", " 'pieces--die--come': 1,\n", " 'pieman': 1,\n", " 'pier-glass': 1,\n", " 'pierced': 1,\n", " 'piercing': 3,\n", " 'pies': 1,\n", " 'piety': 1,\n", " 'pig': 1,\n", " 'pig-like': 1,\n", " 'pigmy': 1,\n", " 'pigs': 1,\n", " 'pike': 4,\n", " 'pikes': 4,\n", " 'pile': 5,\n", " 'pilferer': 1,\n", " 'pilgrimages': 1,\n", " 'pill': 1,\n", " 'pillaged': 1,\n", " 'pillar': 1,\n", " 'pillars': 2,\n", " 'pillory': 2,\n", " 'pillow': 7,\n", " 'pillows': 4,\n", " 'pilotage': 1,\n", " 'pin': 1,\n", " 'pincers': 1,\n", " 'pinch': 3,\n", " 'pinched': 1,\n", " 'pined': 1,\n", " 'pinioned': 1,\n", " 'pint': 2,\n", " 'pipe': 14,\n", " 'pipe-smoking': 1,\n", " 'pipes': 4,\n", " 'piscatory': 1,\n", " 'pistol': 2,\n", " 'pistols': 2,\n", " 'pitch': 1,\n", " 'pith': 1,\n", " 'pitiable': 2,\n", " 'pitied': 2,\n", " 'pitt': 1,\n", " 'pitted': 2,\n", " 'pity': 22,\n", " 'pity--that': 1,\n", " 'pity--yes': 1,\n", " 'pitying': 2,\n", " 'place': 108,\n", " 'place--then': 1,\n", " 'placed': 5,\n", " 'places': 14,\n", " 'placid': 1,\n", " 'placidity': 1,\n", " 'placing': 2,\n", " 'plain': 16,\n", " 'plain--can': 1,\n", " 'plainer': 1,\n", " 'plainly': 1,\n", " 'plains': 1,\n", " 'plaintiff': 1,\n", " 'plaintive': 1,\n", " 'plaiting': 1,\n", " 'plan': 2,\n", " 'plane-tree': 14,\n", " 'plane-tree--and': 1,\n", " 'planned': 1,\n", " 'plans': 1,\n", " 'plant': 1,\n", " 'plastered': 1,\n", " 'plate': 3,\n", " 'plated': 1,\n", " 'platform': 1,\n", " 'play': 17,\n", " 'played': 5,\n", " 'players': 2,\n", " 'playfully': 1,\n", " 'playfulness': 1,\n", " 'playing': 4,\n", " 'plaything': 1,\n", " 'plea': 2,\n", " 'pleaded': 4,\n", " 'pleading': 1,\n", " 'pleasant': 16,\n", " 'pleasantly': 3,\n", " 'please': 17,\n", " 'pleased': 6,\n", " 'pleasure': 12,\n", " 'pleasures': 2,\n", " 'pledge': 2,\n", " 'pledged': 1,\n", " 'plentiful': 1,\n", " 'plenty': 3,\n", " 'plied': 1,\n", " 'plight': 1,\n", " 'plodding': 2,\n", " 'plot': 3,\n", " 'plots': 4,\n", " 'plotting': 3,\n", " 'plough': 3,\n", " 'ploughed': 3,\n", " 'ploughs': 1,\n", " 'pluck': 2,\n", " 'plump': 3,\n", " 'plunder': 3,\n", " 'plunder-wrecked': 1,\n", " 'plundered': 1,\n", " 'plunderers': 1,\n", " 'plundering': 1,\n", " 'plunge': 1,\n", " 'plunged': 2,\n", " 'plunges': 1,\n", " 'plunging': 1,\n", " 'pocket': 7,\n", " 'pocket-book': 2,\n", " 'pocket-handkerchief': 1,\n", " 'pockets': 11,\n", " 'poet': 2,\n", " 'poetical': 1,\n", " 'poets': 1,\n", " 'point': 26,\n", " 'pointed': 12,\n", " 'pointedly': 1,\n", " 'pointing': 15,\n", " 'points': 6,\n", " 'poison': 1,\n", " 'poisoned': 1,\n", " 'poisoning': 2,\n", " 'poisons': 1,\n", " 'poles': 1,\n", " 'police': 4,\n", " 'polish': 1,\n", " 'polished': 2,\n", " 'polite': 6,\n", " 'politely': 1,\n", " 'politeness': 2,\n", " 'politenesses': 1,\n", " 'politic': 1,\n", " 'political': 1,\n", " 'politics': 1,\n", " 'polluted': 2,\n", " 'poltroon': 1,\n", " 'pondering': 4,\n", " 'poniarded': 1,\n", " 'pont-neuf': 1,\n", " 'pooh': 2,\n", " 'pools': 1,\n", " 'poor': 87,\n", " 'poorer': 2,\n", " 'populace': 10,\n", " 'popular': 7,\n", " 'popularity': 2,\n", " 'popularly': 2,\n", " 'population': 1,\n", " 'pore': 2,\n", " 'poring': 1,\n", " 'porkman': 1,\n", " 'porringer': 1,\n", " 'port': 3,\n", " 'portend': 1,\n", " 'portended': 2,\n", " 'portentously': 1,\n", " 'porter': 4,\n", " 'porterage': 1,\n", " 'porters': 2,\n", " 'portion': 3,\n", " 'portions': 1,\n", " 'portly': 1,\n", " 'portrait': 4,\n", " 'portraits': 1,\n", " 'position': 7,\n", " 'positions': 2,\n", " 'positively': 3,\n", " 'possess': 3,\n", " 'possessed': 4,\n", " 'possesses': 1,\n", " 'possessing': 2,\n", " 'possession': 5,\n", " 'possessions': 2,\n", " 'possessor': 1,\n", " 'possibility': 5,\n", " 'possible': 23,\n", " 'possible--that': 1,\n", " 'possible--you': 1,\n", " 'possibly': 8,\n", " 'post': 8,\n", " 'post-horses': 5,\n", " 'posted': 8,\n", " 'postilion': 1,\n", " 'postilions': 9,\n", " 'posting-house': 7,\n", " 'posting-houses': 1,\n", " 'posting-yard': 1,\n", " 'postmaster': 7,\n", " 'postponed': 1,\n", " 'posture': 1,\n", " 'pot': 1,\n", " 'pot-lid': 1,\n", " 'potato': 1,\n", " 'potent': 2,\n", " 'potentate': 1,\n", " 'poultry': 1,\n", " 'pound': 1,\n", " 'pounding': 1,\n", " 'poured': 12,\n", " 'pouring': 7,\n", " 'poverty': 7,\n", " 'poverty-stricken': 1,\n", " 'powder': 3,\n", " 'powdered': 2,\n", " 'powdering': 1,\n", " 'power': 26,\n", " 'powerful': 5,\n", " 'powerfully': 2,\n", " 'powerless': 1,\n", " 'powers': 4,\n", " 'practicable': 1,\n", " 'practical': 3,\n", " 'practically': 1,\n", " 'practice': 3,\n", " 'practice--\"which': 1,\n", " 'practices': 1,\n", " 'practise': 1,\n", " 'practised': 4,\n", " 'prattling': 1,\n", " 'pray': 21,\n", " 'prayed': 4,\n", " 'prayer': 6,\n", " 'prayers': 8,\n", " 'praying': 9,\n", " 'preach': 1,\n", " 'precaution': 7,\n", " 'precautions': 2,\n", " 'preceded': 2,\n", " 'preceding': 2,\n", " 'precept': 1,\n", " 'precious': 14,\n", " 'precipitate': 1,\n", " 'precipitated': 1,\n", " 'precipitating': 1,\n", " 'precipitation': 1,\n", " 'precise': 1,\n", " 'precisely': 3,\n", " 'precision': 1,\n", " 'precocious': 1,\n", " 'predicated': 1,\n", " 'prediction': 1,\n", " 'predominate': 1,\n", " 'predominating': 1,\n", " 'preface': 1,\n", " 'prefer': 4,\n", " 'prefer--work': 1,\n", " 'preferred': 1,\n", " 'prejudged': 1,\n", " 'preliminaries': 1,\n", " 'prematurely': 2,\n", " 'preoccupied': 2,\n", " 'preparation': 9,\n", " 'preparations': 3,\n", " 'prepare': 9,\n", " 'prepared': 6,\n", " 'preparing': 2,\n", " 'preparings': 1,\n", " 'prescribed': 1,\n", " 'presence': 13,\n", " 'presence--nobles': 1,\n", " 'present': 41,\n", " 'presented': 19,\n", " 'presentiment': 1,\n", " 'presenting': 3,\n", " 'presently': 13,\n", " 'preservation': 2,\n", " 'preserve': 3,\n", " 'preserved': 4,\n", " 'preserves': 1,\n", " 'presided': 3,\n", " 'president': 19,\n", " 'presiding': 2,\n", " 'press': 7,\n", " 'pressed': 11,\n", " 'presses': 1,\n", " 'pressing': 9,\n", " 'pressure': 2,\n", " 'presume': 1,\n", " 'presumed': 1,\n", " 'presumption': 1,\n", " 'pretence': 3,\n", " 'pretend': 2,\n", " 'pretended': 1,\n", " 'pretending': 2,\n", " 'pretty': 33,\n", " 'prevail': 1,\n", " 'prevailing': 2,\n", " 'prevalent': 4,\n", " 'prevaricate': 1,\n", " 'prevent': 8,\n", " 'prevented': 5,\n", " 'prevention--it': 1,\n", " 'previous': 6,\n", " 'previously': 5,\n", " 'prewaricate': 1,\n", " 'prey': 3,\n", " 'price': 6,\n", " 'pricked': 2,\n", " 'pride': 16,\n", " 'priestly': 1,\n", " 'prime': 1,\n", " 'prince': 1,\n", " 'princes': 1,\n", " 'principal': 3,\n", " 'principally': 2,\n", " 'principle': 1,\n", " 'print': 1,\n", " 'printed': 2,\n", " 'prised': 1,\n", " 'prison': 70,\n", " 'prison--seemed': 1,\n", " 'prison-sheep': 1,\n", " 'prison-wall': 1,\n", " 'prison-walls': 1,\n", " 'prison-window': 1,\n", " 'prison?--come': 1,\n", " 'prisoner': 115,\n", " \"prisoner's\": 23,\n", " 'prisoners': 30,\n", " 'prisoners--dates': 1,\n", " 'prisons': 15,\n", " 'private': 11,\n", " 'privately': 2,\n", " 'privilege': 4,\n", " 'privileged': 1,\n", " 'privileges': 2,\n", " 'privy': 1,\n", " 'prize': 2,\n", " 'probable': 8,\n", " 'probably': 15,\n", " 'problem': 2,\n", " 'procedure': 1,\n", " 'proceed': 1,\n", " 'proceeded': 7,\n", " 'proceeding': 1,\n", " 'proceedings': 6,\n", " 'process': 4,\n", " 'processing': 1,\n", " 'procession': 9,\n", " 'processions': 1,\n", " 'procured': 2,\n", " 'prodigious': 1,\n", " 'produce': 5,\n", " 'produced': 11,\n", " 'production': 2,\n", " 'professed': 3,\n", " 'professing': 1,\n", " 'profession': 6,\n", " 'professional': 2,\n", " 'professionally': 1,\n", " 'professions': 1,\n", " 'professor': 2,\n", " 'professors': 1,\n", " 'profit': 3,\n", " 'profitable': 1,\n", " 'profits': 1,\n", " 'profligates': 2,\n", " 'profound': 5,\n", " 'profounder': 1,\n", " 'profoundly': 2,\n", " 'progress': 4,\n", " 'prohibition': 1,\n", " 'project': 84,\n", " 'projected': 1,\n", " 'projectile': 1,\n", " 'projecting': 1,\n", " 'projectors': 1,\n", " 'projects': 1,\n", " 'prolonged': 4,\n", " 'promenading': 1,\n", " 'prominent': 1,\n", " 'prominently': 2,\n", " 'promise': 18,\n", " 'promised': 1,\n", " 'promises': 2,\n", " 'promising': 1,\n", " 'promoting': 2,\n", " 'promotion': 3,\n", " 'promptly': 1,\n", " 'pronoun': 1,\n", " 'pronounced': 2,\n", " 'pronunciation': 1,\n", " 'proof': 5,\n", " 'proofread': 1,\n", " 'proofs': 1,\n", " 'propensities': 1,\n", " 'proper': 4,\n", " 'properties': 1,\n", " 'property': 17,\n", " 'property--somebody': 1,\n", " 'prophetic': 3,\n", " 'propitiate': 1,\n", " 'propitiate--when': 1,\n", " 'proposal': 4,\n", " 'propose': 3,\n", " 'proposed': 7,\n", " 'proposition': 1,\n", " 'proprietary': 1,\n", " 'proscribed': 2,\n", " 'proscription': 1,\n", " 'prosecution': 2,\n", " 'prosecutor': 5,\n", " 'prospect': 2,\n", " 'prospect--life': 1,\n", " 'prospects': 1,\n", " 'prosper': 4,\n", " 'prospered': 3,\n", " 'prospering': 1,\n", " 'prosperity': 2,\n", " 'prosperous': 8,\n", " 'pross': 149,\n", " \"pross's\": 12,\n", " 'pross--to': 1,\n", " 'prostrated': 1,\n", " 'protect': 3,\n", " 'protected': 2,\n", " 'protection': 4,\n", " 'protector': 1,\n", " 'protest': 6,\n", " 'protestations': 1,\n", " 'protested': 4,\n", " 'protesting': 1,\n", " 'protracted': 1,\n", " 'prot\\xc3\\xa9g\\xc3\\xa9s': 1,\n", " 'proud': 10,\n", " 'prove': 3,\n", " 'proved': 3,\n", " 'provender': 1,\n", " 'provide': 9,\n", " 'provided': 6,\n", " 'providence': 2,\n", " 'provident': 1,\n", " 'providing': 6,\n", " 'province': 1,\n", " 'provinces': 2,\n", " 'provincial': 2,\n", " 'provision': 1,\n", " 'provisions': 1,\n", " 'proviso': 1,\n", " 'provocation': 1,\n", " 'prowl': 1,\n", " 'proxy': 1,\n", " 'public': 41,\n", " 'public-house': 1,\n", " 'public-houses': 1,\n", " 'publicly': 3,\n", " 'puddles': 1,\n", " 'puff': 1,\n", " 'pull': 8,\n", " 'pulled': 9,\n", " 'pulley': 1,\n", " 'pulleys': 1,\n", " 'pulpit--\"and': 1,\n", " 'pulsation': 2,\n", " 'pulse': 2,\n", " 'pulses': 1,\n", " 'pumped': 1,\n", " 'pumps': 1,\n", " 'punch': 13,\n", " 'punishment': 2,\n", " 'punitive': 1,\n", " 'pupil': 1,\n", " 'pupils': 1,\n", " 'purchase': 3,\n", " 'purchased': 2,\n", " 'purchases': 2,\n", " 'pure': 4,\n", " 'purely': 1,\n", " 'purified': 1,\n", " 'purity': 1,\n", " 'purloiner': 1,\n", " 'purple': 1,\n", " 'purported': 1,\n", " 'purpose': 25,\n", " 'purpose--and': 1,\n", " 'purposeless': 4,\n", " 'purposely': 1,\n", " 'purposes': 1,\n", " 'purse': 1,\n", " 'purses': 1,\n", " 'pursuance': 1,\n", " 'pursue': 1,\n", " 'pursued': 24,\n", " 'pursuer': 2,\n", " 'pursuing': 4,\n", " 'pursuit': 5,\n", " 'pursuits': 1,\n", " 'purveyors': 1,\n", " 'pushed': 4,\n", " 'pushing': 3,\n", " 'put': 111,\n", " 'putting': 14,\n", " 'puzzling': 1,\n", " 'quaint': 1,\n", " 'quainter': 1,\n", " 'qualified': 1,\n", " 'qualities': 1,\n", " 'quality': 5,\n", " 'qualms': 1,\n", " 'quantities': 1,\n", " 'quantity': 8,\n", " 'quarrel': 2,\n", " 'quarter': 15,\n", " 'quarter--a': 1,\n", " 'quartered': 1,\n", " 'quartering': 2,\n", " 'quarters': 4,\n", " 'quash': 1,\n", " 'quavering': 1,\n", " 'quay': 1,\n", " 'queen': 11,\n", " 'queer': 1,\n", " 'quench': 1,\n", " 'quest': 3,\n", " 'question': 51,\n", " 'questionable': 3,\n", " 'questioned': 3,\n", " 'questioner': 4,\n", " 'questions': 10,\n", " 'quick': 22,\n", " 'quickened': 3,\n", " 'quickening': 1,\n", " 'quicker': 1,\n", " 'quickest': 2,\n", " 'quickly': 15,\n", " 'quickness': 3,\n", " 'quiet': 40,\n", " 'quieted': 1,\n", " 'quieter': 1,\n", " 'quieting': 1,\n", " 'quietly': 11,\n", " 'quit': 1,\n", " 'quite': 64,\n", " 'quitted': 2,\n", " 'quivered': 3,\n", " 'quoth': 1,\n", " 'rabbit': 2,\n", " 'rabble': 1,\n", " 'race': 15,\n", " 'rack': 1,\n", " 'racks': 1,\n", " 'radiance': 2,\n", " 'radiant': 3,\n", " 'rag': 3,\n", " 'rage': 3,\n", " 'ragged': 7,\n", " 'raggedest': 1,\n", " 'raggedly': 2,\n", " 'raging': 11,\n", " 'rags': 9,\n", " 'railing': 2,\n", " 'railings': 1,\n", " 'rain': 15,\n", " 'rain-drops': 2,\n", " 'rains': 3,\n", " 'rainy': 1,\n", " 'raise': 8,\n", " 'raised': 30,\n", " 'raising': 12,\n", " 'raked': 1,\n", " 'rally': 1,\n", " 'ran': 28,\n", " 'random': 1,\n", " 'ranelagh': 1,\n", " 'rang': 15,\n", " 'range': 3,\n", " 'ranged': 1,\n", " 'ranging': 1,\n", " 'rank': 5,\n", " 'ranks': 1,\n", " 'rapacious': 1,\n", " 'rapid': 7,\n", " 'rapidly': 7,\n", " 'rapped': 2,\n", " 'rapping': 1,\n", " 'rapturous': 1,\n", " 'rapturously': 1,\n", " 'rare': 2,\n", " 'rarely': 3,\n", " 'rarity': 2,\n", " 'rarity--and': 1,\n", " 'rarity--monsieur': 1,\n", " 'rascal': 2,\n", " 'rascal-people': 1,\n", " 'rashness': 1,\n", " 'rate': 5,\n", " 'rather': 43,\n", " 'rational': 1,\n", " 'rats': 4,\n", " 'rattle': 8,\n", " 'rattled': 4,\n", " 'rattling': 1,\n", " 'ravaged': 1,\n", " 'raving': 2,\n", " 'raw': 1,\n", " 'ray': 5,\n", " 'rays': 2,\n", " 'rayther': 1,\n", " 'razor': 2,\n", " 're-echoed': 1,\n", " 're-use': 1,\n", " 'reaccused': 1,\n", " 'reach': 4,\n", " 'reached': 2,\n", " 'reaching': 2,\n", " 'read': 36,\n", " 'read--first': 1,\n", " 'readable': 2,\n", " 'reader': 1,\n", " 'readily': 6,\n", " 'readiness': 3,\n", " 'reading': 11,\n", " 'reading-chair': 1,\n", " 'ready': 32,\n", " 'ready--hewed': 1,\n", " 'real': 20,\n", " 'realisation': 3,\n", " 'realise': 1,\n", " 'realised': 1,\n", " 'reality': 4,\n", " 'really': 31,\n", " 'reaping': 1,\n", " 'reappear': 1,\n", " 'reappeared': 1,\n", " 'rear': 2,\n", " 'reared': 2,\n", " 'rearing': 1,\n", " 'reason': 26,\n", " 'reason--a': 1,\n", " 'reason--and': 1,\n", " 'reason--that': 1,\n", " 'reasonable': 3,\n", " 'reasoned': 2,\n", " 'reasons': 15,\n", " 'reassurance': 2,\n", " 'reassurances': 1,\n", " 'reassuring': 2,\n", " 'rebuilding': 1,\n", " 'rebuke': 1,\n", " 'recall': 11,\n", " 'recalled': 16,\n", " 'recalled--say': 1,\n", " 'recalling': 4,\n", " 'recalls': 2,\n", " 'receipt': 4,\n", " 'receive': 7,\n", " 'received': 28,\n", " 'receiving': 4,\n", " 'recent': 1,\n", " 'recently': 2,\n", " 'reception': 6,\n", " 'recipe': 1,\n", " 'reckless': 2,\n", " 'recklessly': 1,\n", " 'recklessness': 3,\n", " 'reckoning': 3,\n", " 'reckonings': 1,\n", " 'reclaim': 1,\n", " 'reclaimed': 2,\n", " 'reclining': 1,\n", " 'recognisant': 1,\n", " 'recognise': 4,\n", " 'recognised': 5,\n", " 'recognises': 2,\n", " 'recognition': 2,\n", " 'recoiled': 3,\n", " 'recollect': 1,\n", " 'recollected': 1,\n", " 'recollection': 1,\n", " 'recommend': 3,\n", " 'recommended': 1,\n", " 'recommends': 1,\n", " 'recompense': 2,\n", " 'recompensed': 1,\n", " 'reconcile': 2,\n", " 'reconcilement': 1,\n", " 'record': 6,\n", " 'recorded': 4,\n", " 'records': 1,\n", " 'recounted': 1,\n", " 'recourse': 1,\n", " 'recover': 2,\n", " 'recovered': 13,\n", " 'recovering': 3,\n", " 'recovery': 2,\n", " 'recrossed': 1,\n", " 'recruited': 1,\n", " 'recruiting': 2,\n", " 'red': 52,\n", " 'red-cap': 2,\n", " 'red-eyed': 1,\n", " 'red-hot': 1,\n", " 'reddened': 4,\n", " 'reddening': 4,\n", " 'redeemed': 1,\n", " 'redheads': 1,\n", " 'redistribute': 1,\n", " 'redistributing': 2,\n", " 'redistribution': 2,\n", " 'redress': 1,\n", " 'reduced': 4,\n", " 'redundancy': 1,\n", " 'reek': 1,\n", " 'refection': 1,\n", " 'refer': 6,\n", " 'referable': 3,\n", " 'reference': 7,\n", " 'references': 2,\n", " 'referred': 9,\n", " 'referring': 2,\n", " 'refilled': 1,\n", " 'refined': 2,\n", " 'refinement': 1,\n", " 'refinements': 1,\n", " 'reflect': 4,\n", " 'reflect--a': 1,\n", " 'reflected': 4,\n", " 'reflecting': 1,\n", " 'reflection': 4,\n", " 'reflections': 3,\n", " 'reflectively': 1,\n", " 'refolded': 1,\n", " 'refractory': 1,\n", " 'refresh': 1,\n", " 'refreshed': 2,\n", " 'refreshment': 4,\n", " 'refuge': 3,\n", " 'refugee': 3,\n", " 'refund': 10,\n", " 'refusal': 1,\n", " 'refuse': 4,\n", " \"reg'lar\": 1,\n", " 'regained': 1,\n", " 'regard': 2,\n", " 'regarded': 6,\n", " 'regarding': 4,\n", " 'regards': 1,\n", " 'regeneration': 2,\n", " 'region': 3,\n", " 'regions': 3,\n", " 'register': 7,\n", " 'registered': 5,\n", " 'registers': 3,\n", " 'regret': 4,\n", " 'regretted': 4,\n", " 'regrinding': 1,\n", " 'regular': 11,\n", " 'regularly': 3,\n", " 'regulating': 1,\n", " 'rehearsed': 1,\n", " 'reigned': 1,\n", " 'reigning': 1,\n", " 'rein': 1,\n", " 'reining': 1,\n", " 'reins': 1,\n", " 'reiterate': 1,\n", " 'reiterated': 1,\n", " 'rejection': 1,\n", " 'rejoice': 1,\n", " 'rejoiced': 1,\n", " 'rejoicing': 2,\n", " 'rejoinder': 2,\n", " 'rejoined': 10,\n", " 'rejoining': 1,\n", " 'relapse': 7,\n", " 'relapses': 1,\n", " 'relate': 3,\n", " 'relation': 1,\n", " 'relations': 8,\n", " 'relationship': 1,\n", " 'relative': 4,\n", " 'relays': 1,\n", " 'release': 5,\n", " 'released': 20,\n", " 'released--congratulating': 1,\n", " 'releases': 1,\n", " 'releasing': 1,\n", " 'relent': 1,\n", " 'relenting': 2,\n", " 'reliance': 4,\n", " 'relics': 1,\n", " 'relied': 2,\n", " 'relief': 8,\n", " 'reliefs': 1,\n", " 'relieve': 3,\n", " 'relieved': 6,\n", " 'relieving': 1,\n", " 'religious': 4,\n", " 'religiously': 1,\n", " 'relinquish': 1,\n", " 'relinquished': 4,\n", " 'relish': 4,\n", " 'relocked': 1,\n", " 'reluctance': 2,\n", " 'reluctant': 3,\n", " 'reluctantly': 1,\n", " 'rely': 3,\n", " 'relying': 1,\n", " 'remain': 14,\n", " 'remainder': 1,\n", " 'remained': 25,\n", " 'remaining': 6,\n", " 'remains': 4,\n", " 'remark': 4,\n", " 'remarkable': 19,\n", " 'remarked': 8,\n", " 'remarking': 3,\n", " 'remarks': 2,\n", " 'remedies': 2,\n", " 'remedy': 4,\n", " 'remember': 36,\n", " 'remembered': 11,\n", " 'remembering': 3,\n", " 'remembrance': 10,\n", " 'remembrance--and': 1,\n", " 'remembrance--until': 1,\n", " 'remembrances': 3,\n", " 'reminded': 6,\n", " 'reminder': 3,\n", " 'remittances': 1,\n", " 'remitted': 2,\n", " 'remodelled': 1,\n", " 'remodelling': 1,\n", " 'remonstrance': 4,\n", " 'remonstrated': 2,\n", " 'remorse': 1,\n", " 'remorseless': 1,\n", " 'remote': 5,\n", " 'remotely': 1,\n", " 'removal': 3,\n", " 'remove': 3,\n", " 'removed': 17,\n", " 'removing': 2,\n", " 'renamed': 1,\n", " 'rend': 2,\n", " 'render': 5,\n", " 'rendered': 14,\n", " 'rendering': 3,\n", " 'renew': 3,\n", " 'renewal': 1,\n", " 'renounce': 2,\n", " 'renouncing': 1,\n", " 'rent': 5,\n", " 'rents': 1,\n", " 'renunciation': 1,\n", " 'repair': 1,\n", " 'reparable': 1,\n", " 'repassing': 1,\n", " 'repast': 3,\n", " 'repay': 2,\n", " 'repaying': 1,\n", " 'repeat': 7,\n", " 'repeated': 44,\n", " 'repeating': 2,\n", " 'repent': 1,\n", " 'repentance': 1,\n", " 'repented': 1,\n", " 'repeople': 1,\n", " 'repetition': 5,\n", " 'replace': 1,\n", " 'replaced': 2,\n", " 'replacement': 5,\n", " 'replenished': 1,\n", " 'replied': 18,\n", " 'reply': 8,\n", " 'replying': 2,\n", " 'reported': 3,\n", " 'reports': 1,\n", " 'repose': 4,\n", " 'reposed': 2,\n", " 'represent': 4,\n", " 'representations': 2,\n", " 'represented': 8,\n", " 'representing': 2,\n", " 'represents': 1,\n", " 'repressed': 4,\n", " 'repressing': 1,\n", " 'repression': 2,\n", " 'reproach': 3,\n", " 'reproachful': 3,\n", " 'reproachfully': 1,\n", " 'reproaching': 1,\n", " 'republic': 33,\n", " 'republican': 11,\n", " 'republicans': 3,\n", " 'repudiated': 1,\n", " 'reputation': 6,\n", " 'repute': 1,\n", " 'request': 6,\n", " 'requested': 4,\n", " 'require': 4,\n", " 'required': 13,\n", " 'requirements': 4,\n", " 'requiring': 2,\n", " 'requisition': 2,\n", " 'rescue': 1,\n", " 'rescued': 1,\n", " 'research': 2,\n", " 'resemblance': 9,\n", " 'resemble': 1,\n", " 'resembles': 1,\n", " 'resented': 2,\n", " 'resentful': 2,\n", " 'reservation': 1,\n", " 'reserve': 3,\n", " 'reserved': 7,\n", " 'reservoirs': 1,\n", " 'resided': 1,\n", " 'residence': 5,\n", " 'resident': 1,\n", " 'resides': 1,\n", " 'resignation': 1,\n", " 'resigned': 2,\n", " 'resignedly': 1,\n", " 'resigning': 1,\n", " 'resin': 1,\n", " 'resistance': 1,\n", " 'resistless': 1,\n", " 'resolute': 4,\n", " 'resolute-looking': 1,\n", " 'resolutely': 2,\n", " 'resolution': 5,\n", " 'resolve': 2,\n", " 'resolved': 12,\n", " 'resonance': 1,\n", " 'resort': 1,\n", " 'resorted': 5,\n", " 'resound': 1,\n", " 'resounded': 2,\n", " 'resounding': 2,\n", " 'resoundingly': 1,\n", " 'resource': 1,\n", " 'resources': 1,\n", " 'respect': 13,\n", " 'respectability': 1,\n", " 'respectable': 7,\n", " 'respected': 1,\n", " 'respectfully': 2,\n", " 'respectin': 4,\n", " 'respecting': 4,\n", " 'respective': 1,\n", " 'respects': 2,\n", " 'respects--as': 1,\n", " 'respects--or': 1,\n", " 'responded': 4,\n", " 'responding': 2,\n", " 'response': 4,\n", " 'response--dropped': 1,\n", " 'responsibility': 3,\n", " 'responsible': 4,\n", " 'responsive': 1,\n", " 'rest': 42,\n", " 'rest--along': 1,\n", " 'rested': 12,\n", " 'resting': 6,\n", " 'restless': 9,\n", " 'restlessly': 2,\n", " 'restlessness': 1,\n", " 'restoration': 3,\n", " 'restoration--the': 1,\n", " 'restorative': 1,\n", " 'restoratives': 1,\n", " 'restore': 5,\n", " 'restored': 7,\n", " 'restoring': 2,\n", " 'restrain': 3,\n", " 'restrained': 1,\n", " 'restraining': 1,\n", " 'restraint': 2,\n", " 'restraints': 1,\n", " 'restrictions': 1,\n", " 'rests': 1,\n", " 'result': 6,\n", " 'results': 1,\n", " 'resume': 1,\n", " 'resumed': 12,\n", " 'resuming': 4,\n", " 'resumption': 1,\n", " 'resurrection': 4,\n", " 'resurrection-man': 2,\n", " 'retain': 1,\n", " 'retained': 3,\n", " 'retainer': 1,\n", " 'retaken': 2,\n", " 'retaliative': 1,\n", " 'retarded': 1,\n", " 'retention': 2,\n", " 'reticule': 1,\n", " 'retinue': 1,\n", " 'retire': 4,\n", " 'retired': 8,\n", " 'retirement': 1,\n", " 'retorted': 6,\n", " 'retraced': 1,\n", " 'retreated': 3,\n", " 'retreating': 2,\n", " 'retreats': 1,\n", " 'retribution': 1,\n", " 'retributive': 2,\n", " 'retrospect': 1,\n", " 'retrospectively': 1,\n", " 'return': 25,\n", " 'return-passage': 1,\n", " 'returned': 78,\n", " 'returning': 4,\n", " 'returns': 1,\n", " 'reunited--the': 1,\n", " 'reveal': 1,\n", " 'revealed': 5,\n", " 'revealing': 1,\n", " 'reveals': 1,\n", " 'revelations': 1,\n", " 'revenge': 2,\n", " 'revengeful': 3,\n", " 'revenue': 1,\n", " 'reverence': 1,\n", " 'reverently': 2,\n", " 'reverse': 1,\n", " 'reverse--but': 1,\n", " 'reversed': 4,\n", " 'reverses': 2,\n", " 'reversionary': 1,\n", " 'reverted': 2,\n", " 'reverting': 2,\n", " 'reviewed': 1,\n", " 'revival': 2,\n", " 'revive': 3,\n", " 'revived': 1,\n", " 'reviving': 1,\n", " 'revolution': 7,\n", " 'revolution-fever': 1,\n", " 'revolutionary': 4,\n", " 'revolved': 1,\n", " 'revulsion': 2,\n", " 'reward': 1,\n", " 'ribbon': 5,\n", " 'ribbons': 2,\n", " 'rich': 9,\n", " 'riches': 1,\n", " 'richest': 2,\n", " 'rickety': 1,\n", " 'rid': 1,\n", " 'ride': 9,\n", " 'rider': 5,\n", " \"rider's\": 2,\n", " 'riders': 2,\n", " 'ridge': 3,\n", " 'ridges': 2,\n", " 'ridiculous': 2,\n", " 'riding': 8,\n", " 'riding-cloak': 1,\n", " 'riding-coat': 3,\n", " 'riding-rods': 1,\n", " 'riding-whips': 2,\n", " 'rifting': 1,\n", " 'right': 54,\n", " 'rightly': 1,\n", " 'rights': 5,\n", " 'ring': 7,\n", " 'ringed': 1,\n", " 'ringer': 1,\n", " 'ringing': 11,\n", " 'rings': 1,\n", " 'rip': 2,\n", " 'ripened': 1,\n", " 'ripening': 1,\n", " 'ripples': 1,\n", " 'rise': 7,\n", " 'risen': 6,\n", " 'rises': 3,\n", " 'rising': 26,\n", " 'risings': 3,\n", " 'risk': 2,\n", " 'river': 10,\n", " \"river's\": 1,\n", " 'river-walls': 1,\n", " 'rivers': 2,\n", " 'riving': 1,\n", " 'road': 46,\n", " 'road--assisted': 1,\n", " 'road-mender': 3,\n", " 'roads': 54,\n", " 'roads--the': 1,\n", " 'roadside': 4,\n", " 'roadway': 1,\n", " 'roamed': 1,\n", " 'roar': 12,\n", " 'roared': 1,\n", " 'roaring': 1,\n", " 'roast': 1,\n", " 'roasting': 1,\n", " 'robbed': 4,\n", " 'robber': 1,\n", " 'robberies': 1,\n", " 'robbers': 2,\n", " 'robe': 2,\n", " 'robed': 1,\n", " 'robing-room': 1,\n", " 'rock': 6,\n", " 'rocked': 1,\n", " 'rocking': 2,\n", " 'rode': 8,\n", " 'roger': 4,\n", " 'roll': 8,\n", " 'rolled': 11,\n", " 'rolling': 5,\n", " 'romance': 1,\n", " 'rome': 5,\n", " 'roof': 12,\n", " 'room': 79,\n", " 'room-door': 1,\n", " 'rooms': 23,\n", " 'roosted': 1,\n", " 'root': 3,\n", " 'root-ivy': 1,\n", " 'rooted': 3,\n", " 'rooting': 1,\n", " 'rope': 6,\n", " 'ropes': 3,\n", " 'rose': 32,\n", " 'roses': 1,\n", " 'rosy': 1,\n", " 'rot': 1,\n", " 'rotten': 2,\n", " 'rough': 15,\n", " 'roughened': 2,\n", " 'roughly': 2,\n", " 'roughness': 1,\n", " 'rouleau': 2,\n", " 'round': 65,\n", " 'rounding': 1,\n", " 'rounds': 2,\n", " 'rouse': 1,\n", " 'roused': 7,\n", " 'rousing': 3,\n", " 'routine': 4,\n", " 'row': 1,\n", " 'rows': 2,\n", " 'royal': 5,\n", " 'royalties': 2,\n", " 'royalty': 5,\n", " 'rub': 1,\n", " 'rubbed': 3,\n", " 'rubbing': 4,\n", " 'rude': 2,\n", " 'rudely': 1,\n", " 'rue': 1,\n", " 'ruffian': 1,\n", " 'ruffians': 1,\n", " 'ruffle': 1,\n", " 'ruffled': 1,\n", " 'rugged': 3,\n", " 'ruin': 3,\n", " 'ruinating': 1,\n", " 'ruinating--stark': 1,\n", " 'ruined': 3,\n", " 'ruinous': 2,\n", " 'rule': 5,\n", " 'ruled': 2,\n", " 'ruler': 1,\n", " 'rules': 2,\n", " 'rum': 2,\n", " 'rumble': 1,\n", " 'rumbled': 2,\n", " 'rumbling': 1,\n", " 'ruminated': 1,\n", " 'ruminating': 1,\n", " 'rumour': 4,\n", " 'rumoured': 3,\n", " 'run': 14,\n", " 'running': 14,\n", " 'running--hiding--doing': 1,\n", " 'runs': 1,\n", " 'rush': 4,\n", " 'rush-candles': 1,\n", " 'rushed': 8,\n", " 'rushes': 2,\n", " 'rushing': 3,\n", " 'rust': 6,\n", " 'rusted': 3,\n", " 'rustic': 5,\n", " 'rustle': 2,\n", " 'rustled': 4,\n", " 'rustling': 2,\n", " 'rusty': 6,\n", " 'ruthless': 1,\n", " 'ruts': 1,\n", " 'rye': 1,\n", " 's': 2,\n", " 's/he': 1,\n", " 'sabres': 2,\n", " 'sack': 3,\n", " 'sacked': 1,\n", " 'sacred': 10,\n", " 'sacrifice': 6,\n", " 'sacrificed': 2,\n", " 'sacrifices': 2,\n", " 'sacristan': 1,\n", " 'sad': 6,\n", " 'saddened': 1,\n", " 'sadder': 1,\n", " 'saddle': 5,\n", " 'saddles': 1,\n", " 'saddling': 2,\n", " 'sadly': 4,\n", " 'sadness': 1,\n", " 'safe': 19,\n", " 'safely': 2,\n", " 'safest': 4,\n", " 'safety': 8,\n", " 'sagacious': 1,\n", " 'sagacity': 3,\n", " 'said': 660,\n", " 'sail': 3,\n", " 'sailing': 1,\n", " 'saint': 56,\n", " \"saint's\": 2,\n", " 'sainte': 3,\n", " 'saintly': 1,\n", " 'saith': 4,\n", " 'sake': 23,\n", " 'sake--and': 1,\n", " 'sakes': 1,\n", " 'sale': 1,\n", " 'sallow': 3,\n", " 'salt': 3,\n", " 'salutation': 2,\n", " 'salute': 3,\n", " 'saluted': 2,\n", " 'samaritans': 1,\n", " 'same': 79,\n", " 'sample': 1,\n", " 'samples': 1,\n", " 'samson': 4,\n", " 'sanction': 1,\n", " 'sanctuaries': 1,\n", " 'sanctuary': 4,\n", " 'sand': 2,\n", " 'sanded': 1,\n", " 'sandy': 1,\n", " 'sane': 1,\n", " 'sang': 2,\n", " 'sanguine': 1,\n", " 'sank': 4,\n", " 'sarcasm': 1,\n", " 'sarcastic': 1,\n", " \"sardanapalus's\": 1,\n", " 'sarse': 1,\n", " 'sashes': 1,\n", " 'sat': 99,\n", " 'satellite': 1,\n", " 'satisfaction': 8,\n", " 'satisfied': 7,\n", " 'satisfy': 1,\n", " 'saturday': 2,\n", " 'sauce': 1,\n", " 'saucer': 1,\n", " 'saucers': 1,\n", " 'saunter': 1,\n", " 'sausage-shop': 1,\n", " 'savage': 2,\n", " 'savages': 1,\n", " 'save': 27,\n", " 'saved': 11,\n", " 'saving': 2,\n", " 'saviour': 1,\n", " 'savoury': 1,\n", " 'saw': 85,\n", " 'saw--so': 1,\n", " 'sawed': 2,\n", " 'sawing': 2,\n", " 'sawn': 1,\n", " 'sawyer': 2,\n", " 'say': 164,\n", " 'say:--it': 1,\n", " 'saying': 26,\n", " 'says': 19,\n", " 'scaffold': 3,\n", " 'scale': 1,\n", " 'scaling': 1,\n", " 'scantily': 1,\n", " 'scanty': 4,\n", " 'scarce': 2,\n", " 'scarcely': 17,\n", " 'scarcity': 1,\n", " 'scarecrows': 6,\n", " 'scared': 3,\n", " 'scarf': 4,\n", " 'scatter': 1,\n", " 'scattered': 3,\n", " 'scavenger': 1,\n", " 'scene': 14,\n", " 'scenes': 2,\n", " 'scent': 1,\n", " 'scents': 3,\n", " 'scheme': 2,\n", " 'schemes': 1,\n", " 'scholar': 1,\n", " 'school': 3,\n", " 'scientific': 3,\n", " 'scoops': 1,\n", " 'scorched': 1,\n", " 'score': 6,\n", " 'scores': 5,\n", " 'scorn': 2,\n", " 'scorned': 1,\n", " 'scornfully': 1,\n", " 'scoundrel': 2,\n", " 'scoundrels': 1,\n", " 'scouring': 1,\n", " 'scowling': 1,\n", " 'scrags': 1,\n", " 'scramble': 1,\n", " 'scrambled': 2,\n", " 'scrap': 5,\n", " 'scrapings': 1,\n", " 'scraps': 4,\n", " 'scratch': 1,\n", " 'scratched': 1,\n", " 'scrawl': 1,\n", " 'scrawled': 2,\n", " 'scream': 2,\n", " 'screaming': 3,\n", " 'screeched': 1,\n", " 'screeching': 1,\n", " 'screen': 1,\n", " 'screw': 1,\n", " 'screwed': 1,\n", " 'screwing': 1,\n", " 'scripture': 1,\n", " 'scrubbed': 1,\n", " 'scruple': 2,\n", " 'scuffle': 1,\n", " 'scuffled': 1,\n", " 'sculleries': 1,\n", " 'sculptured': 1,\n", " 'scum': 1,\n", " 'sea': 31,\n", " 'sea--the': 1,\n", " 'sea-coal': 1,\n", " 'sea-sand': 1,\n", " 'sea-shore': 2,\n", " 'sea.--\"like': 1,\n", " 'seacoast': 1,\n", " 'sealed': 1,\n", " 'seamstress': 3,\n", " 'search': 7,\n", " 'seared': 1,\n", " 'season': 7,\n", " 'seasons': 1,\n", " 'seat': 24,\n", " 'seated': 14,\n", " 'seats': 1,\n", " 'seaward': 1,\n", " 'seclusion': 1,\n", " 'second': 32,\n", " 'second--the': 1,\n", " 'second-hand': 2,\n", " 'secondly': 1,\n", " 'seconds': 3,\n", " 'secrecy': 4,\n", " 'secret': 41,\n", " 'secretary': 1,\n", " 'secrete': 2,\n", " 'secreted': 2,\n", " 'secretly': 1,\n", " 'secrets': 2,\n", " 'sect': 2,\n", " 'section': 11,\n", " 'sections': 1,\n", " 'secure': 4,\n", " 'secured': 3,\n", " 'securely': 2,\n", " 'security': 3,\n", " 'sediment': 1,\n", " 'see': 198,\n", " 'see--sydney': 1,\n", " 'see--worked': 1,\n", " 'seed': 1,\n", " 'seeds': 1,\n", " 'seeing': 19,\n", " 'seek': 12,\n", " 'seeking': 6,\n", " 'seeks': 2,\n", " 'seem': 14,\n", " 'seemed': 59,\n", " 'seeming': 4,\n", " 'seems': 9,\n", " 'seen': 113,\n", " 'seers': 1,\n", " 'sees': 5,\n", " 'seesaw': 1,\n", " 'seine': 3,\n", " 'seize': 2,\n", " 'seized': 7,\n", " 'seizing': 1,\n", " 'seldom': 6,\n", " 'selection': 2,\n", " 'selections': 1,\n", " 'self': 2,\n", " 'self-abnegating': 1,\n", " 'self-appointed': 1,\n", " 'self-communing': 1,\n", " 'self-conviction': 1,\n", " 'self-deceit': 1,\n", " 'self-denial': 2,\n", " 'self-destruction': 1,\n", " 'self-immolations': 1,\n", " 'self-possessed': 2,\n", " 'self-possession': 1,\n", " 'self-reproachful': 1,\n", " 'self-same': 1,\n", " 'selfish': 2,\n", " 'selling': 1,\n", " 'selves': 1,\n", " 'semblance': 1,\n", " 'send': 11,\n", " 'sending': 3,\n", " 'sensation': 3,\n", " 'sense': 24,\n", " 'senseless': 1,\n", " 'senses': 7,\n", " 'sensibilities': 1,\n", " 'sensibility': 1,\n", " 'sensible': 5,\n", " 'sensibly': 1,\n", " 'sensitive': 2,\n", " 'sensitiveness': 1,\n", " 'sensual': 1,\n", " 'sensuality': 1,\n", " 'sent': 16,\n", " 'sentence': 7,\n", " 'sentence--had': 1,\n", " 'sentenced': 1,\n", " 'sentences': 1,\n", " 'sentencing': 1,\n", " 'sentiment': 4,\n", " 'sentimental': 1,\n", " 'sentinel': 1,\n", " 'separate': 8,\n", " 'separated': 3,\n", " 'separately': 2,\n", " 'separation': 3,\n", " 'september': 1,\n", " 'sequestrated': 1,\n", " 'sequestration': 1,\n", " 'serene': 5,\n", " 'serf': 1,\n", " 'series': 2,\n", " 'serious': 3,\n", " 'sermon': 1,\n", " 'servant': 16,\n", " 'servants': 3,\n", " 'serve': 9,\n", " 'served': 5,\n", " 'service': 24,\n", " 'serviceable': 2,\n", " 'services': 2,\n", " 'servility': 1,\n", " 'serving': 1,\n", " 'sessions': 2,\n", " 'set': 56,\n", " 'set-off': 1,\n", " 'sets': 3,\n", " 'setting': 12,\n", " 'settle': 1,\n", " 'settled': 5,\n", " 'settlement': 1,\n", " 'settles': 1,\n", " 'settling': 3,\n", " 'seven': 24,\n", " 'seventeen': 5,\n", " 'seventy': 1,\n", " 'seventy-eight': 3,\n", " 'seventy-eighth': 1,\n", " 'seventy-five': 5,\n", " 'several': 21,\n", " 'severe': 1,\n", " 'severity': 1,\n", " 'sewing': 1,\n", " 'sexes': 4,\n", " 'sextons': 1,\n", " 'shade': 5,\n", " 'shaded': 3,\n", " 'shades': 1,\n", " 'shadow': 31,\n", " 'shadows': 21,\n", " 'shadowy': 2,\n", " 'shady': 1,\n", " 'shaft': 1,\n", " 'shaggy': 3,\n", " 'shaggy-haired': 1,\n", " 'shake': 6,\n", " 'shaken': 6,\n", " 'shakes': 1,\n", " 'shaking': 18,\n", " 'shall': 100,\n", " 'shallow': 1,\n", " 'sham': 2,\n", " 'shame': 1,\n", " 'shameful': 3,\n", " 'shamefully': 1,\n", " 'shaming': 1,\n", " 'shape': 7,\n", " 'shaped': 1,\n", " 'shapes': 3,\n", " 'shaping': 1,\n", " 'share': 3,\n", " 'shared': 3,\n", " 'sharing': 3,\n", " 'sharp': 11,\n", " 'sharpened': 3,\n", " 'sharpening-stone': 1,\n", " 'sharpness': 1,\n", " 'shattered': 2,\n", " 'shave': 1,\n", " 'shaved': 3,\n", " 'shawl': 1,\n", " 'she': 458,\n", " \"she'll\": 1,\n", " 'she--have': 1,\n", " 'sheared': 1,\n", " 'shed': 5,\n", " 'shedding': 1,\n", " 'sheep': 8,\n", " 'sheep--whom': 1,\n", " 'sheer': 1,\n", " 'sheets': 2,\n", " 'shelter': 3,\n", " 'sheltered': 2,\n", " 'sheltering': 1,\n", " 'shelves': 1,\n", " 'shelving': 1,\n", " 'shied': 1,\n", " 'shield': 1,\n", " 'shifted': 2,\n", " 'shilling': 2,\n", " 'shillings': 4,\n", " 'shine': 1,\n", " 'shining': 15,\n", " 'ship': 3,\n", " \"ship's\": 1,\n", " 'shirt': 4,\n", " 'shirt-sleeves': 1,\n", " 'shiver': 2,\n", " 'shivered': 5,\n", " 'shivering--chilled': 1,\n", " 'shock': 9,\n", " 'shocked': 1,\n", " 'shoe': 14,\n", " 'shoe--the': 1,\n", " 'shoemaker': 12,\n", " \"shoemaker's\": 6,\n", " 'shoemaking': 8,\n", " 'shoes': 27,\n", " 'shone': 10,\n", " 'shook': 29,\n", " \"shooter's\": 3,\n", " 'shop': 12,\n", " 'shop-door': 1,\n", " 'shop-window': 1,\n", " 'shopkeeper': 1,\n", " 'shops': 7,\n", " 'shore': 6,\n", " 'shore--as': 1,\n", " 'shore--three': 1,\n", " 'short': 40,\n", " 'short-sighted': 1,\n", " 'shortened': 1,\n", " 'shortest': 1,\n", " 'shortly': 2,\n", " 'shortness': 1,\n", " 'shot': 9,\n", " 'should': 138,\n", " 'shoulder': 25,\n", " 'shouldered': 6,\n", " 'shouldering': 8,\n", " 'shoulders': 11,\n", " \"shouldn't\": 4,\n", " 'shout': 2,\n", " 'shouted': 1,\n", " 'shouting': 3,\n", " 'shouts': 2,\n", " 'shoved': 1,\n", " 'show': 45,\n", " 'showed': 25,\n", " 'shower': 1,\n", " 'shower-bath': 1,\n", " 'showering': 1,\n", " 'showers': 1,\n", " 'showing': 11,\n", " 'shown': 10,\n", " 'shown--yet': 1,\n", " 'shows': 1,\n", " 'shred': 1,\n", " 'shredding': 1,\n", " 'shrewd': 5,\n", " 'shrewsbury': 5,\n", " 'shriek': 1,\n", " 'shrieked': 2,\n", " 'shrieking': 2,\n", " 'shrieks': 7,\n", " 'shrill': 4,\n", " 'shrink': 2,\n", " 'shrivelled': 4,\n", " 'shrouds': 1,\n", " 'shrug': 2,\n", " 'shrugging': 1,\n", " 'shrugs': 1,\n", " 'shudder': 3,\n", " 'shuddered': 1,\n", " 'shuddering': 1,\n", " 'shun': 1,\n", " 'shunned': 1,\n", " 'shut': 21,\n", " 'shuts': 1,\n", " 'shutters': 2,\n", " 'shutting': 3,\n", " 'shy': 1,\n", " 'sick': 4,\n", " 'sick-bed': 1,\n", " 'sickening': 1,\n", " 'sickliest': 1,\n", " 'sickly': 2,\n", " 'sickness': 2,\n", " 'side': 69,\n", " 'side--perhaps': 1,\n", " 'sides': 5,\n", " 'sides--like': 1,\n", " 'sideways': 3,\n", " 'sigh': 9,\n", " 'sigh--almost': 1,\n", " 'sighed': 1,\n", " 'sighing': 1,\n", " 'sighs': 1,\n", " 'sight': 40,\n", " 'sight--except': 1,\n", " 'sights': 2,\n", " 'sign': 10,\n", " 'signal': 2,\n", " 'signalling': 2,\n", " 'signally': 1,\n", " 'signals': 3,\n", " 'signature': 1,\n", " 'significance': 3,\n", " 'significant': 1,\n", " 'signified': 2,\n", " 'signing': 1,\n", " 'signs': 7,\n", " 'silence': 35,\n", " 'silences': 1,\n", " 'silent': 19,\n", " 'silently': 11,\n", " 'silk': 4,\n", " 'silks': 1,\n", " 'sill': 1,\n", " 'silver': 3,\n", " 'similar': 14,\n", " 'similarly': 6,\n", " 'simple': 4,\n", " 'simplicity': 1,\n", " 'simply': 2,\n", " 'simultaneously': 1,\n", " 'sin': 2,\n", " 'since': 39,\n", " 'since--to': 1,\n", " 'sincere': 1,\n", " 'sing': 1,\n", " 'singing': 2,\n", " 'single': 17,\n", " 'singly': 3,\n", " 'sings': 1,\n", " 'singular': 6,\n", " 'singular--and': 1,\n", " 'sinister': 4,\n", " 'sink': 1,\n", " 'sinking': 3,\n", " 'sinner': 1,\n", " 'sins': 1,\n", " 'sip': 2,\n", " 'sipped': 1,\n", " 'sipping': 3,\n", " 'sir': 99,\n", " 'sir!--and': 1,\n", " 'sir--and': 1,\n", " 'sister': 23,\n", " \"sister's\": 1,\n", " 'sister-woman': 1,\n", " 'sister-women': 1,\n", " 'sisterhood': 2,\n", " 'sisters': 2,\n", " 'sit': 9,\n", " 'site': 4,\n", " 'sits': 2,\n", " 'sitting': 19,\n", " 'situation': 6,\n", " 'situation--as': 1,\n", " 'six': 16,\n", " 'sixpence': 2,\n", " 'sixth': 1,\n", " 'sixties': 1,\n", " 'sixty': 7,\n", " 'sixty-three': 3,\n", " 'sixty-two': 1,\n", " 'size': 5,\n", " 'skid': 1,\n", " 'skies': 2,\n", " 'skilful': 2,\n", " 'skill': 10,\n", " 'skinny': 1,\n", " 'skins': 2,\n", " 'skirt': 1,\n", " 'skirting': 1,\n", " 'skirts': 1,\n", " 'sky': 21,\n", " 'slab': 1,\n", " 'slackened': 2,\n", " 'slain': 3,\n", " 'slake': 1,\n", " 'slapping': 1,\n", " 'slave': 3,\n", " 'slavery': 2,\n", " 'slaves': 1,\n", " 'sleek': 2,\n", " 'sleep': 21,\n", " 'sleeper': 4,\n", " 'sleeping': 5,\n", " 'sleeps': 1,\n", " 'sleepy': 1,\n", " 'sleeve': 2,\n", " 'slender': 1,\n", " 'slept': 10,\n", " 'sliced': 1,\n", " 'slid': 2,\n", " 'slight': 19,\n", " 'slightest': 1,\n", " 'slighting': 1,\n", " 'slightly': 7,\n", " 'slinking': 1,\n", " 'slip': 3,\n", " 'slipped': 3,\n", " 'slippers': 1,\n", " 'sloth': 1,\n", " 'slough': 1,\n", " 'sloughs': 1,\n", " 'slovenly': 1,\n", " 'slow': 9,\n", " 'slowly': 38,\n", " 'slowness': 1,\n", " 'slumber': 2,\n", " 'slumbering': 2,\n", " 'slung': 3,\n", " 'slunk': 2,\n", " 'sly': 1,\n", " 'smacked': 1,\n", " 'small': 44,\n", " 'smaller': 1,\n", " 'smallness': 1,\n", " 'smash': 2,\n", " 'smear': 2,\n", " 'smeared': 1,\n", " 'smell': 4,\n", " 'smelling': 2,\n", " 'smelling-salts': 1,\n", " 'smelt': 3,\n", " 'smile': 24,\n", " 'smiled': 3,\n", " 'smiles': 1,\n", " 'smiling': 5,\n", " 'smilingly': 1,\n", " 'smite': 2,\n", " 'smith': 2,\n", " \"smith's\": 3,\n", " 'smiths': 1,\n", " 'smithy': 1,\n", " 'smiting': 1,\n", " 'smoke': 12,\n", " 'smoke--in': 1,\n", " 'smoked': 4,\n", " 'smoked-out': 1,\n", " 'smokeless': 1,\n", " 'smoking': 6,\n", " 'smoky': 1,\n", " 'smooth': 3,\n", " 'smoothed': 1,\n", " 'smoother': 1,\n", " 'smoothing': 2,\n", " 'smoothings': 1,\n", " 'smoothly': 1,\n", " 'smoothness': 1,\n", " 'smote': 2,\n", " 'smothered': 1,\n", " 'smotherings': 1,\n", " 'smouldering': 1,\n", " 'smuggler': 1,\n", " 'snake-like': 1,\n", " 'snap': 3,\n", " 'snapping': 1,\n", " 'snatched': 2,\n", " 'snatches': 1,\n", " 'sneak': 1,\n", " 'sneaking': 1,\n", " 'sneers': 1,\n", " 'sneezed': 1,\n", " 'snipped': 1,\n", " 'snooks': 1,\n", " 'snorting': 1,\n", " 'snow': 6,\n", " 'snowy': 1,\n", " 'snuff': 4,\n", " 'snuff-box': 2,\n", " 'snuffed': 1,\n", " 'so': 582,\n", " 'so--by': 1,\n", " 'so--i': 1,\n", " 'so-ho': 1,\n", " 'so-ho-then': 1,\n", " 'so.--what': 1,\n", " 'soared': 1,\n", " 'sob': 1,\n", " 'sobbed': 1,\n", " 'sobbing': 1,\n", " 'sober': 5,\n", " 'soberer': 1,\n", " 'sobriety': 1,\n", " 'sobs': 1,\n", " 'social': 3,\n", " 'society': 6,\n", " 'society--in': 1,\n", " 'sodden': 1,\n", " 'sofa': 6,\n", " 'soft': 6,\n", " 'soften': 3,\n", " 'softened': 7,\n", " 'softening': 2,\n", " 'softer': 2,\n", " 'softly': 17,\n", " 'softly-slippered': 1,\n", " 'soho': 17,\n", " 'soho-square': 1,\n", " 'soil': 2,\n", " 'soiled': 2,\n", " 'soils': 1,\n", " 'sold': 3,\n", " 'soldier': 2,\n", " \"soldier's\": 1,\n", " 'soldiers': 19,\n", " 'soldiery': 2,\n", " 'sole': 2,\n", " 'solely': 1,\n", " 'solemn': 10,\n", " 'solemnity': 1,\n", " 'solemnly': 5,\n", " 'solicit': 2,\n", " 'solicitation': 1,\n", " 'solicitor': 1,\n", " 'solicitor-general': 1,\n", " 'solicitude': 2,\n", " 'solicitude--had': 1,\n", " 'solid': 3,\n", " 'soliloquy': 1,\n", " 'solitary': 15,\n", " 'solitude': 5,\n", " 'solomon': 24,\n", " 'solve': 1,\n", " 'solved': 1,\n", " 'solving': 1,\n", " 'sombre': 3,\n", " 'some': 229,\n", " 'somebody': 13,\n", " \"somebody's\": 1,\n", " 'somehow': 1,\n", " 'something': 57,\n", " 'something--that': 1,\n", " 'sometimes': 34,\n", " 'somewhat': 2,\n", " 'somewhere': 9,\n", " 'son': 14,\n", " 'son-in-law': 4,\n", " 'song': 6,\n", " 'song-roaring': 1,\n", " 'sonorous': 1,\n", " 'sons': 2,\n", " 'soon': 55,\n", " 'sooner': 8,\n", " 'soot': 1,\n", " 'soot-begrimed': 1,\n", " 'soothed': 3,\n", " 'soothing': 5,\n", " 'soothingly': 2,\n", " 'sorceress': 1,\n", " 'sore': 1,\n", " 'sorely': 2,\n", " 'sores': 1,\n", " 'sorrow': 7,\n", " 'sorrowful': 3,\n", " 'sorrowing': 1,\n", " 'sorrows': 3,\n", " 'sorry': 10,\n", " 'sort': 13,\n", " 'sorts': 4,\n", " 'sought': 8,\n", " 'sought--how': 1,\n", " 'soul': 18,\n", " 'souls': 4,\n", " 'sound': 43,\n", " 'sounded': 4,\n", " 'sounders': 1,\n", " 'sounding': 4,\n", " 'soundly': 2,\n", " 'soundness': 1,\n", " 'sounds': 5,\n", " 'soup': 1,\n", " 'sour': 1,\n", " 'source': 1,\n", " 'sources': 1,\n", " 'soured': 1,\n", " 'souring': 1,\n", " 'south': 8,\n", " 'southcott': 1,\n", " 'southern': 2,\n", " 'sow': 2,\n", " 'sown': 1,\n", " 'sown--as': 1,\n", " 'space': 11,\n", " 'spaces': 1,\n", " 'spade': 2,\n", " 'span': 1,\n", " 'spare': 14,\n", " 'spared': 2,\n", " 'spared--by': 1,\n", " 'sparing': 1,\n", " 'spark': 1,\n", " 'sparkled': 3,\n", " 'sparkling': 1,\n", " 'sparks': 5,\n", " 'sparrows': 1,\n", " 'spat': 1,\n", " 'speak': 59,\n", " 'speaker': 5,\n", " \"speaker's\": 1,\n", " 'speaking': 17,\n", " 'speaks': 2,\n", " 'spear': 1,\n", " 'spears': 1,\n", " 'special': 6,\n", " 'specially': 2,\n", " 'species': 3,\n", " 'specific': 1,\n", " 'specified': 2,\n", " 'specimens': 1,\n", " 'speck': 1,\n", " 'speckled': 1,\n", " 'specks': 1,\n", " 'spectacle': 6,\n", " 'spectacles': 2,\n", " 'spectacularly': 1,\n", " 'spectators': 9,\n", " 'spectral': 4,\n", " 'spectre': 6,\n", " 'speculate': 3,\n", " 'speculating': 1,\n", " 'speech': 7,\n", " 'speed': 5,\n", " 'speeding': 1,\n", " 'speedy': 1,\n", " 'spell': 1,\n", " 'spells': 1,\n", " 'spelt': 1,\n", " 'spencer': 1,\n", " 'spend': 1,\n", " 'spending': 1,\n", " 'spent': 3,\n", " 'sphere': 1,\n", " 'spi--i--ies': 1,\n", " 'spi--ies': 1,\n", " 'spies': 12,\n", " 'spiked': 2,\n", " 'spikes': 3,\n", " 'spiky': 4,\n", " 'spile': 2,\n", " 'spilled': 3,\n", " 'spilt': 2,\n", " 'spin': 2,\n", " 'spinning': 1,\n", " 'spires': 1,\n", " 'spirit': 15,\n", " 'spirited': 1,\n", " 'spirits': 10,\n", " 'spiritual': 2,\n", " 'spite': 4,\n", " 'spittoon': 1,\n", " 'splashed': 1,\n", " 'splashing': 2,\n", " 'splendour': 1,\n", " 'splinter': 1,\n", " 'split': 2,\n", " 'splits': 1,\n", " 'spluttered': 1,\n", " 'spoiling': 1,\n", " 'spoils': 2,\n", " 'spoilt': 2,\n", " 'spoke': 40,\n", " 'spoken': 29,\n", " 'spoken--distinctly': 1,\n", " 'spoon': 1,\n", " 'sport': 2,\n", " 'sport--a': 1,\n", " 'sports': 1,\n", " 'spot': 19,\n", " 'spot--had': 1,\n", " 'spot--thereby': 1,\n", " 'spots': 1,\n", " 'sprang': 2,\n", " 'spray': 2,\n", " 'spread': 2,\n", " 'spreading': 2,\n", " 'sprig': 1,\n", " 'spring': 5,\n", " 'springing': 3,\n", " 'sprinkled': 3,\n", " 'sprinkling': 1,\n", " 'sprites': 1,\n", " 'sprung': 2,\n", " 'spun': 5,\n", " 'spurning': 1,\n", " 'spurring': 2,\n", " 'sputtering': 1,\n", " 'spy': 59,\n", " 'spy--witness': 1,\n", " 'squalid': 2,\n", " 'squalor': 1,\n", " 'square': 3,\n", " 'squares': 1,\n", " 'squaring': 4,\n", " 'squashing': 1,\n", " 'squeeze': 2,\n", " 'squeezed': 6,\n", " 'squeezing': 2,\n", " 'st': 7,\n", " 'stable': 3,\n", " 'stable-yard': 1,\n", " 'stables': 3,\n", " 'stabs': 1,\n", " 'stack': 1,\n", " 'staff': 2,\n", " 'stage': 3,\n", " 'staggering': 1,\n", " 'staid': 2,\n", " 'stain': 7,\n", " 'stained': 7,\n", " 'staining': 1,\n", " 'stair': 3,\n", " 'staircase': 22,\n", " 'staircase--left': 1,\n", " 'staircases': 2,\n", " 'stairs': 12,\n", " 'stake': 4,\n", " 'stakes': 1,\n", " 'stalwart': 1,\n", " 'stammered': 1,\n", " 'stamped': 1,\n", " 'stamping': 2,\n", " 'stand': 18,\n", " 'standard': 2,\n", " 'standing': 27,\n", " 'standing--for': 1,\n", " 'stands': 7,\n", " 'star': 1,\n", " 'stare': 5,\n", " 'stared': 10,\n", " 'starers': 1,\n", " 'staring': 13,\n", " 'starlight': 2,\n", " 'stars': 5,\n", " 'start': 12,\n", " 'started': 17,\n", " 'starting': 4,\n", " 'startled': 4,\n", " 'starved': 5,\n", " 'starving': 2,\n", " 'state': 56,\n", " \"state's\": 1,\n", " 'state-projector': 1,\n", " 'stated': 3,\n", " 'stateliness': 1,\n", " 'stately': 2,\n", " 'statement': 2,\n", " 'statements': 2,\n", " 'states': 15,\n", " 'states--as': 1,\n", " 'stating': 2,\n", " 'station': 7,\n", " 'station--though': 1,\n", " 'stationed': 4,\n", " 'statue': 1,\n", " 'statues': 1,\n", " 'stature': 3,\n", " 'status': 4,\n", " 'staunch': 1,\n", " 'staves': 2,\n", " 'stay': 7,\n", " 'stayed': 4,\n", " 'staying': 1,\n", " 'stead': 3,\n", " 'steadfastly': 4,\n", " 'steadfastness': 1,\n", " 'steadily': 12,\n", " 'steady': 16,\n", " 'stealing': 2,\n", " 'stealth': 1,\n", " 'stealthily': 1,\n", " 'steamed': 2,\n", " 'steaming': 3,\n", " 'steel': 3,\n", " 'steeling': 1,\n", " 'steep': 6,\n", " 'steeped': 4,\n", " 'steeper': 1,\n", " 'steepest': 1,\n", " 'steeping': 1,\n", " 'steeple': 1,\n", " 'steepness': 1,\n", " 'steering': 1,\n", " 'stem': 1,\n", " 'stench': 1,\n", " 'step': 13,\n", " 'stepped': 7,\n", " 'steps': 24,\n", " 'stern': 3,\n", " 'sterner': 1,\n", " 'sternly': 4,\n", " 'stew': 1,\n", " 'stick': 3,\n", " 'sticking': 3,\n", " 'stiff': 5,\n", " 'stiffening': 1,\n", " 'stifled': 2,\n", " 'still': 98,\n", " 'stillness': 8,\n", " 'stillness--the': 1,\n", " 'stilton': 1,\n", " 'stimulate': 1,\n", " 'stimulating': 1,\n", " 'stinking': 1,\n", " 'stint': 2,\n", " 'stipulations': 2,\n", " 'stir': 5,\n", " 'stirred': 5,\n", " 'stirring': 1,\n", " 'stitches': 1,\n", " 'stock': 9,\n", " 'stockades': 1,\n", " 'stockinged': 1,\n", " 'stockings': 4,\n", " 'stole': 1,\n", " 'stolen': 1,\n", " 'stolid': 2,\n", " 'stomachs': 2,\n", " 'stone': 50,\n", " 'stones': 21,\n", " 'stony': 4,\n", " 'stood': 92,\n", " 'stool': 13,\n", " 'stooped': 8,\n", " 'stooping': 7,\n", " 'stop': 18,\n", " 'stop!--look': 1,\n", " 'stoppage': 1,\n", " 'stoppages': 1,\n", " 'stopped': 62,\n", " 'stoppers': 1,\n", " 'stopping': 9,\n", " 'stops': 1,\n", " 'store': 1,\n", " 'stored': 2,\n", " 'stores': 3,\n", " 'stories': 1,\n", " 'storm': 13,\n", " 'stormed': 1,\n", " 'storms--emblem': 1,\n", " 'stormy': 2,\n", " 'story': 21,\n", " 'stout': 3,\n", " 'stowed': 1,\n", " 'straggling': 1,\n", " 'straight': 29,\n", " 'straightforward': 1,\n", " 'straightway': 1,\n", " 'strain': 3,\n", " 'strained': 5,\n", " 'straining': 2,\n", " 'strait': 1,\n", " 'strand': 1,\n", " 'strange': 23,\n", " 'strange\"--said': 1,\n", " 'strange--now': 1,\n", " 'strangely': 2,\n", " 'stranger': 13,\n", " 'strangers': 1,\n", " 'strangest': 1,\n", " 'strangled': 1,\n", " 'strap': 2,\n", " 'straw': 20,\n", " 'stray': 2,\n", " 'strayed': 3,\n", " 'straying': 2,\n", " 'streak': 1,\n", " 'streaks': 1,\n", " 'stream': 4,\n", " 'stream--saving': 1,\n", " 'streaming': 3,\n", " 'streams': 3,\n", " 'street': 49,\n", " 'street--when': 1,\n", " 'street-corner': 2,\n", " 'street-stones': 1,\n", " 'streets': 75,\n", " 'streets--much': 1,\n", " 'strength': 12,\n", " 'strengthen': 2,\n", " 'strengthened': 2,\n", " 'stress': 4,\n", " 'stretch': 2,\n", " 'stretched': 6,\n", " 'stretching': 1,\n", " 'strew': 1,\n", " 'strewn': 1,\n", " 'stricken': 1,\n", " 'strict': 4,\n", " 'striding': 1,\n", " 'strife': 1,\n", " 'strike': 15,\n", " 'strikes': 2,\n", " 'striking': 13,\n", " 'strikingly': 2,\n", " 'string': 5,\n", " 'stringing': 1,\n", " 'strings': 1,\n", " 'strip': 1,\n", " 'stripped': 2,\n", " 'strips': 1,\n", " 'striven': 1,\n", " 'striving': 4,\n", " 'strivings': 1,\n", " 'stroke': 3,\n", " 'stroll': 1,\n", " 'strolled': 1,\n", " 'strolling': 1,\n", " 'strong': 63,\n", " 'strong-rooms': 2,\n", " 'stronger': 8,\n", " 'strongest': 2,\n", " 'strongly': 12,\n", " 'strove': 2,\n", " 'struck': 52,\n", " 'structure': 2,\n", " 'struggle': 11,\n", " 'struggled': 6,\n", " 'struggles': 1,\n", " 'struggling': 1,\n", " 'strung': 1,\n", " 'stryver': 103,\n", " \"stryver's\": 5,\n", " 'stuart': 1,\n", " 'stubble': 1,\n", " 'stubbornness': 1,\n", " 'stuck': 3,\n", " 'student': 1,\n", " \"student's\": 1,\n", " 'student-quarter': 1,\n", " 'studied': 2,\n", " 'studious': 4,\n", " 'study': 2,\n", " 'studying': 1,\n", " 'stuff': 1,\n", " 'stuffed': 1,\n", " 'stumbled': 2,\n", " 'stumbling': 1,\n", " 'stung': 1,\n", " 'stunned': 1,\n", " 'stupefied': 1,\n", " 'stupidly': 2,\n", " 'stupor': 1,\n", " 'style': 1,\n", " 'subdued': 7,\n", " 'subject': 16,\n", " 'subjects': 3,\n", " 'sublime': 3,\n", " 'sublimer': 1,\n", " 'submerged': 1,\n", " 'submission': 5,\n", " 'submissive': 7,\n", " 'submit': 2,\n", " 'submitted': 1,\n", " 'submitting': 1,\n", " 'subordinates': 1,\n", " 'subornation': 1,\n", " 'subscribe': 1,\n", " 'subsided': 1,\n", " 'substance': 3,\n", " 'substantial': 1,\n", " 'substitute': 1,\n", " 'substitutes': 1,\n", " 'substituting': 2,\n", " 'substratum': 1,\n", " 'subtle': 3,\n", " 'suburb': 3,\n", " 'succeed': 3,\n", " 'succeeded': 1,\n", " 'success': 5,\n", " 'successfully': 2,\n", " 'succession': 5,\n", " 'successor': 1,\n", " 'successor--of': 1,\n", " 'succour': 1,\n", " 'such': 180,\n", " 'such--like': 1,\n", " 'suck': 1,\n", " 'sucked': 2,\n", " 'sucking': 2,\n", " 'suction': 1,\n", " 'sudden': 13,\n", " 'suddenly': 20,\n", " 'suddenness': 2,\n", " 'suffer': 10,\n", " 'suffered': 6,\n", " 'sufferer': 4,\n", " \"sufferer's\": 2,\n", " 'sufferers': 1,\n", " 'suffering': 10,\n", " 'sufferings': 3,\n", " 'sufficient': 2,\n", " 'sufficiently': 5,\n", " 'suffocated': 2,\n", " 'suffocation': 1,\n", " 'sugar': 1,\n", " 'suggest': 2,\n", " 'suggested': 8,\n", " 'suggesting': 1,\n", " 'suggestion': 3,\n", " 'suggestions': 1,\n", " 'suicidal': 1,\n", " 'suit': 10,\n", " 'suitable': 2,\n", " 'suitably': 1,\n", " 'suite': 1,\n", " 'suited': 1,\n", " 'suitor': 1,\n", " \"suitor's\": 1,\n", " 'suits': 1,\n", " 'sulky': 1,\n", " 'sullen': 3,\n", " 'sullenly': 2,\n", " 'sulphur': 1,\n", " 'sultry': 2,\n", " 'sum': 1,\n", " 'summed': 1,\n", " 'summer': 12,\n", " 'summer--and': 1,\n", " 'summer-houses': 1,\n", " 'summit': 3,\n", " 'summits': 1,\n", " 'summon': 4,\n", " 'summoned': 17,\n", " 'summons': 1,\n", " 'sumptuous': 2,\n", " 'sun': 36,\n", " 'sunburnt': 1,\n", " 'sunday': 11,\n", " 'sundays': 3,\n", " 'sundry': 2,\n", " 'sunflower': 1,\n", " 'sunk': 3,\n", " 'sunken': 2,\n", " 'sunlight': 2,\n", " 'sunny': 5,\n", " 'sunrise': 2,\n", " 'sunset': 4,\n", " 'sunshine': 4,\n", " 'superb': 2,\n", " 'superciliously': 1,\n", " 'superintendence.--o': 1,\n", " 'superior': 2,\n", " 'superiority': 2,\n", " 'superlative': 1,\n", " 'supernatural': 1,\n", " 'supernaturally': 1,\n", " 'superscribed': 1,\n", " 'superseded': 1,\n", " 'superstition': 1,\n", " 'superstitious': 1,\n", " 'supervised': 1,\n", " 'supped': 1,\n", " 'supper': 12,\n", " 'supper-table': 1,\n", " 'suppers': 1,\n", " 'supping': 1,\n", " 'supple': 1,\n", " 'supplementary': 1,\n", " 'suppliant': 1,\n", " 'supplicate': 1,\n", " 'supplication': 3,\n", " 'supplicatory': 1,\n", " 'supplied': 2,\n", " 'supplies': 1,\n", " 'supply': 1,\n", " 'support': 6,\n", " 'supported': 5,\n", " 'supporting': 1,\n", " 'suppose': 17,\n", " 'suppose--you': 1,\n", " 'supposed': 14,\n", " 'supposing': 1,\n", " 'supposition': 2,\n", " 'suppressed': 8,\n", " 'suppression': 1,\n", " 'supreme': 1,\n", " 'sure': 39,\n", " 'surely': 18,\n", " 'surer': 1,\n", " 'surf': 1,\n", " 'surface': 10,\n", " 'surfaces': 1,\n", " 'surge': 1,\n", " 'surgeon': 1,\n", " 'surgeon--on': 1,\n", " 'surging': 1,\n", " 'surmise': 1,\n", " 'surmounted': 1,\n", " 'surname': 1,\n", " 'surprise': 15,\n", " 'surprised': 10,\n", " 'surprises': 1,\n", " 'surprising': 2,\n", " 'surprisingly': 1,\n", " 'surrender': 1,\n", " 'surrendered': 1,\n", " 'surrounded': 8,\n", " 'surrounding': 5,\n", " 'survey': 1,\n", " 'surveyed': 3,\n", " 'surveying': 3,\n", " 'survive': 2,\n", " 'surviving': 1,\n", " 'susceptibility': 1,\n", " 'suspect': 3,\n", " 'suspected': 13,\n", " 'suspended': 5,\n", " 'suspended--not': 1,\n", " 'suspense': 6,\n", " 'suspicion': 13,\n", " 'suspicions': 4,\n", " 'suspicious': 2,\n", " 'sustain': 3,\n", " 'sustained': 6,\n", " 'sustaining': 2,\n", " 'swallow': 6,\n", " 'swallowed': 3,\n", " 'swallowing': 3,\n", " 'swamp': 1,\n", " 'swamped': 1,\n", " 'swarmed': 1,\n", " 'swarming': 2,\n", " 'swart': 2,\n", " 'swarthy': 1,\n", " 'swaying': 1,\n", " 'swear': 10,\n", " 'swearers': 1,\n", " 'swearing': 2,\n", " 'sweat': 1,\n", " 'sweaty': 1,\n", " 'sweep': 3,\n", " 'sweeps': 1,\n", " 'sweet': 14,\n", " 'sweetest': 1,\n", " 'sweetly': 1,\n", " 'swell': 2,\n", " 'swelled': 2,\n", " 'swelling': 1,\n", " 'swells': 1,\n", " 'swept': 5,\n", " 'swift': 6,\n", " 'swiftly': 3,\n", " 'swing': 1,\n", " 'swinging': 6,\n", " 'swollen': 2,\n", " 'swoon': 3,\n", " 'swooned': 1,\n", " 'swoons': 1,\n", " 'swooped': 2,\n", " 'swooping': 1,\n", " 'sword': 5,\n", " 'sword--like': 1,\n", " 'sword-hilt': 1,\n", " 'sword-thrust': 1,\n", " 'swords': 7,\n", " 'swore': 1,\n", " 'sworn': 2,\n", " 'swung': 4,\n", " 'syd': 1,\n", " 'sydney': 72,\n", " \"sydney's\": 3,\n", " 'syllable': 4,\n", " 'syllables': 2,\n", " 'symbolical': 1,\n", " 'symbols': 1,\n", " 'sympathise': 1,\n", " 'sympathised': 1,\n", " 'sympathy': 12,\n", " 'symptoms': 1,\n", " 'synonymous': 1,\n", " 'system': 4,\n", " 'systematically': 2,\n", " 't': 1,\n", " \"t'other\": 2,\n", " 'table': 34,\n", " 'table-drawers': 1,\n", " 'tables': 3,\n", " 'taciturn': 1,\n", " 'tackle': 1,\n", " 'tact': 1,\n", " 'tactician': 1,\n", " 'tail': 1,\n", " 'tails': 2,\n", " 'taint': 1,\n", " 'tainted': 2,\n", " 'take': 88,\n", " 'taken': 74,\n", " 'takes': 5,\n", " 'takin': 1,\n", " 'taking': 41,\n", " 'tale': 3,\n", " 'talents': 3,\n", " 'talisman': 1,\n", " 'talk': 10,\n", " 'talked': 6,\n", " 'talkers': 3,\n", " 'talking': 8,\n", " 'tall': 18,\n", " 'tame': 3,\n", " 'tamed': 1,\n", " 'tamper': 1,\n", " 'tangle': 1,\n", " 'tanneries': 2,\n", " 'tannery': 1,\n", " 'tapped': 1,\n", " 'tapping': 1,\n", " 'tarnish': 1,\n", " 'task': 8,\n", " 'taste': 7,\n", " 'tasted': 1,\n", " 'tastes': 1,\n", " 'tattered': 1,\n", " 'tatters': 1,\n", " 'taught': 3,\n", " 'tavern': 4,\n", " 'tax': 11,\n", " 'taxed': 1,\n", " 'taxers': 1,\n", " 'taxes': 2,\n", " 'taxes--though': 1,\n", " 'taxing': 2,\n", " 'taxing-house': 1,\n", " 'tea': 5,\n", " 'tea-pot': 1,\n", " 'tea-table': 1,\n", " 'tea-time': 1,\n", " 'teaboard': 1,\n", " 'teach': 2,\n", " 'teacher': 2,\n", " 'team': 1,\n", " 'tear': 3,\n", " 'tear-fraught': 1,\n", " 'tearing': 5,\n", " 'tears': 29,\n", " 'tedious': 1,\n", " 'teems': 1,\n", " 'teeth': 8,\n", " 'telegraph': 1,\n", " 'tell': 91,\n", " 'telling': 4,\n", " 'tells': 2,\n", " 'tellson': 6,\n", " \"tellson's\": 83,\n", " \"tellson's--have\": 1,\n", " \"tellson's--never\": 1,\n", " 'temper': 5,\n", " 'temperament': 2,\n", " 'tempest': 2,\n", " 'temple': 21,\n", " 'temporarily': 1,\n", " 'temporary': 1,\n", " 'tempt': 1,\n", " 'tempted': 1,\n", " 'tempter': 2,\n", " 'ten': 21,\n", " 'tenacity': 1,\n", " 'tenant': 1,\n", " 'tenants': 1,\n", " 'tenants--serfs--what': 1,\n", " 'tend': 3,\n", " 'tended': 5,\n", " 'tendency': 7,\n", " 'tender': 5,\n", " 'tenderer': 2,\n", " 'tenderly': 4,\n", " 'tenderness': 4,\n", " 'tending': 7,\n", " 'tenth': 3,\n", " 'tergiversation': 1,\n", " 'term': 5,\n", " 'terminate': 3,\n", " 'terminated': 2,\n", " 'terms': 25,\n", " 'terrace': 5,\n", " 'terraces': 1,\n", " 'terrestrial': 1,\n", " 'terrible': 15,\n", " 'terrific': 1,\n", " 'terrified': 7,\n", " 'terror': 7,\n", " 'terror--he': 1,\n", " 'terrors': 4,\n", " 'test': 1,\n", " 'testaments': 1,\n", " 'testified': 1,\n", " 'testify': 1,\n", " 'testimony': 3,\n", " 'tethered': 1,\n", " 'text': 1,\n", " 'texture': 1,\n", " 'thames': 1,\n", " 'than': 216,\n", " 'than--than': 1,\n", " 'thank': 26,\n", " 'thanked': 4,\n", " 'thankful': 7,\n", " 'thanking': 3,\n", " 'thankless': 1,\n", " 'thanks': 6,\n", " 'that': 1904,\n", " \"that's\": 30,\n", " 'that--as': 1,\n", " 'thatched': 1,\n", " 'the': 8157,\n", " 'the--the--as': 1,\n", " 'the--the--image': 1,\n", " 'theatre': 1,\n", " 'theatre-doors': 1,\n", " 'theatres': 2,\n", " 'theatrical': 1,\n", " 'thee': 6,\n", " 'thee--which': 1,\n", " 'their': 318,\n", " 'theirs': 3,\n", " 'them': 393,\n", " 'them!--i': 1,\n", " 'them--all': 1,\n", " 'them--by': 1,\n", " 'them--so': 1,\n", " 'them--that': 1,\n", " 'them--the': 1,\n", " 'theme': 4,\n", " 'themselves': 25,\n", " 'then': 253,\n", " 'then--sharply': 1,\n", " 'thence': 1,\n", " 'thenceforth': 1,\n", " 'theophile': 1,\n", " 'theory': 3,\n", " 'there': 567,\n", " 'there!--and': 1,\n", " 'there\"--it': 1,\n", " \"there'd\": 1,\n", " \"there's\": 7,\n", " 'there--and': 1,\n", " 'there--had': 1,\n", " 'there--i': 1,\n", " 'there--if': 1,\n", " 'there--not': 1,\n", " 'there--tell': 1,\n", " 'there--with': 1,\n", " 'thereabouts': 1,\n", " 'thereby': 1,\n", " 'therefore': 21,\n", " 'thereof': 2,\n", " 'therese': 4,\n", " 'thereupon': 1,\n", " 'these': 187,\n", " 'they': 564,\n", " \"they'll\": 2,\n", " 'thick': 4,\n", " 'thicken': 1,\n", " 'thickened': 1,\n", " 'thickest': 1,\n", " 'thickness': 1,\n", " 'thief': 1,\n", " 'thief-and-rascal': 1,\n", " 'thieves': 2,\n", " 'thin': 12,\n", " 'thine': 1,\n", " 'thing': 48,\n", " 'thing--nothing--startles': 1,\n", " 'things': 68,\n", " 'things--for': 1,\n", " 'think': 120,\n", " 'think\"--the': 1,\n", " 'think--i': 1,\n", " 'think-not': 1,\n", " 'thinking': 11,\n", " 'thinks': 4,\n", " 'thinness': 1,\n", " 'third': 23,\n", " 'third--the': 1,\n", " 'thirdly': 1,\n", " 'thirst': 3,\n", " 'thirsty': 1,\n", " 'thirty': 4,\n", " 'thirty-five': 1,\n", " 'thirty-seven': 1,\n", " 'this': 588,\n", " 'this--ha': 1,\n", " 'this--nor': 1,\n", " \"this--tellson's\": 1,\n", " 'this:--if': 1,\n", " 'this:--that': 1,\n", " 'this?--_was': 1,\n", " 'thorns': 1,\n", " 'thorough': 2,\n", " 'thoroughfare': 1,\n", " 'thoroughfares': 1,\n", " 'thoroughly': 4,\n", " 'those': 111,\n", " 'thou': 6,\n", " 'thou--is': 1,\n", " 'though': 93,\n", " 'thought': 61,\n", " 'thought--of': 1,\n", " 'thoughtful': 4,\n", " 'thoughtfully': 4,\n", " 'thoughts': 22,\n", " 'thousand': 26,\n", " 'thousands': 2,\n", " 'thread': 5,\n", " 'threaded': 1,\n", " 'threat': 2,\n", " 'threatened': 1,\n", " 'threatening': 5,\n", " 'three': 117,\n", " 'three-cornered': 2,\n", " 'three-fourths': 1,\n", " 'threes': 2,\n", " 'threescore': 1,\n", " 'threshold': 2,\n", " 'threw': 11,\n", " 'thrice': 3,\n", " 'thrift': 2,\n", " 'thrill': 2,\n", " 'thrilled': 1,\n", " 'thrive': 1,\n", " 'throat': 16,\n", " 'throats': 1,\n", " 'throne': 3,\n", " 'throng': 5,\n", " 'thronging': 1,\n", " 'throttle': 1,\n", " 'throttled': 1,\n", " 'through': 161,\n", " 'throughout': 4,\n", " 'throw': 5,\n", " 'throwing': 4,\n", " 'thrown': 20,\n", " 'throws': 1,\n", " 'thrust': 3,\n", " 'thumb': 1,\n", " 'thumb-nail': 1,\n", " 'thumbs': 1,\n", " 'thump': 1,\n", " 'thunder': 2,\n", " 'thunder-gusts': 1,\n", " 'thundered': 2,\n", " 'thundering': 2,\n", " 'thus': 33,\n", " 'thy': 2,\n", " 'ticking': 1,\n", " 'tickle': 2,\n", " 'tide': 8,\n", " 'tides': 3,\n", " 'tidings': 8,\n", " 'tie': 1,\n", " 'tied': 5,\n", " 'tied--the': 1,\n", " 'ties': 3,\n", " 'tiger': 3,\n", " 'tiger:--looked': 1,\n", " 'tigerish': 1,\n", " 'tight': 5,\n", " 'tight-fitting': 1,\n", " 'tighter': 1,\n", " 'tightly': 1,\n", " 'tigress': 1,\n", " 'tile': 1,\n", " 'tile-paved': 2,\n", " 'tiled': 1,\n", " 'till': 16,\n", " 'tillers': 1,\n", " 'tilson': 1,\n", " 'timber': 1,\n", " 'time': 260,\n", " 'time--and': 1,\n", " 'time--i': 2,\n", " 'time--through': 1,\n", " 'time--when': 1,\n", " 'timed': 1,\n", " 'timely': 3,\n", " 'times': 51,\n", " 'timid': 7,\n", " 'timidity': 1,\n", " 'timidly': 2,\n", " 'timorous': 1,\n", " 'tinder-box': 1,\n", " 'tinged': 2,\n", " 'tiny': 1,\n", " 'tip': 1,\n", " 'tips': 1,\n", " 'tiptoe': 1,\n", " 'tired': 4,\n", " 'tiresome': 1,\n", " 'tissue': 2,\n", " 'title': 2,\n", " 'to': 3540,\n", " 'to--and': 1,\n", " 'to--this': 1,\n", " 'to--what': 1,\n", " 'to-day': 26,\n", " 'to-morrow': 33,\n", " \"to-morrow's\": 3,\n", " 'to-morrow--you': 1,\n", " 'to-night': 30,\n", " 'to-night--come': 1,\n", " 'toast': 3,\n", " 'toasts': 1,\n", " 'tobacco': 1,\n", " 'tobaccoey': 1,\n", " 'tocsin': 3,\n", " 'toes': 1,\n", " 'together': 61,\n", " 'together--as': 1,\n", " 'together--that': 1,\n", " 'together;--with': 1,\n", " 'toil': 2,\n", " 'toil-worn': 1,\n", " 'toiled': 1,\n", " 'toilet': 1,\n", " 'toilette': 1,\n", " 'toilettes': 1,\n", " 'told': 45,\n", " 'tolerable': 2,\n", " 'tolerate': 1,\n", " 'tolerated': 4,\n", " 'tom': 4,\n", " 'tomb': 3,\n", " 'tomorrow': 2,\n", " 'tone': 27,\n", " 'toned': 1,\n", " 'tones': 6,\n", " 'tongue': 7,\n", " 'tongues': 3,\n", " 'too': 116,\n", " 'too--as': 2,\n", " 'took': 108,\n", " 'took--and': 1,\n", " 'tools': 15,\n", " 'toothache': 1,\n", " 'toothpick': 6,\n", " 'top': 16,\n", " 'top-boots': 1,\n", " 'topic': 5,\n", " 'topics': 3,\n", " 'topmost': 1,\n", " 'tops': 3,\n", " 'torch': 2,\n", " 'torches': 2,\n", " 'tore': 7,\n", " 'torment': 1,\n", " 'torn': 10,\n", " 'tortuous': 1,\n", " 'torture': 5,\n", " 'tortured': 2,\n", " 'tortures': 1,\n", " 'tossed': 4,\n", " 'tossing': 2,\n", " 'total': 1,\n", " 'totally': 1,\n", " 'touch': 30,\n", " 'touched': 20,\n", " 'touches': 1,\n", " 'touching': 19,\n", " 'towards': 62,\n", " 'towed': 1,\n", " 'towel': 1,\n", " 'towelling': 1,\n", " 'towels': 3,\n", " 'tower': 15,\n", " 'tower--ages': 1,\n", " 'towers': 14,\n", " 'town': 13,\n", " 'town-gate': 1,\n", " 'towns': 1,\n", " 'townspeople': 1,\n", " 'toy-puzzle': 1,\n", " 'trace': 5,\n", " 'traced': 2,\n", " 'traces': 3,\n", " 'tracing': 1,\n", " 'track': 3,\n", " 'tracked': 1,\n", " 'tracks': 1,\n", " 'trade': 9,\n", " 'trademark': 10,\n", " 'trademark/copyright': 1,\n", " 'trades': 2,\n", " 'tradesman': 14,\n", " \"tradesman's\": 2,\n", " 'tradesmen': 3,\n", " 'trading-boat': 1,\n", " 'traffic': 2,\n", " 'trafficker': 1,\n", " 'traffickers': 1,\n", " 'trailing': 1,\n", " 'train': 4,\n", " 'training': 1,\n", " 'traitor': 7,\n", " 'traitorous': 2,\n", " 'traitorously': 1,\n", " 'tramp': 2,\n", " 'tramping': 2,\n", " 'trampled': 2,\n", " 'tranquil': 3,\n", " 'tranquillised': 1,\n", " 'tranquilly': 2,\n", " 'transact': 1,\n", " 'transacted': 1,\n", " 'transactions': 1,\n", " 'transcribe': 1,\n", " 'transcription': 1,\n", " 'transferred': 2,\n", " 'transformation': 1,\n", " 'transformations': 1,\n", " 'transition': 1,\n", " 'transitory': 1,\n", " 'translator': 1,\n", " 'transmutation': 1,\n", " 'transparent': 3,\n", " 'transparently': 1,\n", " 'transport': 1,\n", " 'trap': 1,\n", " 'trappings': 1,\n", " 'traps': 1,\n", " 'travel': 2,\n", " 'travelled': 6,\n", " 'traveller': 9,\n", " 'travellers': 3,\n", " 'travelling': 17,\n", " 'travelling-hat': 1,\n", " 'traversed': 4,\n", " 'traversing': 3,\n", " 'tray': 2,\n", " 'treacherous': 1,\n", " 'treachery': 2,\n", " 'tread': 9,\n", " 'treason': 5,\n", " 'treasonable': 1,\n", " 'treasure': 1,\n", " 'treated': 1,\n", " 'treatment': 2,\n", " 'treble': 1,\n", " 'trebly': 1,\n", " 'tree': 3,\n", " 'trees': 14,\n", " 'tremble': 5,\n", " 'trembled': 5,\n", " 'trembling': 6,\n", " 'tremendous': 5,\n", " 'tremulous': 2,\n", " 'tremulously': 1,\n", " 'trenchant': 1,\n", " 'trenches': 1,\n", " 'trepidation': 1,\n", " 'tri-colour': 2,\n", " 'tri-coloured': 1,\n", " 'trial': 14,\n", " 'trial--evoke': 1,\n", " 'trials': 2,\n", " 'tribe': 2,\n", " 'tribunal': 20,\n", " \"tribunal's\": 1,\n", " 'tribunal--of': 1,\n", " 'tribunals': 1,\n", " 'trickled': 1,\n", " 'tricks': 3,\n", " 'tricoloured': 3,\n", " 'trident': 1,\n", " 'tried': 17,\n", " 'tries': 1,\n", " 'trifle': 1,\n", " 'trifles': 2,\n", " 'trifling': 1,\n", " 'trim': 2,\n", " 'trimming': 1,\n", " 'trinkets': 1,\n", " 'trip': 2,\n", " 'triumph': 5,\n", " 'triumph--i': 1,\n", " 'triumphant': 1,\n", " 'triumphs': 2,\n", " 'triumvirate': 1,\n", " 'trivial': 1,\n", " 'trod': 5,\n", " 'trodden': 2,\n", " 'trodden-down': 1,\n", " 'trooping': 2,\n", " 'troops': 1,\n", " 'trot': 3,\n", " 'trotted': 1,\n", " 'trotting': 1,\n", " 'trouble': 16,\n", " 'troubled': 15,\n", " 'troubles': 4,\n", " 'troublesome': 4,\n", " 'troubling': 1,\n", " 'trudged': 3,\n", " 'true': 41,\n", " 'true-hearted': 1,\n", " 'truest': 1,\n", " 'truly': 12,\n", " 'trust': 13,\n", " 'trusted': 3,\n", " 'trustee': 1,\n", " 'trustees': 1,\n", " 'trustfulness': 1,\n", " 'trusting': 5,\n", " 'trustworthy': 1,\n", " 'trusty': 2,\n", " 'truth': 20,\n", " 'truth--which': 1,\n", " 'truthfully': 1,\n", " 'try': 14,\n", " 'trying': 12,\n", " 'tst': 7,\n", " 'tuesday': 1,\n", " 'tuileries': 2,\n", " 'tumbled': 2,\n", " 'tumbling': 2,\n", " 'tumbril': 3,\n", " 'tumbrils': 15,\n", " 'tumult': 2,\n", " 'tumultuous': 1,\n", " 'tune': 2,\n", " 'turban': 1,\n", " 'turbid': 1,\n", " 'turbulent': 2,\n", " 'turbulently': 1,\n", " 'turkey': 1,\n", " 'turn': 31,\n", " 'turned': 119,\n", " 'turnham': 1,\n", " 'turning': 27,\n", " 'turnkey': 9,\n", " \"turnkey's\": 1,\n", " 'turnkeys': 2,\n", " 'turns': 5,\n", " 'tut': 3,\n", " 'tutor': 2,\n", " 'tutor-fellow': 1,\n", " 'twelve': 14,\n", " 'twentieth': 1,\n", " 'twenty': 20,\n", " 'twenty-four': 3,\n", " 'twenty-one': 1,\n", " 'twenty-second': 1,\n", " 'twenty-six': 1,\n", " 'twenty-three': 2,\n", " 'twenty-two': 2,\n", " 'twice': 16,\n", " 'twilight': 4,\n", " 'twin': 1,\n", " 'twin-brother': 1,\n", " 'twined': 2,\n", " 'twinkle': 1,\n", " 'twinkled': 1,\n", " 'twinkling': 2,\n", " 'twist': 1,\n", " 'twisted': 1,\n", " 'twitching': 1,\n", " 'two': 210,\n", " 'two-thirds': 1,\n", " 'twopence': 1,\n", " 'twos': 2,\n", " 'tyburn': 1,\n", " 'tying': 1,\n", " 'types': 2,\n", " 'typified': 1,\n", " 'tyranny': 1,\n", " 'tyrant': 1,\n", " 'tyrants': 3,\n", " 'u.s': 3,\n", " 'ubiquitous': 2,\n", " 'ud': 1,\n", " 'ugh': 1,\n", " 'uglier': 1,\n", " 'ugliness': 1,\n", " 'ugly': 3,\n", " 'ultimate': 1,\n", " 'un': 2,\n", " \"un's\": 1,\n", " 'unable': 5,\n", " 'unaccountable': 1,\n", " 'unaccountably': 3,\n", " 'unaccused': 1,\n", " 'unaccustomed': 1,\n", " 'unacquainted': 1,\n", " 'unaltered': 1,\n", " 'unanimously': 1,\n", " 'unattainable': 1,\n", " 'unattended': 1,\n", " 'unavailing': 1,\n", " 'unavenged': 1,\n", " 'unbarred': 1,\n", " 'unbearable': 2,\n", " 'unbecoming': 1,\n", " 'unbeliever': 1,\n", " 'unbelieving': 2,\n", " 'unbent': 1,\n", " 'unbidden': 1,\n", " 'unblushing': 1,\n", " 'unborn': 2,\n", " 'unbrutalised': 1,\n", " 'unbuilt': 1,\n", " 'uncarpeted': 1,\n", " 'unceasingly': 1,\n", " 'uncertain': 5,\n", " 'uncertainties': 1,\n", " 'uncertainty': 3,\n", " 'unchangeable': 2,\n", " 'unchanged': 2,\n", " 'uncle': 13,\n", " \"uncle's\": 1,\n", " 'uncleansed': 1,\n", " 'unclosed': 1,\n", " 'uncomfortable': 2,\n", " 'uncomfortably': 1,\n", " 'uncommon': 1,\n", " 'uncomplaining': 1,\n", " 'uncompromising': 1,\n", " 'unconnected': 2,\n", " 'unconscious': 10,\n", " 'unconsciously': 1,\n", " 'unconsciousness': 1,\n", " 'uncontrollable': 1,\n", " 'uncorrupted': 1,\n", " 'under': 145,\n", " 'under-jaw': 1,\n", " 'undergo': 1,\n", " 'undergone': 2,\n", " 'undergraduates': 1,\n", " 'underground': 3,\n", " 'underneath': 1,\n", " 'understand': 28,\n", " 'understanding': 5,\n", " 'understood': 8,\n", " 'undertake': 5,\n", " 'undertakers': 3,\n", " 'undertaking': 1,\n", " 'undertook': 1,\n", " 'underwent': 1,\n", " 'undeserved': 1,\n", " 'undeserving': 1,\n", " 'undirected': 1,\n", " 'undisclosed': 1,\n", " 'undiscovered': 1,\n", " 'undisguised': 1,\n", " 'undistinguishable': 1,\n", " 'undisturbed': 2,\n", " 'undoubted': 1,\n", " 'undoubtedly': 3,\n", " 'undressing': 1,\n", " 'undug--if': 1,\n", " 'undutiful': 1,\n", " 'unearthly': 2,\n", " 'uneasily': 3,\n", " 'uneasiness': 9,\n", " 'uneasy': 5,\n", " 'unencumbered': 1,\n", " 'unenforceability': 1,\n", " 'unenlightened': 1,\n", " 'unequal': 1,\n", " 'uneven': 2,\n", " 'unexpected': 1,\n", " 'unexpectedly': 3,\n", " 'unexplained': 1,\n", " 'unfailing': 1,\n", " 'unfair': 1,\n", " 'unfashionable': 1,\n", " 'unfastened': 1,\n", " 'unfathomable': 1,\n", " 'unfathomed': 1,\n", " 'unfavourable': 1,\n", " 'unfeeling': 2,\n", " 'unfinished': 3,\n", " 'unfit': 2,\n", " 'unforeseen': 1,\n", " 'unformed': 1,\n", " 'unfortunate': 8,\n", " 'unfortunately': 1,\n", " 'unfounded': 1,\n", " 'unfrequently': 2,\n", " 'unfruitful': 1,\n", " 'ungenerous': 1,\n", " 'ungently': 1,\n", " 'unglazed': 2,\n", " 'ungrateful': 1,\n", " 'unhandsomely': 1,\n", " 'unhappily': 4,\n", " 'unhappy': 11,\n", " 'unhardened': 1,\n", " 'unhealthy': 1,\n", " 'unheard': 1,\n", " 'unheard--both': 1,\n", " 'unheeded': 1,\n", " 'uniform': 3,\n", " 'uniformity': 1,\n", " 'uniformly': 1,\n", " 'unimagined': 1,\n", " 'unimpaired': 1,\n", " 'unimpeachable': 3,\n", " 'unintelligible': 3,\n", " 'uninvited': 1,\n", " 'unison': 2,\n", " 'united': 16,\n", " 'units': 1,\n", " 'universal': 7,\n", " 'universe': 1,\n", " 'unjust': 2,\n", " 'unjustly': 1,\n", " 'unkempt': 1,\n", " 'unkind': 1,\n", " 'unknown': 8,\n", " 'unlawful': 2,\n", " 'unless': 8,\n", " 'unlike': 4,\n", " 'unlikely': 1,\n", " 'unlink': 1,\n", " 'unluckily': 1,\n", " 'unlucky': 1,\n", " 'unmixed': 1,\n", " 'unmoved': 1,\n", " \"unnat'ral\": 2,\n", " 'unnatural': 2,\n", " 'unnaturally': 1,\n", " 'unnecessarily': 1,\n", " 'unnecessary': 1,\n", " 'unopened': 1,\n", " 'unornamental': 1,\n", " 'unpopular': 1,\n", " 'unpopularity': 1,\n", " 'unprecedented': 1,\n", " 'unprepared': 2,\n", " 'unpromising': 1,\n", " 'unprosperous': 1,\n", " 'unprotected': 1,\n", " 'unquestionably': 3,\n", " 'unreal': 3,\n", " 'unreality': 2,\n", " 'unreasonable': 2,\n", " 'unrelenting': 1,\n", " 'unreserved': 1,\n", " 'unreservedly': 1,\n", " 'unrobed': 1,\n", " 'unruly': 1,\n", " 'unsafe': 1,\n", " 'unscrupulous': 1,\n", " 'unseen': 6,\n", " 'unselfish': 2,\n", " 'unselfishness': 1,\n", " 'unsettled': 1,\n", " 'unshaded': 1,\n", " 'unshaken': 1,\n", " 'unshaped': 1,\n", " 'unsolicited': 1,\n", " 'unspeakable': 2,\n", " 'unsteadily': 1,\n", " 'unsteady': 3,\n", " 'unsubstantial': 1,\n", " 'unsuccessful': 1,\n", " 'unsuitable': 1,\n", " 'unsuspicious': 1,\n", " 'unswallowed': 1,\n", " 'untidy': 1,\n", " 'until': 96,\n", " 'untimely': 2,\n", " 'untiring': 1,\n", " 'unto': 1,\n", " 'untold': 1,\n", " 'untouched': 1,\n", " 'untracked': 1,\n", " 'untrimmed': 1,\n", " 'untroubled': 1,\n", " 'unusual': 6,\n", " 'unusually': 4,\n", " 'unwholesome': 3,\n", " 'unwholesomely': 1,\n", " 'unwilling': 2,\n", " 'unwillingly--a': 1,\n", " 'unwillingness': 3,\n", " 'unwonted': 1,\n", " 'unworthily': 1,\n", " 'unyoked': 1,\n", " 'up': 309,\n", " 'up--as': 1,\n", " 'up-hill': 1,\n", " 'up-stairs': 6,\n", " 'up-stairs--and': 1,\n", " 'updated': 1,\n", " 'upheaving': 1,\n", " 'uphold': 2,\n", " 'upholsterers': 1,\n", " 'uplifted': 1,\n", " 'upon': 291,\n", " 'upper': 4,\n", " 'uppermost': 1,\n", " 'upright': 3,\n", " 'uproar': 3,\n", " 'upshot': 1,\n", " 'upstairs': 2,\n", " 'upturning': 1,\n", " 'upward': 9,\n", " 'upwards': 1,\n", " 'urchin': 2,\n", " 'urge': 2,\n", " 'urged': 5,\n", " 'urgent': 2,\n", " 'urging': 1,\n", " 'urns': 1,\n", " 'us': 107,\n", " 'us--i': 1,\n", " 'us--much': 1,\n", " 'usage': 3,\n", " 'use': 27,\n", " 'use--to': 1,\n", " 'used': 27,\n", " 'useful': 10,\n", " 'usefulness': 1,\n", " 'useless': 11,\n", " 'user': 3,\n", " 'using': 8,\n", " 'usual': 48,\n", " 'usually': 8,\n", " 'ut': 1,\n", " 'utmost': 9,\n", " 'utter': 3,\n", " 'utterance': 2,\n", " 'uttered': 8,\n", " 'utterer': 1,\n", " 'uttering': 1,\n", " 'utterly': 3,\n", " 'v': 3,\n", " 'vacant': 5,\n", " 'vacantly': 2,\n", " 'vacation': 4,\n", " \"vacation's\": 1,\n", " 'vagabond': 1,\n", " 'vagrancy': 1,\n", " 'vague': 4,\n", " 'vaguely': 2,\n", " 'vain': 17,\n", " 'vain;--then': 1,\n", " 'vainest': 1,\n", " 'vainly': 1,\n", " 'valet': 7,\n", " 'valise': 2,\n", " 'valuable': 3,\n", " 'value': 3,\n", " 'valued': 1,\n", " 'vanilla': 2,\n", " 'vanished': 4,\n", " 'vanities': 1,\n", " 'vanity': 1,\n", " 'vapour': 3,\n", " 'vapouring': 2,\n", " 'vapours': 1,\n", " 'variation': 1,\n", " 'varieties': 2,\n", " 'variety': 5,\n", " 'various': 14,\n", " 'variously': 1,\n", " 'varying': 2,\n", " 'vassal': 1,\n", " 'vast': 4,\n", " 'vaulted': 3,\n", " 'vaults': 1,\n", " 'vaunted': 1,\n", " 'vaunting': 1,\n", " 'vauxhall': 1,\n", " 'vegetable': 2,\n", " 'vegetating': 1,\n", " 'vehemence': 1,\n", " 'vehement': 1,\n", " 'vehicle': 4,\n", " 'vehicles': 2,\n", " 'veil': 2,\n", " 'veinous': 1,\n", " 'veins': 1,\n", " 'vendor': 3,\n", " 'venerable': 1,\n", " 'vengeance': 43,\n", " 'ventured': 2,\n", " 'verbal': 1,\n", " 'verdict': 2,\n", " 'verging': 1,\n", " 'vermin': 2,\n", " 'vermin-haunted': 1,\n", " 'versailles': 1,\n", " 'version': 2,\n", " 'very': 217,\n", " 'vessel': 2,\n", " 'vestige': 3,\n", " 'vexation': 1,\n", " 'vexed': 3,\n", " 'vi': 3,\n", " 'viands': 1,\n", " 'vice': 1,\n", " 'vices': 1,\n", " 'vicious': 1,\n", " 'victim': 5,\n", " 'victims': 5,\n", " 'victorious': 1,\n", " 'victory': 1,\n", " 'vied': 1,\n", " 'view': 7,\n", " 'view--it': 1,\n", " 'viewed': 2,\n", " 'viewing': 1,\n", " 'views': 1,\n", " 'vigilance': 1,\n", " 'vigilant': 1,\n", " 'vigorous': 2,\n", " 'vigour': 1,\n", " 'vigourous': 1,\n", " 'vii': 2,\n", " 'viii': 2,\n", " 'vile': 4,\n", " 'vilest': 1,\n", " 'village': 50,\n", " 'village--had': 1,\n", " 'villagers': 1,\n", " 'villages': 1,\n", " 'villain': 2,\n", " 'villainy': 1,\n", " 'ville': 4,\n", " 'vindicating': 1,\n", " 'vinegar': 2,\n", " 'vineyards': 1,\n", " 'vinous': 1,\n", " 'violates': 1,\n", " 'violence': 1,\n", " 'violent': 6,\n", " 'violently': 4,\n", " 'virtually': 1,\n", " 'virtue': 6,\n", " 'virtues': 2,\n", " 'virtuous': 3,\n", " 'virus': 1,\n", " 'visage': 5,\n", " 'visages': 1,\n", " 'visible': 8,\n", " 'visibly': 2,\n", " 'vision': 3,\n", " 'visit': 4,\n", " 'visitation': 1,\n", " 'visited': 1,\n", " 'visitor': 8,\n", " 'visitors': 2,\n", " 'vista': 1,\n", " 'vivacious': 1,\n", " 'vivacity': 1,\n", " 'vivid': 3,\n", " 'vividly': 2,\n", " 'vociferating': 1,\n", " 'vogue': 2,\n", " 'voice': 83,\n", " 'voice--i': 1,\n", " 'voices': 13,\n", " 'voices--among': 1,\n", " 'voices--voices': 1,\n", " 'void': 1,\n", " 'volleys': 1,\n", " 'voluble': 2,\n", " 'voluntarily': 3,\n", " 'voluntary': 1,\n", " 'volunteer': 1,\n", " 'volunteers': 7,\n", " 'voluptuous': 1,\n", " 'vortex': 1,\n", " 'vote': 2,\n", " 'voted': 2,\n", " 'votes': 1,\n", " 'vow': 1,\n", " 'voyage': 2,\n", " 'vulgar': 3,\n", " 'wager': 1,\n", " 'wages': 1,\n", " 'waggonloads': 1,\n", " 'waifs': 1,\n", " 'wail': 1,\n", " 'wailing': 2,\n", " 'waist': 8,\n", " 'waist-coat': 1,\n", " 'waistband': 3,\n", " 'waistcoat': 3,\n", " 'wait': 14,\n", " 'waited': 12,\n", " 'waiter': 3,\n", " 'waiters': 1,\n", " 'waiting': 17,\n", " 'wake': 5,\n", " 'wakened': 1,\n", " 'waking': 2,\n", " 'wales': 1,\n", " 'walk': 10,\n", " 'walked': 43,\n", " 'walking': 22,\n", " 'walking-shoe': 1,\n", " 'walks': 1,\n", " 'wall': 43,\n", " 'wall--there': 1,\n", " 'walls': 18,\n", " 'walnut-shell': 1,\n", " 'walton': 1,\n", " 'wander': 1,\n", " 'wandered': 6,\n", " 'wanderer': 1,\n", " 'wandering': 8,\n", " 'waning': 1,\n", " 'want': 36,\n", " 'wanted': 16,\n", " 'wanting': 3,\n", " 'wantonly': 1,\n", " 'wants': 2,\n", " 'war': 1,\n", " 'warbled': 1,\n", " 'ward': 3,\n", " 'warehouses': 1,\n", " 'warm': 6,\n", " 'warmed': 2,\n", " 'warmer': 1,\n", " 'warming': 1,\n", " 'warmly': 3,\n", " 'warmth': 2,\n", " \"warn't\": 3,\n", " 'warned': 2,\n", " 'warning': 5,\n", " 'warnings': 1,\n", " 'warped': 2,\n", " 'warranties': 3,\n", " 'warranty': 2,\n", " 'wars': 1,\n", " 'warwickshire': 1,\n", " 'wary': 2,\n", " 'was': 1764,\n", " 'was--and': 1,\n", " 'was--before': 1,\n", " 'was--or': 1,\n", " 'was--quite': 1,\n", " 'was--without': 1,\n", " 'washed': 2,\n", " 'washing': 1,\n", " 'washington': 4,\n", " \"wasn't\": 2,\n", " 'waste': 6,\n", " 'wasted': 9,\n", " 'watch': 13,\n", " 'watch-fire': 1,\n", " 'watched': 13,\n", " 'watches': 5,\n", " 'watchful': 6,\n", " 'watchfully': 1,\n", " 'watchfulness': 4,\n", " 'watching': 12,\n", " 'watchman': 1,\n", " 'watchmen': 2,\n", " 'watchtower': 1,\n", " 'water': 37,\n", " 'water-colours': 1,\n", " 'waterfalls': 1,\n", " 'waters': 4,\n", " 'waterspout': 1,\n", " 'watery': 2,\n", " 'wave': 9,\n", " 'waved': 5,\n", " 'waves': 5,\n", " 'wax': 1,\n", " 'way': 180,\n", " 'way--\"though': 1,\n", " 'way--and': 1,\n", " 'way--charles': 1,\n", " 'way--have': 1,\n", " 'way--tend': 1,\n", " 'way--the': 1,\n", " 'way--to': 1,\n", " 'wayfarer': 1,\n", " 'waylaid': 1,\n", " 'ways': 18,\n", " 'wayside': 1,\n", " 'we': 177,\n", " 'we--since': 1,\n", " 'weak': 16,\n", " 'weaken': 1,\n", " 'weakened': 1,\n", " 'weaker': 1,\n", " 'weakest': 1,\n", " 'weakness': 10,\n", " 'weaknesses': 1,\n", " 'weapon': 7,\n", " 'weapons': 7,\n", " 'wear': 9,\n", " 'wearer': 2,\n", " \"wearer's\": 2,\n", " 'wearied': 1,\n", " 'wearing': 1,\n", " 'weary': 8,\n", " 'weary--worn': 1,\n", " 'weather': 8,\n", " 'weather-beaten': 1,\n", " 'weathers': 3,\n", " 'weaving': 1,\n", " 'web': 6,\n", " 'wednesday': 1,\n", " 'weeds': 1,\n", " 'week': 14,\n", " 'weekly': 1,\n", " 'weeks': 6,\n", " 'weep': 14,\n", " 'weeping': 6,\n", " 'weigh': 1,\n", " 'weighs': 1,\n", " 'weight': 8,\n", " 'weird': 2,\n", " 'welcome': 3,\n", " 'well': 167,\n", " 'well--thousands': 1,\n", " 'well-directed': 1,\n", " 'well-grown': 1,\n", " 'well-known': 2,\n", " 'well-looking': 1,\n", " 'well-made': 1,\n", " 'well-remembered': 1,\n", " 'well-satisfied': 1,\n", " 'well-worn': 1,\n", " 'wells': 1,\n", " 'wending': 1,\n", " 'went': 109,\n", " 'wenturs': 1,\n", " 'wept': 6,\n", " 'were': 657,\n", " 'were--charles': 1,\n", " \"weren't\": 1,\n", " 'wery': 1,\n", " 'west': 5,\n", " 'westminster': 2,\n", " 'westward': 2,\n", " 'wet': 11,\n", " 'wet-towelling': 1,\n", " 'wetted': 1,\n", " 'what': 371,\n", " \"what's\": 9,\n", " 'whatever': 16,\n", " 'whatsoever': 2,\n", " 'wheat': 1,\n", " 'wheel': 2,\n", " 'wheel--the': 1,\n", " 'wheeled': 1,\n", " 'wheels': 10,\n", " 'when': 434,\n", " 'whence': 2,\n", " 'whenever': 6,\n", " 'where': 158,\n", " 'whereas': 4,\n", " 'whereat': 1,\n", " 'wherein': 3,\n", " 'whereof': 1,\n", " 'whereunto': 1,\n", " 'whereupon': 2,\n", " 'wherever': 1,\n", " 'whet': 1,\n", " 'whether': 43,\n", " 'whew': 1,\n", " 'which': 409,\n", " 'whiffed': 1,\n", " 'while': 97,\n", " 'whiles': 2,\n", " 'whimpering': 1,\n", " 'whims': 1,\n", " 'whip': 5,\n", " 'whip-corrected': 1,\n", " 'whipping-post': 2,\n", " 'whips': 3,\n", " 'whirled': 4,\n", " 'whirling': 4,\n", " 'whirlings': 1,\n", " 'whirlpool': 1,\n", " 'whirrs': 1,\n", " 'whisper': 17,\n", " 'whispered': 14,\n", " 'whispering': 6,\n", " 'whispers': 4,\n", " 'whistled': 1,\n", " 'whistling': 1,\n", " 'white': 28,\n", " 'white-haired': 4,\n", " 'white-silk': 1,\n", " 'whitefriars': 1,\n", " 'whiteness': 2,\n", " 'whiter': 1,\n", " 'whitewashed': 1,\n", " 'who': 375,\n", " \"who's\": 3,\n", " 'whole': 37,\n", " 'wholesale': 1,\n", " 'wholesome': 2,\n", " 'wholly': 4,\n", " 'whom': 70,\n", " 'whoop': 1,\n", " 'whose': 45,\n", " 'whosoever': 4,\n", " 'why': 70,\n", " 'wicked': 9,\n", " 'wickedly': 1,\n", " 'wickedness': 1,\n", " 'wicket': 3,\n", " 'wicks': 1,\n", " 'wide': 13,\n", " 'widely': 1,\n", " 'wider': 2,\n", " 'widest': 2,\n", " 'widow': 3,\n", " 'widowhood': 1,\n", " 'width': 1,\n", " 'wielders': 1,\n", " 'wife': 93,\n", " 'wife!--we': 1,\n", " \"wife's\": 3,\n", " 'wife--o': 1,\n", " 'wife--so': 1,\n", " 'wig': 15,\n", " 'wig--lorry--of': 1,\n", " 'wigged': 6,\n", " 'wigs': 2,\n", " 'wild': 25,\n", " 'wild-beast': 1,\n", " 'wild-looking': 1,\n", " 'wilderness': 4,\n", " 'wildest': 4,\n", " 'wildly': 5,\n", " 'wildness': 2,\n", " 'wilfully': 1,\n", " 'will': 295,\n", " 'will--he': 1,\n", " 'willing': 4,\n", " 'willingly': 6,\n", " 'wills': 1,\n", " 'wilt': 1,\n", " 'win': 1,\n", " 'wind': 17,\n", " 'winding': 8,\n", " 'winding-sheet': 1,\n", " 'windmill': 1,\n", " 'window': 49,\n", " 'window-breaking': 1,\n", " 'window-ledges': 1,\n", " 'windows': 28,\n", " 'winds': 7,\n", " 'windy': 3,\n", " 'wine': 63,\n", " 'wine--but': 1,\n", " 'wine-lees--blood': 1,\n", " 'wine-rotted': 1,\n", " 'wine-shop': 51,\n", " 'wine-shops': 2,\n", " 'wine-vendor': 1,\n", " 'wing': 1,\n", " 'wings': 4,\n", " 'wink': 1,\n", " 'winking': 3,\n", " 'winning': 3,\n", " 'winnowing': 1,\n", " 'winter': 11,\n", " 'wintry': 2,\n", " 'wipe': 2,\n", " 'wiped': 2,\n", " 'wiping': 1,\n", " 'wiry': 1,\n", " 'wisdom': 2,\n", " 'wise': 5,\n", " 'wisely': 1,\n", " 'wiser': 2,\n", " 'wisest': 1,\n", " 'wish': 26,\n", " 'wished': 5,\n", " 'wishes': 8,\n", " 'wishing': 2,\n", " 'wisited': 1,\n", " 'wistfully': 1,\n", " 'wit': 2,\n", " 'wital': 1,\n", " 'with': 1351,\n", " 'with--had': 1,\n", " 'withal': 1,\n", " 'withdrawing': 1,\n", " 'withdrawn': 1,\n", " 'withdraws': 1,\n", " 'withdrew': 6,\n", " 'wither': 1,\n", " 'withered': 2,\n", " 'withheld--to': 1,\n", " 'within': 68,\n", " 'without': 112,\n", " 'witness': 25,\n", " 'witness-box': 1,\n", " 'witnessed': 1,\n", " 'witnesses': 8,\n", " 'wittles': 3,\n", " 'wives': 3,\n", " 'wo-ho': 2,\n", " 'woe': 3,\n", " 'wolf-procession': 1,\n", " 'wolfishly': 1,\n", " 'woman': 66,\n", " \"woman's\": 5,\n", " 'woman--had': 1,\n", " 'womanly': 1,\n", " 'women': 52,\n", " \"women's\": 3,\n", " 'women--who': 1,\n", " 'won': 3,\n", " \"won't\": 11,\n", " 'wonder': 14,\n", " 'wonder!--much': 1,\n", " 'wondered': 1,\n", " 'wonderful': 11,\n", " 'wondering': 4,\n", " 'wonders': 2,\n", " 'wood': 13,\n", " 'wood-ashes': 2,\n", " 'wood-sawyer': 12,\n", " \"wood-sawyer's\": 1,\n", " 'wooden': 9,\n", " 'woodman': 3,\n", " 'woods': 3,\n", " 'woollen': 3,\n", " 'word': 69,\n", " 'words': 77,\n", " 'wore': 20,\n", " 'work': 128,\n", " 'work-table': 1,\n", " 'work-worn': 1,\n", " 'worked': 21,\n", " 'workers': 1,\n", " 'working': 7,\n", " 'workings': 3,\n", " 'workman': 3,\n", " 'workmen': 3,\n", " 'works': 34,\n", " 'workshop': 1,\n", " 'world': 41,\n", " 'world--the': 2,\n", " 'world--which': 1,\n", " 'worldly': 6,\n", " 'worm-eaten': 1,\n", " 'wormy': 1,\n", " 'worn': 15,\n", " 'worn-out': 1,\n", " 'worried': 2,\n", " 'worse': 19,\n", " 'worse--and': 1,\n", " 'worshippers': 2,\n", " 'worst': 18,\n", " 'worth': 22,\n", " 'worthier': 1,\n", " 'worthless': 2,\n", " 'worthlessness': 1,\n", " 'worthy': 10,\n", " 'wos': 10,\n", " 'wot': 18,\n", " \"wot's\": 1,\n", " 'would': 341,\n", " \"wouldn't\": 13,\n", " 'wouldst': 1,\n", " 'wound': 9,\n", " 'wounded': 6,\n", " 'wounds': 2,\n", " 'woven': 1,\n", " 'wows': 1,\n", " 'wrap': 1,\n", " 'wrapped': 6,\n", " 'wrapper': 1,\n", " 'wrappers': 2,\n", " 'wrappings': 1,\n", " 'wrath': 1,\n", " 'wrath--the': 1,\n", " 'wrathfully': 2,\n", " 'wreaking': 1,\n", " 'wreaths': 2,\n", " 'wreck': 2,\n", " 'wrecks': 2,\n", " 'wrench': 1,\n", " 'wrested': 1,\n", " 'wretch': 4,\n", " 'wretched': 13,\n", " 'wretchedest': 1,\n", " 'wretchedly': 1,\n", " 'wretches': 1,\n", " 'wring': 1,\n", " 'wringing': 2,\n", " 'wrist': 4,\n", " 'wrists': 2,\n", " 'write': 22,\n", " 'write--and': 1,\n", " 'writer': 1,\n", " \"writer's\": 1,\n", " 'writing': 14,\n", " 'written': 21,\n", " 'wrong': 20,\n", " 'wronged': 1,\n", " 'wrongfully': 1,\n", " 'wrongs': 2,\n", " 'wrote': 13,\n", " 'wrought': 2,\n", " 'wrung': 5,\n", " 'www.gutenberg.org': 2,\n", " 'x': 2,\n", " 'xi': 2,\n", " 'xii': 2,\n", " 'xiii': 2,\n", " 'xiv': 2,\n", " 'xix': 1,\n", " 'xv': 2,\n", " 'xvi': 1,\n", " 'xvii': 1,\n", " 'xviii': 1,\n", " 'xx': 1,\n", " 'xxi': 1,\n", " 'xxii': 1,\n", " 'xxiii': 1,\n", " 'xxiv': 1,\n", " 'yah': 3,\n", " 'yaha': 4,\n", " 'yard': 6,\n", " 'yards': 4,\n", " 'yawned': 1,\n", " 'ye': 2,\n", " 'ye-es': 1,\n", " 'year': 36,\n", " 'yearned': 1,\n", " 'yearning': 1,\n", " 'years': 86,\n", " 'years--a': 1,\n", " 'years--because': 1,\n", " 'yellow': 5,\n", " 'yells': 1,\n", " 'yes': 117,\n", " 'yes--i': 2,\n", " 'yesterday': 18,\n", " 'yet': 108,\n", " 'yield': 3,\n", " 'yielded': 8,\n", " 'yielded:--not': 1,\n", " 'yielding': 3,\n", " 'yieldings': 1,\n", " 'yo': 1,\n", " 'yoked': 1,\n", " 'yonder': 5,\n", " 'yore': 1,\n", " 'you': 1455,\n", " 'you!--under': 1,\n", " \"you'd\": 3,\n", " \"you'll\": 7,\n", " \"you're\": 10,\n", " \"you've\": 7,\n", " 'you--_are': 1,\n", " 'you--and': 1,\n", " 'you--does': 1,\n", " 'you--forgive': 1,\n", " 'you--ties': 1,\n", " 'you:--does': 1,\n", " 'young': 127,\n", " 'younger': 9,\n", " 'youngest': 1,\n", " 'your': 345,\n", " \"your'n\": 1,\n", " 'yourn': 1,\n", " 'yours': 16,\n", " 'yourself': 40,\n", " 'yourself--flung': 1,\n", " 'yourself--that': 1,\n", " 'yourselves': 3,\n", " 'youth': 9,\n", " 'youthful': 3,\n", " 'youthfulness': 1,\n", " 'youths': 1,\n", " 'zealous': 2}" ] } ], "prompt_number": 8 }, { "cell_type": "code", "collapsed": false, "input": [ "timeit pipe('data/tale-of-two-cities.txt', open, drop(112), map(str.split), concat, map(stem), frequencies)" ], "language": "python", "metadata": {}, "outputs": [ { "output_type": "stream", "stream": "stdout", "text": [ "10 loops, best of 3: 141 ms per loop\n" ] } ], "prompt_number": 9 }, { "cell_type": "code", "collapsed": false, "input": [ "timeit with open('data/tale-of-two-cities.txt') as f: wordcount(f)" ], "language": "python", "metadata": {}, "outputs": [ { "output_type": "stream", "stream": "stdout", "text": [ "10 loops, best of 3: 139 ms per loop\n" ] } ], "prompt_number": 10 }, { "cell_type": "code", "collapsed": false, "input": [], "language": "python", "metadata": {}, "outputs": [] } ], "metadata": {} } ] }