From bb9f531b398aa8befb9e09a034d1faff6f381bdd Mon Sep 17 00:00:00 2001 From: Jakub Kaczmarek Date: Wed, 28 Jun 2023 10:19:19 +0200 Subject: [PATCH] Flan t-5 reults --- finetune_roberta.ipynb | 158 - flan-t5.ipynb | 257 + inference.ipynb | 166 - prepare_dataset.py | 36 - test-A/out.tsv | 14828 +++++++++++++++++++-------------------- 5 files changed, 7671 insertions(+), 7774 deletions(-) delete mode 100644 finetune_roberta.ipynb create mode 100644 flan-t5.ipynb delete mode 100644 inference.ipynb delete mode 100644 prepare_dataset.py diff --git a/finetune_roberta.ipynb b/finetune_roberta.ipynb deleted file mode 100644 index dd856a3..0000000 --- a/finetune_roberta.ipynb +++ /dev/null @@ -1,158 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [], - "source": [ - "from transformers import AutoTokenizer\n", - "from datasets import load_dataset" - ] - }, - { - "attachments": {}, - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Dataset prep" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [], - "source": [ - "model_checkpoint = \"distilroberta-base\"" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [], - "source": [ - "tokenizer = AutoTokenizer.from_pretrained(model_checkpoint, use_fast=True)" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [], - "source": [ - "def tokenize_function(examples):\n", - " return tokenizer(examples[\"text\"], max_length=512, truncation=True)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "tokenized_datasets = datasets.map(tokenize_function, batched=True, num_proc=4, remove_columns=[\"text\"])" - ] - }, - { - "attachments": {}, - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Model training" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "from transformers import AutoModelForMaskedLM\n", - "from transformers import Trainer, TrainingArguments" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [ - { - "ename": "NameError", - "evalue": "name 'AutoModelForMaskedLM' is not defined", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", - "Cell \u001b[0;32mIn[11], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m model \u001b[39m=\u001b[39m AutoModelForMaskedLM\u001b[39m.\u001b[39mfrom_pretrained(model_checkpoint)\n", - "\u001b[0;31mNameError\u001b[0m: name 'AutoModelForMaskedLM' is not defined" - ] - } - ], - "source": [ - "model = AutoModelForMaskedLM.from_pretrained(model_checkpoint)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "model_name = model_checkpoint.split(\"/\")[-1]\n", - "training_args = TrainingArguments(\n", - " f\"{model_name}-finetuned-america\",\n", - " evaluation_strategy = \"epoch\",\n", - " learning_rate=2e-5,\n", - " weight_decay=0.01,\n", - ")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "trainer = Trainer(\n", - " model=model,\n", - " args=training_args,\n", - " train_dataset=dataset[:len(dataset)*0.8],\n", - " eval_dataset=dataset[len(dataset)*0.8:]\n", - ")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "trainer.train()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "base", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.9.12" - }, - "orig_nbformat": 4 - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/flan-t5.ipynb b/flan-t5.ipynb new file mode 100644 index 0000000..78537fa --- /dev/null +++ b/flan-t5.ipynb @@ -0,0 +1,257 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/kubakaczmarek/anaconda3/lib/python3.10/site-packages/tqdm/auto.py:22: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html\n", + " from .autonotebook import tqdm as notebook_tqdm\n" + ] + } + ], + "source": [ + "from transformers import T5Tokenizer, T5Config, T5ForConditionalGeneration\n", + "import torch\n", + "import lzma\n", + "from tqdm import tqdm" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "DEVICE = torch.device(\"mps\") if torch.backends.mps.is_available() else torch.device(\"cpu\")" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "T5_PATH = 't5-base'" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/kubakaczmarek/anaconda3/lib/python3.10/site-packages/transformers/models/t5/tokenization_t5.py:164: FutureWarning: This tokenizer was incorrectly instantiated with a model max length of 512 which will be corrected in Transformers v5.\n", + "For now, this behavior is kept to avoid breaking backwards compatibility when padding/encoding with `truncation is True`.\n", + "- Be aware that you SHOULD NOT rely on t5-base automatically truncating your input to 512 when padding/encoding.\n", + "- If you want to encode/pad to sequences longer than 512 you can either instantiate this tokenizer with `model_max_length` or pass `max_length` when encoding/padding.\n", + "- To avoid this warning, please instantiate this tokenizer with `model_max_length` set to your preferred value.\n", + " warnings.warn(\n" + ] + } + ], + "source": [ + "t5_tokenizer = T5Tokenizer.from_pretrained(T5_PATH)\n", + "t5_config = T5Config.from_pretrained(T5_PATH)\n", + "t5_mlm = T5ForConditionalGeneration.from_pretrained(T5_PATH, config=t5_config).to(DEVICE)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "def preprocess_data(X):\n", + " parsed_data = []\n", + "\n", + " for line in X:\n", + " left = line.strip().split('\\t')[6].replace('\\\\n', ' ').split(' ')\n", + " right = line.strip().split('\\t')[7].replace('\\\\n', ' ').split(' ')\n", + "\n", + " if len(left) + len(right) > 330:\n", + " text = f\"{' '.join(left[-100:])} {' '.join(right[:100])})\"\n", + " else:\n", + " text = f\"{' '.join(left)} {' '.join(right)})\"\n", + "\n", + " parsed_data.append(text)\n", + "\n", + " return parsed_data" + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "metadata": {}, + "outputs": [], + "source": [ + "def decode(output):\n", + " _txt = t5_tokenizer.decode(output[2:], skip_special_tokens=False, clean_up_tokenization_spaces=False)\n", + " end = _txt.index('')\n", + " \n", + " return _txt[:end]\n", + "\n", + "def parse_output(outputs):\n", + " parsed = set([decode(output) for output in outputs])\n", + " res = ''\n", + " sum = 0\n", + " for i, token in enumerate(parsed):\n", + " res += f\"{token}:{1 / (i + 4)} \"\n", + " sum += 1 / (i + 4)\n", + "\n", + " res += f\":{1-sum}\"\n", + " \n", + " return res" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "with lzma.open('test-A/in.tsv.xz', 'rt') as f:\n", + " X = f.readlines()" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "X = preprocess_data(X)" + ] + }, + { + "cell_type": "code", + "execution_count": 55, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Token indices sequence length is longer than the specified maximum sequence length for this model (556 > 512). Running this sequence through the model will result in indexing errors\n" + ] + } + ], + "source": [ + "with open('test-A/out.tsv', mode='wt', encoding='utf-8') as f:\n", + " for line in tqdm(X):\n", + " try:\n", + " encoded = t5_tokenizer.encode_plus(line, add_special_tokens=True, return_tensors='pt')\n", + " input_ids = encoded['input_ids'].to(DEVICE)\n", + " outputs = t5_mlm.generate(input_ids=input_ids, \n", + " num_beams=5, num_return_sequences=5,\n", + " max_length=5)\n", + " f.write(parse_output(outputs) + '\\n')\n", + " except:\n", + " f.write('the:0.9 :0.1\\n')\n" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "metadata": {}, + "outputs": [], + "source": [ + "input_text = \"anywhere un-\\nless its somewhere. Well, I says,\\nI'm glad to hear that, but, accord-\\ning to your figures, I left myself\\nwhere 1 was, which is five miles near-\\ner to myself than I was when we\\nwere where we are now.\\nWe have now reached Slidell.\\nThat's a fine place. The people\\ndown there remind me of bananas-\\nthey come and go in bunches. 811-\\ndell used to be noted for her tough\\npeople. Now she is noted for be,\\ntough steaks. Well, I certainly got\\none there. When the waiter brought\\nit in it was so small I thought. It\\nwas a crack in the plate. I skid,\\nwaiter what else have you got? +He\\nbrought me in two codfish and one\\nsmelt. I said, waiter have you got\\npigs feet? He said no, rheumatism\\nmakes me walk that way. I sald,\\nhow is the pumpkin pie?\tsaid\\nit's all squash. The best I could get\\nin that hotel was a soup sandwich.\\nAfter the table battle the waiter and\\nI signed an armistice. I then went\\nover to the hotel clerk and asked for\\na room. He said with or without a\\nbed? I said, with a bed. He said,\\nI don't think I 'have' a bed long\\nenough for you. I said, well, I'll\\naddtwo feettoitwhenIgetinit.\\nHe gave me a lovely room on the\\ntop floor. It was one of those rooms\\nthat stands on each side. If you\\nhappen to get up in the middle of\\nthe night you want to be sure and\\nget up in the middle of the room.\\nThat night I dreamt I was eating\\nflannel cakes. When I woke up half\\nof the blanket was gone. I must\\nhave got up on the wrong side of the\\nbed, for next morning I had an awful\\nheadache. I told the manager about\\nit. He said, you have rheumatic\\npains. I said, no, I think it is on,\\nof those attic room pains. I nad to\\ngetupat5a.m.inthemorningso\\nthey could use the sheet to set the\\nbreakfast table.\".replace('\\n', ' ').split('\\t')\n", + "input_text = f\"{input_text[0]} {input_text[1]}\"" + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "metadata": {}, + "outputs": [], + "source": [ + "encoded = t5_tokenizer.encode_plus(input_text, add_special_tokens=True, return_tensors='pt')\n", + "input_ids = encoded['input_ids'].to(DEVICE)" + ] + }, + { + "cell_type": "code", + "execution_count": 51, + "metadata": {}, + "outputs": [], + "source": [ + "outputs = t5_mlm.generate(input_ids=input_ids, \n", + " num_beams=10, num_return_sequences=5,\n", + " max_length=5)" + ] + }, + { + "cell_type": "code", + "execution_count": 52, + "metadata": {}, + "outputs": [], + "source": [ + "parsed = parse_output(outputs)" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'+He:0.25 He:0.2 I:0.16666666666666666 :0.3833333333333333'" + ] + }, + "execution_count": 53, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "parsed" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "base", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.9" + }, + "orig_nbformat": 4 + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/inference.ipynb b/inference.ipynb deleted file mode 100644 index b21e229..0000000 --- a/inference.ipynb +++ /dev/null @@ -1,166 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [], - "source": [ - "from transformers import pipeline, AutoTokenizer\n", - "import lzma" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [], - "source": [ - "tokenizer = AutoTokenizer.from_pretrained(\"distilroberta-base\", use_fast=True)\n", - "classifier = pipeline(\"fill-mask\", model=\"distilroberta-base-finetuned-america\", tokenizer=tokenizer)" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [], - "source": [ - "def preprocess_data(X):\n", - " parsed_data = []\n", - "\n", - " for line in X:\n", - " left = line.strip().split('\\t')[6].replace('\\\\n', ' ').split()\n", - " right = line.strip().split('\\t')[7].replace('\\\\n', ' ').split()\n", - " if len(left) + len(right) > 450:\n", - " print('truncating -----------')\n", - " print(f\"before: {' '.join(left)} {' '.join(right)}\")\n", - " text = ' '.join(left[-100:]) + f' ' + ' '.join(right[:100])\n", - " else:\n", - " text = ' '.join(left) + f' ' + ' '.join(right)\n", - "\n", - " parsed_data.append(text)\n", - "\n", - " return parsed_data" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [], - "source": [ - "with open('test-A/in.tsv', mode='rt', encoding='utf-8') as f:\n", - " X = f.readlines()" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": {}, - "outputs": [], - "source": [ - "X = preprocess_data(X)" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [], - "source": [ - "def parse_output(out):\n", - " string = ''\n", - " for i in out:\n", - " string += f\"{i['token_str']}:{i['score']} \"\n", - "\n", - " rest = 1 - sum([i['score'] for i in out])\n", - " string += f\":{rest}\"\n", - "\n", - " return string" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Token indices sequence length is longer than the specified maximum sequence length for this model (576 > 512). Running this sequence through the model will result in indexing errors\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "had no relations nearthetn, they gave him bert. There were many whodid not love a cordial welcome. He was o very hand- him, and more to whom his stern integri- sotuc, fascinating man; but if you looked ty was a reproach, but none had yet utter- long or closely on him there was a fierce ed those falsehoods that aim at dishonor- gleam in his dark eye, a w ithering sneer ing merit. That deeper wound was re- on his lip that caused you distrust his mo- served for the noon of his manhood, when dulated tones ot courtesy and blandness heart and brain and mind, if they be se- of manners. Ilis conversational powers parable, were alike in the full vigor of wore versatile and charming, and he seem- susceptibility. Ilis talents pointed him cd to have traversed tho globe, so thor- out as a fit person to represent his dis- ough and accurate was bis almost univer- trict in the national legislature, and his sal intelligence. It was astonishing w hat integrity was so universally admitted as oceans of wine and punch he could swal- his powers of intellect. He was accord- low without being at all intoxicated. He ingly returned for Congress and took his hunted too, and in short, was accomplish- seat beneath the dome of that capitol that in ail those things in which poor Robert should garner none but the sage and the was sadly deficient and which his uncle patriot, but beneath which the sordid and so highly prized. At first he courted Rob- unprincipled are too often thrust Ilisre- ert’t society, but a change soon came and putation for high, unbending honor and he devoted all his time to the old man. spotless Roman virtue had preceded him Now that he had a companion in his rev- his peers received him with courtesy; but els, the planter gave up to deep drinkfng. it was not long before ho learned to look Robert never came in his sight but to be with contempt, ht took no pains toconceal cursed, and fie often attempted to cane his or qualify, on the occupations to which fine and manly son for supposed or trivial honorable members stooped, or at least offences, and upon Robert’s asking him tacitly permitted. Stern and uncompro- to marry o beautiful, but portionless or- mising he stood aloof from the fetters of phan in the neighborhood, he drove him party and denounced with bitter scorn the from his presence and his roof without gross violations of truth and honor, his any provision being made for his present strong sense detected in many public func- or future maintenance.\n", - "There are two machines upon w.h one is apt to look as having ezhaus the inventive genius of the Yankee tion without having accomplished a «juate results. 'We mean Washing H chines and Churns. More timo n money have been spent In attempt! to |>$rfect substantial Improvements theseHwo machines' than on any otl two in all the long list that haveengi ed the attention of inventors sine* patent office had an existence.' 1 pertinacity with which inventors cc tinue their endeavors to mitigate 1 hardships of these two branches household industry, speaks well fori gallantry of this large and respectal class of citizens, ana entitles them the favorable consideration of all 1 housewives of the land. We have c amined a churn patented by Mr. lis of New York city. whicfa for silnplicl of construction is barely surpassed the old-fashioned Dasher churn itsc It is Biinply a neat, plain box, susper, ed In a framo so as to socuipa pend lam or swinging motion. The dast is a piece of nard board, full of hol< and fastened vertically to a staff, ai when put into the churn .ttie staff is t cured to1 a by a wedge slipped with the hand. The good lady, or wh ever does the churnlug, when .wear* with oth6r labor, can Just Bit down in chair, and by the aid of a stick hook< to the lower edge of the churn box, ci do her churning with very little effoi and get up from what is ordinarily co; sidered a severe task, thoroughly res Mr. Hall claims for his churn l fancy Illusions such as bring butter! five minutes, and. many others of 111 nature, but merely that it is essentiall a labor saving machine; that it does i work as well as any churn ever use that It requires no more labor to opera It than it does to rock a cradle. %The is not a wheel or cog about it, and r auires no more skill to use it than oes to operate the common old fas! ioned dasher churn. We have exau ined the'churn, and are satisfied th» Mr.;Hall claims nothing foe his chur that Is* toot frilly apparent' at a slngl glance. Mr. Hall can be fonnd at U Grant House, where any one wishin to purchase county rights could do a on\n", - "C0N8TAKTIxori.K, Oct. C . .A baiul of brigands yesterday, in spito of the ro- cunt diplomatic action of Germany and France, and of tho efforts of the Porto to suppress brigandage, made a desper¬ ate attempt to wreck and rob a passon- gor train. Tho latter was missing along a desolate portion of tho ilaidar-Pacal- amidt railroad, when tho engineer dis¬ covered that eomuthing was wrong along tho rails ahead of his train. Tho train wan brought to a standstill as soon as possible, and an examination of tho lino showed that the, much dreaded brigands had torn up the rails and so damaged the road bed that had tho train not boon stopped in time an acci¬ dent would have surely happened. Tho brigands, as soon as they saw that their plan had miscarried, instead of attacking tho train, decamped. This is only one of similar outrages upon tho part of Turkish brigands. Mm. lUitller and EugenodoKaymond, sub-managers of a vineyard company, wore captured early in August last by tho brigands of Chief Athanasias, and were 011 payment of 5,000 Turkish pounds, Later in tho samo month several Italian railroad ollicials were carried off by Chief Mohadisn, and others were murdered. Hero again a ransom of $10,000 had to be paid for tho releaso of the captured railroad ofllcials. On .June I last the same band, that of Athanasius, placed obstructions across tho railroad track near Tcherossdoii, derailed an express train and captured several German tourists, lor their ransom -10,000 was paid. Athaniasus is pictured as being a bri¬ gand of the old school, an oriental Claude Duval practicing the tradition of robber courtesy and building up a huge fortune for himself at tho expense of the Sultan's privy purse, ior tho de¬ mands 0i the ambassadors for compen¬ sation lor brigand outrages have been complied with from that fund. Tho Oriental Railway Company, as tho re¬ sult of the recent brigandage outbreaks, has demanded special guarantees from the Porte if it in to carry on its traflic, all tiio more as it is suggested that the Indian mail should take that route.\n", - "Recent letters from Germany show that tho social as well as the political condition of the empire is far from satisfactory. The1 Germans have taken pride in their freedom rom nervous restlessness and selfish hard ness of other nationalities more given over to active business, and to looking at every-1 thingfromamerepeeuniarystandpoint. No people were more contented in the simple home enjoyments, or satisfied with the do¬ mestic comforts, if we may believe their own accounts, or tho testimony of stran¬ gers who have spent much time with them. N'ow, intelligent representatives of tho lat¬ ter class inform us that tho Germans are peevish, irritable, excited, given to pecun¬ iary speculation, and in many respects, changed much for tho worse. Even the skeptical Dr. Schenkel thinks they need preaching to. He would not enforce the old religious dogmas, but would enforcj the preeminent importance of the princi¬ ple of universal love. There are not wan ting ouier witnesses to the change, but we have cited a sufficient nmber. Among the causes of the deterior¬ ation may be numbered the decay of ac¬ cepted moral principles, following the re¬ pudiation of the dogmas on they were based; the demoralization that en¬ sued from the national pride inspired bv the conquest of France, also the pecuni¬ ary inflation produced by the French mil¬ liard*, and the disorganizing influence of. the Socialism of late so prevalent Com¬ munistic theories have no doubt been ren¬ dered attractive as offering a possible way of escape from a burdensome military ser- yico, while the growth of skepticism al¬ ready noticed has provided a moral vacuum to be filled by them. * The moststriking proof that all is not well is afforded, however, by the government's change of policy toward the Roman Church. A few days ago we had occasion to notice the fact, previously denied, that the nego¬ tiations between the empire and the Vati¬ can had borne important fruit. The re¬ sult in brief was that while the former would not recall any of its former acts or pay back fines already received, it would permit a resumption of duties on the part of Bishops and priests, and would not ex¬ act the discharge of penulties affixed but not discharged. There may have boon more important concessions not yet made public.\n", - "the Superintendent of the State. War, and Navv- - Department Building. Scaled proposals in duplicate, indorsed \"Pro- posals for Fuel,\" will be received at this ofiiee until 2 p. m on THURSDAY, May 7, 1896, to supplv the State, War, and Navy Department Building with f'ici during the fiscal year ending Jane 30, 1897, a follows 5.000 tons or extra hard white ash furnace coal. 25 tons of white ash stove coai, 100 cords of lncktrr wood, 100 cords or cak wood, and 50 cords ot spruce pine wood. All coal to be or best quality, free from dust or im- purities, ami inspected by a person who shall be designated by the Superintendent, and to be wcighcii upon the government scales in the court yard. All wood to be of the best quality and inspected by a pe'rson who shall be designated by the Superintendent. The hickory and oak wood to be sawed into three pieces nnd measured after it is saweel and delivered. The coal and wood to be de- livered at the State, War, and Navy Build- ing and toreel in the vaults by the party or parties to whom the contract or con- may be awarded at such time and in such quantities as the eonvenience of the oflice may require. Reserving -- the right to order as much more or as much lessor either coal or word as may be re- quired at the contract price; also the right to reject any or all bids, or to accept anv portion or any bid. The successful blutTer to furnish bond in the sum of S5.000 as a guarantee of the lnithful performance of the contraet. G. W . BA1RD, Chief En- gineer, U. S. N., Superintendent. PROPOSALS FOR MISCELLANEOUS ITEMS OfI ice of the Superintendent of tlie State, War. and Navy Building. Sealed proposals in duplicate, indorsee! \"Propo- sals for Miscellaneous Items.\" will be received at this oflice until 2 p. m . on THURSDAY, May 7, 1896, for mrnishing this office, during the fiscal year ending June30, 1897, with soap, brushes, sponges, paints, oils, towels, crash, nails, screws, etc., etc. Schedules, forms of proposals, and ail necessary information can be ob- tained upon application to G. W. BAIRD, Chief Engineer, U. S .N. . Superintendent. apll.l8 .25,26.my2,6 PHOPOSALS FOR MISCELLA- NEOUS sui'PLIES FOR THE POST-OF F IC - E\n", - "rccognlzed the groat fact that the in­ dustrial classes in this country, and the better sentimrats of onr civilisa­ tion. alike demanded that diplomacy should be exhausted before a resort t» arms was contemplated. And the pro­ ductive industry and peaceful arts which to-day blees oar country are largely the result of this wisdom. The settlement of thi# question by n new system of arbitration has also fixed a potnt in th# woHd'a history and estab­ lished a precedent which it is believed will do more to prevent In th# ffctnre ihe wickedness and waste of war thin any other #vent of tb# eeniory. Again, whan from maay quartern there am# an attempt to complicate ofli, relations and discourage n«gotlations with Spain, In th#bop# that war Woold result fTom the Cuban difficulty, the President was neolat# in the position, that diplomacy sbaald be eAaasted first, and that war sbtfuld bfjthe last «nd a reluctant mart. T%t||laking •nasses felt that the young ilea of onr country would be more usefbit* them- -elves and tbe world, engaged in pro luctlve Industry, tbaajmwa«>% their ives iu camps, and oh mavehe<, to :hase down a ,/#w bloodthirsty Span- tarda; aatftth^lSAtaa that we Want •id a greater bniaath of th# eountry we aoeaaas brought Into cultiva­ tion, aad naw Industries developed to IIversify and employ profitably tbe nbor of tbe p#op!o, aer# than we wanted Cuba or its population. Upon >hls theory tb# admlalstration ietad, ml b!atory will attaat Ita wisdom. I now turn to matters mora Imma* ttately eaanaetad with oat #f egricutture, and have eat la%Riry on ip>to#lnseaiehofaraB»aay. MTeare told by aaa thai Area bnakthg wll duce order ont of financial\n", - "Tlfoc, closli e Ht 78^0. Corn, cash No. 2, 40%^; October «Kh^;o, closing unOKo; November41% a4tj<£c, clod: gat 41X«: December 4t9iai;c.cloa« lug ht 41c; Umy 44%t45c, Closing r; -uy{fl OaM, cash No. J . 3io: October 2So^sW5, cosing at ioKc: November 2&5£o; Doeamber 25Kc: May !WKa29Hc, cloving at 2I&& itye, No. 2 , G«c. Barley, No 2,71a KlHS^ta, No. J . 81 08K. Prlmo Urn' otby scefl S2'j0a222. Moss Pork ?l3 CO: January i\\\\210a1217KC. Closed at 81212& Lord, per 1C0 Its. , 6 8f»c: October 6 80o; November G.17XaG22Xc. closed at C 17%o; .Jaauarv 6 22Xa0 25c, cla»od at 6.22V4c: May C.bfcJ*c, closed at 6.62>(a Bacon, Bhortrlba7l)Cc; shoulders &0Qa&.20o; short dear 4iao7.lCa7.20c. Whisky 8110. Sugar*, cutloat 7o; granulated 6jfc; standard A Q>4c. Butter, markot quiet at l&atto lor creamery; lCallc^for dairy, £ggs VJalsc and quiet. Fbi<. iDtLrmk- Pa.. Oct. 74..Klonr stoady with moderato demand; Ohio and other Western 8i '.U'a-t 10: do. atrslgtu 81 10n4 2d: winter patent |t 3-iaft 00; Minnesota clear old wheat 84 '^5; do atralghi« 87Vial CO; do patent« 75a4 SO. Wheat auletand weak; No. 2 red on track 82J4o; Novemner 8'.%h}?3c; Dumber 83%aB4o; January 8tJ4iS5c. Corn, spot'dull aud wcak;lulurut sto«dy;No 2 mixed on track &3Ma 63K«: do In gtaln dei ot &Uko: No. 2 mixed October 5la52c: November Nofcio; December 48!*a49c: Jan* uary4M*a49o, Gats, *pot In moderate demand; No 3 mixed 82c; No. 2 mixed81o; No. 8 whlto34o; No. 2 white 34Ka35c: futures iteady; No. 2 white I October 84^aVo; November 8t5ia36c; December I I S5V.iiIlI»?^c: January 8fia£(ft£r. 1 request and steady. Fori, mess 515 50; do prime mens new 31& CO] do family S1Q 00a38 60. Butter i firm P.nd demand Mr ror lro»h good'? creamery cztra ific; western factory Italic, ChMM quiet J and steady.\n", - "arriving at the place, found a young ecuted by order of General Jacksou m the white-man stripped naked, bound to a tree Seminole war of 1817, ’18, and believing and his captors preparing to put him to that* the circumstances of her history pre- death. On observing this, Milly instant- seirîed a case of very peculiar interest, I ly went to herfathei, who, as before sta*, mule it a point to obtain from hersell a ted, was she Prophet Francis, and a prin-J statement of her conduct in 1818, when, cipal chief of the nation, and besought; as public history has already recorded,she him to save the prisoner’s life. This he saved the life of an American citizen, whp declined, saying at the same time, that he was a prisoner in the power of some of had no power to do so. She then turned her tribe. The history states that the to his captors, and begged them to spare white man was about to be burned alive, the life of the white man; but one of but was saved by the interposition of the them who had lost two sisters in the war prophet’s daughter. Being in the viçim- refused to listen to supplications in be* ty of the Indian girl, near the mouth oj half of the prisoner, declaring that his the Verdigris river, and being acquainted life should atone for the wrongs which he with a portion of her history, 1 rode sever- had received at the hands of the white al miles to hear her story from herself, people The active humanity of Milly 1 had been informed that she has a claim would not be discouraged. She reasoned to some negro property, now held by the and entreated, telling the vindictive sa- Seminoles; and I first questioned her vnge who was bent on the destruction of relation to her claim, and then directed the prisoner that his death would not re- her mind back to 1818, and told her I had store his sisters to life. Aftern long time heard that she had saved the life ofa white spent in her generous effort, she succeed- man in the war ofthat year. She answer­ ed in rescuing the prisoner from the dread- ed that she had, and immediately gave me ful death to which he had been doomed by a very minute and graphic account of the his cruel captors. The condition on which circumstances.\n", - "In a music store on Third street, be- tween Marion and Columbia, there is an old piano which attracts much attention. The old musical instrument is of the upright style and is in a fair state of preservation, though it is nearly one hun- dred year3 old. It has a keyboard with white keys for the regular notes, and black keys for the sharps and flats, just like the pianos of today. These, when deftly touched, cause the ancient instru- ment to discourse most eloquently. No one could tell its great age by hear- ing it played on. Its tones are still har- monious and tuneful, though, of course, it cannot be compared with tfee best pianos of today, xf hen volume or modula- tion of tone is considered. Its front is ornamented with wooden scrollwork, behind which is a crimson cloth of fine texture. The frame on which the stringa are stretched is of wood, while the frame of the modern piano is of iron. The double row of keys is followed to this day, and the interior construction is much the same as in vogue at present. The fact that the ancient instrument is in such a good state of preservation is a high tribute to the old time piano makers. They built their instruments last. This is said not to be the case with many of the present piano manufacturers. The superannuated instrument has an interesting history. The Nineteenth Century had counted off but three years when it -- was bought by an English gen- tleman for his family of the makers, J. & J. Hopkinson, of Regent street, Lon- don. It was made in the year 1803 and sold in 1803. It passed as an heirloom from one member of the family to an- other until it came into the possession of a branch that left London for America in the year 1334. The voyage was made in the celebrated ship Robert Lowe. During the voyage a heavy gale was en- countered, and the piano was washed overboard with other things, but was finally fished out of the briny ocean. The family that brought the instru- ment to America settled at Victoria, B. C, and they passed away one by one until only two sisters were left. Finally one of these died and the other became insane with grief. Then it became nec- essary to administer on the estatejf the sisters, and the piano was sold by order of the probate court. The instrument then fell into the hands of a gentleman named Johnson, who resided in Victo- ria.\n", - "\" With Israel fully restored—raised from tho dead, able to see und able to speak, great results will follow. Tho Millenium will bo at once Introduced. Verse 35 Is a picture of It; Jesus going about all the cities and villages, leaching In their syn­ agogues, and preaching the Gospel of tho Kingdom, and healing ALL manner of di­ sease and ALL manner of sickness. \"This is what 1» will bo when the King comes. In the meantime the multltudee are Just like a great lot of sheep distre»»- ed and scattered, not having a shepherd. H» 1» moved with compassion, and Ha puts the remedy Into the hands of HI» disciple». That remedy 1» prayer. The harvest truly I» plenteous, but the labor­ ers are few. Pray ye, therefore, the Lord of the harvest, that He send forth labor­ ers into His harvest,' (V. 38.) “And that I» His plan, for the King­ dom not only, but also for the Church. Is it not true today that the harvest Is plenteous? ’Lift up your eyes and look on the fields, that they are white already unto harvest,' (John 4; 35 ) An'- are not the laborers few? With all our boasted foreign movements, we are only trifling with the great task, and ou» program is backward Instead .of forward. And what shall we do about it? Do about It? What can we do about It? Apart from Him we can do nothing. But we can da ail things through Him that strength­ ened! us: and It is our business to do thld thing, it is not something that only •2.29 p. ra. Sundays, 7.35 a. m. BALTIMORE AND week days. *4.13 . 7 .10, *3.49. *11 a. m .; *12.5» •2.07, 3.04, *4.03, *4.67. *6.16. *8.17, *8.53 p. ra Sundays. *4.13, 7.10, »8.19 a. in.; *12.56, *3.07 l.04, *4.57, *8.17 . *8.53 p. in. BALTIMORE AND WAY STATIONS 7.10 a. m.; 3.04 p. m . daily. NEWARK, week days, *4.13 , 7.10, *8.42 •11.00 a. m.; *12.56 . 3.04, *4.03, *4 57, *6.16 7.36, *8.17, 10.46 p. in. Sundays, *4.13, 7.10 •8.49 a. m .; *12.56, 3.04, *4.57, 7.35, *8.17 p. m PITTSBURG, week days, *8.1« p. in Sundays. *4.57 p. m. CHICAGO, dally, *4.57 p m. CHICAGO via CINCINNATI and IN DIANA POLIS, *8.49 a. ra. daily. CINCINNATI AND ST. LOUIS, *12.51 p m. and *8.17 p. m . dally. TOLEDO AND DETROIT, rI dally to Toledo and dally except to Detroit.\n", - "ran ii(i ui'ui vrimiir, nucio uu unu ucoi 1 treating the prohibition question witt 2 his usual eloquence. Mr. Carskadon'; model of a house without nails has at traded much attention. \"Silos? said Mr Carakadon,\" \"the ello has come to stay It doubles the capacity of th< farm. Yes, I'm writting on book on ensilage, in fact nave writ en it. 1 expect to navo it out now in aMe» weeks, and 1 think you will find it a con tribution to the subject I intend it to bei practical guide. I want to say that thl year's Fair surprises and delights me You have made rapid progress since I wa here three years ago. I regard it as om of the finest in the country, as it shouli be with such territory to draw from.\" Mr. James L. Henderson, Washing ton,Pa.,owuer of the Locust Farm Heri of Holsteina: \"I oughtn't to find fault but your types made our Bitje two year old, when she is six. Velleure is a two year-old. They each took first premium And then the herd was established ii 1871), not 1859. I think that is all, excep that we are having a fine show.\" Colonel J. F . Ch&rlesworth, of St. Clairs ville, said: \"I am working up the layin] of the corner stone of our new cour house, September22. Come up. Wewil have a great big day. The procession wil be something immense, and the town wil be full of people. We will have the K T. Coinmandery, the Patriarchate of G. U Odd Fellows, the Knighta of Pythias am many other Wheeling people, and the Masons from all over tlie country.\n", - "of lluu,11 The London ]Im,the lint' uh tyuarlcrly, Avplelon'i Annual Cyelo- pedta, the infldilt Caitelar nod De L'Arlege, the cxoomnuntcatcd friar Hyacinths, (Uo condemned Janaenlat Duptn, erroneously quoted u \"Rom- lab,\" and liarper'# ilagasine lot He- oember should be added to the I let. The only Oal hollo authorities men- Honed are Cyprian anil Tertnlllan, wlioae lexta are not apeelfledi a pawage from tlio Now York Tablet, whlob la correct, and lb* \"Koman\" blatorlan Hefele, vol. I, p. 7 . If by this latter name Is meant ttie learned Clatliollo < Doctor Helele, or Tubingen, who wrote a \"History ot tbo UooboIIs,\" so far from bis Haying anything to favor the aaeertlon that the Oral eight (Jounolla . were convoked by the euiperora, he completely refute) it. Let Mr. Flaber 1 tell us whom hemeana by tlio \"Koraan\" i Historian Hefele. I The aermon of Ur. Fisher remind) > me of the witty description of a Msg- ( pie's nest by the poet Y darts. There are 111 It rags and tags and bobtails, i bits and scraps, odds sod ends from all i quarters, I shall oondense the subject I of his borrowed materials and answer 1 very bristly. If any man wants more I Information on any of these subjects whlob upace will not permit we to i develops, let hlrn oomenut under his 1 own name nnd he will get it. { Hour can vis know a general Council 1 since the conditions oj ecumenicity are i undecided? Answer: They are notun. I decided, We can tell general Councils only after they are ended. There have been eighteen ho far. All Gsthollop c admitthis. IfItIssobardtotella I general Conncll how do you explain I thla unanimity t A general Council Is c a historical fact. When the Oounoll > of tlie Vatican Is ended we oan tell I whether It 1b general or not as easily aa > we can know a meeting of Parliament 1 ni> * OM»lnn nf 1 lnnnasae \"\n", - "berg to aald Jlardmau, dated May 27th, 1874, and recorded in Deed Book No. 40, page 267; a deed from Harmon and Martha A. Tricket to tba aald llardman and Mary E. MiUner for two tracts of land, both containing &2U acres, dated June 10th, 1870, and recorded In Deed Book No. 38, pages 9 5.4, and deed from John B. Bherrard and others to aald llardman, dated May 18th, 1872, and ro- cordtd in Deed Book No. 41, pagea 2 and 3; a died from Margaret, Georgo B., James V., Julia A. and 6arah E. Jackson to said George llardman for one acre, dated March I6tb, 1872, and recorded in Deed Book No. 3\\\\ paxei 484-5; a deed from Wm. B. and C. Brown to aald llardman for two acres and 21 perches, dated March 27th, 1874, and recorded in Deed Book No. 41, psgea 4 and 6; a deed from Crrui and Nancy J. Linton to aald Hardman for 12 acres and 2U perches, dated June 17th, 1874, and recorded in Deed Book No. 41, pages 18 and 10; a deed from Bucknerand Bebecca Fairfax tosild Hardman for 1C0 acres, dated August loth, 1872, and recorded In Deed Book No. 41, pane and 21; and a deed from John K. and Mary E. MiUner U the aald Hardman for four tracts of land, aggre¬ gating 888 acres, dated March 16th, 1874, and re¬ corded in Deed Book No. 41, pages 22, 8 and 4. Tbe whole containing in tbe aggregate at least 850 acres, with all the improvements and appurte¬ nances thereto In any wise belonging, Including the furnace and fixtures, and being tbe same prop¬ erty conveyed to Thomas Y. Canby and George H. Miller, trustees, for the said George Hardman and wife, by mortgage deed dated November lit, 1874, and recorded In Book No. 39, pages 90 and 58, In the office of add County Clerk of aald Preston county, lielug tbe aatna property conveyed to the tald Aimer Evans, Jr., by Hannibal Forbes, 8pe- cial Commiaaioner, aid deed la of record among the land record* of Preston county, West Virginia. Tirmh or HiLK.One-third of the purchase money, or such greater amount thereof aa the pur¬ chaser may elect to pay, cash in hand, tbe residue to two equal yearly p-yments, with interest from day of aale, and the deferred payment! to be se¬ cured by deed of trust on tbe property sold.\n", - "Accommodation,8 00, 8 88,7 ofi, 808, I 45. II 33 a tu,1288,226.345.(25.82*\\\\840.740.to3i!pm. NewYork. I85.256.430,815», H55,s». IoIV. tlMam, #12lit.128“,l:n,31«, a45,510,s17 65b,606,Ri21 70«,7 18,» 12.1030pto. Boston, without change, 10 18 a in, 5 88 p m. « est Chester, via Lamokin, 8 80, 8 08 am. 225,o45nin. Newark Center anfl Intermediate stations. 140am,1264,633pm. Baltimore and intermediate am, 12U6,247,445.81)611m,1203night. Baltimore and Bay Line, 5 28 p m. Baltimore and Washington, 4 48 ,801,811. 1015, 11UO am, 1208, II18,208.428.523,*81«. ~ 58,7«0,830p,m,1249night. Trains for Delaware Division leave for: NewCastle,815,1121ain,250.380,440.8I’ 883,950pm,1208night. Lewes,815am,487pna. Harrington, Delmar and way staMcns, 8 a m. Harrington and way stations, 2 50 p m. Express for Dover. Harrington and Delmar 18ain,437pm,1201night. Express for Wyoming and Smyrna, 8 53 p Express for Cape Charles, Old Point Com fort and Norfolk. 11 18 a m. 12 01 night. Leave Philadelphia, Broad street for Wll tnington, express. 3 50, 7 20, 7 27, 8 81,0 lu, 10 30 1033,1118am,11235,130.21«,301,3ill,353,401 441,508.+517.530,55»,817,657,740,1116. pm. 12 00 night. Accommodation, 6 25.7 4», 10 38,11 55 a m, 1 32 228,310.408,448,«32,838,10OS.Ill4P.1138pIn Sunday Trains—Leave Wilmington for; Philadelphia, express, 1 56, 2 51, 4 2', 8 50, 8 00 10(«,11 51 a m.l 39,3 05;504,5 0«, 7 08, 7 25 9 12 p m. Accommodation, 7 1». 81« a m, 12 1c 145,4U5,530.1030pm. Chester, express, 1 55,4 20. 8 50. H («1,10 (», 11 51. a m,504,558,706,912p m. Accommodation, 700.805am, 12in,145,405,620,725,lo30 pm. New York, express. 155, 2 55,4 20,7 00, 860 1151am. 1210,13o. 31«. 41«. 510. 5»,«(»■ ■*6 21,7 08,10 30 pm. Boston, without change. 5 58 p m. West Chester.via Lamokin, s 05 a m, 5 3o p 111 New Castle, 9 50 p m, 12 08 night. Cape Charles, Old Point Comfort and Nor­ folk, 12 01 night. Middletown, Clayton, I)ov»r. Wyoming, Eel- ton, Harrington, BridgevlUe. Seaiord, Laure and Delmar, 12 01 night. Baltimore and Washington. 4 48, 8 01, 10 P am,1306,523, +603,740,820pm.124« night Baltimore only, 6 00 u in, 12 13 night Leave Philadelphia. Broad street, for Wll mlngton. express, 3 50, 7 30. »10. 11 18 am. 4 41 5 08, « 57,7 40,8 35.1] 16. 1130 p m, 12IW night. Accommodation, 8 35, 10 38 a m, 12 35.2 05.8 838,1003and1138pm. For further Information, passengers are re ferred to the ticket ofllce at the station. ♦Congressional Limited Express train* com posed entirely of Pullman Vestibule Peril, and Dinln ^\n", - "The market for old rails is reported \"easier\" at $23, with an unwillingness on the part of havers to go above $22. In regard to the pig metal market, the Jfcntifacturrrdiscourses as follows: \"Dealers report that transactions foot up about the same as for some weeks past. Price* hare undergone no change what¬ ever, but strictly red-ehort iron continues very firm and in good demand at our quo¬ tations. Most of the red-short iron that comes to this market is made in the Shen- ango valley, where another furnace has blown in, after having gone out for repairs some time during the summer. The fur¬ naces in the eastern part of the State are having a better demand for their product than those in the west, letters from pig manufacturers in the region from Altoona to Reading to dealers here show that most of the furnaces that are in blast areselling their iron as fast as they can make it, while some are sold ahead to April, and at better prices at the furnace than could be obtained here, delivered. This will, of course, be good news to western furnace owners, as it relieves them of a competi¬ tion that felt to some extent not long ago. These letters state that some of the furnaces are sending iron to South America, the others rinding a market in the Kast. This favorable condition is more especially observable in the Reading dis¬ trict and\"in the Lehigh Vallev. It will, however, dampen the hopes that we may have kindled in the breasts of western furnace men when. we add Uuu the de¬ mand wc have spoken off is mostly for foundrv iron, and that there is an over¬ stock o* some other sorts. But as an offiset to this it should not be forgotten that the Bessemer works are all well supplied with orders, and will require a large quantity of nig. Not only are a goodly number of furnaces west of the Alleghenies now run¬ ning on this grade of iron, but in the Kast furnaoes have within a month chanced from other kinds to this, and some that were out of blast have blown in to make it. The pig iron trade is gradually adjusting itself to the changing conditions in the metallurgical world, and we may hope¬ fully look for a better and more settled state of affairs by and by.\n", - "mighty works. It was common com- plaint that in the days of his greatest victories, men could not find Mr. Moodi when a service was dismissed, or get into his quarters at the hotels; he would give no opportunity for self-- glorification. Paul and Barnabas had hard work to restrain these hero wor- shipers (v. 14), and to convince them who they were and how they had been enabled to accomplish such a wonder- ful miracle (v. 15). Paul was of \"like stature\" with them and would not ac- cept worship as did the Caesars or Herod (12:22, 23). He exhorted the Lystrians to turn from \"these vain things.\" i. e., such idol worship, unto the \"living God\" (see also I Cor. 8:4; I Thess. 1:9). Hitherto God had not miraculously interfered to turn men from their evil ways (v. 16), but left them to their own devices to show their inability to find their way back to him (see Acts 17:30; I Cor. 1:21). Yet God is not \"without witnesses\" (v. 17). The seasons and the natural laws point to God, yet men still re- main blind and ungrateful. Thus by vehement exhortation they this act of sacrilege. (2) Persecution (vs. 19. 20). The mob is ever fickle, (v. 18). but it did not turn them \"unto the living God\" (v. 15). Conversion is the simple turning from idols (I Thess. 1 -9), a rational thing, but one contrary to the pride of men who de- sire to \"do something\" whereby they may merit or can demand their sal- I vation. Even as Paul had difficulty to turn people aside from idols, so today it is hard to keep men and women from idolatry, not the gross or vulgar idolatry of heathenism, but the re I fined idols of culture, success, power, money and pleasure. To his difficul- ties Paul had the added persecution of the vindictive Iconians and those from Antioch (v. 19). God delivered him from this trial (I Cor. 11:25, 27). All loyal witnesses must expect pereecu- tion from the G(;od-hating world ill Tim. 3:12; John 15:18-20) Some think that this was when Paul was \"caught up into the third heaven\" (II Cor. 12: 2-4). Hils treatment did not stop his testimony, nor separate him from friends vs. 2u, 21). III. The Return (vv. 22-28).\n", - "In a fold of the Kentish hills, surrounded by apple orchards and hop gardens, there stands a humble building whose walls are eloquent of the past, a writer in the London Globe says. It is almost the only one of Its kind left standing-so far as the exterior Is concerned-in its entirety. The adjoining land was granted to one of his knights by Edward I. In 1272, and the most roll- able antiquarian opinion is in' favor of the house having been built shortly after. Our knight, in the matter of building, did not despise the record of the past, for he adopted the Norman method, then dying out, of placing his living rooms on the second floor. This made for safety and the ground floor apartments were simply windowless dun- geons and storerooms. In those days they built for strength, and the walls of Kentish rag are of great thickness, cal- culated to withstand the assaults of any quarrel. some neighbors, while' the turret, which gives ad- mittance by a stone spiral staircase to the living rooms above, is guarded top and bottom by mas- sive oaken doors, and is lighted by oylets through which a rain of arrows could be poured upon in. truders below. The main style of the building is that of the transition from early English to orated. Oblong in form, it has gables north .and south, and at either end of the long east wall is a square projection. Aseending the stairs we find ourselves In a room of truly noble proportions, occupying the length and breadth of the building, 28 feet by 18%, and lighted by windows east, west, north and south. It is open to the roof, which contains nearly, if not quite, Its original form, and has a fireplace and an \"ambrey\" or cupboard in which cooking and table requisites and alms for the poor were kept. In this \"airs\"or aitre\" the fam- ily lived and worked, and here visitors and better class retainers slept. Here, perhaps, from the beams supportlng the roof hung the store of dried provisions for winter use, and the herbs collected by the squire's dame. It was here in the \"airs\" that, at even, the family gathered round the firelight (candles were expensive luxuries in thoe days) to listen to story of battle or chase. The windows were ura glesed, but glass might be fied in the shutters, the Iron hook for which still remains. Oaken set tIes did duty as seats by day and as restting places at night and meals were served on a board placed on trestles--hence, perhaps, the phranse \"the te tive board. \"\n", - "Captaiu J. W . Plumuicr of Mineral Hill arrived here from Eureka, yesti r d.»y. nud departs for thu east by the train thiit evening, utjr he enjoy the journey, cml iu good time return to bin many friends iu the Silver state. The Grand Jury having discharged its duties most of tlic members arouu tbeir way to their respective homes again. The train last evening took several towanl tho Eastern part of tho county, and the stage for the north this morn- frig tarried away a number. The reir guard, in the person of Colonel J. B Mooro, is about ull of the otgauiz ition now visible to the naked eye. The Republican 'jonfnnls claim that at the last Presidential election, Hayes received a majority of the electoral vote, while tho Democrats as stoutly main- tain that Tildett was justly entitled to tho fiuits of a clearly wou victory. Iu all well regulated rnccs, a dead boat is required to beruu a second time. The Democrats aro perfectly willing to back Mr. Tildeu to buy amount iu the com¬ ing contest aul ilaro opposition to trot out Mr. Hayes, ltither than mis* such a race they would even give the lat¬ ter tho advantage of the distance to the qu irter-polo. Why is it that wo. never hear the nainoof Rithcrford mentioned iu connection with the uext Presidency ? Auuther attempt wis m.ulo to sup¬ press the Czar of Russia and the baluuce of tho Imperial fauiily.Tucs lay evening. A urine was explod d under the dining . room ol tho Winter Palace at St. Peters¬ burg which tore out the floor for a space of six. by ten feet, killing fivo soldiers an 1 wounding thirty live others. The Salvation of the family was owing to nil accidental d. lay by whicll they were n trifle behind their usual timo at supper. The adage \"fWasJ ra'sts tho head that wears a Crown,\" is peculiarly applica¬ ble to the ease of tho present ruler of Russia. Ho appears to bear n cli irtned life, howovi-r, and may possibly worry through his three score and ten, shnf- tling off his mortal coil like a mere hu¬ man. after ull.\n", - "Importance to put tlie town In a posi- tion to sustain n siege ot some length. Those works were begun on tlie day on which Tomsk fell Into the hands of the Tartars. At the same time ns that last news the grand duke loarned that the emir of Dokbnra aud the allied khans were directing the movement lu person, but what he did not know was that the lieutenant of those barbarous chiefs wns Ivan Ogareff, a Itusslan olll -c e- r whom he himself hnd cashiered. From the first, as has been seen, the Inhabitants of the province of Irkutsk hnd been ordered to abandon' the towns nnd villages. Those who did not seek refuge In the capital were compelled to retire beyond Lake Baikal, to where the Invasion would not likely extend Its ravages. The crops of corn and forage wero requisitioned for the town, aud that last rampart of Itusslan powor lu tho extreme east was prepared to re- sist for some time. Irkutsk, founded In 1011, Is tltttnted nt the confluence of the nnd the Angara, on the right bank of tho river. Two wooden bridges, built on piles nnd so arranged ns to open the whole width of tho river for tho necessities of navi- gation, joined the town with Its out- skirts which extended nlong the left bank. The outskirts were nbandoned, the bridges destroyed. Tho passage of the Angara, which was very wide at that place, would not have been possi- ble under the lire of the besieged. But the river could le crossed either above or below the town, aud ns a conse- quence Irkutsk wns in dnnger of being attacked on the east side, which no ramuart urotccted. It was, then, lu works of fortification thnt the hands were llrst employed. They worked day nnd night. The grand duke found a spirited population lu supplying that need, and afterward he found them most brave in Its defense. Soldiers, merchants, exiles, pensants. all do voted themselves to the common safety. Eight days before the Tnrtars had appeared on the Augara ramparts of inrt1i linil hi'fin rnUnil.\n", - "Mr. J .T., Reading, Pa: My Dear Sir Your favor of tho 20th Inst., Isjust received in reforenco to tho admission of colored children into tho public schools of our city, nnd contain- ing a copy ofyourremarksatn meeting held by your colored citizens. I will forward your remarks to Washington us requested, and I think you need havo no fears of removal. I um forming no opinion ust now on thd question, but think Mr. Sumner's bill will settlo tho wholo matter. A great deal of my timo tho past season has been occupied in preparing a newaud enlarged cdltlonof \"What I Know about Farmlng,\"a most excellent aud serviceable book, which I think yon ought to havo. (I will send you a copy, postngo prepaid, on receipt of price: Si, 50) As tho season Is advanced and has kept mo lu tho houso n great deal, I have been trying to better the condition of our people by endeavor- ing to make improvements in cooking. For somo years I have found that doughnuts Ho too heavy on my stomach, which my physicians attrlbuto to tho fat In which they arc fried. tell mo that a doughnut contains about eight times as much fat as Is consistent with a doughnut. To overcomothls dlfllculty,I havo gono to cousldorablo philosophical research. By using only ono eighth of tho usual amount of fat for frying them, Mrs. Greeley assurod mo the doughnuts would burn. By using eight times as much Hour I would havo just eight times as many doughnuts as I wnnted. I therefore determined touso eighttlmes tho usual quantity of sots. Mrs. G. mixed up tho batter in lho bread bowl, nnu Having matlo most exact propor- tions, I put In oilo pint of sots. Tho next morning, on entering tho kitchen, wo found that our batch of douehnuts had risen about ninety degrees abovo our highest expectations, and the tido was still rising. Mrs. G. heated tho lard whilo I tried to stir down tho bat- ter, but all to no use. I poured in somo fat, but it only spritzed and crackled, and I was mortified to find my experi- ment a failuro as tho doughnuts would not stick together. Too much sots in a doughnut is worse than CnrlSchurzln a caucus.\n", - "Commercial and Financial* TX .rr^.n\".-..' Prospects of the Soger Market. Fmm tM Tribunt qf Tuuday. The week opens upon'on easy money market, with rates on call at 5@0 pei sent,\" but with an uneasy feeling In the nlnds of the. people, aa well as witli.tbi Panics and bankers having large wester: iccounts, as to what Is to be thecondltloi jf the money marker as soon as there U i -loader call for money from the west h novo,the crop*. The President of one o >ur strongest banks Inlormed us this morn hg that last week he sent to the wes ibout $60,000 a day; and bankers in Oht sago write blm,'\"If there, is an nctivi novoment in 'wheat, they will be imme Uately in' want of currency. and thi nonoy market'there will be tight; aw her will atooco beobliged to draw out al fundB east to accommodate rprodaci layers' at home.\" 'One ot the most promt lent bankers of Wall-st. and a gentleman >1 conservative.views la financial matten old to ua this morning, \"Mr. Boutwcll hoi tin hi* power, -with' hit'160,000,000 a [old and his $10,000,000 of currency, t< c«ep thomoney market,: noti.only of thii ilty, butof the -whole' country, in a verj ssy condition this Fall. He has only ti elfalittle more gold, and then Increast ome $5,000,000 or more of hl> purchase! if bonds thu monthTsnd from $5,000,0Q( o$ld,000,000 next month, asthe bnslnes lemondB may requlre. and the banken viil feel confldoneo iir the sitratioo, ant! vould discount business'Diaper with i enseof satety in ttie 1 future.'1..The $3,' 100,000 of. bonds, ajreafly taken: sby! tiu iocrotary above the tumi named In hit idvcrtisement this month;baa prodocec iie best of fueling, and made money east\n" - ] - } - ], - "source": [ - "with open('test-A/out.tsv', mode='wt', encoding='utf-8') as f:\n", - " for line in X:\n", - " try:\n", - " out = classifier(line)\n", - " parsed_out = parse_output(out)\n", - " f.write(f\"{parsed_out}\\n\")\n", - " except:\n", - " print(line)\n", - " f.write(f\":1\\n\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "base", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.9.12" - }, - "orig_nbformat": 4 - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/prepare_dataset.py b/prepare_dataset.py deleted file mode 100644 index a01d494..0000000 --- a/prepare_dataset.py +++ /dev/null @@ -1,36 +0,0 @@ -import lzma -import json - - -def preprocess_train_data(X, y): - parsed_data = [] - - for line, masked in zip(X, y): - left = line.strip().split('\t')[6].replace('\\n', ' ') - right = line.strip().split('\t')[7].replace('\\n', ' ') - masked = masked.strip() - text = left + f' {masked} ' + right - - parsed_data.append({'text': text}) - - return parsed_data - - -with lzma.open('train/in.tsv.xz', mode='rt', encoding='utf-8') as f: - X = f.readlines() - -with open('train/expected.tsv', mode='rt', encoding='utf-8') as f: - y = f.readlines() - -data = preprocess_train_data(X, y) - -data = data[:10000] - -train_data = data[:int(len(data) * 0.8)] -val_data = data[int(len(data) * 0.8):] - -with open('train/train.json', mode='wt', encoding='utf-8') as f: - json.dump(train_data, f) - -with open('train/val.json', mode='wt', encoding='utf-8') as f: - json.dump(val_data, f) diff --git a/test-A/out.tsv b/test-A/out.tsv index a293965..0ff7f88 100644 --- a/test-A/out.tsv +++ b/test-A/out.tsv @@ -1,7414 +1,7414 @@ -members:0.1493113785982132 women:0.12393668293952942 children:0.12011966109275818 ladies:0.09425971657037735 girls:0.07451105117797852 :0.43786150962114334 -was:0.14582215249538422 ,:0.03678974136710167 were:0.0186587106436491 is:0.01797877438366413 had:0.017906880006194115 :0.7628437411040068 -the:0.9948268532752991 tho:0.0016246931627392769 The:0.0009716866188682616 this:0.0004242147842887789 done:0.00015251572767738253 :0.002000036431127228 -machine:0.02080029807984829 work:0.014345343224704266 roll:0.012603169307112694 coil:0.012335221283137798 churn:0.011103102937340736 :0.9288128651678562 -and:0.9759268760681152 ,:0.010890915989875793 or:0.004590258933603764 the:0.0011973513755947351 &:0.0007567721186205745 :0.006637825514189899 -to:0.5467097163200378 ,:0.28565430641174316 on:0.038568370044231415 upon:0.008438752964138985 ;:0.007689406629651785 :0.11293944763019681 -great:0.09627684950828552 the:0.05077247694134712 o:0.04743983596563339 wonderful:0.045881010591983795 he:0.03929901123046875 :0.7203308157622814 --:0.3709942400455475 :0.1035703793168068 indisc:0.03315682336688042 .:0.032965097576379776 ac:0.02434944175183773 :0.4349640179425478 -given:0.1778407096862793 offered:0.09804918617010117 paid:0.09694940596818924 fined:0.05696525052189827 promised:0.0397767648100853 :0.5304186828434467 -He:0.9491775631904602 he:0.009752674028277397 Ho:0.004016361199319363 There:0.0036267468240112066 It:0.0020858915522694588 :0.03134076320566237 -in:0.35318484902381897 within:0.09769762307405472 In:0.0876435935497284 before:0.08148537576198578 with:0.05181002616882324 :0.3281785324215889 -the:0.9245295524597168 The:0.012364494614303112 a:0.0119015509262681 's:0.005974940489977598 tho:0.003320662071928382 :0.04190879943780601 -or:0.276732861995697 times:0.11631099879741669 in:0.09685274213552475 and:0.09019209444522858 for:0.05178925395011902 :0.36812204867601395 -ly:0.05857301503419876 fore:0.056797124445438385 pose:0.040297552943229675 ter:0.022544382140040398 posed:0.02218874730169773 :0.799599178135395 -which:0.5378278493881226 and:0.10355386883020401 as:0.08112554997205734 they:0.05884334072470665 there:0.047078534960746765 :0.17157085612416267 -on:0.3590379059314728 at:0.19684332609176636 from:0.06258630752563477 to:0.03147096931934357 in:0.025277486070990562 :0.32478400506079197 -which:0.9905577898025513 whom:0.006340615451335907 what:0.00124548957683146 which:0.0006887843483127654 that:0.00026623820303939283 :0.0009010826179292053 -this:0.2220126986503601 the:0.21950967609882355 that:0.1285754293203354 one:0.08406224101781845 any:0.07183630764484406 :0.27400364726781845 -little:0.11136025935411453 small:0.07463259249925613 French:0.06466055661439896 neighboring:0.041018400341272354 great:0.03536546602845192 :0.6729627251625061 -with:0.3203582465648651 to:0.2759183347225189 for:0.1538151502609253 of:0.07286161929368973 in:0.06360632926225662 :0.11344031989574432 -pose:0.045535504817962646 cess:0.032116636633872986 tion:0.02466263435781002 struct:0.015773596242070198 ment:0.014702413231134415 :0.8672092147171497 -to:0.2012728452682495 the:0.048738837242126465 in:0.03719450533390045 with:0.028939884155988693 ,:0.02581050805747509 :0.6580434199422598 -,:0.573352038860321 West:0.2558121681213379 west:0.07710671424865723 .:0.020432179793715477 ;:0.00914456695318222 :0.06415233202278614 -want:0.06269167363643646 would:0.05279681831598282 should:0.04031921550631523 will:0.03684623911976814 had:0.03620048239827156 :0.7711455710232258 -the:0.9 :0.1 -have:0.536180317401886 had:0.4366004765033722 has:0.01055475976318121 having:0.00891938153654337 Had:0.0024286736734211445 :0.005316391121596098 -sent:0.8092387914657593 sending:0.02440875954926014 brought:0.012513491325080395 dispatched:0.009718267247080803 assigned:0.00840968918055296 :0.13571100123226643 -the:0.6780228018760681 her:0.07254984229803085 his:0.06234101206064224 tho:0.03366218879818916 any:0.017358575016260147 :0.13606557995080948 -it:0.6172608733177185 that:0.20515787601470947 this:0.07515854388475418 It:0.03414452448487282 which:0.012347153387963772 :0.05593102890998125 -it:0.21742627024650574 something:0.07919641584157944 this:0.07416367530822754 things:0.06320704519748688 so:0.055073779076337814 :0.5109328143298626 -think:0.12698043882846832 suggest:0.09472496062517166 say:0.08156400173902512 believe:0.07245898991823196 admit:0.04563668370246887 :0.5786349251866341 -held:0.2329561412334442 put:0.12980635464191437 made:0.03674480691552162 placed:0.032639116048812866 completed:0.027590597048401833 :0.5402629841119051 -122:0.06445462256669998 111:0.051724303513765335 120:0.030351728200912476 112:0.029131878167390823 116:0.025584055110812187 :0.7987534124404192 -at:0.9452071189880371 from:0.01352210994809866 long:0.008434084244072437 before:0.0043181851506233215 in:0.0028168403077870607 :0.02570166136138141 -or:0.2124813199043274 ,:0.18397986888885498 and:0.17365241050720215 to:0.03933573141694069 on:0.023444460704922676 :0.3671062085777521 -Wilmington:0.39455512166023254 Philadelphia:0.05955550819635391 new:0.01411337312310934 whole:0.012656069360673428 old:0.011967668309807777 :0.507152259349823 -said:0.11191271245479584 believed:0.09196747094392776 understood:0.06829437613487244 presumed:0.05583058297634125 regretted:0.05106799677014351 :0.6209268607199192 -men:0.06427662819623947 interested:0.048501890152692795 people:0.030658332630991936 candidates:0.024065136909484863 parties:0.019418099895119667 :0.8130799122154713 -missionary:0.09594853222370148 political:0.05958176776766777 spiritual:0.0371563546359539 ­:0.03249175101518631 policy:0.026908187195658684 :0.7479134071618319 -tho:0.08060768246650696 the:0.04494732990860939 1:0.03153945878148079 him:0.01946679688990116 ,:0.01782778464257717 :0.8056109473109245 -have:0.38357630372047424 may:0.19785833358764648 can:0.07891982048749924 shall:0.05297011509537697 will:0.04928870499134064 :0.23738672211766243 -that:0.6796212196350098 which:0.24299335479736328 it:0.01463468186557293 ever:0.006870607379823923 as:0.00345386890694499 :0.05242626741528511 -of:0.9451379776000977 ,:0.01598348468542099 Of:0.010189278051257133 ot:0.007681616116315126 .:0.00435320008546114 :0.016654443461447954 -kept:0.45103827118873596 and:0.27632537484169006 was:0.05058029294013977 continued:0.04477662593126297 then:0.03416941687464714 :0.1431100182235241 -,:0.2445753812789917 tell:0.20575718581676483 come:0.19516383111476898 be:0.06607305258512497 know:0.045430492609739304 :0.24300005659461021 -of:0.9817298650741577 in:0.007069786079227924 ot:0.003484441665932536 from:0.003146922215819359 of:0.0013903361978009343 :0.0031786487670615315 -was:0.12751466035842896 ou:0.059160925447940826 -:0.04886157810688019 .:0.033890772610902786 ,:0.030716119334101677 :0.6998559441417456 -and:0.6512172818183899 or:0.16568826138973236 to:0.027981553226709366 a:0.021945113316178322 ,:0.015968896448612213 :0.11719889380037785 -engagement:0.40987539291381836 wedding:0.3904767334461212 marriage:0.07016221433877945 meeting:0.014195794239640236 ceremony:0.013416169211268425 :0.10187369585037231 -once:0.48914992809295654 twice:0.22628818452358246 half:0.13261692225933075 in:0.009399056434631348 1:0.005213303957134485 :0.13733260473236442 -u:0.03897024318575859 U:0.029716335237026215 il:0.01536447461694479 ud:0.014784179627895355 ug:0.012570160441100597 :0.8885946068912745 -that:0.9839386343955994 .:0.0071380725130438805 ,:0.0037712769117206335 ::0.0019427465740591288 the:0.000269047828624025 :0.002940221776952967 -them:0.2673977017402649 themselves:0.23672010004520416 him:0.09636760503053665 men:0.038215216249227524 himself:0.03094683215022087 :0.3303525447845459 -to:0.9049785137176514 upon:0.046225812286138535 on:0.017843764275312424 for:0.01010714191943407 ot:0.0026274786796420813 :0.018217289121821523 -the:0.9 :0.1 -is:0.36692333221435547 states:0.10172238200902939 says:0.08049919456243515 shows:0.06465090811252594 alleges:0.0628974661231041 :0.32330671697854996 -of:0.9611157774925232 at:0.012671178206801414 of:0.007048437371850014 from:0.005874633323401213 in:0.00209390209056437 :0.011196071514859796 -there:0.08081268519163132 i:0.0599629245698452 are:0.04410304129123688 ,:0.035518962889909744 i:0.02902851812541485 :0.750573867931962 -as:0.4639393389225006 ,:0.05384477600455284 ly:0.03173486888408661 and:0.031072868034243584 iron:0.02938118204474449 :0.39002696610987186 -18:0.3482665717601776 20:0.1427958905696869 22:0.07750450819730759 19:0.07287856191396713 17:0.04161442816257477 :0.316940039396286 -by:0.8272362947463989 .:0.05962284281849861 for:0.013651429675519466 ,:0.012174890376627445 to:0.010051926597952843 :0.07726261578500271 -not:0.36557966470718384 raised:0.08784829825162888 never:0.05354471504688263 none:0.032426994293928146 entirely:0.02621646597981453 :0.434383861720562 -hold:0.3834001123905182 adjourn:0.21917159855365753 resume:0.056890301406383514 held:0.03398633748292923 have:0.027391577139496803 :0.27916007302701473 -highest:0.5647350549697876 most:0.15553143620491028 greatest:0.03997574746608734 best:0.02583284117281437 very:0.019913073629140854 :0.19401184655725956 -was:0.8911279439926147 seemed:0.03965090587735176 is:0.03390955179929733 became:0.00616493821144104 felt:0.005164264235645533 :0.023982395883649588 -of:0.9753225445747375 in:0.008428686298429966 In:0.002105522667989135 into:0.0015598449390381575 ol:0.0014392936136573553 :0.011144107906147838 -is:0.20098456740379333 occurs:0.041474007070064545 comes:0.03770378604531288 arises:0.029194803908467293 lies:0.0256007369607687 :0.6650420986115932 -be:0.43066975474357605 remain:0.35561391711235046 bo:0.11316923052072525 go:0.011534225195646286 stay:0.011078602634370327 :0.07793426979333162 -Dr:0.5714085102081299 Doctor:0.14503240585327148 Mr:0.06656184047460556 Professor:0.03520877659320831 Judge:0.01752285845577717 :0.1642656084150076 -of:0.6079630851745605 ,:0.10275258868932724 which:0.08347722142934799 that:0.07403165847063065 .:0.012728204019367695 :0.11904724221676588 -,:0.9269871711730957 speaking:0.021866466850042343 .:0.005046333186328411 all:0.004558021202683449 ;:0.0016105194808915257 :0.03993148810695857 -.:0.11533895879983902 ,:0.04478068649768829 ):0.028844721615314484 1:0.016293665394186974 ':0.010343369096517563 :0.7843985985964537 -tion:0.7422984838485718 ment:0.12368196249008179 ing:0.02255844697356224 est:0.0033129958901554346 ble:0.002875990467146039 :0.10527212033048272 -and:0.8058585524559021 or:0.09662240743637085 ,:0.06908348202705383 as:0.004401818849146366 being:0.0023609891068190336 :0.021672750124707818 -which:0.5985643267631531 that:0.09189493954181671 as:0.03552551940083504 when:0.018194112926721573 was:0.01238543726503849 :0.2434356641024351 -The:0.7495280504226685 A:0.09143546223640442 One:0.047057654708623886 No:0.014541915617883205 This:0.014224614016711712 :0.08321230299770832 -.:0.6772474646568298 .:0.016077011823654175 war:0.012014690786600113 !:0.006367070134729147 food:0.005847788415849209 :0.2824459741823375 -was:0.647946298122406 they:0.16731835901737213 ho:0.026475677266716957 we:0.023564985021948814 were:0.019391072914004326 :0.11530360765755177 -to:0.40274375677108765 with:0.2718784809112549 the:0.13366122543811798 tho:0.047028496861457825 by:0.017245469614863396 :0.12744257040321827 -and:0.5757207870483398 or:0.29941606521606445 sometimes:0.050933144986629486 even:0.009303965605795383 perhaps:0.00827078614383936 :0.056355250999331474 -the:0.561278223991394 any:0.20612896978855133 every:0.10995284467935562 an:0.030894245952367783 his:0.016984358429908752 :0.07476135715842247 -commit:0.060385968536138535 condemn:0.034289486706256866 justify:0.033792342990636826 denounce:0.03134746104478836 prevent:0.026456866413354874 :0.8137278743088245 -modern:0.10106964409351349 French:0.07319600135087967 English:0.04018551483750343 Victorian:0.03785441070795059 the:0.03709134832024574 :0.7106030806899071 -great:0.14509083330631256 complete:0.06846171617507935 terrible:0.041846536099910736 true:0.034585557878017426 pure:0.018786365166306496 :0.6912289913743734 -be:0.9376674294471741 bo:0.03278697654604912 lie:0.0050904881209135056 he:0.004508301615715027 be:0.0010846165241673589 :0.01886218774598092 -,:0.7077898979187012 and:0.03528761491179466 there:0.024494143202900887 they:0.018105357885360718 It:0.01716037280857563 :0.19716261327266693 -ce:0.029504479840397835 ction:0.019083108752965927 ue:0.014697018079459667 ect:0.01289116870611906 thing:0.010959342122077942 :0.9128648824989796 -misled:0.22052001953125 deceived:0.11607573926448822 frightened:0.09853512793779373 surprised:0.09451869875192642 alarmed:0.04138302803039551 :0.4289673864841461 -of:0.7578555345535278 to:0.08509530872106552 in:0.053165171295404434 ,:0.038506314158439636 and:0.018078986555337906 :0.04729868471622467 -water:0.6074259281158447 moisture:0.07583369314670563 drain:0.05608197674155235 leak:0.05481518432497978 hole:0.008917094208300114 :0.1969261234626174 -were:0.41296452283859253 the:0.15122023224830627 are:0.04522257298231125 these:0.032226722687482834 ,:0.03090297430753708 :0.32746297493577003 -of:0.9312686324119568 for:0.03715289384126663 in:0.01819727197289467 ot:0.003509524976834655 and:0.0025373368989676237 :0.007334339898079634 -On:0.1902226358652115 In:0.09798883646726608 But:0.07981592416763306 Now:0.0717162936925888 Immediately:0.05529583990573883 :0.5049604699015617 -to:0.6852285265922546 from:0.08899892121553421 at:0.04474003240466118 about:0.027377787977457047 above:0.018764367327094078 :0.13489036448299885 -of:0.8032230734825134 among:0.06087062880396843 ot:0.052385009825229645 for:0.0161198228597641 to:0.013481506146490574 :0.053919958882033825 -the:0.2779639959335327 in:0.10570788383483887 tho:0.09071783721446991 their:0.049702730029821396 of:0.03688376769423485 :0.43902378529310226 -present:0.06475353240966797 ex:0.03759581595659256 great:0.018061116337776184 pro:0.016358787193894386 first:0.014898397959768772 :0.8483323501423001 -river:0.3032945692539215 Nile:0.17992672324180603 rivers:0.16274693608283997 mountains:0.048213403671979904 lake:0.021191218867897987 :0.2846271488815546 -in:0.29756635427474976 for:0.14684303104877472 of:0.12387140095233917 with:0.11985824257135391 on:0.057675912976264954 :0.2541850581765175 -,:0.18156084418296814 up:0.060291264206171036 out:0.04217583313584328 her:0.03516919165849686 away:0.029584914445877075 :0.6512179523706436 -,:0.7376657724380493 .:0.0641607865691185 ,:0.023584533482789993 .,:0.02153133973479271 think:0.020712530240416527 :0.13234503753483295 -.:0.8060285449028015 !:0.009435838088393211 ,:0.008755032904446125 ::0.0061198133043944836 .:0.005177411716431379 :0.1644833590835333 -knocks:0.13077525794506073 strikes:0.12191256880760193 ,:0.07833897322416306 turns:0.06286332756280899 stands:0.05855177715420723 :0.5475580953061581 -I:0.5710967183113098 To:0.1345830261707306 1:0.05053957924246788 They:0.034186650067567825 I:0.024288151413202286 :0.1853058747947216 -the:0.9 :0.1 -feel:0.36738458275794983 get:0.28244855999946594 am:0.14912694692611694 'm:0.1486319899559021 become:0.018573125824332237 :0.03383479453623295 -refusing:0.5025098323822021 wanting:0.17710381746292114 having:0.05027640983462334 wishing:0.0318416953086853 trying:0.022817013785243034 :0.21545123122632504 -and:0.9915946125984192 ,:0.0021191705018281937 in:0.0007298034033738077 And:0.0006555442814715207 or:0.0004674163938034326 :0.004433452821103856 -so:0.33063074946403503 too:0.19770070910453796 tho:0.12726375460624695 their:0.09063611924648285 the:0.0680968314409256 :0.1856718361377716 -,:0.17895744740962982 mountains:0.0813005119562149 lands:0.04185255244374275 glaciers:0.02204170823097229 Alaska:0.0211117435246706 :0.6547360364347696 -next:0.709194540977478 this:0.25789788365364075 last:0.004869956988841295 each:0.0032395522575825453 in:0.003018776886165142 :0.021779289236292243 -during:0.6860530376434326 in:0.1650649607181549 for:0.039327844977378845 throughout:0.02639707177877426 In:0.019880343228578568 :0.0632767416536808 -under:0.8784276247024536 in:0.06252621859312057 at:0.02290688268840313 with:0.011580955237150192 In:0.004465724341571331 :0.02009259443730116 -an:0.4610370993614197 no:0.20151402056217194 a:0.11156587302684784 their:0.09551657736301422 some:0.025606295093894005 :0.10476013459265232 -but:0.5473806858062744 and:0.1265592873096466 as:0.08200079202651978 although:0.032798051834106445 while:0.03152719885110855 :0.1797339841723442 -us:0.2173672616481781 me:0.08961544185876846 anyone:0.062062788754701614 those:0.050613608211278915 be:0.027883172035217285 :0.5524577274918556 -vote:0.1539621204137802 ballot:0.061065949499607086 charge:0.03394516929984093 complaint:0.025417551398277283 shadow:0.024360042065382004 :0.7012491673231125 -hall:0.11253365874290466 house:0.049413036555051804 stand:0.03971456363797188 building:0.03853575885295868 lodge:0.02734247036278248 :0.7324605118483305 -he:0.8394762873649597 she:0.05951197072863579 they:0.04585135728120804 ho:0.008854079991579056 He:0.008370643481612206 :0.037935661152005196 -man:0.19475378096103668 worker:0.1244162917137146 artisan:0.08079146593809128 individual:0.07564949989318848 farmer:0.036830104887485504 :0.48755885660648346 -and:0.2335066795349121 which:0.07488888502120972 it:0.049380142241716385 I:0.026909472420811653 is:0.022735290229320526 :0.5925795305520296 -a:0.2849309742450714 her:0.1504492312669754 -:0.09642937779426575 his:0.09545612335205078 one:0.06398221105337143 :0.30875208228826523 -was:0.20831197500228882 is:0.13646964728832245 when:0.0625942200422287 been:0.037839703261852264 being:0.036393068730831146 :0.5183913856744766 -reached:0.24381868541240692 entered:0.1898604780435562 been:0.08932642638683319 passed:0.03550287336111069 hit:0.02420799434185028 :0.4172835424542427 -to:0.43795767426490784 To:0.09373141080141068 ,:0.06325217336416245 and:0.03727801889181137 TO:0.03663751482963562 :0.33114320784807205 -The:0.6412633657455444 These:0.24514982104301453 Two:0.01492847129702568 Three:0.008412880823016167 Both:0.005583690479397774 :0.08466177061200142 -the:0.8452272415161133 a:0.137116938829422 this:0.0024193013086915016 tho:0.0018910878570750356 an:0.0015803343849256635 :0.011765096103772521 -less:0.6909435391426086 more:0.2113979607820511 greater:0.03082677535712719 lower:0.01556558907032013 higher:0.01250879280269146 :0.03875734284520149 -of:0.38696250319480896 and:0.08622007071971893 ed:0.07747712731361389 less:0.07477996498346329 y:0.07015286386013031 :0.3044074699282646 -drawn:0.5663934350013733 set:0.16031599044799805 taken:0.09362945705652237 put:0.05374739319086075 made:0.027263736352324486 :0.09864998795092106 -one:0.3763781785964966 man:0.2698512077331543 woman:0.11536304652690887 person:0.08344180881977081 girl:0.054416365921497345 :0.10054939240217209 -been:0.9650309681892395 being:0.022122856229543686 was:0.00343943084590137 had:0.0014531419146806002 bee:0.0009673284366726875 :0.006986274383962154 -world:0.17971090972423553 country:0.10712204873561859 city:0.08558271825313568 year:0.03584581986069679 nation:0.03580933064222336 :0.55592917278409 -same:0.2464142143726349 old:0.046438977122306824 county:0.031499262899160385 German:0.02593570575118065 State:0.02336735837161541 :0.6263444814831018 -,:0.17957299947738647 case:0.10135981440544128 petition:0.06719598174095154 suit:0.06225818023085594 ),:0.05788011476397514 :0.5317329093813896 -thorough:0.08999010175466537 effective:0.06913863122463226 complete:0.0525929294526577 successful:0.04799284040927887 accurate:0.04767702519893646 :0.6926084719598293 -case:0.3195076882839203 -:0.1280079334974289 mind:0.08704999089241028 turn:0.06845468282699585 time:0.03280453383922577 :0.3641751706600189 -proof:0.21313387155532837 evidence:0.1107369065284729 ity:0.09021498262882233 knowledge:0.04781316965818405 examples:0.022517681121826172 :0.5155833885073662 -to:0.9071802496910095 upon:0.04915543273091316 on:0.011802750639617443 for:0.009879951365292072 ot:0.0031015442218631506 :0.01888007135130465 -,:0.9024965763092041 .:0.004064399749040604 so:0.0023351707495748997 ,:0.0019021882908418775 frequently:0.001729403855279088 :0.08747226104605943 -was:0.7612010836601257 is:0.21122515201568604 Is:0.01290217973291874 were:0.003013970796018839 became:0.0010498819174245 :0.010607731877826154 -<:0.20858027040958405 *:0.05175160989165306 -:0.03936363756656647 «:0.03421707823872566 ^:0.03193878009915352 :0.6341486237943172 -thence:0.07541264593601227 -:0.054169170558452606 and:0.04141227528452873 ,:0.039712093770504 *:0.023835357278585434 :0.765458457171917 -,:0.8016830086708069 .:0.06994607299566269 ;:0.03601023554801941 and:0.017499933019280434 ;:0.006366297136992216 :0.06849445262923837 -were:0.9644999504089355 was:0.01929180882871151 are:0.005409033037722111 where:0.0030422157142311335 ,:0.001349898986518383 :0.006407093023881316 -he:0.15129537880420685 u:0.05647077411413193 «:0.03733036667108536 »:0.03371318429708481 ':0.021433541551232338 :0.6997567545622587 -particulars:0.07056669145822525 property:0.058743976056575775 and:0.05516233667731285 all:0.05255436152219772 records:0.0306855458766222 :0.7322870884090662 -remedy:0.4097026288509369 product:0.058864738792181015 medicine:0.04702823981642723 treatment:0.037402112036943436 method:0.034568481147289276 :0.41243379935622215 -and:0.3049166202545166 but:0.18675832450389862 But:0.05577049404382706 so:0.02424342930316925 Immediately:0.023279372602701187 :0.4050317592918873 -day:0.3805205821990967 night:0.11175202578306198 morning:0.05979481711983681 session:0.04622234031558037 time:0.04294690117239952 :0.35876333341002464 -capitals:0.4560546576976776 cities:0.12070884555578232 countries:0.10574962943792343 places:0.025662874802947044 shores:0.024191804230213165 :0.26763218827545643 -in:0.6117072105407715 back:0.0921497792005539 home:0.08663120120763779 out:0.06725779920816422 In:0.03755263611674309 :0.10470137372612953 -the:0.9 :0.1 -be:0.3156518340110779 put:0.1328134834766388 give:0.02826538123190403 build:0.024644147604703903 hold:0.02296949177980423 :0.47565566189587116 -shoot:0.311463326215744 kill:0.07112403959035873 stab:0.05151459202170372 follow:0.02641022764146328 arrest:0.021147998049855232 :0.518339816480875 -given:0.8882723450660706 giving:0.019807666540145874 gave:0.011929607950150967 thrown:0.011735799722373486 taken:0.005362561903893948 :0.06289201881736517 -and:0.9161761999130249 ,:0.034051794558763504 he:0.016748040914535522 but:0.00804972741752863 He:0.0026997970417141914 :0.02227444015443325 -stood:0.0652572512626648 raged:0.04940662533044815 rested:0.04396907240152359 acted:0.03545394539833069 lived:0.03156489133834839 :0.7743482142686844 -Wall:0.8903628587722778 Cummings:0.004248884506523609 Walls:0.0031547488179057837 Wright:0.00310122175142169 Wilson:0.002848070114850998 :0.09628421603702009 -dwelling:0.7050079703330994 store:0.1809198260307312 building:0.04421963915228844 house:0.03018699586391449 home:0.011915022507309914 :0.027750546112656593 -become:0.37497571110725403 been:0.2958047688007355 grown:0.02603798173367977 not:0.01841765083372593 all:0.01515613216906786 :0.26960775535553694 -will:0.7151186466217041 also:0.13272720575332642 shall:0.018334710970520973 may:0.01802692376077175 only:0.017142130061984062 :0.0986503828316927 -1898:0.24259096384048462 1897:0.15982483327388763 1899:0.15371274948120117 1900:0.1157505065202713 1902:0.03645152598619461 :0.29166942089796066 --:0.3602358400821686 the:0.03588593006134033 a:0.024282317608594894 in:0.016761526465415955 and:0.016275642439723015 :0.5465587433427572 -.:0.5075324773788452 good:0.08620218187570572 favor:0.043933890759944916 .:0.01675303652882576 wrong:0.013270613737404346 :0.33230779971927404 -valuable:0.08625422418117523 -:0.07512995600700378 precious:0.057982172816991806 ship:0.040794115513563156 of:0.03848286345601082 :0.7013566680252552 -important:0.09024053812026978 influential:0.0752822533249855 prominent:0.07215181738138199 potent:0.07037872821092606 valuable:0.0445048063993454 :0.6474418565630913 -first:0.03784880414605141 present:0.03558855131268501 last:0.031030571088194847 republican:0.017907440662384033 great:0.015865212306380272 :0.8617594204843044 -Senator:0.2687930762767792 Mr:0.13667717576026917 Judge:0.13307338953018188 Secretary:0.034603506326675415 Governor:0.03404182568192482 :0.39281102642416954 -garment:0.08581456542015076 lace:0.05300098657608032 dress:0.03430045023560524 design:0.022388096898794174 company:0.020944960415363312 :0.7835509404540062 -days:0.8660938143730164 hours:0.030037876218557358 instances:0.024858852848410606 Days:0.010481354780495167 weeks:0.0069661508314311504 :0.06156195094808936 -the:0.9017322063446045 our:0.03070077672600746 your:0.015479334630072117 its:0.011421813629567623 tho:0.009979380294680595 :0.03068648837506771 -head:0.3853234350681305 face:0.11550391465425491 spine:0.06625712662935257 neck:0.0559590719640255 body:0.04870045930147171 :0.3282559923827648 -taxes:0.07673107087612152 them:0.04007392376661301 more:0.03839142993092537 ,:0.033137328922748566 back:0.0285419262945652 :0.7831243202090263 -the:0.13991615176200867 tho:0.048795707523822784 a:0.03940260410308838 he:0.03665369749069214 .:0.014719388447701931 :0.7205124506726861 -the:0.880285382270813 two:0.027133295312523842 both:0.025677042081952095 their:0.02203572727739811 its:0.00901129748672247 :0.035857255570590496 -own:0.5016286373138428 ':0.07306917011737823 personal:0.04367959499359131 most:0.04003577306866646 very:0.013972172513604164 :0.32761465199291706 -the:0.9 :0.1 -the:0.8630043864250183 a:0.10703487694263458 tho:0.016274435445666313 taken:0.0032589405309408903 no:0.0007798635051585734 :0.00964749715058133 -,:0.3661995828151703 that:0.20015089213848114 and:0.08996729552745819 which:0.05867765098810196 scene:0.042452819645404816 :0.2425517588853836 -of:0.9645245671272278 ot:0.02047104388475418 for:0.005278071388602257 in:0.003341678297147155 to:0.001291275373660028 :0.005093363928608596 -George:0.2202610820531845 William:0.10425323992967606 John:0.06832199543714523 James:0.056667398661375046 Joseph:0.03491773083806038 :0.5155785530805588 -water:0.4165978729724884 distance:0.09356951713562012 lead:0.03439946100115776 air:0.021243805065751076 end:0.01894005946815014 :0.4152492843568325 -and:0.2536412477493286 for:0.16528283059597015 but:0.06349630653858185 as:0.06128198280930519 when:0.03675087168812752 :0.4195467606186867 -the:0.9 :0.1 --:0.09008762240409851 per:0.057269785553216934 sur:0.05170993506908417 :0.03795180469751358 con:0.023601539433002472 :0.7393793128430843 -it:0.1366768479347229 this:0.04803724214434624 which:0.03415153920650482 It:0.01895110495388508 that:0.01793902926146984 :0.7442442364990711 -taken:0.731562077999115 got:0.03507447987794876 gotten:0.03261105343699455 seized:0.025227567180991173 kept:0.019706998020410538 :0.15581782348453999 -a:0.7903165817260742 any:0.1352691352367401 another:0.018795909360051155 one:0.01731269806623459 the:0.006480706389993429 :0.031824969220906496 -,:0.2532880902290344 .:0.06720054894685745 ):0.0316656157374382 d:0.018736975267529488 he:0.017136653885245323 :0.6119721159338951 -no:0.9976367950439453 No:0.0013100667856633663 can:0.0001271933870157227 no:0.0001183394924737513 not:0.00011419846123317257 :0.0006934068296686746 -Right:0.09031583368778229 Straight:0.05386641249060631 Cut:0.04695279896259308 All:0.04689399525523186 Just:0.0420258454978466 :0.7199451141059399 -ly:0.08639740943908691 of:0.04398076608777046 ,:0.04055164009332657 in:0.026143044233322144 ous:0.023957638069987297 :0.7789695020765066 -and:0.7779155969619751 bearing:0.13777288794517517 or:0.026272710412740707 from:0.012952436693012714 ,:0.003557442454621196 :0.041528925532475114 -if:0.435272753238678 where:0.20261763036251068 unless:0.10814562439918518 when:0.059101786464452744 If:0.03431965410709381 :0.1605425514280796 -there:0.9760777950286865 There:0.020090235397219658 there:0.0019496510503813624 There:0.000362411723472178 here:0.0002864562557078898 :0.0012334505445323884 -shall:0.9068753719329834 may:0.032479364424943924 will:0.027781153097748756 must:0.019796742126345634 should:0.006908861920237541 :0.0061585064977407455 -passengers:0.2498268485069275 cars:0.131548210978508 loads:0.11715124547481537 pounds:0.09584265202283859 freight:0.07442943751811981 :0.33120160549879074 -by:0.5625216364860535 with:0.1283632069826126 in:0.11719480156898499 on:0.05450137332081795 under:0.03191272169351578 :0.10550625994801521 -up:0.07029803842306137 the:0.0436786487698555 in:0.04228008911013603 to:0.034062709659338 out:0.02152429148554802 :0.7881562225520611 -in:0.8686746954917908 at:0.07528883963823318 In:0.03817695006728172 on:0.004116572439670563 with:0.0014289396349340677 :0.01231400272808969 -Prince:0.992944061756134 Prince:0.002605232410132885 the:0.0006831400678493083 St:0.0003196800244040787 New:0.00026085300487466156 :0.0031870327366050333 -as:0.3788195848464966 for:0.22898299992084503 by:0.12068939208984375 to:0.0691598430275917 from:0.06685803830623627 :0.13549014180898666 -sale:0.08034133911132812 land:0.04630528390407562 demand:0.037276312708854675 market:0.03699437528848648 foot:0.03004135563969612 :0.769041333347559 -tion:0.8315816521644592 ment:0.09275481104850769 ing:0.0069559612311422825 ty:0.003222364466637373 ed:0.0026782730128616095 :0.06280693807639182 -the:0.7916689515113831 this:0.044126614928245544 that:0.029871374368667603 a:0.029483633115887642 its:0.014970161020755768 :0.08987926505506039 -was:0.2793333828449249 just:0.13653850555419922 being:0.047622792422771454 :0.020399071276187897 I:0.018567048013210297 :0.4975391998887062 -must:0.30942776799201965 should:0.28007572889328003 to:0.14118929207324982 may:0.0572512112557888 will:0.05685749277472496 :0.15519850701093674 -now:0.26123538613319397 yet:0.11900585144758224 so:0.07693596929311752 that:0.053335610777139664 Now:0.02771132066845894 :0.46177586168050766 -,:0.9332385659217834 .:0.04532797634601593 in:0.006727155297994614 of:0.002640028251335025 ;:0.0019651195034384727 :0.010101154679432511 -has:0.8906341791152954 hath:0.017844604328274727 is:0.009610619395971298 recently:0.008075181394815445 have:0.007815330289304256 :0.06602008547633886 -he:0.41246137022972107 Kemp:0.30864572525024414 I:0.12546975910663605 we:0.02157825231552124 it:0.020873092114925385 :0.11097180098295212 -had:0.8171917200088501 has:0.017502138391137123 had:0.015879593789577484 having:0.011216387152671814 not:0.008014461025595665 :0.13019569963216782 -He:0.8433507084846497 Ho:0.06213495507836342 It:0.016054995357990265 he:0.008579101413488388 I:0.00691467709839344 :0.06296556256711483 -resources:0.3753089904785156 beauty:0.0861591249704361 wonders:0.07406966388225555 advantages:0.031648267060518265 features:0.015319609083235264 :0.4174943445250392 -similar:0.3724176585674286 certain:0.16605906188488007 different:0.04558143764734268 particular:0.02689353935420513 new:0.023466715589165688 :0.36558158695697784 -their:0.2618834674358368 -:0.13824419677257538 the:0.08764772862195969 taking:0.0335221029818058 a:0.027725335210561752 :0.4509771689772606 -and:0.8990821242332458 or:0.08069637417793274 by:0.0037724454887211323 &:0.0016583894612267613 while:0.0011516362428665161 :0.013639030396007001 -.:0.07515507191419601 .:0.052809152752161026 for:0.04435287043452263 !:0.03929562494158745 ":0.03771412372589111 :0.7506731562316418 -and:0.6973293423652649 to:0.12815438210964203 by:0.047286659479141235 with:0.02382616512477398 ,:0.019676852971315384 :0.08372659794986248 -.:0.7940800786018372 ,:0.057925157248973846 ?:0.011331740766763687 ;:0.010506846942007542 !:0.010214203968644142 :0.11594197247177362 -race:0.10579390823841095 game:0.1047271341085434 play:0.07142450660467148 chance:0.04143723472952843 spot:0.03919907286763191 :0.6374181434512138 -latter:0.9675179719924927 other:0.009432405233383179 second:0.0048596300184726715 present:0.0014464580453932285 first:0.0012569885002449155 :0.01548654621001333 -and:0.03689534589648247 l:0.036586444824934006 r:0.024482877925038338 d:0.020727988332509995 i:0.019040372222661972 :0.8622669707983732 -John:0.033418674021959305 Henry:0.02010398544371128 George:0.0193187166005373 Joseph:0.017869245260953903 William:0.01780100353062153 :0.8914883751422167 -and:0.16133065521717072 will:0.0933719053864479 to:0.09023011475801468 or:0.05560925602912903 may:0.039084937423467636 :0.56037313118577 -ifies:0.04823638126254082 tell:0.02947559766471386 ed:0.024238845333456993 only:0.02186698094010353 told:0.01727486029267311 :0.8589073345065117 -of:0.8762601017951965 by:0.059993941336870193 from:0.021948272362351418 ot:0.00904457550495863 for:0.00818447582423687 :0.024568633176386356 -of:0.6291959881782532 in:0.09580976516008377 to:0.05753755196928978 on:0.0317581370472908 In:0.017751697450876236 :0.16794686019420624 -no:0.20002685487270355 an:0.07528627663850784 received:0.06124146655201912 purchased:0.031102359294891357 secured:0.027880746871232986 :0.6044622957706451 -narrow:0.2286943644285202 small:0.0704079270362854 short:0.07027557492256165 large:0.06637751311063766 fortunate:0.0553649440407753 :0.5088796764612198 -in:0.1797303855419159 for:0.0999094620347023 by:0.07027953863143921 prove:0.0638938918709755 find:0.04581496864557266 :0.5403717532753944 -.:0.7702659368515015 ,:0.05309884995222092 and:0.025469163432717323 when:0.02265099249780178 to:0.015375295653939247 :0.11313976161181927 -the:0.9 :0.1 -John:0.17322489619255066 James:0.1304287165403366 A:0.04103010147809982 The:0.0404120609164238 Thomas:0.027386916801333427 :0.5875173080712557 -who:0.9656120538711548 that:0.02173205278813839 Who:0.004336539655923843 which:0.0012447212357074022 he:0.0007532794261351228 :0.006321353022940457 -to:0.9770654439926147 as:0.005025229416787624 so:0.0034202318638563156 To:0.0024749310687184334 and:0.002148994477465749 :0.009865169180557132 -desk:0.09524674713611603 hands:0.04500974342226982 way:0.026512732729315758 feet:0.024808170273900032 hand:0.01729516126215458 :0.7911274451762438 -good:0.3851449191570282 fine:0.1683766096830368 successful:0.05314409360289574 nice:0.03342792019248009 prosperous:0.032608408480882645 :0.32729804888367653 -protection:0.029821543022990227 accountability:0.024291492998600006 duty:0.023361658677458763 respect:0.02225607819855213 taxation:0.021151401102542877 :0.879117825999856 -it:0.8131123185157776 this:0.07966871559619904 It:0.030328651890158653 she:0.023867107927799225 he:0.012047014199197292 :0.040976191870868206 -*:0.06161798909306526 ,:0.04022859036922455 .:0.025563716888427734 i:0.019366322085261345 u:0.019357312470674515 :0.8338660690933466 -the:0.9068254828453064 tho:0.01020915899425745 a:0.004259290173649788 tiny:0.0028782032895833254 like:0.002630903385579586 :0.07319696131162345 -for:0.9207995533943176 in:0.022983979433774948 and:0.007029465865343809 with:0.006392764393240213 for:0.005614162888377905 :0.0371800740249455 -possible:0.15401773154735565 hope:0.06836757063865662 left:0.06424493342638016 thought:0.05490901321172714 way:0.03590979799628258 :0.6225509531795979 -,:0.6972732543945312 ;:0.07534897327423096 .:0.061600230634212494 —:0.03983807563781738 and:0.012836098670959473 :0.11310336738824844 -was:0.13290594518184662 succeeded:0.08618302643299103 ,:0.05707084387540817 prevailed:0.04323680326342583 existed:0.040601689368486404 :0.640001691877842 -the:0.9 :0.1 -,:0.6094965934753418 will:0.09263825416564941 would:0.04341188818216324 has:0.03782752528786659 is:0.011377017013728619 :0.20524872187525034 -a:0.22340643405914307 the:0.09294448047876358 yellow:0.07611960917711258 high:0.04675770923495293 excessive:0.024630067870020866 :0.536141699180007 -and:0.6084437966346741 for:0.09392014145851135 or:0.027435943484306335 of:0.017387036234140396 to:0.016459204256534576 :0.23635387793183327 -an:0.7383506298065186 the:0.12517812848091125 a:0.029170295223593712 any:0.02239120751619339 no:0.012658889405429363 :0.07225084956735373 -a:0.12786445021629333 now:0.12368134409189224 still:0.0414297990500927 the:0.02921680174767971 not:0.02039027400314808 :0.6574173308908939 -scene:0.0759924054145813 story:0.029516177251935005 present:0.02389346994459629 words:0.02030949667096138 world:0.02012939751148224 :0.8301590532064438 -The:0.7765448689460754 A:0.16401644051074982 This:0.015653640031814575 Her:0.006976294331252575 Our:0.006092804949730635 :0.03071595123037696 -have:0.8886927366256714 had:0.060410358011722565 has:0.025198493152856827 ha:0.007076915819197893 hath:0.0025261833798140287 :0.0160953130107373 -the:0.40888819098472595 any:0.10533514618873596 said:0.10479118674993515 an:0.04622106999158859 his:0.04249119386076927 :0.29227321222424507 -the:0.9 :0.1 -point:0.9974367022514343 place:0.0007962582749314606 Point:0.0003697817155625671 point:0.0003621622163336724 spot:0.00033178107696585357 :0.0007033144647721201 -Democratic:0.35675764083862305 Republican:0.10186896473169327 State:0.07290668785572052 Democrat:0.03464948758482933 Deputy:0.023391082882881165 :0.41042613610625267 -but:0.5998419523239136 and:0.24217113852500916 for:0.026476845145225525 yet:0.024696320295333862 though:0.009949347004294395 :0.09686439670622349 -was:0.22213231027126312 held:0.10554307699203491 kept:0.09792803972959518 remained:0.07075617462396622 brought:0.03316847234964371 :0.47047192603349686 -they:0.6240748167037964 he:0.052133481949567795 may:0.04572528228163719 to:0.02306927554309368 ho:0.014940495602786541 :0.2400566479191184 -from:0.20127782225608826 at:0.16604050993919373 for:0.1271219402551651 on:0.0890490859746933 in:0.08459977805614471 :0.3319108635187149 -notice:0.37070611119270325 sale:0.04860139265656471 mortgage:0.030219685286283493 act:0.025504890829324722 ,:0.02178332768380642 :0.5031845923513174 -the:0.5643233060836792 Mrs:0.06595660746097565 .:0.018327614292502403 of:0.016902200877666473 his:0.011905426159501076 :0.3225848451256752 -that:0.7948253154754639 ,:0.14092659950256348 ::0.03278180956840515 how:0.005021584220230579 what:0.004830744583159685 :0.02161394665017724 -the:0.43153637647628784 a:0.08591637015342712 at:0.07713305205106735 now:0.05822502821683884 tho:0.04343002662062645 :0.3037591464817524 -illness:0.2281869351863861 suffering:0.15689176321029663 sickness:0.12454330921173096 ,:0.067612424492836 pain:0.04420982301235199 :0.3785557448863983 -big:0.06529878824949265 much:0.030951103195548058 long:0.028630169108510017 a:0.026462748646736145 hy:0.017834926024079323 :0.8308222647756338 -it:0.492872029542923 this:0.18528003990650177 that:0.10283514112234116 him:0.09988372027873993 them:0.02183522842824459 :0.09729384072124958 -ground:0.1741672158241272 quar:0.04699701815843582 sand:0.037104200571775436 land:0.036313463002443314 the:0.03237171843647957 :0.6730463840067387 -nd:0.7642756104469299 n:0.01267604436725378 d:0.007396798115223646 ny:0.006177251227200031 t:0.005999422166496515 :0.2034748736768961 -the:0.5175980925559998 a:0.12185139209032059 in:0.07007133215665817 our:0.06794928759336472 its:0.041335031390190125 :0.18119486421346664 -which:0.9924613833427429 whom:0.003950205165892839 how:0.0005349116981960833 where:0.00045592477545142174 which:0.0004552747996058315 :0.002142300218110904 -the:0.9 :0.1 -EVEN:0.4443371891975403 Evening:0.047105275094509125 NEW:0.019406665116548538 DAY:0.015769112855196 FIRST:0.012082656845450401 :0.46129910089075565 -these:0.3710533678531647 the:0.24794211983680725 its:0.19707848131656647 those:0.09436525404453278 their:0.055836021900177 :0.03372475504875183 -While:0.26236459612846375 Although:0.14029096066951752 If:0.11680303514003754 As:0.11328455060720444 Though:0.09674616158008575 :0.270510695874691 -action:0.04643607512116432 attitude:0.04227343201637268 failure:0.03889526426792145 presence:0.02625936269760132 testimony:0.026013920083642006 :0.8201219458132982 -,:0.07006822526454926 s:0.04321861267089844 -:0.02356862835586071 a:0.022735677659511566 and:0.017584308981895447 :0.8228245470672846 -come:0.12297709286212921 divided:0.09931104630231857 fall:0.07568874210119247 enter:0.06972520798444748 turn:0.06403123587369919 :0.5682666748762131 -roads:0.989941418170929 road:0.002335598925128579 highways:0.0022742911241948605 Roads:0.001791039016097784 streets:0.0014263741904869676 :0.0022312785731628537 -great:0.14871175587177277 perfect:0.07659786194562912 a:0.03829997405409813 such:0.03635628893971443 surgical:0.02648835815489292 :0.6735457610338926 -known:0.9039238095283508 named:0.027589986100792885 such:0.017962343990802765 dressed:0.014891475439071655 ,:0.007471875753253698 :0.028160509187728167 -He:0.9835526943206787 he:0.005755342543125153 It:0.004069970455020666 Ho:0.0008679742459207773 They:0.0006902956520207226 :0.00506372278323397 -to:0.9396449327468872 for:0.019981779158115387 To:0.011644523590803146 on:0.0063371253199875355 In:0.006154465489089489 :0.016237173695117235 -out:0.6465364694595337 on:0.051523156464099884 forth:0.04455115273594856 away:0.04451645165681839 back:0.023993924260139465 :0.18887884542346 -is:0.3259308636188507 of:0.08530134707689285 Is:0.0702972412109375 to:0.05799691379070282 from:0.04533911496400833 :0.4151345193386078 -Baltimore:0.0336528904736042 and:0.025186708196997643 Cleveland:0.019606301560997963 Savannah:0.01955409161746502 Chicago:0.01926632598042488 :0.8827336821705103 -revenue:0.9432004690170288 tax:0.015033037401735783 taxation:0.009439392015337944 Revenue:0.0018324068514630198 same:0.0010063729714602232 :0.02948832174297422 -.:0.5793033242225647 State:0.09581463038921356 state:0.08248621970415115 country:0.03958989307284355 .:0.030742911621928215 :0.17206302098929882 -the:0.9 :0.1 -friends:0.04127141460776329 roots:0.024907028302550316 brethren:0.022738482803106308 feelings:0.02188689447939396 name:0.01708010956645012 :0.872116070240736 -and:0.3545307219028473 or:0.1063985750079155 of:0.09437311440706253 ,:0.08593785762786865 in:0.05503349378705025 :0.3037262372672558 -the:0.6878097057342529 tho:0.06069989129900932 a:0.03076763264834881 its:0.01631358079612255 that:0.01092838216573 :0.1934808073565364 -were:0.8845815658569336 are:0.0919499546289444 was:0.007212875876575708 lie:0.00227722036652267 being:0.0021323557011783123 :0.011846027569845319 -Post:0.07726321369409561 store:0.06900111585855484 Market:0.04191875830292702 House:0.03654995560646057 place:0.029432976618409157 :0.7458339799195528 -8:0.1375322937965393 9:0.08633506298065186 7:0.0723988488316536 10:0.06603687256574631 6:0.062438201159238815 :0.5752587206661701 -to:0.24155713617801666 and:0.0972432792186737 ,:0.039762943983078 was:0.03519601374864578 would:0.026687227189540863 :0.559553399682045 -my:0.8915797472000122 his:0.05843039229512215 My:0.005654015578329563 m:0.004887182731181383 me:0.004436884541064501 :0.0350117776542902 -more:0.0804360955953598 very:0.05558096617460251 great:0.04011379927396774 certain:0.03169050067663193 perfect:0.021520283073186874 :0.7706583552062511 -.:0.05453496798872948 *:0.048448994755744934 i:0.02467220649123192 a:0.02072981745004654 «:0.01728338561952114 :0.834330627694726 -the:0.3260357081890106 such:0.2915233075618744 said:0.2537829875946045 this:0.045168355107307434 tho:0.03830837830901146 :0.045181263238191605 -as:0.9984821677207947 As:0.0004198862297926098 a:0.00024423893773928285 and:0.00020609017519745976 -:0.0001179304308607243 :0.0005296865056152456 -depths:0.3289091885089874 pit:0.1639845222234726 abyss:0.1377677321434021 trough:0.016407422721385956 void:0.0158036220818758 :0.3371275123208761 -understood:0.28612783551216125 said:0.18582329154014587 believed:0.16224312782287598 thought:0.05849716067314148 stated:0.031554535031318665 :0.27575404942035675 -the:0.9 :0.1 -occupants:0.5491199493408203 owners:0.15690641105175018 drivers:0.12791423499584198 driver:0.05285301432013512 owner:0.016341540962457657 :0.09686484932899475 -laws:0.2449982911348343 law:0.20635156333446503 statute:0.10860655456781387 statutes:0.06825269758701324 provisions:0.0522267110645771 :0.31956418231129646 -the:0.7255319952964783 our:0.0589587576687336 tho:0.04119177162647247 this:0.033122263848781586 my:0.02800314873456955 :0.11319206282496452 -money:0.13636371493339539 tribute:0.06650401651859283 compensation:0.034197766333818436 appropriations:0.025862200185656548 cash:0.024833083152770996 :0.7122392188757658 -rs:0.08065921813249588 troubles:0.021571211516857147 ts:0.018740125000476837 ings:0.014656629413366318 ints:0.01278637908399105 :0.8515864368528128 -,:0.15470227599143982 and:0.1455536186695099 ly:0.11260262876749039 land:0.03113296441733837 ually:0.026728052645921707 :0.5292804595082998 -for:0.9814080595970154 with:0.0023322890046983957 to:0.00232889736071229 as:0.002206617733463645 in:0.0020297958981245756 :0.009694340405985713 -two:0.7227787375450134 the:0.06610144674777985 three:0.059763435274362564 these:0.022010115906596184 four:0.01906874217092991 :0.11027752235531807 -made:0.769287645816803 earned:0.1489259898662567 saved:0.013610023073852062 found:0.007827677763998508 learned:0.007827378809452057 :0.05252128466963768 -be:0.932026207447052 become:0.02785736881196499 make:0.006741933524608612 feel:0.0034465112257748842 prove:0.003171413205564022 :0.02675656578503549 -..:0.7791159749031067 ....:0.13469333946704865 ..:0.017552493140101433 ...:0.01365956012159586 .:0.006604115944355726 :0.04837451642379165 -not:0.19383050501346588 just:0.10322760790586472 been:0.10086086392402649 never:0.07922158390283585 only:0.036696985363960266 :0.4861624538898468 -porch:0.724925696849823 day:0.010850649327039719 st:0.009012660942971706 terr:0.008521241135895252 -:0.006058678962290287 :0.24063107278198004 -tho:0.5029313564300537 the:0.2790984511375427 a:0.11655455082654953 said:0.012853228487074375 that:0.007128965575248003 :0.08143344754353166 -the:0.979727029800415 our:0.003886440070345998 a:0.0037530153058469296 this:0.0026245408225804567 tho:0.002345217391848564 :0.007663756608963013 -the:0.7023309469223022 every:0.03345004469156265 this:0.024461492896080017 your:0.02404213882982731 a:0.02362765744328499 :0.1920877192169428 -and:0.36012008786201477 ,:0.25220784544944763 or:0.037958115339279175 to:0.02818465605378151 which:0.012830629013478756 :0.30869866628199816 -payable:0.4350244998931885 due:0.321652889251709 paid:0.0946299135684967 owing:0.03842577710747719 unpaid:0.018763892352581024 :0.09150302782654762 -named:0.9748098254203796 called:0.006652153097093105 ,:0.0052820658311247826 of:0.005281789228320122 from:0.002151540480554104 :0.005822625942528248 -it:0.7744792699813843 money:0.02939935214817524 he:0.01824815385043621 It:0.017023446038365364 there:0.00822234246879816 :0.15262743551284075 -sign:0.3397423326969147 signs:0.15793143212795258 sense:0.12257206439971924 mark:0.04796161130070686 badge:0.02646055817604065 :0.305332001298666 -yesterday:0.1840972602367401 once:0.10076496750116348 recently:0.036270126700401306 when:0.030175799503922462 ,:0.027550656348466873 :0.6211411897093058 -com:0.10683387517929077 pro:0.04193081334233284 «:0.03824315592646599 ­:0.018465541303157806 pur:0.015437359921634197 :0.7790892543271184 -out:0.4102424383163452 off:0.14206834137439728 up:0.09087570756673813 in:0.049548737704753876 on:0.048297565430402756 :0.25896720960736275 -woke:0.030131760984659195 came:0.028147373348474503 turned:0.025582032278180122 awoke:0.018489327281713486 spoke:0.015481225214898586 :0.8821682808920741 -not:0.98011714220047 almost:0.00643170764669776 so:0.002291693352162838 nearly:0.0016003160271793604 but:0.0011410349979996681 :0.008418105775490403 -of:0.7622470259666443 or:0.09852603077888489 and:0.08998066931962967 to:0.00897823553532362 ,:0.008072467520833015 :0.03219557087868452 -wall:0.09378348290920258 street:0.04540252685546875 walls:0.03572205454111099 building:0.03146105259656906 ground:0.025168167427182198 :0.7684627156704664 -6:0.6723781824111938 8:0.05194871127605438 7:0.046142008155584335 4:0.04606027901172638 5:0.04092062637209892 :0.14255019277334213 -the:0.9 :0.1 -the:0.951045036315918 an:0.026232387870550156 your:0.005178988445550203 our:0.0042598312720656395 its:0.0015883934684097767 :0.011695362627506256 -to:0.982130229473114 and:0.0028424286283552647 ,:0.0025960970669984818 will:0.0011247432557865977 can:0.0010885054944083095 :0.010217996081337333 -and:0.590878427028656 but:0.1020791083574295 for:0.06312146782875061 or:0.03663796931505203 that:0.02702857181429863 :0.18025445565581322 -began:0.4959377646446228 started:0.1828567385673523 commenced:0.12870708107948303 came:0.054121777415275574 was:0.030569445341825485 :0.10780719295144081 -a:0.29509684443473816 any:0.07701600342988968 a:0.03630034998059273 of:0.029263051226735115 the:0.028234422206878662 :0.5340893287211657 -for:0.3532598316669464 living:0.1033356562256813 spending:0.07547404617071152 about:0.053279049694538116 waiting:0.02733728289604187 :0.3873141333460808 -and:0.99321049451828 ,:0.002598028164356947 &:0.0017072880873456597 und:0.0002829412114806473 and:0.0002822981041390449 :0.0019189499143976718 -good:0.16377870738506317 bad:0.09028293192386627 big:0.042783308774232864 great:0.03529500588774681 much:0.03340386226773262 :0.6344561837613583 -right:0.3830924928188324 fit:0.06640049070119858 best:0.03458225354552269 ready:0.026183387264609337 power:0.02313571237027645 :0.46660566329956055 -and:0.10379982739686966 but:0.07112705707550049 yet:0.0704212635755539 not:0.0598529614508152 very:0.04465124383568764 :0.6501476466655731 -which:0.15545427799224854 the:0.1402166783809662 .:0.060309432446956635 this:0.04383397102355957 it:0.03712280094623566 :0.5630628392100334 -breeding:0.11777741461992264 dry:0.08216246962547302 barn:0.048110175877809525 loading:0.03058042749762535 feed:0.025902852416038513 :0.695466659963131 -in:0.24675069749355316 In:0.15855681896209717 from:0.1299973726272583 into:0.06956180930137634 through:0.06767355650663376 :0.32745974510908127 -and:0.5675634741783142 who:0.02838623896241188 or:0.021597644314169884 then:0.016214903444051743 but:0.01573536917567253 :0.35050236992537975 -when:0.38134583830833435 if:0.22014370560646057 more:0.0756792426109314 though:0.07029663026332855 so:0.032208431512117386 :0.22032615169882774 -with:0.0939791351556778 for:0.033614661544561386 ver:0.027335407212376595 ':0.026918387040495872 ,:0.024903321638703346 :0.793249087408185 -case:0.07270987331867218 very:0.059424884617328644 way:0.04880385845899582 tho:0.020976560190320015 same:0.013635149225592613 :0.7844496741890907 -do:0.9579452872276306 say:0.02245214208960533 Do:0.002066671848297119 be:0.0006950353272259235 try:0.0005517632234841585 :0.016289100283756852 -the:0.19232337176799774 a:0.16018055379390717 tha:0.03867791220545769 i:0.025536468252539635 my:0.020369604229927063 :0.5629120897501707 -.:0.6891793608665466 him:0.09174618870019913 them:0.06732925772666931 .:0.021091600880026817 .":0.015433432534337044 :0.11522015929222107 -in:0.21136437356472015 In:0.0724204033613205 two:0.056808795779943466 several:0.04889804124832153 at:0.04679921269416809 :0.5637091733515263 -are:0.7505474090576172 ,:0.06956077367067337 were:0.016251685097813606 get:0.009711035527288914 where:0.008717285469174385 :0.14521181117743254 -were:0.589219868183136 was:0.07648533582687378 started:0.061512697488069534 began:0.05964488908648491 went:0.04128262773156166 :0.17185458168387413 -the:0.9 :0.1 -the:0.5633897185325623 a:0.2476949840784073 this:0.05694491043686867 their:0.026618801057338715 his:0.017440710216760635 :0.08791087567806244 -on:0.3736332058906555 the:0.17555546760559082 to:0.06493886560201645 from:0.061597440391778946 at:0.06029938533902168 :0.2639756351709366 -and:0.538669764995575 as:0.1270056664943695 for:0.07719483971595764 but:0.06339443475008011 if:0.03201961889863014 :0.16171567514538765 -His:0.42668959498405457 his:0.11031042039394379 The:0.0868343636393547 his:0.057038623839616776 he:0.03508251532912254 :0.2840444818139076 -docks:0.09744927287101746 dams:0.0687216967344284 reservoirs:0.06454747170209885 boats:0.05716070160269737 vessels:0.051636844873428345 :0.6604840122163296 -and:0.12029998004436493 or:0.09374701231718063 not:0.05308478698134422 but:0.05261916294693947 as:0.036768652498722076 :0.6434804052114487 -Smith:0.47922682762145996 Miller:0.016225166618824005 Mitchell:0.015335198491811752 Jones:0.011822095140814781 Moore:0.009060340002179146 :0.46833037212491035 -the:0.7616866827011108 this:0.04186892509460449 said:0.022675229236483574 that:0.018975064158439636 railroad:0.013607453554868698 :0.14118664525449276 -will:0.4535050094127655 would:0.3462008833885193 may:0.06211291626095772 can:0.04433755204081535 could:0.034999746829271317 :0.05884389206767082 -our:0.3076324462890625 the:0.12301677465438843 these:0.09987859427928925 such:0.07550643384456635 both:0.038648270070552826 :0.35531748086214066 -arising:0.09970200806856155 suffer:0.07884904742240906 derive:0.06838610768318176 arise:0.06347564607858658 derived:0.060226112604141235 :0.6293610781431198 -the:0.9 :0.1 -had:0.11537840217351913 has:0.09217561036348343 was:0.08282440900802612 should:0.08193648606538773 is:0.042948175221681595 :0.584736917167902 -looking:0.3925670385360718 hunting:0.16542646288871765 waiting:0.12872372567653656 working:0.08091434836387634 digging:0.0528581477701664 :0.17951027676463127 -,:0.17232125997543335 property:0.03261951729655266 interest:0.03228573501110077 o:0.028063762933015823 owment:0.023446418344974518 :0.7112633064389229 -year:0.4319797456264496 years:0.2788044214248657 months:0.08626808226108551 time:0.07670193910598755 days:0.03984537720680237 :0.08640043437480927 -the:0.3841942846775055 his:0.23997364938259125 their:0.1349457949399948 tho:0.04008481279015541 this:0.03673933073878288 :0.16406212747097015 -more:0.451171875 two:0.3604370057582855 all:0.05855540931224823 both:0.036482397466897964 three:0.02519364096224308 :0.0681596715003252 -,:0.33753371238708496 boat:0.334939569234848 boat:0.026041783392429352 of:0.018115989863872528 vessel:0.015404736623167992 :0.26796420849859715 -,:0.2627526819705963 .:0.050071150064468384 ;:0.03580243140459061 nt:0.01565590687096119 .,:0.01212644949555397 :0.6235913801938295 -forth:0.9322504997253418 out:0.04199448227882385 up:0.005123337730765343 aside:0.002577036153525114 down:0.001982847461476922 :0.016071796650066972 -ed:0.5433802604675293 ing:0.22035808861255646 fed:0.018012866377830505 paid:0.004057928454130888 ported:0.004048782866448164 :0.2101420732215047 -the:0.9 :0.1 -started:0.316450297832489 did:0.11068899929523468 found:0.07232971489429474 quit:0.07143089175224304 left:0.058167465031147 :0.3709326311945915 -in:0.40541088581085205 from:0.19002893567085266 at:0.14448533952236176 to:0.06737768650054932 In:0.025647347792983055 :0.16704980470240116 -,:0.10070576518774033 and:0.05486578494310379 for:0.03452354669570923 of:0.023434102535247803 ly:0.019153811037540436 :0.7673169896006584 -New:0.9920880198478699 the:0.00321439397521317 new:0.001213101320900023 New:0.0003294931084383279 these:0.00028127082623541355 :0.0028737209213431925 -great:0.10505004972219467 general:0.025477085262537003 true:0.0240618959069252 whole:0.018783925101161003 first:0.016404680907726288 :0.8102223630994558 -disease:0.22952306270599365 symptoms:0.05819302052259445 decay:0.028083762153983116 damage:0.027457885444164276 blight:0.02389175072312355 :0.632850518450141 -the:0.9 :0.1 -and:0.8330236077308655 while:0.03200613707304001 or:0.017315320670604706 that:0.016664545983076096 ;:0.016180168837308884 :0.08481021970510483 -stand:0.7400087118148804 vote:0.020875103771686554 seat:0.020489955320954323 position:0.018383251503109932 lead:0.014138304628431797 :0.18610467296093702 -.:0.9485247731208801 *.:0.02655947208404541 .:0.014212789945304394 ,:0.0034464497584849596 ..:0.001579000148922205 :0.0056775149423629045 -about:0.1109912171959877 to:0.09789001941680908 I:0.06803417205810547 but:0.05401191860437393 ,:0.040303073823451996 :0.6287695989012718 -rider:0.34548088908195496 man:0.1113353967666626 builder:0.08343281596899033 salesman:0.058519039303064346 mechanic:0.039470791816711426 :0.36176106706261635 -taxes:0.7149773836135864 tax:0.014956819824874401 debts:0.01281778048723936 bonds:0.012301960028707981 property:0.011809779331088066 :0.23313627671450377 -.:0.3408018946647644 and:0.19283883273601532 .:0.06209263578057289 who:0.04084175452589989 where:0.01696854643523693 :0.34645633585751057 -the:0.22104278206825256 large:0.09790452569723129 low:0.06452914327383041 a:0.0539579875767231 considerable:0.03712218254804611 :0.5254433788359165 -twenty:0.08589930087327957 ten:0.07688377052545547 forty:0.0681246668100357 five:0.06366859376430511 two:0.05242687836289406 :0.6529967896640301 -stop:0.4080953896045685 finish:0.06771035492420197 end:0.057714544236660004 leave:0.04334549605846405 continue:0.02597830817103386 :0.39715590700507164 -1880:0.1464063674211502 1870:0.05572503060102463 1900:0.04732218384742737 1893:0.0453730933368206 1888:0.04398079961538315 :0.661192525178194 -,:0.14977231621742249 and:0.10419261455535889 %:0.09254065901041031 cents:0.0689447894692421 %,:0.040539324283599854 :0.5440102964639664 -but:0.8123005032539368 and:0.034434203058481216 although:0.01818348653614521 when:0.018170207738876343 though:0.0173923559486866 :0.09951924346387386 -rights:0.863183319568634 right:0.05441295728087425 mode:0.003912860061973333 way:0.0032856953330338 interests:0.0029116368386894464 :0.07229353091679513 -with:0.9688783884048462 in:0.009928322397172451 of:0.006626795046031475 on:0.004630229901522398 by:0.002465928206220269 :0.007470336044207215 -they:0.9384098649024963 They:0.012700160034000874 ,:0.008725113235414028 all:0.004787213169038296 he:0.002560358727350831 :0.032817289931699634 -Now:0.2715107500553131 And:0.19976596534252167 But:0.1620844304561615 So:0.04358409717679024 Perhaps:0.037895310670137405 :0.2851594462990761 -had:0.2426060289144516 found:0.08025729656219482 received:0.062107935547828674 enjoyed:0.05967174470424652 learned:0.05277012661099434 :0.502586867660284 -,:0.07996924966573715 for:0.06124792620539665 to:0.05585522577166557 of:0.04799360781908035 on:0.03552806004881859 :0.7194059304893017 -of:0.9942313432693481 ot:0.001347442390397191 the:0.0007445712690241635 in:0.00047163735143840313 all:0.0003393203660380095 :0.0028656853537540883 -been:0.9426997303962708 become:0.01744062639772892 bene:0.004988167434930801 he:0.004051544237881899 grown:0.0026832702569663525 :0.028136661276221275 -of:0.38758566975593567 on:0.12864840030670166 about:0.11459151655435562 to:0.10965456068515778 in:0.08403811603784561 :0.17548173666000366 -young:0.8151248693466187 old:0.08213318884372711 little:0.02009609155356884 poor:0.00583275593817234 older:0.004043361637741327 :0.07276973268017173 -and:0.9312778115272522 or:0.016728600487113 ,:0.008920141495764256 &:0.0077330609783530235 tho:0.0048522488214075565 :0.030488136690109968 -be:0.710416316986084 those:0.10251104086637497 persons:0.09462077915668488 people:0.01343189924955368 anyone:0.00913676992058754 :0.06988319382071495 -tax:0.9618706703186035 taxes:0.032768458127975464 taxation:0.0021012681536376476 Tax:0.001077252789400518 tax:0.0002716683375183493 :0.0019106822728645056 -.:0.17896601557731628 when:0.16400901973247528 ,:0.11142570525407791 before:0.03212348744273186 until:0.03190893307328224 :0.4815668389201164 -had:0.931937575340271 have:0.024560144171118736 were:0.005612378008663654 'd:0.005085135344415903 would:0.004857413470745087 :0.027947353664785624 -,:0.687541663646698 and:0.13473336398601532 of:0.03272572532296181 or:0.024265272542834282 from:0.014196702279150486 :0.10653727222234011 -the:0.9 :0.1 -a:0.9853391647338867 some:0.0019784648902714252 the:0.0017503103008493781 their:0.0015232012374326587 its:0.0015039457939565182 :0.007904913043603301 -other:0.35651522874832153 old:0.02875690720975399 elderly:0.023129047825932503 older:0.021626658737659454 deceased:0.019355937838554382 :0.5506162196397781 -the:0.8530703186988831 his:0.045725248754024506 a:0.04036563262343407 its:0.020777514204382896 this:0.009094917215406895 :0.03096636850386858 -meeting:0.26812711358070374 burial:0.09995786845684052 service:0.0753956139087677 funeral:0.06594649702310562 ceremony:0.03777876868844032 :0.4527941383421421 -the:0.9 :0.1 -pass:0.431588739156723 go:0.10682397335767746 come:0.05441568046808243 break:0.05059986934065819 get:0.04134557768702507 :0.31522615998983383 -as:0.9352129697799683 so:0.02823016047477722 as:0.0033737795893102884 a:0.0025276008527725935 and:0.0020953768398612738 :0.02856011246331036 -cases:0.23235391080379486 ways:0.16253544390201569 respects:0.12001104652881622 part:0.10006721317768097 quarters:0.08573776483535767 :0.2992946207523346 -to:0.9803363680839539 that:0.003286976832896471 ,:0.0009196843020617962 and:0.0008463499834761024 which:0.0007344105397351086 :0.013876210257876664 -light:0.1368642896413803 use:0.0711149275302887 lens:0.06609071791172028 eye:0.0394064262509346 power:0.023005740717053413 :0.6635178979486227 -which:0.18929234147071838 and:0.1825127899646759 will:0.0569094680249691 that:0.048490434885025024 it:0.03467147424817085 :0.48812349140644073 -registration:0.45296257734298706 registrations:0.4065561294555664 affiliation:0.05406802520155907 number:0.004053609445691109 numbers:0.004004213958978653 :0.0783554445952177 -if:0.2114633023738861 at:0.13838957250118256 ,:0.11180504411458969 by:0.07275820523500443 in:0.06773045659065247 :0.39785341918468475 -who:0.403764933347702 they:0.13645032048225403 that:0.0557570606470108 ,:0.05160846933722496 1:0.038380444049835205 :0.314038772135973 -,:0.20871944725513458 leave:0.16637519001960754 withdraw:0.09848157316446304 surrender:0.09606392681598663 retreat:0.04035593941807747 :0.39000392332673073 -The:0.23170167207717896 Her:0.15381377935409546 This:0.06081407517194748 No:0.030638381838798523 She:0.02915424294769764 :0.49387784861028194 -before:0.6015448570251465 once:0.054252590984106064 yet:0.0421895906329155 even:0.04069175198674202 personally:0.01932578720152378 :0.24199542216956615 -a:0.7016268968582153 the:0.09357398003339767 in:0.021753646433353424 some:0.01566663756966591 one:0.014223379082977772 :0.1531554600223899 -Methodist:0.14578835666179657 Presbyterian:0.12568461894989014 Episcopal:0.07695360481739044 Catholic:0.045589376240968704 United:0.03337044268846512 :0.572613600641489 -as:0.23819854855537415 with:0.09927169233560562 took:0.05305083468556404 at:0.041051942855119705 in:0.040846798568964005 :0.5275801829993725 -many:0.1337885707616806 several:0.09260284155607224 numerous:0.05149039253592491 other:0.02535215951502323 interesting:0.019952841103076935 :0.6768131945282221 -very:0.058793019503355026 little:0.0564485639333725 two:0.04132973775267601 delightful:0.038182374089956284 many:0.034837864339351654 :0.7704084403812885 -part:0.13232044875621796 formerly:0.05146544799208641 late:0.051328450441360474 west:0.03986096382141113 property:0.031814925372600555 :0.6932097636163235 -,:0.3114383816719055 shall:0.19357410073280334 to:0.14009341597557068 will:0.10015329718589783 and:0.10004198551177979 :0.15469881892204285 -,:0.5248939394950867 of:0.16211001574993134 in:0.06853631883859634 and:0.05080762505531311 with:0.01933247782289982 :0.17431962303817272 -,:0.4856168031692505 .:0.043917469680309296 and:0.04377133399248123 of:0.03329204395413399 's:0.02493627741932869 :0.3684660717844963 -time:0.12506400048732758 same:0.0865274965763092 short:0.044420741498470306 very:0.03389644995331764 a:0.02823193371295929 :0.681859377771616 -by:0.21742099523544312 to:0.15682904422283173 with:0.12558652460575104 of:0.11173988878726959 and:0.08210411667823792 :0.3063194304704666 -be:0.8148437738418579 bo:0.09129573404788971 remain:0.020103802904486656 become:0.011048885993659496 lie:0.00430891802534461 :0.05839888518676162 -covered:0.19972848892211914 reached:0.11344189196825027 formed:0.0573284812271595 penetrated:0.04911451041698456 deposited:0.04551590234041214 :0.5348707251250744 -has:0.9187353849411011 had:0.060000378638505936 is:0.007551280315965414 having:0.0025292872451245785 was:0.0025250406470149755 :0.008658628212288022 -on:0.13045522570610046 by:0.10023748874664307 all:0.07478100806474686 in:0.06763797998428345 like:0.04860471934080124 :0.5782835781574249 -1908:0.05291514843702316 1907:0.04669642820954323 1898:0.0437588095664978 1897:0.03047364577651024 1893:0.03023182600736618 :0.7959241420030594 -Buchanan:0.04619624838232994 Harrison:0.0449395552277565 Jones:0.017784951254725456 Johnson:0.016442587599158287 Jefferson:0.013386495411396027 :0.8612501621246338 -owes:0.49977657198905945 makes:0.08832018822431564 Is:0.06106248497962952 is:0.05566630885004997 has:0.02570423297584057 :0.26947021298110485 -the:0.08939672261476517 a:0.04458445683121681 st:0.025796515867114067 -:0.023503074422478676 ne:0.022300701588392258 :0.794418528676033 -Tre:0.3070243299007416 Treasury:0.0668133869767189 committee:0.018909726291894913 treasury:0.018584957346320152 asury:0.014860445633530617 :0.5738071538507938 -for:0.5247488021850586 to:0.12399346381425858 in:0.04304061830043793 all:0.03286261111497879 on:0.023163648322224617 :0.2521908562630415 --:0.03360387310385704 r:0.02320973575115204 few:0.020940100774168968 ng:0.020300740376114845 f:0.01865517720580101 :0.8832903727889061 -In:0.21039384603500366 u:0.05991748347878456 il:0.05068494752049446 i:0.04058834910392761 f:0.03900805488228798 :0.5994073189795017 -By:0.23482005298137665 In:0.21448349952697754 After:0.14824454486370087 When:0.11516507714986801 Without:0.05189065635204315 :0.23539616912603378 -been:0.7101258039474487 found:0.04518625885248184 had:0.03947143256664276 known:0.028086848556995392 seen:0.017553921788930893 :0.15957573428750038 -bride:0.9875838160514832 groom:0.005635111127048731 mother:0.0014469870366156101 husband:0.0006717393989674747 parents:0.0006137923919595778 :0.004048553993925452 -ing:0.13530096411705017 pose:0.03127986192703247 out:0.02278505451977253 er:0.021966489031910896 ow:0.017795586958527565 :0.7708720434457064 -,:0.04088057205080986 has:0.03152867406606674 is:0.0162317156791687 .:0.014782322570681572 have:0.014335466548800468 :0.8822412490844727 -The:0.628188967704773 Both:0.09192707389593124 These:0.08965049684047699 Two:0.05589351803064346 Those:0.023858794942498207 :0.11048114858567715 -com:0.20435604453086853 Com:0.08630348742008209 aud:0.06822247058153152 pay:0.012919191271066666 tax:0.011760685592889786 :0.6164381206035614 -upon:0.12654654681682587 beneath:0.09467925131320953 on:0.08686143904924393 beside:0.06473284214735031 under:0.05312356725335121 :0.5740563534200191 -a:0.9356975555419922 very:0.01594654470682144 such:0.008339021354913712 the:0.007906709797680378 this:0.004749827086925507 :0.027360341511666775 -required:0.07891679555177689 ready:0.06664156913757324 suitable:0.03495108708739281 available:0.022464768961071968 sufficient:0.021839294582605362 :0.7751864846795797 -pull:0.11049291491508484 ride:0.07099243998527527 push:0.04638301208615303 take:0.044434912502765656 carry:0.03219691291451454 :0.6954998075962067 -water:0.5741636753082275 men:0.12059447169303894 waters:0.025296470150351524 boats:0.012914937920868397 steam:0.011997107416391373 :0.2550333375111222 -Ohio:0.12616194784641266 railroad:0.050287142395973206 same:0.033898498862981796 local:0.025465527549386024 Union:0.01854369416832924 :0.7456431891769171 -will:0.247828871011734 would:0.0906619280576706 we:0.08583445101976395 may:0.03586838021874428 should:0.026143301278352737 :0.5136630684137344 -with:0.3330424129962921 the:0.20971675217151642 and:0.07277052104473114 having:0.06407532095909119 an:0.02911391295492649 :0.29128107987344265 -son:0.5867046117782593 daughter:0.2330431342124939 husband:0.03069392777979374 ,:0.025440385565161705 brother:0.024885544553399086 :0.0992323961108923 -hail:0.057009823620319366 were:0.03143416345119476 hundreds:0.02443285658955574 bands:0.01752358302474022 cries:0.01614081673324108 :0.8534587565809488 -line:0.9898472428321838 lines:0.005465574096888304 Line:0.0009271042654290795 boundary:0.0006062936154194176 line:0.00020957321976311505 :0.002944211970316246 -use:0.20032770931720734 have:0.04207294434309006 show:0.027911897748708725 raise:0.023883968591690063 gain:0.02317730151116848 :0.6826261784881353 -the:0.9 :0.1 -strings:0.5107588171958923 pocket:0.039214398711919785 strings:0.030615266412496567 door:0.026534244418144226 gates:0.02466907911002636 :0.36820819415152073 -do:0.9884828925132751 be:0.0017930555623024702 get:0.0015245500253513455 have:0.0006289393058978021 doing:0.0006005542818456888 :0.006970008311327547 -Egyptians:0.7337539196014404 Greeks:0.12901057302951813 Romans:0.03440089896321297 Turks:0.01133283693343401 Indians:0.010920833796262741 :0.08058093767613173 -tion:0.44952473044395447 ment:0.030751271173357964 ty:0.02483023889362812 ter:0.01999012939631939 ing:0.016625192016363144 :0.4582784380763769 -of:0.6466929912567139 ,:0.05799392610788345 over:0.03528708219528198 by:0.027734151110053062 ot:0.023758480325341225 :0.2085333690047264 -reject:0.6046745777130127 refuse:0.24392648041248322 deny:0.04705127328634262 decline:0.01753051020205021 veto:0.008613817393779755 :0.0782033409923315 -write:0.3281956911087036 break:0.22745247185230255 pin:0.05730052292346954 put:0.03397946432232857 count:0.03055771254003048 :0.32251413725316525 -and:0.4995214641094208 ,:0.05536999925971031 In:0.04987100884318352 with:0.03398427367210388 in:0.029000919312238693 :0.3322523348033428 -Great:0.1181425154209137 City:0.06465895473957062 Town:0.03363543748855591 Church:0.03334273025393486 Albert:0.025431672111153603 :0.7247886899858713 -those:0.5640405416488647 tho:0.046413812786340714 women:0.036496687680482864 men:0.035057611763477325 all:0.03276253491640091 :0.28522881120443344 -levied:0.16479551792144775 fined:0.14964646100997925 paid:0.05112094059586525 arrested:0.025106793269515038 charged:0.022257177159190178 :0.5870731100440025 -the:0.9 :0.1 -embryo:0.4641600251197815 animal:0.11598922312259674 organism:0.0507366843521595 organ:0.020360711961984634 egg:0.01822749711573124 :0.3305258583277464 -the:0.6440404057502747 all:0.09558173269033432 tho:0.06911367177963257 those:0.0194243136793375 any:0.016140419989824295 :0.15569945611059666 -nd:0.07050565630197525 t:0.04840683564543724 n:0.030627179890871048 r:0.02913638763129711 d:0.0235852412879467 :0.7977386992424726 -,:0.4384767413139343 ,:0.247369185090065 *,:0.0352679081261158 the:0.026127927005290985 .:0.009410342201590538 :0.24334789626300335 -the:0.9 :0.1 -your:0.8033276796340942 the:0.16246207058429718 that:0.006871966179460287 you:0.003903608303517103 their:0.0028180284425616264 :0.020616646856069565 -iron:0.1822136491537094 coal:0.08386461436748505 ore:0.07195945084095001 steel:0.0653042271733284 copper:0.037932444363832474 :0.5587256141006947 -the:0.7715480923652649 tho:0.0214222464710474 that:0.019954821094870567 The:0.015150656923651695 he:0.012204048223793507 :0.15972013492137194 -amount:0.44637009501457214 quantity:0.12878575921058655 number:0.09221184998750687 volume:0.08464563637971878 length:0.03153223916888237 :0.2164544202387333 -obtaining:0.126955047249794 securing:0.11051398515701294 all:0.028966430574655533 making:0.023769987747073174 to:0.02368946745991707 :0.6861050818115473 -in:0.8424727320671082 In:0.1382853388786316 making:0.005313003435730934 at:0.004254611674696207 on:0.0015444522723555565 :0.008129861671477556 -his:0.37899765372276306 in:0.03384353965520859 ived:0.030925940722227097 of:0.024793660268187523 a:0.013637976720929146 :0.5178012289106846 -moved:0.07362732291221619 put:0.05331193655729294 brought:0.05066082626581192 closed:0.03390723466873169 revised:0.02937823161482811 :0.7591144479811192 -the:0.9447464942932129 tho:0.02429853565990925 a:0.01475222036242485 tha:0.0046837120316922665 The:0.0018618495669215918 :0.009657188085839152 -the:0.9 :0.1 -the:0.5219818949699402 these:0.05769319459795952 their:0.05256417766213417 tho:0.028615955263376236 two:0.026604918763041496 :0.3125398587435484 -,:0.10525120049715042 ai:0.051827382296323776 od:0.024328121915459633 t:0.021961446851491928 u:0.017004836350679398 :0.7796270120888948 -peculiar:0.10374625772237778 unfortunate:0.04507041350007057 cruel:0.03829522058367729 absurd:0.02320278249680996 morbid:0.022847849875688553 :0.7668374758213758 -received:0.17519496381282806 issued:0.1031917855143547 given:0.08181846886873245 published:0.07361229509115219 made:0.051547080278396606 :0.514635406434536 -of:0.1301211565732956 in:0.05003001168370247 and:0.037319183349609375 ,:0.034868914633989334 to:0.03344867751002312 :0.7142120562493801 -cause:0.2817617356777191 even:0.09574125707149506 induce:0.05718007683753967 sometimes:0.04793255031108856 of:0.03667833283543587 :0.4807060472667217 -will:0.4109247624874115 would:0.05230429023504257 there:0.04289662837982178 can:0.040126197040081024 means:0.03382075950503349 :0.41992736235260963 -.:0.48877063393592834 that:0.06589976698160172 ,:0.05587461590766907 necessary:0.020080454647541046 ;:0.009162246249616146 :0.3602122822776437 -*:0.059469904750585556 i:0.04235249012708664 r:0.037410907447338104 ,:0.03681676834821701 .:0.03570861369371414 :0.7882413156330585 -chance:0.10262677818536758 knife:0.09728552401065826 way:0.040143370628356934 plan:0.017118383198976517 gun:0.015129238367080688 :0.72769670560956 -be:0.9276555180549622 bo:0.03250080347061157 be:0.006277986336499453 lie:0.005917340982705355 have:0.005156049970537424 :0.022492301184684038 -What:0.9935459494590759 what:0.004018873441964388 Who:0.0007368314545601606 Where:0.0004634939250536263 Why:0.00023783405777066946 :0.000997017661575228 -,:0.24007320404052734 rose:0.05684938654303551 hesitated:0.04489336907863617 stood:0.0369868166744709 nodded:0.035223063081502914 :0.5859741605818272 -par:0.19983741641044617 posed:0.05321894958615303 lent:0.012203479185700417 proved:0.012063363566994667 evident:0.011759800836443901 :0.7109169904142618 -city:0.45111340284347534 town:0.11072904616594315 county:0.06262464821338654 vicinity:0.037817902863025665 City:0.03393668681383133 :0.303778313100338 -go:0.4741370379924774 carry:0.08141226321458817 limp:0.04384579882025719 pass:0.041814662516117096 get:0.02643744647502899 :0.33235279098153114 -house:0.04833640903234482 state:0.03076263517141342 county:0.02077355422079563 car:0.007428660988807678 district:0.007353312335908413 :0.88534542825073 -appeal:0.23858392238616943 impeachment:0.126642107963562 petition:0.06740038096904755 pardon:0.0578719861805439 relief:0.04917291924357414 :0.46032868325710297 -equal:0.6694870591163635 its:0.030599435791373253 new:0.023250555619597435 solid:0.02150050364434719 sound:0.020270640030503273 :0.23489180579781532 -court:0.9910524487495422 Court:0.005121481604874134 courts:0.002552216174080968 justice:0.00023635081015527248 judge:7.926596299512312e-05 :0.0009582366983522661 -The:0.9938080906867981 the:0.0049531362019479275 The:0.0006885577458888292 the:0.00011048710439354181 This:4.6588884288212284e-05 :0.0003931393766833935 -The:0.5913347005844116 Our:0.23591716587543488 These:0.08901523053646088 Their:0.014926286414265633 We:0.003773114178329706 :0.06503350241109729 -was:0.54679936170578 ,:0.1744605004787445 were:0.08622809499502182 she:0.04889089986681938 he:0.03351309522986412 :0.11010804772377014 -that:0.507142186164856 even:0.12436720728874207 ,:0.12126006931066513 and:0.07585801184177399 for:0.026935722678899765 :0.1444368027150631 -':0.14435361325740814 than:0.07858997583389282 I:0.07462745159864426 a:0.06773180514574051 ,:0.05567100644111633 :0.5790261477231979 -weak:0.11657916754484177 fat:0.056864991784095764 dull:0.049185894429683685 pale:0.04914051294326782 thin:0.04474695399403572 :0.6834824793040752 -considerable:0.12314809858798981 good:0.07100934535264969 some:0.06965330243110657 equal:0.05554458126425743 modest:0.0353127159178257 :0.6453319564461708 -junction:0.8734663128852844 intersection:0.06672060489654541 boundary:0.010613596998155117 line:0.006454475689679384 end:0.003972241654992104 :0.03877276787534356 -valuable:0.20065659284591675 damning:0.14834174513816833 important:0.08851336687803268 damaging:0.018623823300004005 vital:0.016958558931946754 :0.5269059129059315 -been:0.08022754639387131 made:0.025920338928699493 become:0.015259427949786186 d:0.01279651839286089 ed:0.012697073630988598 :0.8530990947037935 -bidder:0.27800965309143066 ,:0.07365025579929352 of:0.04023922234773636 purchaser:0.03837098181247711 amount:0.02783997915685177 :0.5418899077922106 -,:0.5904442071914673 and:0.14612622559070587 ;:0.04193323850631714 d:0.011379947885870934 -:0.008419238962233067 :0.2016971418634057 -as:0.09487182646989822 of:0.0735599547624588 in:0.07032010704278946 and:0.06502002477645874 ,:0.06272486597299576 :0.633503220975399 -have:0.5472237467765808 had:0.34986063838005066 got:0.028360947966575623 had:0.020389555022120476 've:0.01227646879851818 :0.04188864305615425 -old:0.4277130663394928 ol:0.24299480020999908 little:0.016570039093494415 :0.013891326263546944 -:0.01363425049930811 :0.28519651759415865 -she:0.9575919508934021 he:0.027934474870562553 She:0.006050651893019676 it:0.004306374117732048 lie:0.0004917173064313829 :0.00362483091885224 -of:0.23943471908569336 when:0.2086033970117569 that:0.20370231568813324 which:0.04867084324359894 ,:0.041851069778203964 :0.2577376551926136 -little:0.5135959982872009 bit:0.07312096655368805 thick:0.042358335107564926 very:0.031086578965187073 large:0.021968867629766464 :0.31786925345659256 -on:0.17634162306785583 at:0.07126163691282272 of:0.07060068100690842 by:0.029536888003349304 ,:0.028825700283050537 :0.6234334707260132 -ors:0.805755615234375 or:0.08653613924980164 ions:0.02381848730146885 ual:0.004692715127021074 orate:0.004376374185085297 :0.07482066890224814 -a:0.9646923542022705 a:0.010389084927737713 A:0.005273816175758839 for:0.0019294600933790207 ly:0.0019164688419550657 :0.015798815758898854 -the:0.15305933356285095 this:0.13238666951656342 n:0.042129747569561005 ia:0.025090551003813744 This:0.017352398484945297 :0.6299812998622656 -the:0.13415226340293884 Commercial:0.031081540510058403 Railroad:0.025595741346478462 Loan:0.024939803406596184 Public:0.024772780016064644 :0.7594578713178635 -Doyle:0.03137928619980812 oyle:0.02478352002799511 .:0.011487729847431183 James:0.009206908755004406 er:0.008863371796905994 :0.9142791833728552 -.:0.967570424079895 .:0.007274935953319073 ::0.004627596586942673 !:0.002028263406828046 character:0.0013770143268629909 :0.0171217656461522 -which:0.876254141330719 case:0.08104655891656876 whom:0.006946305278688669 turn:0.004167034290730953 return:0.0041666291654109955 :0.027419331017881632 -he:0.12020958960056305 Napoleon:0.03419424965977669 Jesus:0.030046092346310616 they:0.02692972682416439 America:0.014803534373641014 :0.7738168071955442 -should:0.08151104301214218 must:0.07502878457307816 tax:0.0718395933508873 taxes:0.065638467669487 will:0.059964779764413834 :0.6460173316299915 -hesitation:0.40459153056144714 delay:0.06804744154214859 notice:0.0582176074385643 thought:0.0563165508210659 time:0.040080200880765915 :0.37274666875600815 -that:0.1014695093035698 what:0.06756548583507538 something:0.04364145174622536 cases:0.032256003469228745 crimes:0.03026445396244526 :0.7248030956834555 -is:0.8322451710700989 of:0.06621263921260834 Is:0.061262089759111404 being:0.006912614684551954 at:0.005575479473918676 :0.02779200579971075 -be:0.2691560387611389 become:0.19263912737369537 bo:0.1454203724861145 grow:0.07437007129192352 get:0.058907583355903625 :0.25950680673122406 -in:0.08131542801856995 with:0.04069272056221962 at:0.03715925291180611 by:0.03650504723191261 of:0.03630694001913071 :0.768020611256361 -to:0.9441515207290649 would:0.010054533369839191 helped:0.004637020640075207 ,:0.0037612312007695436 and:0.0033375518396496773 :0.03405814222060144 -into:0.13712699711322784 through:0.11417761445045471 to:0.08675859868526459 along:0.0788109228014946 of:0.0715399831533432 :0.5115858837962151 -the:0.9896697402000427 your:0.002903774380683899 his:0.0008341308566741645 and:0.0007810426177456975 our:0.00045886935549788177 :0.005352442589355633 -in:0.758156955242157 In:0.051095202565193176 upon:0.03097786381840706 from:0.026234043762087822 that:0.025325845927000046 :0.10821008868515491 -conclusion:0.7357562184333801 realization:0.024636980146169662 opinion:0.021420743316411972 idea:0.02025608718395233 fact:0.016906123608350754 :0.18102384731173515 -the:0.9 :0.1 -Hudson:0.4517792761325836 river:0.15423937141895294 railroad:0.036366403102874756 canal:0.028664015233516693 line:0.021123027428984642 :0.30782790668308735 -and:0.5230568647384644 but:0.1401846706867218 for:0.06179981306195259 as:0.051477354019880295 yet:0.03191845118999481 :0.19156284630298615 -the:0.2772589325904846 a:0.155803844332695 tho:0.02718847058713436 more:0.026330390945076942 good:0.017439812421798706 :0.49597854912281036 -to:0.9987123012542725 and:0.00021227612160146236 in:0.00014399296196643263 from:0.00012987927766516805 ta:7.34639324946329e-05 :0.0007280864519998431 -the:0.8740679025650024 an:0.06916381418704987 that:0.017819473519921303 what:0.007786541245877743 tho:0.005765198729932308 :0.02539706975221634 -the:0.9 :0.1 -cause:0.19909830391407013 even:0.06831086426973343 of:0.05993353947997093 sudden:0.03932734578847885 induce:0.027674809098243713 :0.605655137449503 -and:0.6390212774276733 or:0.03570018708705902 also:0.026558859273791313 but:0.025475600734353065 :0.0230485200881958 :0.25019555538892746 -.:0.8715454339981079 diameter:0.05753066763281822 length:0.03192973509430885 ::0.006215522065758705 width:0.005290280096232891 :0.02748836111277342 -mild:0.3525567948818207 harmless:0.17024876177310944 benign:0.059831827878952026 pleasant:0.019738854840397835 moderate:0.017362939193844795 :0.38026082143187523 -nearest:0.22714808583259583 in:0.05320984125137329 In:0.03737351670861244 near:0.018645646050572395 to:0.018451295793056488 :0.6451716143637896 -which:0.543700635433197 that:0.347241073846817 and:0.06503680348396301 ,:0.026483412832021713 as:0.004525582771748304 :0.013012491632252932 -Miss:0.9947786331176758 Mrs:0.0009545161738060415 Miss:0.0005328315892256796 Aunt:0.0004530266742222011 Lady:0.00028845545602962375 :0.0029925369890406728 -It:0.9883760213851929 There:0.0037962051574140787 This:0.002740083262324333 it:0.0016592839965596795 It:0.001002646517008543 :0.0024257596815004945 -a:0.9514787793159485 per:0.03771247714757919 each:0.0030185997020453215 a:0.0018895409302785993 every:0.0010800256859511137 :0.004820577218197286 -the:0.22183699905872345 railroad:0.13780662417411804 her:0.045424867421388626 our:0.04195148125290871 railway:0.03377038612961769 :0.5192096419632435 -wheat:0.23130425810813904 barley:0.05629034712910652 rye:0.049144912511110306 corn:0.04905163496732712 bread:0.047848280519247055 :0.56636056676507 --:0.10871879011392593 i:0.0474812313914299 o:0.04391095042228699 e:0.03174257650971413 t:0.02046421729028225 :0.7476822342723608 -them:0.7971839904785156 the:0.12546028196811676 these:0.03208884969353676 those:0.02186652645468712 their:0.0077146808616817 :0.015685670543462038 -lawful:0.8555194735527039 legal:0.038391921669244766 unlawful:0.008028442040085793 -:0.0040938532911241055 and:0.0034859117586165667 :0.09048039768822491 -was:0.8866522312164307 being:0.021565208211541176 came:0.008627773262560368 fell:0.00768271554261446 remained:0.0072277262806892395 :0.06824434548616409 -,:0.4028175175189972 lasts:0.242958664894104 ers:0.0833229273557663 is:0.03777988255023956 ings:0.013876126147806644 :0.2192448815330863 -the:0.20276573300361633 this:0.09101149439811707 a:0.04136241227388382 such:0.039918676018714905 political:0.03690079227089882 :0.5880408920347691 -and:0.3902127146720886 of:0.10770085453987122 in:0.10062825679779053 In:0.0492679663002491 ,:0.02935388870537281 :0.3228363189846277 -keeps:0.051268450915813446 has:0.04800771176815033 finds:0.04240413010120392 holds:0.03137868270277977 sets:0.019176850095391273 :0.8077641744166613 -managers:0.12127357721328735 scientists:0.0476202629506588 manufacturers:0.04530284181237221 farmers:0.03635827824473381 builders:0.03591382876038551 :0.7135312110185623 -plantation:0.32076045870780945 regiment:0.06142674759030342 company:0.03775207698345184 farm:0.027645913884043694 village:0.0209374837577343 :0.5314773190766573 -is:0.604121744632721 has:0.08030281215906143 was:0.0679716020822525 Is:0.05291064828634262 la:0.027293270453810692 :0.1673999223858118 -there:0.08654287457466125 it:0.08037563413381577 he:0.05337673798203468 here:0.04340938851237297 so:0.03876553848385811 :0.6975298263132572 -in:0.4262877404689789 of:0.217558354139328 throughout:0.0886429101228714 to:0.07969561964273453 for:0.035750240087509155 :0.15206513553857803 -assault:0.16692298650741577 attack:0.12714099884033203 eye:0.026218893006443977 gun:0.024304889142513275 hand:0.023118330165743828 :0.6322939023375511 -the:0.0788176953792572 no:0.05479869991540909 wooden:0.044743869453668594 iron:0.039511147886514664 two:0.017968308180570602 :0.7641602791845798 -and:0.6501323580741882 but:0.02791302092373371 or:0.027089985087513924 with:0.021072546020150185 as:0.018024783581495285 :0.25576730631291866 -and:0.11405002325773239 the:0.11186137795448303 or:0.03821760416030884 you:0.031304530799388885 that:0.030012479051947594 :0.6745539847761393 -private:0.18455171585083008 the:0.14630378782749176 local:0.050739090889692307 tho:0.035051316022872925 public:0.02078597992658615 :0.5625681094825268 -a:0.501166582107544 the:0.3246593475341797 any:0.06891602277755737 this:0.020190944895148277 one:0.018683351576328278 :0.06638375110924244 -offer:0.22146989405155182 have:0.07953087985515594 give:0.0794544592499733 get:0.058469220995903015 make:0.032858528196811676 :0.5282170176506042 -one:0.246784508228302 vouchers:0.09058033674955368 warrants:0.02605016902089119 those:0.01969839259982109 ones:0.01951131783425808 :0.597375275567174 -will:0.9741025567054749 may:0.00823331531137228 shall:0.0076591805554926395 should:0.002839914057403803 must:0.0018056429689750075 :0.005359390401281416 -train:0.11877221614122391 ,:0.07408712804317474 trains:0.04886293411254883 way:0.02264590561389923 came:0.01948997564613819 :0.7161418404430151 -am:0.1652134358882904 ":0.09400507062673569 was:0.07310482114553452 Is:0.06499399244785309 is:0.04968636855483055 :0.5529963113367558 -judge:0.1520669013261795 clerk:0.09851144254207611 Clerk:0.06980738788843155 Judge:0.06502502411603928 chief:0.04917534440755844 :0.5654138997197151 -for:0.808830201625824 of:0.09890898317098618 in:0.046209223568439484 during:0.008327307179570198 to:0.004053953103721142 :0.033670331351459026 -notice:0.17099903523921967 tion:0.039123836904764175 notices:0.027350034564733505 charge:0.0263009425252676 sign:0.021434945985674858 :0.7147912047803402 -total:0.11513026803731918 true:0.04301389679312706 real:0.028246112167835236 net:0.025995394214987755 average:0.025111233815550804 :0.76250309497118 -the:0.9 :0.1 -the:0.7104352712631226 a:0.05641815811395645 said:0.051368337124586105 in:0.01672920025885105 this:0.01075823325663805 :0.15429079998284578 -she:0.5191301703453064 I:0.20902587473392487 glad:0.014835397712886333 happy:0.014508606866002083 he:0.010066268965601921 :0.2324336813762784 -leaves:0.06925033032894135 lines:0.05623652786016464 tables:0.048342447727918625 marks:0.043745290488004684 poses:0.03463713452219963 :0.7477882690727711 -many:0.26026156544685364 several:0.11058152467012405 untold:0.07020936906337738 twenty:0.03864092379808426 fifty:0.03568010404706001 :0.48462651297450066 -valuable:0.5159446001052856 profitable:0.11302012205123901 important:0.09259361773729324 lucrative:0.014424308203160763 extensive:0.01397240161895752 :0.2500449502840638 -had:0.9079007506370544 was:0.033670250326395035 has:0.010711547918617725 ho:0.005441793706268072 ha:0.0039942506700754166 :0.03828140674158931 -,:0.18382513523101807 and:0.11436112970113754 trusts:0.09295197576284409 ;:0.03155463933944702 of:0.028195848688483238 :0.54911127127707 -have:0.4271770119667053 ought:0.3046096861362457 need:0.08218076080083847 hesitate:0.027415918186306953 want:0.01871308498084545 :0.13990353792905807 --:0.07082774490118027 in:0.05476302653551102 con:0.03440447896718979 made:0.03436404839158058 ex:0.021795278415083885 :0.7838454227894545 -of:0.9300093650817871 to:0.022323086857795715 ot:0.014732541516423225 in:0.008882550522685051 for:0.005328928120434284 :0.018723527900874615 -head:0.21465079486370087 end:0.17947030067443848 bottom:0.1732310950756073 foot:0.09234604239463806 base:0.07569465786218643 :0.26460710912942886 -debt:0.48918119072914124 debts:0.1243823915719986 .:0.035096846520900726 deficit:0.029173998162150383 deficits:0.014418739825487137 :0.3077468331903219 -.:0.28580763936042786 ;:0.13030633330345154 ,:0.08897949010133743 oak:0.05285457521677017 ol:0.042032744735479355 :0.40001921728253365 -road:0.10170897841453552 route:0.09180757403373718 depot:0.07442742586135864 point:0.0625034049153328 post:0.045652732253074646 :0.6238998845219612 -he:0.9619431495666504 ho:0.011265694163739681 He:0.006968003697693348 lie:0.0066301156766712666 and:0.0027391149196773767 :0.010453921975567937 -lot:0.8322434425354004 lots:0.14548127353191376 Lot:0.010970170609652996 property:0.0017206150805577636 land:0.0013090323191136122 :0.00827546592336148 -man:0.1144004538655281 Indian:0.06589305400848389 tribe:0.06396997720003128 farmer:0.053090255707502365 ,:0.04178973659873009 :0.6608565226197243 -say:0.6078954339027405 think:0.0694722831249237 speak:0.051240112632513046 hear:0.029076866805553436 do:0.028542708605527878 :0.21377259492874146 -,:0.12731097638607025 newspaper:0.0382872000336647 and:0.03457845374941826 papers:0.024401014670729637 daily:0.021117698401212692 :0.7543046567589045 -this:0.5153637528419495 the:0.3787037134170532 a:0.030752399936318398 that:0.02736443094909191 such:0.013956512324512005 :0.033859190531075 -crowd:0.7357653975486755 man:0.0201902836561203 voice:0.017990436404943466 mob:0.013394190929830074 ,:0.007626628968864679 :0.20503306249156594 -their:0.980068027973175 the:0.010937182232737541 Their:0.0015659163473173976 both:0.0014529976760968566 them:0.0011092906352132559 :0.0048665851354599 -months:0.523173451423645 month:0.44370678067207336 weeks:0.006633973214775324 days:0.004769944120198488 year:0.0037616093177348375 :0.017954241251572967 -lot:0.03888280689716339 bonus:0.03678879514336586 mile:0.030193114653229713 game:0.018610753118991852 start:0.016943572089076042 :0.8585809580981731 -.:0.16942815482616425 of:0.15615732967853546 John:0.0474589467048645 William:0.025583289563655853 George:0.025523073971271515 :0.5758492052555084 -thing:0.7958208918571472 rule:0.011070774868130684 system:0.010557684116065502 principle:0.010319028049707413 condition:0.009712225757539272 :0.1625193953514099 -them:0.587791383266449 .:0.25461745262145996 themselves:0.02854473702609539 ::0.017101798206567764 which:0.012353149242699146 :0.09959147963672876 --:0.3469606637954712 �:0.10791786760091782 ­:0.058695923537015915 red:0.055320803076028824 :0.027337193489074707 :0.40376754850149155 -,:0.7416603565216064 that:0.050565093755722046 as:0.025961225852370262 if:0.01744963228702545 whereas:0.016190454363822937 :0.14817323721945286 -in:0.24536050856113434 into:0.1586143970489502 from:0.14955765008926392 to:0.09990984201431274 among:0.04523342847824097 :0.30132417380809784 -me:0.48759573698043823 you:0.314363956451416 us:0.11636825650930405 him:0.01969473995268345 them:0.008572641760110855 :0.0534046683460474 -at:0.696447491645813 in:0.20416224002838135 with:0.01298621017485857 by:0.01267838291823864 the:0.012395618483424187 :0.06133005674928427 -about:0.9450549483299255 of:0.03710785508155823 about:0.003211700590327382 About:0.002335552591830492 ot:0.0007561661186628044 :0.011533777287695557 -mail:0.2568526566028595 Mail:0.25042960047721863 Baltimore:0.016295118257403374 express:0.009587549604475498 Ferry:0.008594469167292118 :0.4582406058907509 -said:0.7944665551185608 Baltimore:0.018591033294796944 the:0.010607114993035793 Frederick:0.004144696984440088 County:0.003896840149536729 :0.16829375945962965 -to:0.9908766150474548 that:0.004856562241911888 who:0.0017134115332737565 which:0.0011287338566035032 we:0.00018653394363354892 :0.0012381433771224692 -not:0.43989869952201843 still:0.12004756182432175 rapidly:0.08489103615283966 now:0.05455882474780083 slowly:0.0340876430273056 :0.26651623472571373 -large:0.27658507227897644 small:0.07341905683279037 few:0.04889760538935661 great:0.029825100675225258 full:0.029255010187625885 :0.5420181546360254 -The:0.8361710906028748 This:0.11483321338891983 A:0.01499651838093996 That:0.005865970626473427 the:0.0037897832226008177 :0.02434342377819121 -will:0.47464197874069214 may:0.4386431574821472 can:0.016584446653723717 should:0.015864519402384758 might:0.015503508038818836 :0.038762389682233334 -,:0.38576245307922363 and:0.0847557932138443 a:0.07279906421899796 .:0.061179615557193756 I:0.04773205146193504 :0.3477710224688053 -of:0.8831998109817505 by:0.026072289794683456 at:0.019971758127212524 for:0.019122706726193428 with:0.01697690784931183 :0.034656526520848274 -highest:0.805747389793396 best:0.020134475082159042 oldest:0.017991354689002037 religious:0.009717722423374653 first:0.009650157764554024 :0.13675890024751425 -the:0.6109713315963745 this:0.3440081477165222 a:0.019249657168984413 that:0.007852653972804546 tho:0.003395045641809702 :0.01452316390350461 -the:0.9 :0.1 -best:0.22371940314769745 true:0.11749585717916489 real:0.035791996866464615 greatest:0.03537885472178459 finest:0.031201576814055443 :0.556412311270833 -it:0.0302153117954731 ,:0.02693532593548298 .:0.015073217451572418 they:0.014227427542209625 slavery:0.009297155775129795 :0.9042515615001321 -of:0.11926347017288208 near:0.11906538903713226 at:0.10861580073833466 in:0.060899876058101654 .:0.03714819252490997 :0.5550072714686394 -house:0.6993317008018494 houses:0.18616637587547302 house:0.04046153649687767 ,:0.024065550416707993 houses:0.00611979840323329 :0.04385503800585866 -in:0.22310170531272888 examining:0.1161705031991005 searching:0.07487423717975616 through:0.04022478684782982 visiting:0.026532351970672607 :0.519096415489912 -will:0.34868761897087097 may:0.2989710867404938 would:0.0796215608716011 shall:0.0791204646229744 should:0.050635360181331635 :0.14296390861272812 -whom:0.15437455475330353 him:0.1324271708726883 you:0.1047786995768547 which:0.05634411424398422 me:0.04593101888895035 :0.5061444416642189 -,:0.33534854650497437 until:0.15637913346290588 and:0.15492945909500122 is:0.048282843083143234 being:0.04204157739877701 :0.2630184404551983 -turn:0.0715310275554657 bind:0.02153165079653263 vest:0.014421387575566769 stand:0.011759941466152668 charge:0.010483026504516602 :0.8702729661017656 -me:0.667938232421875 myself:0.1585947722196579 them:0.02835843339562416 it:0.018659401684999466 ,:0.006578512489795685 :0.11987064778804779 -present:0.08036617934703827 first:0.03228554129600525 last:0.017223142087459564 Southern:0.011432357132434845 Northern:0.010963859036564827 :0.8477289211004972 -,:0.8085513710975647 .:0.015043234452605247 they:0.011241596192121506 ;:0.009249290451407433 I:0.008065082132816315 :0.1478494256734848 -to:0.8915458917617798 upon:0.04717608541250229 on:0.012255962006747723 for:0.008280462585389614 with:0.0032062730751931667 :0.03753532515838742 -With:0.3820851743221283 Turning:0.09684204310178757 Holding:0.0918240025639534 Moving:0.06239094212651253 raising:0.04531118646264076 :0.32154665142297745 -theory:0.8420278429985046 class:0.017326410859823227 principle:0.011143178679049015 kind:0.005488671362400055 law:0.0032529165036976337 :0.12076097959652543 -the:0.9218551516532898 greater:0.01176602765917778 that:0.010766576044261456 these:0.005389660131186247 their:0.004612518474459648 :0.045610066037625074 -opening:0.2051524817943573 final:0.048006441444158554 first:0.04767811670899391 whole:0.045722391456365585 present:0.034870781004428864 :0.6185697875916958 -York:0.5116912126541138 England:0.2174963355064392 Zealand:0.0538187175989151 Mexico:0.04664832353591919 Brunswick:0.04407452419400215 :0.12627088651061058 -at:0.21086928248405457 ,:0.1683506816625595 to:0.09066201001405716 on:0.06966129690408707 from:0.05848345533013344 :0.40197327360510826 -check:0.4976648688316345 contain:0.18176232278347015 control:0.06399361789226532 stop:0.03149126470088959 fight:0.024715229868888855 :0.20037269592285156 -in:0.8867047429084778 In:0.04086531326174736 under:0.03107188455760479 the:0.018571093678474426 on:0.013838518410921097 :0.008948447182774544 -market:0.04258420690894127 day:0.0389050729572773 ,:0.029965389519929886 country:0.028858384117484093 crop:0.026467978954315186 :0.8332189675420523 -of:0.9407349824905396 on:0.025776788592338562 in:0.009786304086446762 from:0.004910750314593315 all:0.003927570302039385 :0.014863604214042425 -redeem:0.6389659643173218 receive:0.055134888738393784 obtain:0.02071833610534668 pay:0.020151479169726372 issue:0.011313316412270069 :0.2537160152569413 -John:0.05679794028401375 Little:0.04440685734152794 Mary:0.031040241941809654 George:0.02020634338259697 Belle:0.01388530433177948 :0.8336633127182722 -careful:0.08368337154388428 his:0.025357738137245178 extensive:0.020781269297003746 with:0.020190881565213203 by:0.018997611477971077 :0.8309891279786825 -appeared:0.5714867115020752 seemed:0.10447672754526138 came:0.02162710390985012 occurred:0.021467989310622215 felt:0.020434053614735603 :0.2605074141174555 -from:0.9154320955276489 of:0.04930919408798218 with:0.02131703682243824 by:0.0009536755387671292 in:0.0008611337398178875 :0.01212686428334564 -trenches:0.14985787868499756 Virginia:0.08787336945533752 front:0.06747155636548996 Maryland:0.028848323971033096 California:0.02411540411412716 :0.6418334674090147 -you:0.8883183598518372 he:0.030109800398349762 ho:0.01484271977096796 u:0.014749167487025261 I:0.006338560488075018 :0.04564139200374484 -pose:0.04409163072705269 ment:0.02354082278907299 act:0.022048307582736015 tion:0.018186047673225403 turn:0.014836493879556656 :0.8772966973483562 -the:0.600750744342804 a:0.3918416500091553 his:0.0023655411787331104 some:0.001042241114191711 tho:0.00042745433165691793 :0.003572369023459032 -a:0.5676182508468628 the:0.1608191877603531 perfectly:0.03318146988749504 very:0.029065417125821114 this:0.023841461166739464 :0.1854742132127285 -we:0.3043113052845001 I:0.07328679412603378 must:0.06349100917577744 ye:0.049629393965005875 may:0.04730239510536194 :0.46197910234332085 -e:0.026550352573394775 highest:0.026315437629818916 extent:0.019204547628760338 rate:0.017616454511880875 c:0.01528835017234087 :0.8950248574838042 -treated:0.07739856839179993 used:0.038875896483659744 deceived:0.03664521500468254 oppressed:0.029779791831970215 ruled:0.027928372845053673 :0.7893721554428339 -said:0.6888303756713867 such:0.12701304256916046 an:0.042764391750097275 the:0.03829757869243622 this:0.02102193795144558 :0.08207267336547375 -slight:0.0383092425763607 little:0.026561634615063667 a:0.024987781420350075 great:0.022052794694900513 small:0.020798757672309875 :0.8672897890210152 -of:0.3404918611049652 for:0.27041807770729065 to:0.04388462379574776 ot:0.02737872116267681 on:0.018869683146476746 :0.2989570330828428 -which:0.9879598617553711 that:0.0067275348119437695 and:0.0014327054377645254 which:0.0008706529042683542 as:0.0007024057558737695 :0.0023068393347784877 -ill:0.15432658791542053 so:0.1178189069032669 pro:0.04486754536628723 -:0.03609677776694298 dis:0.03454022854566574 :0.6123499535024166 -ed:0.2640497386455536 posed:0.05116885527968407 proved:0.047748908400535583 tested:0.027233168482780457 ted:0.023233706131577492 :0.5865656230598688 -about:0.6034483313560486 half:0.1361752152442932 nearly:0.054065294563770294 over:0.04297638311982155 scarcely:0.028802089393138885 :0.13453268632292747 -Journal:0.46178460121154785 newspaper:0.15476153790950775 paper:0.14050433039665222 journal:0.0943499282002449 publication:0.05094706267118454 :0.09765253961086273 -face:0.2044125348329544 head:0.07005143165588379 .:0.0687396377325058 canvas:0.024607185274362564 back:0.023696117103099823 :0.6084930934011936 -tho:0.37376144528388977 the:0.3185693323612213 ,:0.04488280043005943 why:0.015409612096846104 far:0.014292175881564617 :0.23308463394641876 -tried:0.5541853904724121 hoped:0.20548495650291443 wanted:0.03271801024675369 managed:0.030287358909845352 started:0.02931070141494274 :0.14801358245313168 -lava:0.5226561427116394 water:0.34814244508743286 steam:0.013727343641221523 smoke:0.012527159415185452 blood:0.009196936152875423 :0.09374997299164534 -of:0.9767248034477234 in:0.01363068912178278 and:0.005221000872552395 's:0.0010405160719528794 or:0.000618396676145494 :0.0027645938098430634 -bill:0.26702257990837097 proposition:0.2533312737941742 motion:0.05905796214938164 idea:0.04979072883725166 matter:0.0489521361887455 :0.32184531912207603 -men:0.5606991648674011 man:0.15543556213378906 people:0.12533853948116302 voters:0.04325322061777115 women:0.017002487555146217 :0.09827102534472942 -others:0.1696820855140686 another:0.09004858136177063 you:0.06560157239437103 him:0.04763353243470192 the:0.0452582873404026 :0.5817759409546852 -Philadelphia:0.12454474717378616 Baltimore:0.05316914990544319 Boston:0.031823959201574326 Worcester:0.016533561050891876 The:0.015586878173053265 :0.7583417044952512 -pursuant:0.8014548420906067 according:0.16304732859134674 subject:0.015558327548205853 contrary:0.005189481191337109 and:0.0038973200134932995 :0.01085270056501031 -summer:0.583061695098877 winter:0.1418239027261734 season:0.12490434944629669 seasons:0.02398364618420601 summers:0.02288823574781418 :0.10333817079663277 -beauty:0.09780904650688171 glory:0.07206554710865021 excitement:0.060221754014492035 thrill:0.038038477301597595 spectacle:0.030726391822099686 :0.7011387832462788 -boat:0.08436302095651627 harbor:0.05118666961789131 vessel:0.04798908159136772 hull:0.04264006391167641 dock:0.0425834134221077 :0.7312377505004406 -,:0.2606496810913086 hard:0.22711971402168274 just:0.2026272714138031 out:0.016179900616407394 together:0.014223248697817326 :0.27920018415898085 -ines:0.3822852373123169 men:0.02972223237156868 :0.026097659021615982 s:0.01809845119714737 ing:0.015625575557351112 :0.52817084454 -The:0.6992318630218506 This:0.25346246361732483 A:0.015297159552574158 His:0.008890900760889053 Another:0.005315043032169342 :0.017802570015192032 -of:0.3119117319583893 in:0.07820701599121094 and:0.07501453906297684 or:0.07325642555952072 ,:0.04645315185189247 :0.41515713557600975 -force:0.14968785643577576 persuasion:0.07050526142120361 means:0.03267533704638481 reason:0.022226570174098015 trick:0.0172004085034132 :0.7077045664191246 -to:0.8002113103866577 of:0.16307900846004486 ot:0.010478759184479713 at:0.010007545351982117 from:0.0025072102434933186 :0.013716166373342276 -of:0.8496143817901611 showing:0.036745280027389526 showed:0.029414141550660133 show:0.028560323640704155 ol:0.0035779462195932865 :0.052087926771491766 -in:0.572699248790741 on:0.1397925615310669 In:0.07176078855991364 for:0.05789018049836159 at:0.035090211778879166 :0.12276700884103775 -the:0.9 :0.1 -much:0.24870119988918304 ,:0.07966361194849014 is:0.06800708174705505 called:0.04145917296409607 are:0.02483465149998665 :0.537334281951189 -of:0.6984748244285583 .:0.1251218467950821 for:0.04307352006435394 ,:0.016210224479436874 at:0.016206499189138412 :0.10091308504343033 -with:0.2240666151046753 had:0.04623117670416832 of:0.04066392406821251 has:0.03932156041264534 have:0.033979643136262894 :0.6157370805740356 -refuse:0.6207540035247803 accept:0.2155020833015442 reject:0.033621035516262054 fail:0.01538820844143629 decline:0.009630328975617886 :0.1051043402403593 -the:0.6909575462341309 my:0.07924734801054001 our:0.0611816830933094 his:0.041716910898685455 her:0.021693238988518715 :0.10520327277481556 -with:0.10304035246372223 and:0.04850872606039047 d:0.04335048794746399 l:0.024408310651779175 r:0.019707350060343742 :0.7609847728163004 -had:0.8956294655799866 have:0.07127554714679718 has:0.005312920082360506 having:0.005262102000415325 Had:0.0038051253650337458 :0.01871483982540667 -u:0.12109387665987015 ud:0.032506611198186874 ut:0.02382810227572918 a:0.016342388466000557 i:0.015513205900788307 :0.7907158154994249 -in:0.3734615743160248 In:0.3266974985599518 at:0.14851562678813934 of:0.048744793981313705 .:0.014472641982138157 :0.08810786437243223 -ter:0.12485821545124054 ber:0.09095955640077591 er:0.05121234431862831 ty:0.03628283366560936 ed:0.03586898371577263 :0.6608180664479733 -.:0.25561752915382385 attendance:0.11736486852169037 tow:0.06409084051847458 charge:0.029969409108161926 front:0.023725848644971848 :0.5092315040528774 -reign:0.1364525854587555 cycle:0.10034073889255524 business:0.05595646798610687 war:0.034235820174217224 life:0.02721543051302433 :0.6457989569753408 -the:0.9 :0.1 -constitu:0.09743160009384155 sec:0.058439090847969055 na:0.03663475438952446 con:0.03613670915365219 ac:0.032300472259521484 :0.7390573732554913 -out:0.3009921908378601 on:0.11103582382202148 all:0.07518564164638519 lights:0.04562227800488472 for:0.03700179234147072 :0.4301622733473778 -,:0.5416510701179504 seriously:0.073360376060009 away:0.041647881269454956 up:0.026441793888807297 further:0.019099876284599304 :0.297799002379179 -one:0.29816651344299316 old:0.1730259656906128 new:0.12018316984176636 first:0.03057604283094406 great:0.029165487736463547 :0.3488828204572201 -the:0.9 :0.1 --:0.07388253509998322 evening:0.07145687192678452 morning:0.04870612174272537 afternoon:0.04844152182340622 late:0.03689319267868996 :0.7206197567284107 -street:0.6875208616256714 Street:0.1011115163564682 streets:0.0668565034866333 ,:0.05733896419405937 avenue:0.0491371713578701 :0.03803498297929764 -by:0.46422484517097473 to:0.1443517953157425 for:0.13597425818443298 on:0.052997663617134094 into:0.026007235050201416 :0.17644420266151428 -latter:0.07016176730394363 disease:0.06384939700365067 same:0.0327361561357975 matter:0.026965264230966568 use:0.019589342176914215 :0.7866980731487274 -of:0.4059706926345825 on:0.22523899376392365 in:0.07663633674383163 upon:0.07198754698038101 under:0.0701897069811821 :0.1499767228960991 -out:0.992106556892395 all:0.006883855443447828 Out:0.00030725481337867677 out:7.617102528456599e-05 way:6.516632856801152e-05 :0.0005609954969258979 -bliss:0.1497623771429062 sorrow:0.08688221871852875 torment:0.06020158529281616 happiness:0.05920186638832092 joy:0.05635538324713707 :0.5875965692102909 -a:0.11554290354251862 tho:0.08142206072807312 the:0.057831283658742905 an:0.05330737680196762 sure:0.0468713603913784 :0.6450250148773193 -when:0.16155263781547546 if:0.14995034039020538 as:0.10571566224098206 now:0.07986818253993988 ,:0.048309214413166046 :0.45460396260023117 -the:0.49147894978523254 a:0.056742992252111435 in:0.054020706564188004 other:0.028166834264993668 an:0.021097050979733467 :0.3484934661537409 -sing:0.30962350964546204 hear:0.07243584096431732 hum:0.04338863864541054 begin:0.03250090032815933 continue:0.029332419857382774 :0.512718690559268 -port:0.11449262499809265 river:0.06989309191703796 harbor:0.04039716348052025 city:0.03509719297289848 time:0.02897820994257927 :0.7111417166888714 -the:0.4570435881614685 said:0.11643173545598984 a:0.07419989258050919 this:0.04719478264451027 that:0.033930715173482895 :0.2711992859840393 -the:0.20974351465702057 he:0.12433791160583496 The:0.05355587229132652 tho:0.05135815963149071 The:0.036306243389844894 :0.5246982984244823 -the:0.9697322845458984 The:0.004255546722561121 the:0.002963742008432746 said:0.002767278579995036 tho:0.0025558238849043846 :0.017725324258208275 -The:0.7945141196250916 A:0.11164259910583496 This:0.035400062799453735 Our:0.007980018854141235 Your:0.0063884062692523 :0.044074793346226215 -business:0.10768164694309235 work:0.05741377919912338 life:0.05032533034682274 day:0.021902572363615036 time:0.02171659655869007 :0.7409600745886564 -made:0.05523228645324707 received:0.053149204701185226 itted:0.025449883192777634 taken:0.02359125018119812 recovered:0.020282579585909843 :0.8222947958856821 -went:0.17120897769927979 so:0.13846611976623535 carried:0.05577234551310539 on:0.054020900279283524 continued:0.040036723017692566 :0.5404949337244034 -State:0.8219209313392639 District:0.10980883240699768 state:0.04523161053657532 County:0.004223186522722244 all:0.0019145595142617822 :0.01690087968017906 -all:0.7038040161132812 of:0.20382681488990784 ,:0.019663967192173004 from:0.009005138650536537 aud:0.003387958975508809 :0.06031210417859256 -a:0.8371004462242126 no:0.06615226715803146 very:0.022537119686603546 the:0.010006834752857685 some:0.006876029539853334 :0.057327302638441324 -he:0.4158940613269806 and:0.29628366231918335 but:0.06385452300310135 He:0.04867260530591011 lie:0.02255038172006607 :0.15274476632475853 -,:0.13066339492797852 did:0.0950547456741333 could:0.08615724742412567 would:0.06887952983379364 will:0.06051718443632126 :0.5587278977036476 -persons:0.18793050944805145 men:0.15099574625492096 officers:0.11899290233850479 clerks:0.0934746116399765 ones:0.06095487251877785 :0.38765135779976845 -money:0.25604453682899475 gold:0.11054437607526779 silver:0.027375251054763794 cash:0.020173966884613037 coal:0.019182272255420685 :0.5666795969009399 -and:0.829535186290741 with:0.0698443055152893 while:0.045733340084552765 but:0.033605657517910004 the:0.0020418455824255943 :0.019239665009081364 -the:0.4097493290901184 their:0.37798452377319336 these:0.06925574690103531 its:0.028280630707740784 our:0.020785819739103317 :0.09394394978880882 -plan:0.22692054510116577 arrangement:0.04543880373239517 route:0.040649283677339554 and:0.034948159009218216 Plan:0.02748614177107811 :0.6245570667088032 -June:0.48961973190307617 May:0.23417724668979645 July:0.07751557976007462 April:0.045239754021167755 March:0.04047549143433571 :0.1129721961915493 -John:0.031556498259305954 William:0.014369006268680096 Van:0.0129619799554348 Frank:0.012216387316584587 C:0.011268342845141888 :0.9176277853548527 -,:0.19010019302368164 and:0.16215315461158752 of:0.15322981774806976 where:0.09744172543287277 .:0.033263277262449265 :0.36381183192133904 -influence:0.14594872295856476 power:0.13700392842292786 interest:0.08321857452392578 privilege:0.028395142406225204 interests:0.02102450281381607 :0.5844091288745403 -John:0.07943537831306458 Frank:0.03214613348245621 James:0.029049977660179138 Henry:0.026913870126008987 William:0.02548438310623169 :0.8069702573120594 -and:0.13252796232700348 as:0.04820855334401131 1:0.04010041803121567 I:0.030411524698138237 or:0.021126458421349525 :0.7276250831782818 -The:0.839264988899231 Her:0.10923600941896439 His:0.017986208200454712 This:0.008496277965605259 A:0.0067826081067323685 :0.018233907409012318 -,:0.31155747175216675 .:0.25470131635665894 and:0.14388112723827362 which:0.04561519995331764 ;:0.028185376897454262 :0.2160595078021288 -the:0.9 :0.1 -seems:0.06192426756024361 wishes:0.054708097130060196 tried:0.052524078637361526 wants:0.04689841344952583 is:0.04059849679470062 :0.7433466464281082 -a:0.5682016611099243 the:0.3107191026210785 that:0.010879211127758026 an:0.010137328878045082 his:0.008912567980587482 :0.0911501282826066 -up:0.2760206162929535 on:0.07315471023321152 out:0.06267030537128448 around:0.05778686702251434 there:0.042911455035209656 :0.4874560460448265 -All:0.5809255242347717 And:0.11393482983112335 But:0.05665094032883644 and:0.046082768589258194 So:0.02099970541894436 :0.18140623159706593 -England:0.306564062833786 them:0.14267447590827942 it:0.08543459326028824 him:0.073630191385746 us:0.06755326688289642 :0.3241434097290039 -own:0.09761150926351547 first:0.014224166050553322 little:0.012827885337173939 pet:0.012638536281883717 -:0.011212959885597229 :0.8514849431812763 -one:0.16771219670772552 thence:0.12878072261810303 n:0.037058863788843155 two:0.03671685606241226 forty:0.03548681363463402 :0.594244547188282 -out:0.18898987770080566 trains:0.12517835199832916 cars:0.06634339690208435 instead:0.04592909663915634 passengers:0.02804437093436718 :0.5455149058252573 -the:0.9 :0.1 -went:0.33630916476249695 walked:0.14289799332618713 continued:0.06844907253980637 ran:0.056672826409339905 hurried:0.02781786397099495 :0.3678530789911747 -The:0.28143370151519775 Young:0.2004791498184204 Many:0.07696861028671265 Some:0.056058742105960846 Most:0.026126086711883545 :0.3589337095618248 -instructions:0.07348435372114182 that:0.06608488410711288 evidence:0.05086759105324745 facts:0.04108131676912308 notice:0.040842123329639435 :0.7276397310197353 -English:0.06273343414068222 local:0.0545039102435112 young:0.05192463472485542 French:0.04837942123413086 British:0.03567199781537056 :0.7467866018414497 -be:0.5958573818206787 bo:0.22394636273384094 remain:0.06256593763828278 become:0.031250182539224625 lie:0.025000933557748795 :0.06137920171022415 -be:0.4717124104499817 lie:0.08644779026508331 ne:0.07362164556980133 lio:0.031671371310949326 he:0.019131135195493698 :0.31741564720869064 -of:0.5205233693122864 to:0.1316487044095993 and:0.09978438913822174 by:0.04523681476712227 ot:0.02632906287908554 :0.17647765949368477 -payment:0.23076747357845306 any:0.039513710886240005 receipt:0.030190879479050636 use:0.021048812195658684 execution:0.018781553953886032 :0.6596975699067116 -are:0.8813315629959106 is:0.030194489285349846 Is:0.02667832560837269 Are:0.00965411588549614 be:0.0073962886817753315 :0.04474521754309535 -other:0.3001284599304199 growing:0.09351122379302979 farm:0.08402165025472641 cultivating:0.04434771463274956 raising:0.03199386224150658 :0.44599708914756775 -down:0.19107085466384888 up:0.12380753457546234 back:0.07759109139442444 loose:0.07287764549255371 him:0.0461326465010643 :0.48852022737264633 -two:0.07833676040172577 Ottoman:0.046819642186164856 German:0.041685596108436584 French:0.03823636844754219 new:0.024754256010055542 :0.7701673768460751 -the:0.6583046317100525 an:0.11594075709581375 tho:0.07495863735675812 this:0.02495678700506687 any:0.019857419654726982 :0.10598176717758179 -the:0.23354168236255646 many:0.0724274292588234 our:0.04160919040441513 these:0.034425463527441025 several:0.028506821021437645 :0.5894894134253263 -rights:0.9055136442184448 right:0.03982599824666977 owners:0.002294753910973668 interests:0.0021137483417987823 way:0.0019037609454244375 :0.04834809433668852 -resist:0.24737776815891266 face:0.05741968750953674 feel:0.027803365141153336 accept:0.027726972475647926 meet:0.025297585874795914 :0.6143746208399534 -Vista:0.9998393058776855 Valley:6.04067417953047e-06 valley:4.311388693167828e-06 California:3.836691575997975e-06 Canyon:3.4811755540431477e-06 :0.0001430241923117137 -and:0.4536396861076355 which:0.05067533254623413 or:0.04303606599569321 it:0.03919637203216553 you:0.03041156381368637 :0.38304097950458527 -.:0.052735742181539536 i:0.05264797806739807 ::0.02932620234787464 -:0.021528003737330437 >:0.01581016555428505 :0.8279519081115723 -wire:0.3456430435180664 string:0.1778186708688736 wires:0.07889669388532639 bottle:0.07517462968826294 tubing:0.03565222769975662 :0.28681473433971405 -of:0.9368173480033875 in:0.021427586674690247 from:0.006471863482147455 between:0.005172367673367262 among:0.004189102444797754 :0.02592173172160983 -her:0.5558111667633057 the:0.16443054378032684 a:0.05695241317152977 this:0.020115915685892105 proper:0.013519670814275742 :0.18917028978466988 -years:0.3187818229198456 days:0.22866374254226685 months:0.04604995623230934 hours:0.03920415788888931 weeks:0.02910795249044895 :0.33819236792623997 -of:0.5414922833442688 in:0.25961023569107056 at:0.12495020776987076 attending:0.04019293934106827 from:0.012029500678181648 :0.02172483317553997 -,:0.09254620969295502 State:0.0838385671377182 .:0.07967785745859146 state:0.041909947991371155 city:0.02512773685157299 :0.6768996808677912 -would:0.8598959445953369 might:0.04966338723897934 could:0.023866642266511917 Would:0.022012220695614815 may:0.01181698590517044 :0.032744819298386574 -title:0.4913327693939209 right:0.10649291425943375 interest:0.08338135480880737 equity:0.06155160441994667 claim:0.025229284539818764 :0.23201207257807255 -in:0.09222541004419327 that:0.07653459161520004 simply:0.044518936425447464 only:0.042737483978271484 from:0.04223482310771942 :0.7017487548291683 -appointments:0.11334461718797684 visits:0.10834755003452301 dinner:0.09998021274805069 tea:0.05947660654783249 breakfast:0.05888193100690842 :0.5599690824747086 -Monday:0.8963761329650879 day:0.05438634380698204 Tuesday:0.01798992231488228 Sunday:0.0068396031856536865 Saturday:0.005054903216660023 :0.01935309451073408 -the:0.9 :0.1 -be:0.38350391387939453 have:0.26919999718666077 are:0.06512926518917084 been:0.02710743434727192 were:0.02469746768474579 :0.23036192171275616 -war:0.9128984212875366 campaign:0.02706294134259224 War:0.011204869486391544 conflict:0.00818152166903019 wars:0.00631170766428113 :0.034340538550168276 -that:0.9781315922737122 to:0.0054412102326750755 That:0.003195429453626275 ,:0.0030545920599251986 for:0.0013595424825325608 :0.008817633497528732 -could:0.6321850419044495 would:0.1811085045337677 might:0.09572479128837585 may:0.04895222932100296 should:0.016182594001293182 :0.02584683895111084 -time:0.1223972737789154 care:0.05889696627855301 precautions:0.05808325484395027 leave:0.054905183613300323 preparations:0.04790344834327698 :0.657813873142004 -so:0.9925134778022766 and:0.0030890852212905884 so:0.0012758016819134355 but:0.0005259837489575148 for:0.00041960965609177947 :0.0021760418894700706 -people:0.08435255289077759 votes:0.058541808277368546 country:0.05767384544014931 party:0.05665150657296181 vote:0.05069246515631676 :0.692087821662426 -assigned:0.4761829376220703 conveyed:0.05744714289903641 payable:0.04571488872170448 delivered:0.04072590917348862 paid:0.031428370624780655 :0.3485007509589195 -what:0.9609559178352356 What:0.02714638225734234 it:0.0019341703737154603 which:0.001320280833169818 It:0.0011054518399760127 :0.007537796860560775 -of:0.9335842132568359 ot:0.03783569857478142 for:0.00969962403178215 ol:0.004805092699825764 with:0.00237318966537714 :0.01170218177139759 -,:0.673328697681427 or:0.25542542338371277 and:0.06396514922380447 .:0.0007485939422622323 ,:0.0006842357106506824 :0.005847900058142841 -the:0.1920018345117569 with:0.08230221271514893 The:0.043268050998449326 to:0.04250378906726837 ,:0.0412885956466198 :0.5986355170607567 -During:0.3879489302635193 In:0.19632810354232788 For:0.10931837558746338 On:0.06104035675525665 Since:0.0456305630505085 :0.1997336708009243 -the:0.9478865265846252 tho:0.025263814255595207 other:0.005162132903933525 their:0.0037380303256213665 our:0.0020840936340391636 :0.015865402296185493 -robe:0.2510211169719696 gown:0.08079568296670914 dress:0.060869183391332626 coat:0.05679413676261902 suit:0.05550321191549301 :0.4950166679918766 -John:0.027906425297260284 Henry:0.016188209876418114 J:0.01467182207852602 W:0.014412695541977882 Frank:0.014303261414170265 :0.9125175857916474 -.:0.2275458723306656 day:0.13359980285167694 time:0.11920055001974106 since:0.06117735430598259 night:0.052708808332681656 :0.40576761215925217 -repealed:0.05210006982088089 amended:0.04647325724363327 changed:0.031694699078798294 enacted:0.025895509868860245 completed:0.02065909281373024 :0.8231773711740971 -had:0.3170500695705414 with:0.27989524602890015 bore:0.07596410810947418 held:0.023680223152041435 placed:0.021640874445438385 :0.28176947869360447 -man:0.9613192081451416 soldier:0.009149495512247086 person:0.00547384936362505 general:0.002640349557623267 gentleman:0.00236115581355989 :0.019055941607803106 -112:0.843134880065918 111:0.05921768397092819 .:0.011492634192109108 114:0.007830317132174969 110:0.005945050157606602 :0.07237943448126316 -forward:0.3618122339248657 back:0.08936608582735062 up:0.048453446477651596 us:0.0313301756978035 it:0.02612125501036644 :0.4429168030619621 -tion:0.24923191964626312 ment:0.10005638003349304 ing:0.07034670561552048 cess:0.00849233753979206 ed:0.008022109046578407 :0.5638505481183529 -of:0.4878365993499756 in:0.18944643437862396 to:0.15266309678554535 for:0.0775708332657814 ot:0.0377766415476799 :0.0547063946723938 -work:0.2685145437717438 walls:0.04848780855536461 progress:0.03725380077958107 works:0.03138814494013786 improvements:0.03107905015349388 :0.5832766517996788 -were:0.47295138239860535 remained:0.14509990811347961 died:0.08325349539518356 lay:0.05552493408322334 are:0.03187251836061478 :0.21129776164889336 -to:0.3873210549354553 I:0.24337206780910492 would:0.15762270987033844 1:0.07716750353574753 could:0.02521265484392643 :0.10930400900542736 --:0.22678275406360626 .:0.04886648803949356 ,:0.046654798090457916 of:0.030492736026644707 the:0.01342345867305994 :0.6337797651067376 -at:0.33471930027008057 ,:0.1759314239025116 .:0.07633819431066513 and:0.05104387551546097 ;:0.04583894461393356 :0.3161282613873482 -the:0.9 :0.1 -two:0.24287670850753784 several:0.06051499396562576 three:0.031754326075315475 the:0.031239967793226242 some:0.030297186225652695 :0.603316817432642 --:0.15123601257801056 tho:0.03600545600056648 the:0.023761551827192307 r:0.02282373048365116 ,:0.0225517600774765 :0.743621489033103 -play:0.5581395030021667 exchange:0.0535663440823555 buy:0.048230793327093124 draw:0.04250215366482735 hold:0.03498736768960953 :0.26257383823394775 -and:0.20835617184638977 were:0.0909162312746048 all:0.08230973780155182 each:0.053874921053647995 still:0.02510642819106579 :0.5394365098327398 -In:0.7558128237724304 Within:0.04615947604179382 Inside:0.044395748525857925 On:0.021807333454489708 Into:0.0187756959348917 :0.11304892227053642 -lay:0.08533062785863876 stand:0.07109414041042328 hold:0.049694132059812546 put:0.04292023554444313 meet:0.03969874233007431 :0.711262121796608 -of:0.9458460211753845 ot:0.03359092399477959 at:0.0025598518550395966 above:0.0025211195461452007 being:0.0014375649625435472 :0.014044518466107547 -on:0.6049689054489136 at:0.22299496829509735 near:0.06984800845384598 along:0.039865512400865555 in:0.01141588855534792 :0.05090671684592962 -doing:0.17491038143634796 paying:0.15603700280189514 conducting:0.07332994788885117 performing:0.04922224208712578 in:0.04768059030175209 :0.49881983548402786 -instead:0.9214332103729248 Instead:0.019850563257932663 rather:0.009297145530581474 and:0.006358661688864231 than:0.003543011611327529 :0.0395174075383693 -their:0.27033787965774536 the:0.12678156793117523 both:0.07274290174245834 many:0.042465776205062866 these:0.04057561606168747 :0.4470962584018707 -the:0.8954648375511169 tho:0.03008299134671688 this:0.01779874972999096 our:0.00813531968742609 bad:0.007766522467136383 :0.04075157921761274 -cast:0.3104686737060547 that:0.041519928723573685 in:0.03626319393515587 which:0.03074618987739086 to:0.02662935107946396 :0.5543726626783609 -cage:0.6197458505630493 way:0.021419936791062355 box:0.014979303814470768 shell:0.014865015633404255 harness:0.014400921761989594 :0.3145889714360237 -and:0.8099681735038757 and:0.047941017895936966 And:0.02162872813642025 that:0.014742816798388958 for:0.007775864563882351 :0.09794339910149574 -end:0.3530034124851227 time:0.3215849697589874 conclusion:0.13228730857372284 close:0.05598897859454155 beginning:0.014052603393793106 :0.1230827271938324 -the:0.4019836187362671 winter:0.10630732029676437 a:0.06312848627567291 tho:0.019408490508794785 early:0.01656201481819153 :0.3926100693643093 -of:0.9776305556297302 in:0.008419675752520561 ot:0.0053609698079526424 among:0.0017462311079725623 on:0.0015083042671903968 :0.005334263434633613 -wood:0.08373387157917023 stones:0.045147690922021866 sand:0.04150202125310898 iron:0.029018927365541458 water:0.027448667213320732 :0.7731488216668367 -the:0.8253854513168335 tho:0.09581758826971054 that:0.0187680721282959 any:0.013682897202670574 this:0.010110248811542988 :0.0362357422709465 -vote:0.09163778275251389 responsibility:0.06591344624757767 votes:0.05167338624596596 time:0.029156120494008064 nomination:0.027139898389577866 :0.7344793658703566 -to:0.36281102895736694 of:0.21120420098304749 from:0.2097499519586563 between:0.02715560793876648 .:0.022282106801867485 :0.1667971033602953 -the:0.4729086756706238 ,:0.2464347928762436 this:0.026166046038269997 tho:0.01997530087828636 a:0.010249165818095207 :0.22426601871848106 -been:0.22046874463558197 not:0.05279913172125816 such:0.04716779291629791 be:0.0307708028703928 truly:0.029420148581266403 :0.6193733792752028 -are:0.9834694862365723 were:0.0039334106259047985 have:0.0009702135575935245 is:0.0007451438577845693 stand:0.0006893524550832808 :0.010192393267061561 -by:0.8509636521339417 to:0.07849637418985367 with:0.019297495484352112 upon:0.012941795401275158 on:0.00706107635051012 :0.03123960644006729 -.:0.537800669670105 defense:0.021358584985136986 effort:0.017943039536476135 ability:0.017550170421600342 efforts:0.013078822754323483 :0.3922687126323581 -case:0.05946968495845795 evidence:0.043676864355802536 argument:0.020032934844493866 facts:0.01989440992474556 conclusion:0.019236624240875244 :0.8376894816756248 -.:0.2179536074399948 live:0.026806512847542763 eat:0.014671930111944675 fail:0.014366237446665764 be:0.01405108068138361 :0.7121506314724684 -until:0.3710569441318512 that:0.1333002746105194 lest:0.06768904626369476 ,:0.06194240227341652 before:0.048191629350185394 :0.3178197033703327 -I:0.2044331133365631 dat:0.09685013443231583 bad:0.04367309808731079 me:0.017701180651783943 d:0.016741473227739334 :0.620601000264287 -the:0.8226408958435059 his:0.11671401560306549 a:0.011301715858280659 this:0.009617003612220287 their:0.0071723684668540955 :0.03255400061607361 -the:0.780341386795044 on:0.014869368635118008 his:0.014059063047170639 tho:0.013059786520898342 stealing:0.010903798043727875 :0.1667665969580412 -,:0.7043492197990417 and:0.14538367092609406 .:0.05722275748848915 ,:0.011510137468576431 ;:0.007327600847929716 :0.0742066134698689 -gallons:0.9945911765098572 gallon:0.0021501234732568264 pounds:0.0008899567183107138 tons:0.00031433417461812496 barrels:0.00030220142798498273 :0.0017522076959721744 -the:0.36263757944107056 their:0.05149326100945473 its:0.03446737676858902 large:0.021403873339295387 an:0.020561987534165382 :0.5094359219074249 -the:0.9711598753929138 tho:0.020808765664696693 a:0.00288949441164732 tha:0.0007731298101134598 The:0.0002970430941786617 :0.004071691626450047 -officers:0.07779298722743988 men:0.04839087650179863 soldiers:0.03034627065062523 mem:0.025140434503555298 soldier:0.022069739177823067 :0.7962596919387579 -which:0.28365588188171387 that:0.2226419299840927 it:0.18249481916427612 It:0.07014677673578262 ,:0.04485708847641945 :0.19620350375771523 -not:0.20367932319641113 be:0.1372508853673935 have:0.03782857209444046 he:0.030730661004781723 ever:0.030205735936760902 :0.5603048224002123 -hands:0.3911976218223572 saddle:0.046897243708372116 service:0.038830749690532684 way:0.03432623669505119 charge:0.033935967832803726 :0.4548121802508831 -robbing:0.5480031967163086 destroying:0.05898037552833557 saving:0.04401211440563202 deprive:0.029296446591615677 starving:0.024782489985227585 :0.29492537677288055 -tho:0.8721238374710083 the:0.07941099256277084 this:0.006074416451156139 a:0.004060032311826944 ho:0.003788421396166086 :0.034542299807071686 -the:0.8842148184776306 tho:0.018350662663578987 under:0.017335759475827217 by:0.009493226185441017 in:0.00897431094199419 :0.06163122225552797 -materially:0.3583935499191284 up:0.09577010571956635 greatly:0.04312211647629738 positively:0.03803260251879692 substantially:0.02839776501059532 :0.4362838603556156 -,:0.07649067044258118 yesterday:0.03225656598806381 and:0.018982667475938797 Jones:0.0183115117251873 again:0.01734841987490654 :0.8366101644933224 -regulations:0.20577803254127502 ,:0.07905693352222443 those:0.04677402228116989 provisions:0.04176223278045654 laws:0.030720675364136696 :0.5959081035107374 -a:0.3411881625652313 or:0.20477840304374695 -:0.12265566736459732 any:0.0575084425508976 and:0.018752306699752808 :0.255117017775774 -reasonable:0.3412375748157501 safe:0.09054821729660034 impossible:0.06919965893030167 unreasonable:0.04886807128787041 not:0.04499834403395653 :0.40514813363552094 -and:0.28688931465148926 ,:0.0398520827293396 .:0.039527323096990585 Smith:0.0284261591732502 Moore:0.020198095589876175 :0.5851070247590542 -of:0.7681706547737122 upon:0.054205480962991714 to:0.04679163545370102 ot:0.029493896290659904 on:0.021339111030101776 :0.07999922148883343 -the:0.16461269557476044 animals:0.15804371237754822 such:0.05752963200211525 animal:0.0451224222779274 these:0.031492024660110474 :0.5431995131075382 -ahead:0.15919151902198792 there:0.12153391540050507 down:0.025207173079252243 still:0.020652323961257935 In:0.01916874386370182 :0.654246324673295 -thence:0.9293427467346191 then:0.06068039312958717 and:0.002021179534494877 beginning:0.0006352618220262229 continuing:0.0004911719006486237 :0.006829246878623962 --:0.08885420858860016 or:0.07130151242017746 ,:0.04036172479391098 the:0.02601548843085766 l:0.02600697986781597 :0.7474600858986378 -There:0.7766075730323792 there:0.08817753940820694 there:0.05084523931145668 There:0.03334207087755203 We:0.011248640716075897 :0.0397789366543293 -was:0.41416069865226746 is:0.1253541260957718 as:0.08609680831432343 with:0.028558289632201195 Is:0.027924951165914536 :0.3179051261395216 -the:0.9 :0.1 -tho:0.7608437538146973 the:0.19118116796016693 those:0.008459387347102165 any:0.008265364915132523 many:0.00771673396229744 :0.023533592000603676 -large:0.6445162892341614 great:0.0909319818019867 considerable:0.05370715260505676 good:0.027271399274468422 wide:0.020863953977823257 :0.1627092231065035 -ongs:0.15764889121055603 ills:0.11023019254207611 aces:0.06162196025252342 ong:0.050132472068071365 ice:0.04373608157038689 :0.5766304023563862 -aled:0.4504585862159729 eded:0.23178203403949738 ated:0.14941300451755524 eming:0.0990472212433815 arded:0.008349219337105751 :0.060949934646487236 -two:0.219827800989151 a:0.15861079096794128 an:0.07045187801122665 the:0.05674399062991142 three:0.042300745844841 :0.45206479355692863 -laws:0.1465071737766266 ment:0.14538715779781342 poses:0.02514301985502243 tem:0.022282535210251808 ing:0.01958993822336197 :0.6410901751369238 -what:0.6281323432922363 all:0.201152965426445 food:0.018891716375947 ,:0.015540064312517643 that:0.013994257897138596 :0.12228865269571543 -.:0.06566683202981949 that:0.0478009358048439 t:0.027798403054475784 .:0.019268985837697983 r:0.017679769545793533 :0.8217850737273693 -the:0.9106845855712891 their:0.011889906600117683 these:0.011727685108780861 The:0.00792186614125967 tho:0.007653586566448212 :0.05012237001210451 -our:0.420260488986969 the:0.34257185459136963 American:0.024176480248570442 a:0.02088302932679653 this:0.014941859990358353 :0.17716628685593605 -the:0.4635109305381775 in:0.08173296600580215 a:0.05911669135093689 any:0.05205981433391571 my:0.04600720852613449 :0.29757238924503326 -the:0.9698423743247986 tho:0.008689714595675468 said:0.00623417878523469 this:0.0028388877399265766 The:0.0014623157912865281 :0.010932528763078153 -an:0.16637545824050903 the:0.10747160762548447 a:0.06305259466171265 poison:0.028066301718354225 his:0.022915417328476906 :0.6121186204254627 -at:0.866091251373291 ,:0.019669169560074806 about:0.01876041665673256 of:0.015920119360089302 from:0.01197444275021553 :0.06758460029959679 -Charleston:0.228524848818779 Norfolk:0.10297445952892303 Portsmouth:0.06480733305215836 Savannah:0.05822425335645676 Baltimore:0.05355389788746834 :0.4919152073562145 -she:0.8670641183853149 they:0.03900499269366264 it:0.030604422092437744 he:0.00871957279741764 you:0.0044256336987018585 :0.05018126033246517 -which:0.20382767915725708 that:0.09501837939023972 if:0.08625225722789764 as:0.048330098390579224 ing:0.04230298846960068 :0.5242685973644257 -no:0.26912593841552734 a:0.24737682938575745 the:0.11260084062814713 to:0.046852342784404755 without:0.028116216883063316 :0.2959278319031 -at:0.9684901833534241 the:0.011480042710900307 At:0.004157030954957008 a:0.0034962003119289875 n:0.0023985831066966057 :0.00997795956209302 -the:0.905885636806488 these:0.05573619157075882 those:0.0057275379076600075 their:0.0038616040255874395 tho:0.003095074789598584 :0.025693954899907112 -much:0.1387629508972168 very:0.13667039573192596 more:0.06415596604347229 most:0.049790333956480026 somewhat:0.027620097622275352 :0.5830002557486296 -The:0.6151019334793091 This:0.08418489992618561 That:0.06346561014652252 What:0.04184683784842491 Our:0.014928052201867104 :0.18047266639769077 -is:0.8967075943946838 Is:0.024543358013033867 seems:0.0244754571467638 happens:0.008960613049566746 occurs:0.006285212002694607 :0.03902776539325714 -brings:0.15197215974330902 add:0.1145985871553421 goes:0.09048513323068619 bring:0.06457153707742691 go:0.05572294071316719 :0.5226496420800686 -The:0.8700215816497803 Her:0.05171746760606766 These:0.017271731048822403 the:0.01181882619857788 The:0.00882858969271183 :0.040341803804039955 -.:0.32038643956184387 fact:0.05699364095926285 facts:0.04376397281885147 information:0.030105888843536377 .:0.017605111002922058 :0.5311449468135834 -,:0.5690850615501404 ;:0.11046882718801498 not:0.09157183021306992 and:0.06141448765993118 except:0.031324852257966995 :0.13613494113087654 -and:0.9447248578071594 or:0.023181336000561714 ,:0.004831264726817608 without:0.0022134799510240555 by:0.0017917000222951174 :0.02325736149214208 -the:0.4765797555446625 a:0.09244339913129807 tho:0.08310925215482712 each:0.07634159922599792 every:0.061312608420848846 :0.21021338552236557 -home:0.08450285345315933 house:0.06472407281398773 grave:0.06355469673871994 heart:0.024403290823101997 farm:0.022599872201681137 :0.7402152139693499 -man:0.43864232301712036 person:0.03454357013106346 ,:0.03347860276699066 character:0.029362859204411507 boy:0.020624568685889244 :0.44334807619452477 -and:0.6502668857574463 ,:0.11096865683794022 who:0.0970483124256134 but:0.09175100177526474 or:0.007614056579768658 :0.042351086623966694 -made:0.1418738216161728 other:0.06135329231619835 had:0.05958031490445137 seen:0.039845068007707596 done:0.031796447932720184 :0.6655510552227497 -tho:0.18996447324752808 the:0.11583438515663147 o:0.07056578993797302 a:0.030631357803940773 no:0.01882559433579445 :0.5741783995181322 -and:0.3047593832015991 for:0.22039766609668732 as:0.16965359449386597 but:0.10344283282756805 though:0.023235680535435677 :0.17851084284484386 -the:0.20868618786334991 all:0.11781002581119537 tho:0.10732884705066681 doing:0.05079951509833336 some:0.02761574275791645 :0.4877596814185381 -this:0.6859700083732605 the:0.13808079063892365 that:0.051086194813251495 one:0.0463673397898674 a:0.01073045190423727 :0.06776521448045969 -,:0.06645731627941132 if:0.05086079239845276 that:0.03447046875953674 i:0.03124702163040638 either:0.028898192569613457 :0.7880662083625793 -occasion:0.17370754480361938 President:0.08194775134325027 Presidency:0.03063676692545414 country:0.02188367024064064 public:0.020729735493659973 :0.6710945311933756 -en:0.23503953218460083 ph:0.06517401337623596 e:0.05515333637595177 city:0.03882387652993202 ph:0.0360855795443058 :0.5697236619889736 -thirty:0.0639529600739479 several:0.0633806437253952 twenty:0.06183819845318794 ten:0.06178655847907066 forty:0.05049705505371094 :0.6985445842146873 -composed:0.8366676568984985 one:0.09587361663579941 made:0.012818146497011185 out:0.00890346895903349 full:0.0086861876770854 :0.03705092333257198 -are:0.7785519361495972 have:0.026132334023714066 know:0.01684505119919777 see:0.01628456450998783 were:0.012666319496929646 :0.14951979462057352 -remedies:0.08299858868122101 ailments:0.07896506786346436 disease:0.053383681923151016 work:0.034295838326215744 diseases:0.032121993601322174 :0.7182348296046257 -be:0.9674743413925171 bo:0.01023055799305439 have:0.00624695373699069 he:0.0045965262688696384 lie:0.0020253057591617107 :0.00942631484940648 -and:0.3513343334197998 almost:0.06907305866479874 with:0.05068803206086159 nearly:0.05024246498942375 removing:0.04478231072425842 :0.4338798001408577 -been:0.9514575004577637 be:0.017612777650356293 ben:0.0030426650773733854 not:0.003019551280885935 bo:0.0017957186792045832 :0.023071786854416132 -officer:0.13313187658786774 sailor:0.10306409746408463 soldier:0.09576772898435593 marine:0.08144664019346237 general:0.04723413288593292 :0.5393555238842964 -order:0.8177465796470642 advance:0.03129449859261513 refusing:0.01264113001525402 regard:0.011106322519481182 writing:0.010242109186947346 :0.11696936003863811 -virtue:0.47708529233932495 men:0.04887561872601509 reason:0.032571256160736084 means:0.022834189236164093 duty:0.02044670097529888 :0.3981869425624609 -James:0.14388532936573029 John:0.12579114735126495 William:0.04201774299144745 Charles:0.02460874244570732 .:0.020069178193807602 :0.6436278596520424 -to:0.9686374664306641 ot:0.011983213946223259 of:0.005273863673210144 to:0.0016216016374528408 for:0.0011429114965721965 :0.011340942815877497 -the:0.9 :0.1 -he:0.9845666289329529 He:0.007621015887707472 lie:0.0007231562631204724 she:0.0005269509856589139 it:0.00048756288015283644 :0.006074685050407425 -necessity:0.7086994647979736 boon:0.09737998247146606 problem:0.02710842527449131 concern:0.017121413722634315 matter:0.009037904441356659 :0.14065280929207802 -Smith:0.030889810994267464 Hunt:0.0216357558965683 Mitchell:0.015033386647701263 Scott:0.01101516280323267 Taylor:0.010159611701965332 :0.911266271956265 -it:0.6913227438926697 them:0.0897381454706192 this:0.03950205445289612 It:0.026659054681658745 all:0.016598304733633995 :0.13617969676852226 -short:0.5017220973968506 long:0.06955502182245255 second:0.04872078448534012 little:0.04027067869901657 quick:0.021761436015367508 :0.31796998158097267 -to:0.3531080186367035 and:0.17277008295059204 without:0.12082329392433167 or:0.09465359151363373 before:0.03777727112174034 :0.22086774185299873 -the:0.6591675281524658 tho:0.047837357968091965 and:0.023422596976161003 our:0.015156073495745659 an:0.01447861548513174 :0.2399378279224038 -Mrs:0.8405181169509888 Mary:0.03478886932134628 Miss:0.03153141215443611 John:0.00281970901414752 Mr:0.0025390053633600473 :0.08780288719572127 -so:0.07356881350278854 thus:0.04678388312458992 is:0.027417216449975967 therefore:0.026662854477763176 not:0.023897670209407806 :0.8016695622354746 -to:0.6266867518424988 in:0.12086000293493271 ,:0.08107705414295197 of:0.021824028342962265 on:0.020602168515324593 :0.1289499942213297 -States:0.9781754612922668 State:0.0052351513877511024 Kingdom:0.0027061307337135077 states:0.0026479901280254126 Territories:0.0017398915952071548 :0.009495374863035977 -ing:0.07293898612260818 ter:0.02966698259115219 an:0.028217772021889687 :0.01983489841222763 t:0.017555953934788704 :0.8317854069173336 -side:0.186050146818161 end:0.17195063829421997 one:0.1290254145860672 hand:0.02843078225851059 front:0.028288736939430237 :0.456254281103611 -in:0.5242740511894226 In:0.1497630476951599 during:0.03719561919569969 for:0.02558012679219246 on:0.01996520534157753 :0.2432219497859478 -God:0.1518453061580658 nature:0.09823186695575714 man:0.0769815444946289 life:0.06486998498439789 spirit:0.04887732118368149 :0.5591939762234688 -own:0.2609260082244873 patented:0.11519453674554825 favorite:0.04155174270272255 finest:0.03065183386206627 famous:0.02958042547106743 :0.5220954529941082 -the:0.9399378895759583 those:0.0099515151232481 his:0.007802531123161316 any:0.0058718472719192505 other:0.005334383808076382 :0.0311018330976367 -rails:0.11057606339454651 house:0.06992405652999878 building:0.05573316290974617 rail:0.04258434474468231 platform:0.03454885631799698 :0.6866335161030293 -with:0.5499439239501953 to:0.30847644805908203 from:0.02983221411705017 the:0.025173885747790337 ot:0.006648714188486338 :0.07992481393739581 -whose:0.2985592186450958 The:0.08350640535354614 the:0.049182821065187454 whose:0.024772504344582558 His:0.014804093167185783 :0.5291749574244022 -the:0.6883828043937683 a:0.12957096099853516 my:0.06340575218200684 that:0.02267039380967617 tho:0.014604172669351101 :0.08136591594666243 -the:0.37026849389076233 a:0.17908088862895966 tho:0.04926232248544693 his:0.036622826009988785 last:0.03599117696285248 :0.3287742920219898 -Keith:0.9352952837944031 Kelly:0.0036284688394516706 K:0.0030772953759878874 Kon:0.0024430204648524523 Thompson:0.0021262182854115963 :0.05342971323989332 -The:0.8263329863548279 Public:0.0910310447216034 General:0.014716641046106815 The:0.00535165099427104 National:0.0035638324916362762 :0.059003844391554594 -flames:0.1917584389448166 air:0.09281069040298462 fires:0.03138788416981697 flowers:0.021632157266139984 flame:0.02077087014913559 :0.6416399590671062 -give:0.8107960820198059 accord:0.03827933967113495 find:0.02624995820224285 call:0.010952956043183804 assign:0.009598864242434502 :0.10412279982119799 -and:0.7374679446220398 to:0.12214966863393784 ,:0.03520742803812027 or:0.01117202453315258 ot:0.003949602600187063 :0.09005333157256246 -and:0.13402159512043 Robinson:0.06245804578065872 Smith:0.03360889479517937 Brown:0.02025410160422325 Johnson:0.01866745948791504 :0.7309899032115936 -The:0.6024423837661743 This:0.292272686958313 That:0.0375262126326561 A:0.009831763803958893 All:0.005093360785394907 :0.0528335920535028 -�:0.559278666973114 and:0.04556850716471672 the:0.01734466478228569 ained:0.015446243807673454 -:0.013215918093919754 :0.34914599917829037 -ated:0.0894920825958252 ,:0.041425671428442 ied:0.03245772793889046 ced:0.02696872130036354 ided:0.02643638290464878 :0.78321941383183 -and:0.6696661114692688 or:0.1860470175743103 ,:0.11066634207963943 yet:0.005807521753013134 but:0.004963525105267763 :0.022849482018500566 -to:0.9896599650382996 's:0.0016392244724556804 ,:0.0009718430228531361 -:0.0008870090241543949 and:0.0006014288519509137 :0.0062405295902863145 -the:0.9 :0.1 -leaving:0.1802082359790802 placing:0.07695405930280685 putting:0.05490252003073692 holding:0.05181579664349556 with:0.03871848061680794 :0.5974009074270725 -ground:0.24523690342903137 fact:0.23168176412582397 grounds:0.16101643443107605 basis:0.06659592688083649 condition:0.024588266387581825 :0.2708807047456503 -event:0.8366273641586304 case:0.05624223127961159 absence:0.03826242312788963 face:0.03171709552407265 midst:0.011638317257165909 :0.025512568652629852 -the:0.9 :0.1 -Sabbath:0.3829778730869293 purpose:0.021606359630823135 day:0.019788537174463272 job:0.01715891808271408 best:0.014029644429683685 :0.5444386675953865 -est:0.16335056722164154 looking:0.09064462035894394 little:0.051771920174360275 American:0.03253495320677757 old:0.02638336457312107 :0.6353145744651556 -and:0.13352128863334656 is:0.0726248025894165 but:0.054135385900735855 as:0.05160784348845482 for:0.034243881702423096 :0.6538667976856232 -rights:0.9431139230728149 right:0.032675791531801224 privileges:0.0012156401062384248 means:0.0009201783104799688 freedom:0.000691379711497575 :0.021383087267167866 --:0.177053764462471 an:0.062418896704912186 the:0.04946606606245041 a:0.044051241129636765 o:0.026557469740509987 :0.6404525619000196 -would:0.6355069875717163 may:0.1733895093202591 might:0.07764849066734314 does:0.02396969683468342 will:0.023273050785064697 :0.06621226482093334 -men:0.06371023505926132 still:0.04369329661130905 while:0.034644436091184616 ,:0.03279518708586693 are:0.030389655381441116 :0.794767189770937 -at:0.8918537497520447 to:0.01698768511414528 doing:0.010616417042911053 on:0.009081308729946613 starting:0.006522358860820532 :0.06493848050013185 -of:0.9579891562461853 containing:0.008951361291110516 and:0.006862618029117584 ot:0.005706546828150749 for:0.0025852203834801912 :0.017905097221955657 -tion:0.15546156466007233 o:0.05985443294048309 ing:0.04319046065211296 tho:0.03854385390877724 and:0.03710206598043442 :0.66584762185812 -being:0.13233798742294312 taking:0.07224051654338837 giving:0.07143165171146393 writing:0.06774961203336716 such:0.05170365050435066 :0.6045365817844868 -the:0.9957541227340698 tho:0.0017778180772438645 a:0.000447488680947572 its:0.00034526456147432327 the:0.0002784026728477329 :0.001396903273416683 -county:0.06760051101446152 court:0.06237345188856125 time:0.02986096777021885 office:0.027284255251288414 ,:0.026945563033223152 :0.7859352510422468 -a:0.371112585067749 another:0.1980600208044052 the:0.07310149073600769 this:0.03988523408770561 one:0.020435109734535217 :0.29740555956959724 -of:0.5503334403038025 at:0.18120607733726501 in:0.06263317912817001 and:0.038707148283720016 .:0.025125328451395035 :0.14199482649564743 -the:0.8439884781837463 tho:0.0947280153632164 a:0.03896118327975273 any:0.0035223965533077717 this:0.0024715180043131113 :0.016328408615663648 -brow:0.5670835375785828 teeth:0.05082603171467781 hands:0.039342641830444336 feet:0.03926617652177811 blood:0.03818525746464729 :0.2652963548898697 -y:0.03723074868321419 y:0.028629448264837265 :0.019107863306999207 n:0.016508303582668304 s:0.014050522819161415 :0.8844731133431196 -decreased:0.15372957289218903 low:0.1084337905049324 reduced:0.07582716643810272 poor:0.06490227580070496 decreasing:0.06098691374063492 :0.536120280623436 -in:0.7331658005714417 at:0.167348250746727 In:0.03114042803645134 not:0.013606177642941475 to:0.011356998234987259 :0.043382344767451286 -leads:0.1978672593832016 and:0.06794523447751999 by:0.06270318478345871 to:0.05289390683174133 is:0.04114246368408203 :0.5774479508399963 -were:0.9158881902694702 consisted:0.052080705761909485 are:0.016220923513174057 died:0.0015672510489821434 came:0.0014557053800672293 :0.01278722402639687 -myth:0.2426460236310959 story:0.07909148931503296 lie:0.052957966923713684 true:0.05100461468100548 fiction:0.048161692917346954 :0.526138212531805 -We:0.6175966858863831 Countries:0.12664546072483063 People:0.049752071499824524 States:0.03295588120818138 Men:0.023441871628165245 :0.14960802905261517 -the:0.261076420545578 and:0.023876186460256577 gather:0.01158197596669197 get:0.011074571870267391 his:0.010079546831548214 :0.6823112983256578 -may:0.44861745834350586 shall:0.36571118235588074 might:0.02335822954773903 will:0.020967015996575356 would:0.018172819167375565 :0.12317329458892345 -the:0.22588136792182922 Federal:0.19310930371284485 their:0.09325491636991501 every:0.04777881130576134 its:0.032331351190805435 :0.40764424949884415 -In:0.45773884654045105 This:0.043199505656957626 Of:0.03990647569298744 Another:0.03600892424583435 For:0.034291964024305344 :0.3888542838394642 -hand:0.9373143315315247 position:0.007592998910695314 part:0.0023444255348294973 hands:0.002218216424807906 voice:0.0021454263478517532 :0.04838460125029087 -ed:0.015852389857172966 turned:0.007003834005445242 er:0.004932918585836887 cut:0.004333355464041233 d:0.0037091942504048347 :0.9641683078370988 -of:0.9248902201652527 in:0.036175914108753204 and:0.010740041732788086 behind:0.004822296090424061 to:0.002686600899323821 :0.020684927003458142 -.:0.3062734603881836 action:0.02627495862543583 preparation:0.024393215775489807 thinking:0.019981900230050087 remarks:0.01896805688738823 :0.6041084080934525 -,:0.11061714589595795 e:0.03551945835351944 i:0.03532855212688446 .:0.03371948376297951 u:0.022637683898210526 :0.7621776759624481 -then:0.32275301218032837 when:0.08742029219865799 suddenly:0.08264710754156113 as:0.06645702570676804 that:0.041707538068294525 :0.39901502430438995 -be:0.9714860320091248 bo:0.006845786236226559 lie:0.004869189113378525 he:0.0023867804557085037 have:0.001859735930338502 :0.012552476255223155 -,:0.31857308745384216 .:0.15161320567131042 and:0.10147957503795624 &:0.030515436083078384 's:0.020892981439828873 :0.3769257143139839 -school:0.16471481323242188 ural:0.03331361338496208 rict:0.03289715573191643 public:0.021573906764388084 educational:0.02044275589287281 :0.7270577549934387 -not:0.2084508240222931 evenly:0.05892064422369003 so:0.05753116309642792 now:0.055607110261917114 still:0.029848283156752586 :0.5896419752389193 -at:0.966858446598053 not:0.005502151791006327 At:0.002152196830138564 long:0.0021208839025348425 from:0.0019396399147808552 :0.021426680963486433 -the:0.5590673685073853 tho:0.11538877338171005 a:0.021305566653609276 those:0.017306063324213028 good:0.010999584570527077 :0.2759326435625553 -u:0.39405372738838196 t:0.06538452208042145 of:0.028816157951951027 ,:0.019109178334474564 ug:0.0151872793212533 :0.4774491349235177 -est:0.0681304931640625 ing:0.024377591907978058 ment:0.020709188655018806 struct:0.011983615346252918 west:0.011200850829482079 :0.8635982600972056 -cases:0.9719353914260864 instances:0.021106302738189697 patients:0.0012018171837553382 case:0.0009497395949438214 stages:0.00047951232409104705 :0.00432723673293367 -ed:0.43918952345848083 ing:0.43202438950538635 ly:0.02878832072019577 :0.0055752950720489025 er:0.004465633071959019 :0.08995683817192912 -he:0.49429818987846375 it:0.3689546585083008 slavery:0.04968642815947533 lie:0.014684283174574375 It:0.013487114571034908 :0.058889325708150864 -far:0.9951990246772766 long:0.002614994067698717 much:0.0011403511743992567 far:0.00024758701329119503 Far:0.00016854640853125602 :0.0006294966588029638 -number:0.4393814504146576 couple:0.14333246648311615 pair:0.07187152653932571 committee:0.037262000143527985 group:0.03296357020735741 :0.27518898621201515 -is:0.6545156240463257 was:0.13561329245567322 Is:0.07599486410617828 a:0.010411519557237625 exists:0.009265568107366562 :0.11419913172721863 -,:0.6076231598854065 .:0.10260018706321716 and:0.06884126365184784 ;:0.019811350852251053 the:0.016499243676662445 :0.184624794870615 -above:0.228520467877388 below:0.13464154303073883 in:0.08264726400375366 from:0.05173541605472565 In:0.04392419755458832 :0.45853111147880554 -and:0.7289395928382874 but:0.1405162364244461 while:0.01618647202849388 yet:0.014944406226277351 although:0.013612346723675728 :0.08580094575881958 -seems:0.16020171344280243 appears:0.12332906574010849 said:0.11896101385354996 claims:0.05819816514849663 claimed:0.05401496961712837 :0.4852950721979141 -;:0.46988826990127563 ,:0.32053834199905396 ::0.038995154201984406 ;:0.027062619104981422 and:0.0213946383446455 :0.12212097644805908 -the:0.8761808276176453 tho:0.0704018622636795 The:0.012298558838665485 that:0.01058304961770773 this:0.004814591258764267 :0.02572111040353775 -in:0.09759549051523209 not:0.07470270991325378 of:0.07420589029788971 but:0.056336481124162674 only:0.04013734683394432 :0.6570220813155174 -I:0.30210962891578674 you:0.1530027538537979 we:0.08847860246896744 thou:0.03416173905134201 ,:0.0261456947773695 :0.3961015809327364 -a:0.39765870571136475 the:0.22583483159542084 this:0.18336567282676697 tho:0.0579766221344471 any:0.034528616815805435 :0.10063555091619492 --:0.17370900511741638 amendment:0.04531228169798851 act:0.030250104144215584 and:0.022699883207678795 vote:0.021455906331539154 :0.7065728195011616 -they:0.26760366559028625 there:0.20498992502689362 we:0.1456238031387329 men:0.05246417969465256 women:0.038933370262384415 :0.29038505628705025 -in:0.7833647131919861 In:0.05922411009669304 within:0.0364002026617527 outside:0.021205682307481766 around:0.017219820991158485 :0.08258547075092793 -side:0.8450383543968201 line:0.03800611570477486 end:0.014881648123264313 corner:0.01126533467322588 section:0.007304470520466566 :0.08350407658144832 -install:0.16851763427257538 build:0.1114770844578743 sew:0.06482117623090744 make:0.04002423211932182 repair:0.02902340702712536 :0.5861364658921957 -part:0.37574493885040283 own:0.09479992091655731 face:0.06681403517723083 arrival:0.03994711861014366 faces:0.026952171698212624 :0.39574181474745274 -the:0.9 :0.1 -has:0.9243654608726501 had:0.031830400228500366 having:0.007902723737061024 ha:0.007184164598584175 hath:0.0069989957846701145 :0.021718254778534174 -It:0.5944151878356934 There:0.2687346041202545 This:0.05864200368523598 That:0.011098149232566357 School:0.008386530913412571 :0.05872352421283722 -the:0.9323377013206482 certain:0.023838156834244728 said:0.011096127331256866 the:0.004946005530655384 such:0.0031790421344339848 :0.024602966848760843 -can:0.3168197274208069 may:0.13256198167800903 cannot:0.0906391516327858 must:0.06184525787830353 could:0.059821296483278275 :0.3383125849068165 -tho:0.5840669274330139 the:0.22250224649906158 a:0.10694708675146103 his:0.052686069160699844 its:0.005166720133274794 :0.028630950022488832 -the:0.959039568901062 our:0.025011397898197174 tha:0.004758073948323727 tho:0.003354619722813368 this:0.0016658154781907797 :0.00617052405141294 -died:0.6305988430976868 perished:0.02899833582341671 fled:0.027694586664438248 drowned:0.02182724140584469 starved:0.02054227888584137 :0.2703387141227722 -spirit:0.06341024488210678 man:0.045278679579496384 boy:0.04225277900695801 wind:0.018988579511642456 game:0.01833518221974373 :0.8117345348000526 -the:0.9586110711097717 this:0.01752379909157753 that:0.010029318742454052 tho:0.0041341520845890045 a:0.0024627880193293095 :0.007238870952278376 -But:0.5099286437034607 And:0.1578146368265152 Yet:0.06641098856925964 Perhaps:0.03158361092209816 but:0.02374863624572754 :0.21051348373293877 -that:0.5233004689216614 which:0.4393472373485565 as:0.010492737405002117 ,:0.00864679366350174 who:0.005496635101735592 :0.012716127559542656 -McMahon:0.8366660475730896 I:0.009514298290014267 He:0.007752158213406801 Bryan:0.0029746617656201124 Thomas:0.0029207344632595778 :0.14017209969460964 -avenue:0.5603920817375183 street:0.4016159474849701 Street:0.007359957788139582 road:0.004629555158317089 street:0.00456619868054986 :0.021436259150505066 -of:0.6270359754562378 in:0.08870754390954971 and:0.07692491263151169 ,:0.04234869033098221 In:0.016492491587996483 :0.14849038608372211 -the:0.5033032894134521 an:0.3258998692035675 every:0.07268800586462021 no:0.026902949437499046 any:0.017566539347171783 :0.05363934673368931 -held:0.6565456986427307 elected:0.028194017708301544 called:0.019572440534830093 appointed:0.015689760446548462 done:0.013737902045249939 :0.26626018062233925 -explain:0.6520376801490784 get:0.056461747735738754 give:0.034375619143247604 throw:0.028562793508172035 take:0.0210605226457119 :0.20750163681805134 -result:0.07203245162963867 vote:0.048383042216300964 whole:0.03726701810956001 party:0.02563520334661007 delegate:0.022576628252863884 :0.7941056564450264 -been:0.8490168452262878 enjoyed:0.016992347314953804 in:0.008352014236152172 also:0.00725064892321825 begun:0.005363150034099817 :0.11302499426528811 -this:0.20096063613891602 American:0.08705226331949234 the:0.08493998646736145 our:0.07834611088037491 German:0.0525832436978817 :0.4961177594959736 -done:0.11424986273050308 d:0.10996726155281067 l:0.026563141494989395 t:0.026011181995272636 v:0.022046223282814026 :0.7011623289436102 -the:0.5024343132972717 an:0.15953834354877472 this:0.09838372468948364 that:0.06044499948620796 some:0.05158526077866554 :0.1276133581995964 -remains:0.1918138861656189 is:0.18103009462356567 remained:0.1736709177494049 remain:0.06433581560850143 now:0.04786880314350128 :0.3412804827094078 -as:0.5514011979103088 and:0.13906164467334747 which:0.08060245960950851 when:0.040683355182409286 whom:0.027349794283509254 :0.16090154834091663 -brought:0.04443070665001869 given:0.03477071598172188 raised:0.030903955921530724 heard:0.03030884824693203 sent:0.030190283432602882 :0.8293954897671938 -a:0.8973113894462585 -:0.036366142332553864 two:0.01023639366030693 one:0.008875909261405468 the:0.006217058748006821 :0.04099310655146837 -part:0.7392504811286926 portion:0.11678806692361832 amount:0.03376319259405136 kind:0.010752245783805847 other:0.010603290051221848 :0.08884272351861 -deed:0.042474739253520966 time:0.03231067582964897 trustee:0.02989545650780201 purchaser:0.026499856263399124 purpose:0.026369845494627953 :0.842449426651001 -Government:0.6303548216819763 Bank:0.3198140561580658 State:0.010236147791147232 government:0.0037979399785399437 Treasury:0.0031867932993918657 :0.032610241090878844 -the:0.9572562575340271 The:0.014195943251252174 tho:0.002955796429887414 their:0.0010277614928781986 the:0.0009292244212701917 :0.023635016870684922 -the:0.9 :0.1 -a:0.9888427257537842 the:0.004892474971711636 no:0.001230240915901959 an:0.000537408865056932 not:0.0004977021599188447 :0.003999447333626449 -high:0.15915051102638245 low:0.1085464283823967 rising:0.04743879288434982 great:0.021282102912664413 increased:0.019946180284023285 :0.6436359845101833 -all:0.18177473545074463 tho:0.12591804563999176 the:0.091814786195755 ,:0.04865627363324165 of:0.04798070713877678 :0.5038554519414902 -a:0.14052730798721313 the:0.0949811264872551 1:0.05117249861359596 one:0.02850961498916149 ,:0.022540833801031113 :0.6622686181217432 -the:0.9 :0.1 -end:0.4353039264678955 side:0.38334813714027405 deck:0.03438311442732811 part:0.03203798457980156 half:0.01626412570476532 :0.09866271167993546 -the:0.8413729071617126 tho:0.11767428368330002 my:0.0035292976535856724 tha:0.0034288123715668917 his:0.003247975604608655 :0.030746723525226116 -all:0.5080175995826721 :0.049219291657209396 what:0.024862375110387802 the:0.023541783913969994 it:0.018941646441817284 :0.3754173032939434 -administer:0.21079497039318085 report:0.08776763826608658 minister:0.07069540023803711 do:0.037246182560920715 give:0.03488246724009514 :0.5586133413016796 -go:0.7861359715461731 enter:0.04057050496339798 vote:0.01985577866435051 proceed:0.01866881363093853 pass:0.014621882699429989 :0.1201470484957099 -advertis:0.1751687079668045 com:0.04287804663181305 propos:0.03929194435477257 ad:0.02980264276266098 -:0.024275265634059906 :0.688583392649889 -do:0.9686775207519531 Do:0.018890544772148132 send:0.0036647303495556116 try:0.0009309733868576586 give:0.0003795575466938317 :0.007456673192791641 -seems:0.7265136241912842 appears:0.13415665924549103 is:0.024439897388219833 occurs:0.019095411524176598 seemed:0.014120548963546753 :0.08167385868728161 -body:0.11259917914867401 family:0.0944155752658844 number:0.024484992027282715 parts:0.02033124305307865 house:0.0185027364641428 :0.7296662740409374 -of:0.7187007665634155 in:0.15270665287971497 In:0.030231749638915062 on:0.016446202993392944 from:0.012731264345347881 :0.06918336357921362 -in:0.6133809685707092 In:0.2163112759590149 under:0.023856280371546745 with:0.013865332119166851 to:0.011784525588154793 :0.12080161739140749 -the:0.9694878458976746 two:0.007794682867825031 tho:0.005090049933642149 The:0.0026599124539643526 three:0.0012898501008749008 :0.013677658746019006 -not:0.65690016746521 never:0.14251242578029633 hardly:0.10884580761194229 scarcely:0.06751207262277603 no:0.002379713347181678 :0.021849813172593713 -without:0.6398287415504456 of:0.13453376293182373 for:0.12111718207597733 from:0.0314425453543663 with:0.014984864741563797 :0.05809290334582329 -and:0.8015214204788208 but:0.0800517275929451 so:0.03799424692988396 which:0.016344347968697548 as:0.009417804889380932 :0.054670452140271664 -John:0.16871528327465057 William:0.04714829474687576 and:0.039960429072380066 George:0.03995760902762413 James:0.033509500324726105 :0.6707088835537434 -of:0.7829625010490417 for:0.1340726763010025 in:0.03198426961898804 by:0.020342150703072548 In:0.005114925559610128 :0.025523476768285036 -the:0.6383416652679443 his:0.12264075130224228 tho:0.11984754353761673 a:0.07796932756900787 bis:0.0046455226838588715 :0.03655518963932991 -of:0.27199438214302063 ,:0.2439497858285904 in:0.10900863260030746 and:0.0619390569627285 to:0.020491786301136017 :0.292616356164217 -the:0.1399637907743454 a:0.10757853835821152 which:0.1053018718957901 tho:0.09657035768032074 this:0.036125753074884415 :0.5144596882164478 --:0.4778180420398712 ,:0.03979400545358658 and:0.019288616254925728 .:0.01784215122461319 a:0.011889912188053131 :0.43336727283895016 -present:0.9850506782531738 same:0.002216625027358532 current:0.0020938643720000982 last:0.0020855579059571028 very:0.001064127660356462 :0.007489146781153977 -It:0.6883777976036072 This:0.23629026114940643 There:0.009247035719454288 Water:0.007639780640602112 it:0.005170438438653946 :0.05327468644827604 -and:0.705162525177002 ,:0.10199640691280365 one:0.025964533910155296 ,:0.024579819291830063 who:0.023404980078339577 :0.11889173462986946 -to:0.9788711667060852 and:0.007285217754542828 to:0.006198978051543236 To:0.002449802588671446 they:0.00040626199916005135 :0.004788572899997234 -men:0.10882917046546936 silver:0.08882581442594528 money:0.05184539780020714 enterprise:0.04744986072182655 coin:0.0470709502696991 :0.6559788063168526 -it:0.20436149835586548 them:0.15031440556049347 disease:0.0635102167725563 cause:0.036578550934791565 which:0.031153131276369095 :0.5140821970999241 -in:0.17076614499092102 by:0.16935613751411438 upon:0.10974255949258804 with:0.10614888370037079 for:0.08651259541511536 :0.3574736788868904 -world:0.08796889334917068 country:0.05742315948009491 animals:0.03705686703324318 disease:0.03255488723516464 people:0.023158255964517593 :0.761837936937809 -the:0.28506898880004883 a:0.07204566895961761 Mr:0.042032402008771896 John:0.04158349707722664 tho:0.02372463047504425 :0.5355448126792908 -the:0.6863388419151306 a:0.29255568981170654 tho:0.0049413214437663555 their:0.0038884684909135103 its:0.0019610992167145014 :0.010314579121768475 -and:0.8573482036590576 or:0.0875387042760849 ,:0.03598266467452049 &:0.001420553307980299 duly:0.001298760762438178 :0.016411113319918513 -600:0.39742863178253174 570:0.16648399829864502 550:0.10358671098947525 560:0.038457244634628296 500:0.02676108293235302 :0.2672823313623667 -at:0.07451974600553513 in:0.07375636696815491 and:0.0446649044752121 which:0.03292522951960564 on:0.022489679977297783 :0.7516440730541945 -ing:0.5661299824714661 g:0.04324923828244209 ins:0.032495588064193726 nin:0.02133152075111866 ment:0.01848963089287281 :0.31830403953790665 -with:0.4839540123939514 in:0.4634554386138916 In:0.03247658908367157 into:0.0018082367023453116 to:0.0016229996690526605 :0.01668272353708744 -Evening:0.6095330119132996 Daily:0.07394686341285706 Morning:0.04775379225611687 Chronicle:0.041087932884693146 City:0.01874990575015545 :0.20892849378287792 -on:0.36689743399620056 at:0.15710687637329102 in:0.10253056138753891 ,:0.025545885786414146 yesterday:0.020977510139346123 :0.32694173231720924 -and:0.5150615572929382 ,:0.12437239289283752 aud:0.09834350645542145 with:0.07094836235046387 of:0.024042127653956413 :0.16723205335438251 -cane:0.28082504868507385 beet:0.263485848903656 ,:0.07117799669504166 crops:0.02782072313129902 corn:0.026188669726252556 :0.3305017128586769 -nobody:0.8890947699546814 none:0.03847978264093399 one:0.021004479378461838 nothing:0.01998157985508442 neither:0.006699523888528347 :0.02473986428231001 -heard:0.9394891858100891 seen:0.006633566692471504 had:0.005426120478659868 got:0.005069260485470295 made:0.0046823350712656975 :0.038699531462043524 -the:0.9 :0.1 -as:0.7813060283660889 so:0.20594164729118347 As:0.004341652616858482 ,:0.0014718251768499613 as:0.0012096459977328777 :0.00572920055128634 -The:0.48883840441703796 A:0.40167364478111267 One:0.0659973993897438 Another:0.010978281497955322 This:0.010510053485631943 :0.022002216428518295 -the:0.721351683139801 tho:0.15883243083953857 this:0.09311168640851974 that:0.011318742297589779 his:0.0030707886908203363 :0.01231466862373054 -a:0.6425735354423523 tho:0.18256409466266632 his:0.05640081316232681 the:0.034023821353912354 this:0.0065162284299731255 :0.07792150694876909 -from:0.12053241580724716 in:0.10146865993738174 for:0.036103762686252594 of:0.032687533646821976 to:0.03148765116930008 :0.6777199767529964 -the:0.32589155435562134 this:0.066224105656147 th:0.05303342267870903 such:0.03874912112951279 said:0.03676735237240791 :0.47933444380760193 -the:0.2872741222381592 his:0.24491658806800842 a:0.1797376126050949 no:0.05934017151594162 her:0.043237440288066864 :0.185494065284729 -a:0.5741560459136963 the:0.18493789434432983 this:0.05477702617645264 their:0.040666550397872925 his:0.040498118847608566 :0.10496436432003975 -in:0.5648024678230286 of:0.16839252412319183 about:0.08886466920375824 on:0.03898289054632187 In:0.025851499289274216 :0.11310594901442528 -that:0.7672922015190125 ,:0.13934172689914703 ::0.05316046252846718 .:0.017021918669342995 ::0.005846978630870581 :0.01733671175315976 -breeze:0.3147476613521576 frost:0.08100149035453796 storm:0.06615463644266129 wind:0.06121893227100372 drought:0.0262104794383049 :0.45066680014133453 -hard:0.08840952068567276 tooth:0.03988092392683029 paper:0.03682073950767517 iron:0.03536972776055336 old:0.02908005751669407 :0.7704390306025743 -the:0.9 :0.1 -employs:0.09583494067192078 uses:0.05018229782581329 recommends:0.0482218898832798 chooses:0.04046047478914261 selects:0.03004514053463936 :0.7352552562952042 -of:0.9701428413391113 ot:0.014034326188266277 or:0.002250225283205509 in:0.001334268832579255 from:0.0007895758026279509 :0.01144876255420968 --:0.10628543794155121 ous:0.09703812003135681 and:0.09449689090251923 ,:0.031900472939014435 ated:0.030035819858312607 :0.6402432583272457 -coats:0.1440967470407486 bands:0.0824749693274498 shirts:0.05960328131914139 blankets:0.056059688329696655 hats:0.024801764637231827 :0.6329635493457317 -and:0.4049241542816162 to:0.3931278884410858 or:0.06322353333234787 ,:0.03160138055682182 until:0.018262894824147224 :0.08886014856398106 -was:0.8864595890045166 had:0.01088150218129158 ho:0.010237171314656734 la:0.010158822871744633 bo:0.00666096480563283 :0.07560194982215762 -to:0.4271433353424072 from:0.26987266540527344 by:0.24936966598033905 for:0.024555915966629982 on:0.00368422525934875 :0.025374192046001554 -.:0.38383036851882935 .:0.032998226583004 ng:0.025579160079360008 ,:0.024686407297849655 -:0.018965741619467735 :0.5139400959014893 -for:0.5501097440719604 in:0.1360093504190445 within:0.07382044941186905 about:0.05743684247136116 In:0.03237413614988327 :0.15024947747588158 -.:0.2356472909450531 a:0.21881049871444702 the:0.09013598412275314 it:0.05886728689074516 them:0.048774126917123795 :0.3477648124098778 -character:0.026739101856946945 man:0.025112641975283623 owner:0.022529341280460358 one:0.02229355275630951 servant:0.018393155187368393 :0.8849322069436312 -them:0.3300422132015228 it:0.2451954483985901 It:0.07185403257608414 ,:0.0594932921230793 America:0.01722540706396103 :0.2761896066367626 -Coast:0.10014500468969345 civil:0.09617404639720917 naval:0.07564671337604523 postal:0.07215912640094757 coast:0.06349918246269226 :0.5923759266734123 -out:0.5795466303825378 regardless:0.04186830669641495 full:0.03180304169654846 because:0.030060304328799248 free:0.029175566509366035 :0.28754615038633347 -stone:0.6137893795967102 line:0.018902959302067757 road:0.01771494373679161 plat:0.013119671493768692 lot:0.01135805994272232 :0.3251149859279394 -which:0.5038824081420898 that:0.35507944226264954 to:0.021860722452402115 will:0.010298863984644413 who:0.007740692235529423 :0.10113787092268467 -ly:0.07077516615390778 :0.05860678106546402 tion:0.04053634777665138 ter:0.03376762941479683 t:0.03350181505084038 :0.7628122605383396 -as:0.31542718410491943 and:0.24831725656986237 duly:0.08857537806034088 hereby:0.05833486095070839 well:0.02567548118531704 :0.2636698391288519 -to:0.992268979549408 to:0.0014579810667783022 To:0.0013606477295979857 To:0.0012201630743220448 so:0.0005488995229825377 :0.0031433290569111705 -and:0.9783313274383545 ,:0.005845845676958561 among:0.00480616744607687 with:0.002619330305606127 or:0.0010590249439701438 :0.007338304189033806 -elect:0.08932600170373917 ,:0.07207301259040833 of:0.07161355018615723 nominate:0.05779680982232094 to:0.03889430686831474 :0.6702963188290596 -and:0.9287878274917603 or:0.03823528066277504 ,:0.016013676300644875 &:0.004686415661126375 aud:0.002663687337189913 :0.009613112546503544 -now:0.3718107342720032 who:0.34622809290885925 which:0.045395627617836 they:0.03823566436767578 yet:0.0161807369440794 :0.1821491438895464 -and:0.3527270555496216 of:0.13006965816020966 for:0.11023078113794327 to:0.046660587191581726 or:0.0372026227414608 :0.32310929521918297 -brought:0.21438269317150116 exported:0.09774698317050934 given:0.07393283396959305 sent:0.04164885729551315 supplied:0.035358525812625885 :0.5369301065802574 -see:0.4456101655960083 find:0.10313402861356735 meet:0.07934793084859848 have:0.06029867008328438 show:0.03350156173110008 :0.2781076431274414 -":0.6266085505485535 A:0.06590387225151062 The:0.06582805514335632 A:0.043770719319581985 The:0.028354231268167496 :0.1695345714688301 -A:0.5819518566131592 The:0.11706586182117462 This:0.0971597284078598 Such:0.07148848474025726 Any:0.03538244962692261 :0.09695161879062653 -by:0.29527798295021057 in:0.24092969298362732 on:0.08044124394655228 to:0.07228800654411316 under:0.04461178183555603 :0.26645129173994064 -Carr:0.8643787503242493 Davis:0.0027607635129243135 Scott:0.002486323704943061 Grant:0.002248825505375862 Bryan:0.002003134461119771 :0.12612220249138772 -in:0.17675632238388062 over:0.13610675930976868 through:0.10414202511310577 on:0.1020524799823761 into:0.09577402472496033 :0.3851683884859085 -taxpayers:0.051157884299755096 needs:0.05026595667004585 citizens:0.04702159762382507 interest:0.046778641641139984 welfare:0.034059394150972366 :0.7707165256142616 -medical:0.6807393431663513 medicine:0.09942758828401566 scientific:0.025035085156559944 physician:0.019919680431485176 health:0.011239934712648392 :0.16363836824893951 -transportation:0.07834135740995407 appropriations:0.07550198584794998 business:0.032393261790275574 taxation:0.027128038927912712 behalf:0.02034405991435051 :0.7662912961095572 -some:0.6441213488578796 many:0.14850281178951263 one:0.0704040452837944 several:0.04781153053045273 two:0.03793535754084587 :0.051224905997514725 -in:0.9452031254768372 In:0.019695479422807693 at:0.013693821616470814 for:0.003106132848188281 of:0.0029597319662570953 :0.015341708669438958 -us:0.09652553498744965 justice:0.07653535902500153 them:0.053766120225191116 good:0.044257137924432755 themselves:0.027524076402187347 :0.7013917714357376 -the:0.9 :0.1 -the:0.6555653810501099 their:0.25570905208587646 these:0.01626073196530342 both:0.01094413548707962 two:0.010575511492788792 :0.05094518791884184 -He:0.9277061820030212 Ho:0.044588323682546616 he:0.006190909538418055 ho:0.0017032147152349353 1:0.0009548219968564808 :0.018856548063922673 -do:0.1459691822528839 connect:0.09185647964477539 impress:0.06753554195165634 agree:0.06599078327417374 compare:0.049479518085718155 :0.5791684947907925 -o:0.08043152838945389 t:0.050328440964221954 u:0.04506278410553932 n:0.021580398082733154 ai:0.019684473052620888 :0.7829123754054308 -.:0.7570167183876038 .:0.07594054192304611 ..:0.01624070666730404 ,:0.007733305916190147 .,:0.004720499273389578 :0.13834822783246636 -I:0.36407944560050964 he:0.3226042091846466 1:0.06244032829999924 i:0.04815246909856796 ho:0.025435667484998703 :0.17728788033127785 -was:0.7956886291503906 were:0.03445860743522644 he:0.028767310082912445 is:0.017179565504193306 being:0.013255476951599121 :0.11065041087567806 -period:0.17698092758655548 day:0.12520526349544525 night:0.10138232260942459 week:0.06687211990356445 course:0.06128044053912163 :0.4682789258658886 -old:0.08158876746892929 essential:0.049454670399427414 important:0.044041719287633896 ancient:0.029211442917585373 instrumental:0.022264152765274048 :0.77343924716115 -in:0.7491015791893005 In:0.12552911043167114 of:0.03760748356580734 on:0.02369864098727703 to:0.01946279965341091 :0.044600386172533035 -time:0.7194898128509521 while:0.10657710582017899 moment:0.026673104614019394 distance:0.020135873928666115 minute:0.01079185213893652 :0.11633225064724684 -.:0.5952863097190857 .":0.0834503024816513 !:0.04269330948591232 ?:0.021466009318828583 ":0.013964749872684479 :0.24313931912183762 -the:0.96986985206604 tho:0.007164552807807922 tha:0.005153494421392679 each:0.0036407215520739555 th:0.0034627148415893316 :0.010708664311096072 -the:0.9 :0.1 -the:0.6028445363044739 its:0.11671627312898636 this:0.11570607870817184 a:0.0671868696808815 tho:0.04878690838813782 :0.0487593337893486 -com:0.020114319398999214 f:0.013941421173512936 clos:0.009865717962384224 -:0.009038996882736683 m:0.008838866837322712 :0.9382006777450442 -.:0.34133848547935486 buildings:0.14153653383255005 materials:0.03367527574300766 equipment:0.031232135370373726 furniture:0.028576893731951714 :0.423640675842762 -the:0.665335476398468 tho:0.1389998197555542 a:0.05024886131286621 this:0.0363154299557209 th:0.017425764352083206 :0.09167464822530746 -,:0.4333341121673584 30:0.1883085072040558 .:0.153062641620636 1:0.047772765159606934 of:0.023157205432653427 :0.15436476841568947 -ho:0.7983419895172119 he:0.12064684927463531 Ho:0.01898225024342537 wo:0.00690492382273078 bo:0.00503549724817276 :0.05008848989382386 -nearly:0.20096975564956665 almost:0.16844579577445984 in:0.0761898010969162 about:0.06247217208147049 In:0.04743969812989235 :0.4444827772676945 -mills:0.27868208289146423 stores:0.17599338293075562 mines:0.11515891551971436 factories:0.1062355637550354 markets:0.03541994094848633 :0.28851011395454407 -in:0.266502320766449 for:0.2248416244983673 after:0.192606121301651 within:0.14609962701797485 In:0.021352384239435196 :0.14859792217612267 -.:0.19210754334926605 ,:0.04432937502861023 i:0.02621266432106495 that:0.025122782215476036 which:0.022485846653580666 :0.6897417884320021 -a:0.7634488344192505 the:0.1676035225391388 tho:0.02364541031420231 A:0.01400404516607523 and:0.010526614263653755 :0.020771573297679424 -had:0.5333542227745056 have:0.3888254463672638 with:0.028582213446497917 has:0.023300331085920334 having:0.003022814402356744 :0.022914971923455596 -to:0.63375324010849 thereby:0.07509762793779373 thus:0.047227535396814346 not:0.027808552607893944 would:0.012093079276382923 :0.20401996467262506 -have:0.9307885766029358 has:0.06314590573310852 had:0.001932061742991209 ha:0.0009395898086950183 Have:0.0004164548299741 :0.002777411282295361 -::0.6778809428215027 ,:0.1087985709309578 ;:0.062232401221990585 .:0.046115290373563766 ::0.027770090848207474 :0.0772027038037777 -so:0.13361449539661407 too:0.04654848203063011 t:0.026190614327788353 very:0.02584998682141304 li:0.02444075606763363 :0.7433556653559208 -months:0.2627810835838318 year:0.16505302488803864 days:0.1619645208120346 years:0.0869196206331253 month:0.0401865653693676 :0.28309518471360207 -turn:0.5431810617446899 hand:0.38219019770622253 give:0.015496721491217613 sell:0.007585559040307999 send:0.007286485284566879 :0.04425997473299503 -such:0.0647590383887291 of:0.06325002759695053 in:0.0496206171810627 merely:0.038568105548620224 not:0.036461059004068375 :0.7473411522805691 -.:0.492134690284729 !:0.24010635912418365 ?:0.05871805548667908 ::0.036699049174785614 ,:0.024459872394800186 :0.14788197353482246 -the:0.9 :0.1 -the:0.9 :0.1 -now:0.159357950091362 the:0.1289449781179428 many:0.0391782782971859 all:0.03567008674144745 that:0.024248315021395683 :0.6126003917306662 -which:0.3162372410297394 that:0.19110207259655 who:0.1557571291923523 of:0.013844404369592667 will:0.011940758675336838 :0.31111839413642883 -tion:0.024850929155945778 line:0.02043859101831913 ter:0.01253410242497921 n:0.011689392849802971 ton:0.009876376017928123 :0.9206106085330248 -by:0.7567957639694214 through:0.0640396997332573 the:0.060409072786569595 in:0.019939806312322617 with:0.016957653686404228 :0.08185800351202488 -the:0.9 :0.1 -one:0.058132659643888474 other:0.03751605376601219 tribe:0.03177633509039879 country:0.024991460144519806 class:0.023015901446342468 :0.8245675899088383 -use:0.6018287539482117 take:0.04793419688940048 inject:0.04365461692214012 add:0.026207974180579185 administer:0.02369595132768154 :0.256678506731987 -A:0.8576450943946838 The:0.1055104061961174 One:0.00978742353618145 This:0.006198275834321976 Some:0.004788386635482311 :0.016070413403213024 -my:0.6639741063117981 My:0.04460473358631134 in:0.038966353982686996 In:0.033079493790864944 his:0.023381317034363747 :0.19599399529397488 -Dunn:0.6023076772689819 he:0.3675093948841095 she:0.007749686483293772 He:0.0014068640302866697 they:0.000940135563723743 :0.020086241769604385 -the:0.35082700848579407 measuring:0.07873304188251495 determining:0.06705024838447571 estimating:0.054292578250169754 assessing:0.0399782769382 :0.4091188460588455 -bright:0.28378090262413025 dim:0.11783257871866226 great:0.02409452013671398 brilliant:0.02167188934981823 powerful:0.01697595790028572 :0.5356441512703896 -president:0.4562210738658905 superintendent:0.1603701263666153 secretary:0.08268706500530243 treasurer:0.053745344281196594 principal:0.03944540023803711 :0.20753099024295807 -patterns:0.10318639129400253 designs:0.06027793139219284 ,:0.024069322273135185 prints:0.02036871947348118 stripes:0.01863839477300644 :0.7734592407941818 -,:0.2220005840063095 ;:0.21695558726787567 .:0.17509715259075165 and:0.06599453836679459 ;:0.0656740814447403 :0.2542780563235283 -of:0.9616790413856506 for:0.015592643991112709 in:0.0051728649996221066 to:0.003978750668466091 ,:0.003768892027437687 :0.009807806927710772 -,:0.39295342564582825 ly:0.08063507080078125 as:0.07958482950925827 and:0.03715265169739723 is:0.023718856275081635 :0.38595516607165337 -cess:0.11402834951877594 ment:0.03562995046377182 tion:0.03552832826972008 ce:0.024275511503219604 grace:0.02285178005695343 :0.7676860801875591 -received:0.15192468464374542 obtained:0.09206757694482803 got:0.08938809484243393 attained:0.0342571847140789 entered:0.03384322673082352 :0.5985192321240902 -his:0.2710754871368408 bis:0.05544786527752876 several:0.045121073722839355 ten:0.04425746947526932 twenty:0.042233552783727646 :0.5418645516037941 -ing:0.33852458000183105 ful:0.2033371478319168 ly:0.1191328689455986 ter:0.03469577059149742 ed:0.014859667047858238 :0.2894499655812979 -sell:0.28118282556533813 deliver:0.03247120603919029 convey:0.032357726246118546 obtain:0.01915287785232067 receive:0.01882241480052471 :0.6160129494965076 -in:0.7627224326133728 of:0.18347004055976868 In:0.031204914674162865 on:0.004976490046828985 for:0.002417417708784342 :0.015208704397082329 -tho:0.17777077853679657 a:0.15917421877384186 no:0.08469431102275848 the:0.07913614809513092 his:0.06577851623296738 :0.4334460273385048 -the:0.5172790884971619 these:0.04053753241896629 he:0.017407812178134918 their:0.012877063825726509 all:0.012155821546912193 :0.3997426815330982 -planting:0.1960885226726532 tho:0.1426423341035843 the:0.09518562257289886 all:0.019687166437506676 these:0.016567572951316833 :0.5298287812620401 -are:0.29434332251548767 contain:0.24482406675815582 of:0.14527025818824768 have:0.08070284873247147 containing:0.013449949212372303 :0.22140955459326506 -the:0.650153636932373 this:0.18548737466335297 that:0.05156130716204643 every:0.03807153180241585 a:0.018794113770127296 :0.05593203566968441 -continuing:0.33101528882980347 taking:0.09463274478912354 following:0.07005880028009415 reversing:0.049981169402599335 repeating:0.0365091972053051 :0.4178027994930744 -Some:0.3242093026638031 One:0.141348734498024 Many:0.10623030364513397 Several:0.07233390212059021 Most:0.06775890290737152 :0.2881188541650772 -with:0.3369632959365845 by:0.19757016003131866 in:0.09879463911056519 of:0.043966762721538544 a:0.037919867783784866 :0.28478527441620827 -ers:0.11476249992847443 men:0.06502150744199753 men:0.04796246811747551 makers:0.033940527588129044 operators:0.03073127008974552 :0.707581726834178 -that:0.9882771372795105 which:0.0033990335650742054 ,:0.00153563660569489 ::0.0014382768422365189 That:0.0008311574347317219 :0.004518758272752166 -broke:0.4226211607456207 breaks:0.08507253229618073 goes:0.027731863781809807 gives:0.025541942566633224 cut:0.023175347596406937 :0.4158571530133486 -not:0.12760843336582184 to:0.09582976251840591 o:0.049492254853248596 the:0.03477714955806732 having:0.03467012196779251 :0.6576222777366638 -,:0.6042447686195374 handy:0.06864967197179794 order:0.024631787091493607 time:0.023327579721808434 ;:0.018861401826143265 :0.2602847907692194 -from:0.3332638144493103 of:0.2212333083152771 to:0.13339422643184662 by:0.11803960055112839 for:0.05964723601937294 :0.13442181423306465 -the:0.9 :0.1 -construct:0.17589503526687622 build:0.1500178873538971 erect:0.09136965125799179 complete:0.08750957995653152 secure:0.04952355846762657 :0.4456842876970768 -letter:0.29086536169052124 words:0.10112690925598145 statement:0.06232815235853195 speech:0.055355772376060486 message:0.051982052624225616 :0.43834175169467926 -t:0.13729479908943176 ly:0.0937105268239975 ty:0.05678575485944748 ment:0.04125393182039261 tion:0.030410706996917725 :0.6405442804098129 --:0.21362781524658203 von:0.03332929685711861 Mc:0.01927289366722107 K:0.018544940277934074 H:0.018350152298808098 :0.6968749016523361 -":0.1429346203804016 ':0.024784445762634277 >:0.022347191348671913 «:0.02090640552341938 ug:0.018911784514784813 :0.770115552470088 -the:0.9507833123207092 tho:0.008283283561468124 tha:0.005146990530192852 either:0.003022664925083518 an:0.0027792900800704956 :0.02998445858247578 -him:0.6218426823616028 me:0.2426449954509735 ,:0.041386790573596954 them:0.020178796723484993 her:0.019917607307434082 :0.05402912758290768 -hope:0.054119281470775604 door:0.03080740012228489 hand:0.029384462162852287 same:0.027472389861941338 appeal:0.024410273879766464 :0.8338061925023794 -a:0.8805637955665588 the:0.03441672772169113 one:0.007837970741093159 1:0.003971272148191929 an:0.003448787610977888 :0.06976144621148705 -State:0.12276864796876907 Illinois:0.04529246687889099 Federal:0.04149268567562103 Democratic:0.04130290448665619 old:0.038677945733070374 :0.7104653492569923 -The:0.8116089701652527 Our:0.010590413585305214 Both:0.0065513006411492825 the:0.005359559319913387 Returning:0.004944507032632828 :0.1609452492557466 -provisions:0.1961221694946289 items:0.19443640112876892 measures:0.12197645008563995 ,:0.0887509286403656 articles:0.05191894993185997 :0.34679510071873665 -the:0.8469745516777039 our:0.01708110235631466 their:0.01145649328827858 these:0.009020684286952019 neighboring:0.006971342489123344 :0.10849582590162754 -expiration:0.06919907033443451 present:0.061372436583042145 effective:0.054961930960416794 first:0.04362616315484047 proposed:0.04314509034156799 :0.7276953086256981 -of:0.9890873432159424 ot:0.004913264885544777 among:0.0016476582968607545 of:0.0010263739386573434 in:0.0007306106854230165 :0.002594748977571726 -and:0.26240381598472595 but:0.06815067678689957 tho:0.05077105760574341 while:0.0483466200530529 aud:0.03957166150212288 :0.5307561680674553 -,:0.7052182555198669 ;:0.0609443373978138 described:0.033345066010951996 ;:0.021085714921355247 ::0.0197951290756464 :0.15961149707436562 -declared:0.11010496318340302 made:0.06766396760940552 dire:0.03977998346090317 decided:0.0386272631585598 called:0.03398418053984642 :0.7098396420478821 -*:0.4515092372894287 ,:0.0847836583852768 had:0.04232172295451164 was:0.022057276219129562 which:0.007034139707684517 :0.3922939654439688 -to:0.8848254680633545 and:0.028170209378004074 that:0.009579907171428204 ,:0.008315551094710827 what:0.008191503584384918 :0.060917360708117485 -.:0.06306806206703186 from:0.0568501278758049 from:0.04956977069377899 between:0.040138423442840576 about:0.03232695534825325 :0.7580466605722904 -on:0.2925489544868469 at:0.2623935341835022 to:0.1267438530921936 from:0.08825063705444336 in:0.05567246675491333 :0.17439055442810059 -other:0.9949114918708801 any:0.0016161215025931597 all:0.0010702080326154828 Other:0.0004225896263960749 some:0.00021384879073593765 :0.001765740176779218 -an:0.3693733513355255 her:0.18406149744987488 a:0.11790242791175842 the:0.11253278702497482 some:0.027206743136048317 :0.18892319314181805 -sane:0.18582089245319366 other:0.0662076473236084 intelligent:0.06089268624782562 sensible:0.057759515941143036 competent:0.05106440559029579 :0.5782548524439335 -of:0.6572590470314026 in:0.1475382298231125 at:0.037372514605522156 on:0.03225785866379738 ol:0.02959117293357849 :0.0959811769425869 -two:0.0973714143037796 ten:0.08268794417381287 three:0.07670143991708755 six:0.06710267812013626 five:0.06495706737041473 :0.611179456114769 -seen:0.7220832109451294 heard:0.11007068306207657 noticed:0.03026357851922512 found:0.0278419591486454 watched:0.02509879320859909 :0.08464177511632442 -81:0.22376662492752075 80:0.19987104833126068 84:0.06899432092905045 82:0.06893052160739899 83:0.054601073265075684 :0.38383641093969345 -on:0.75457364320755 in:0.04326250031590462 since:0.027242466807365417 at:0.024381453171372414 before:0.02303052879869938 :0.12750940769910812 -no:0.7976933717727661 No:0.07753176242113113 the:0.07625531405210495 your:0.007212402764707804 an:0.004334502387791872 :0.03697264660149813 -reaching:0.434328556060791 entering:0.17721955478191376 leaving:0.10221411287784576 approaching:0.02891121245920658 seeing:0.024190755560994148 :0.23313580825924873 -Morgan:0.01123067270964384 son:0.010970577597618103 ton:0.008037788793444633 hall:0.006068353075534105 er:0.00499477656558156 :0.9586978312581778 -as:0.379212349653244 for:0.24630959331989288 with:0.13532701134681702 upon:0.048460960388183594 to:0.04827217012643814 :0.14241791516542435 -not:0.0710555911064148 fall:0.053690437227487564 living:0.0344788022339344 are:0.0315508209168911 be:0.02737271972000599 :0.7818516287952662 -with:0.97617107629776 in:0.006532691884785891 about:0.005679599940776825 of:0.0025814082473516464 for:0.0019203092670068145 :0.007114914362318814 -drinking:0.146175816655159 even:0.14059212803840637 only:0.07578656822443008 that:0.035170599818229675 standing:0.030221983790397644 :0.5720529034733772 -If:0.7091809511184692 As:0.07959984987974167 While:0.05956359952688217 When:0.026951313018798828 Since:0.026786498725414276 :0.09791778773069382 -to:0.7157866954803467 up:0.04555515572428703 tho:0.016563180834054947 upon:0.01448085717856884 t:0.012930788099765778 :0.19468332268297672 -tion:0.20220255851745605 ly:0.08169253915548325 ed:0.04993288964033127 ing:0.04117607697844505 er:0.03659270331263542 :0.588403232395649 -not:0.9265318512916565 scarcely:0.026859067380428314 hardly:0.013559933751821518 only:0.0054440624080598354 never:0.004939010366797447 :0.02266607480123639 -opportunity:0.1603213995695114 service:0.08377739787101746 opportunities:0.06945177912712097 prospect:0.05948212370276451 proposition:0.05149521678686142 :0.5754720829427242 -the:0.6382690668106079 tho:0.2909422814846039 this:0.025265200063586235 our:0.017818789929151535 tha:0.004844441078603268 :0.02286022063344717 -is:0.8045268654823303 ,:0.11949150264263153 Is:0.024542568251490593 was:0.008831760846078396 ::0.006530316546559334 :0.036076986230909824 -to:0.4129830002784729 ,:0.25349923968315125 ;:0.052505895495414734 and:0.03655337169766426 .:0.021378137171268463 :0.2230803556740284 -at:0.1956949532032013 and:0.12404820322990417 bearing:0.11859689652919769 to:0.09758817404508591 the:0.056898850947618484 :0.40717292204499245 -many:0.47767579555511475 all:0.19346892833709717 some:0.1507961004972458 most:0.046801403164863586 none:0.024796469137072563 :0.10646130330860615 -who:0.9471614360809326 to:0.02456831745803356 whom:0.00465792091563344 and:0.00372906681150198 which:0.002917730947956443 :0.01696552778594196 -the:0.8958261013031006 tho:0.07431083172559738 The:0.011218669824302197 tha:0.005582414101809263 th:0.0008008722215890884 :0.012261110823601484 -the:0.9 :0.1 -to:0.09810533374547958 a:0.06176784262061119 the:0.04954224079847336 ,:0.04068177938461304 and:0.034055303782224655 :0.7158474996685982 -yesterday:0.13412542641162872 storm:0.12057361006736755 has:0.06666185706853867 today:0.051717210561037064 had:0.04529628902673721 :0.5816256068646908 -were:0.1513700634241104 are:0.1254471093416214 occurred:0.06452662497758865 occur:0.034859366714954376 ran:0.03073856048285961 :0.5930582750588655 -cases:0.44252586364746094 days:0.1986345797777176 instances:0.09967315942049026 circumstances:0.023204416036605835 years:0.015965402126312256 :0.21999657899141312 -of:0.3985252380371094 in:0.16440515220165253 pounds:0.04772286117076874 inches:0.04027492552995682 for:0.02375808171927929 :0.32531374134123325 -to:0.7550676465034485 wont:0.01943753845989704 ,:0.018643492832779884 said:0.018252024427056313 likely:0.013753720559179783 :0.1748455772176385 -a:0.6399244070053101 the:0.22809092700481415 his:0.05025135725736618 one:0.016593152657151222 tho:0.009051098488271236 :0.056089057587087154 -further:0.9959057569503784 Further:0.0004615722573362291 more:0.0004179118841420859 also:0.00035029376158490777 that:0.00024274994211737067 :0.0026217152044409886 -has:0.23189446330070496 had:0.19107909500598907 have:0.09292596578598022 it:0.03417140617966652 having:0.025482874363660812 :0.4244461953639984 -dated:0.8783953785896301 on:0.039130277931690216 of:0.02757110632956028 executed:0.008352995850145817 effective:0.002144929952919483 :0.04440531134605408 -of:0.4424728453159332 in:0.3833715617656708 In:0.04393396154046059 to:0.03524041175842285 upon:0.021662672981619835 :0.07331854663789272 -and:0.8024091124534607 ,:0.05658560246229172 or:0.022718222811818123 of:0.01685771532356739 ot:0.00791452918201685 :0.09351481776684523 -the:0.08810077607631683 advise:0.01907247304916382 assist:0.01678694598376751 take:0.01596926897764206 see:0.01552609633654356 :0.8445444395765662 -on:0.324556440114975 of:0.06599041819572449 in:0.04932937026023865 plain:0.048789508640766144 toilet:0.044068653136491776 :0.46726560965180397 -to:0.9705252647399902 which:0.012692776508629322 that:0.005744646769016981 and:0.00516200065612793 ,:0.0011877856450155377 :0.004687525681219995 -which:0.5603604316711426 and:0.2044663429260254 that:0.04077184945344925 as:0.01341930404305458 who:0.009398636408150196 :0.171583435498178 -ballot:0.03310755640268326 person:0.025926699861884117 vote:0.025211423635482788 ot:0.016666753217577934 ,:0.01549353264272213 :0.8835940342396498 -the:0.7197653651237488 that:0.14027953147888184 this:0.0664731115102768 our:0.01428921427577734 their:0.012111403979361057 :0.04708137363195419 -the:0.9 :0.1 -the:0.33989179134368896 an:0.09125286340713501 at:0.06116450950503349 tho:0.02819943241775036 l:0.024308105930685997 :0.4551832973957062 -of:0.4129979610443115 on:0.12851274013519287 to:0.11304020136594772 with:0.05173482373356819 over:0.042648378759622574 :0.2510658949613571 -the:0.9 :0.1 -examine:0.19269509613513947 take:0.0796545147895813 study:0.06847670674324036 consider:0.06672734022140503 investigate:0.05393154174089432 :0.5385148003697395 -ordered:0.1151718720793724 directed:0.10301771014928818 organized:0.05927510932087898 instructed:0.03883766010403633 charged:0.03112582303583622 :0.6525718253105879 -fourth:0.9126416444778442 four:0.04002806916832924 fifth:0.013149460777640343 Fourth:0.006098044570535421 fourth:0.004327618051320314 :0.023755162954330444 -an:0.3073222041130066 some:0.11183417588472366 the:0.09316671639680862 no:0.03632376343011856 us:0.034579452127218246 :0.4167736880481243 -of:0.980042040348053 or:0.006602469831705093 ot:0.004941594321280718 and:0.002508556703105569 of:0.0010280439164489508 :0.004877294879406691 -tho:0.604013979434967 the:0.07705637067556381 his:0.019543493166565895 a:0.010149353183805943 th:0.008708017878234386 :0.2805287856608629 -the:0.9 :0.1 -,:0.7260308265686035 and:0.21030959486961365 ;:0.04402467980980873 .:0.004655619151890278 ;:0.004275924991816282 :0.010703354608267546 -New:0.9952630996704102 the:0.0018866404425352812 North:0.00020109620527364314 New:0.0001989710726775229 said:0.00013942310761194676 :0.0023107695014914498 -hole:0.13948531448841095 gap:0.1182282418012619 point:0.048144783824682236 cross:0.040605008602142334 ridge:0.03377299755811691 :0.6197636537253857 -in:0.7739326357841492 In:0.037095095962285995 given:0.02728642150759697 presented:0.019808441400527954 spared:0.015224928967654705 :0.1266524763777852 -then:0.2005729228258133 had:0.1098150983452797 also:0.09729932993650436 immediately:0.03258100152015686 therefore:0.030188845470547676 :0.5295428019016981 -and:0.12904010713100433 I:0.12340554594993591 a:0.03958258405327797 which:0.0332617312669754 the:0.027923492714762688 :0.6467865388840437 -agents:0.4432583749294281 companies:0.15634800493717194 men:0.14848287403583527 offices:0.0279646348208189 men:0.023400960490107536 :0.20054515078663826 -in:0.43428683280944824 at:0.13035640120506287 In:0.08484960347414017 ol:0.08431310951709747 of:0.08231759816408157 :0.18387645483016968 -others:0.039238885045051575 Chicago:0.03633810579776764 elsewhere:0.027710508555173874 Minnesota:0.024506686255335808 Washington:0.02033771201968193 :0.8518681023269892 -it:0.524074375629425 It:0.11128579825162888 this:0.10162833333015442 they:0.037617262452840805 that:0.03448403626680374 :0.1909101940691471 -would:0.45527729392051697 will:0.13009139895439148 may:0.03911367803812027 could:0.02616511657834053 might:0.02123422548174858 :0.32811828702688217 -married:0.23718149960041046 known:0.20587298274040222 dated:0.08385002613067627 loved:0.07647682726383209 met:0.06366775929927826 :0.3329509049654007 -at:0.02411028929054737 ort:0.022426651790738106 version:0.02029561996459961 ad:0.018775196745991707 rent:0.015234677121043205 :0.89915756508708 -.:0.9343317747116089 ,:0.05213326960802078 ;:0.0028878652956336737 .:0.001713452860713005 Township:0.0012785393046215177 :0.007655098219402134 -of:0.29503434896469116 on:0.24026347696781158 over:0.08592435717582703 from:0.06490948051214218 at:0.05049922317266464 :0.2633691132068634 -midst:0.25889861583709717 way:0.23461656272411346 process:0.14382556080818176 middle:0.045679233968257904 trouble:0.038262899965047836 :0.27871712669730186 -I:0.8049003481864929 1:0.13470953702926636 you:0.018634475767612457 i:0.006589540280401707 and:0.004415977746248245 :0.030750120989978313 -the:0.8433154225349426 his:0.08011606335639954 this:0.02118871733546257 tho:0.02002529241144657 its:0.008498040027916431 :0.026856464333832264 -secured:0.46313413977622986 obtained:0.0806766003370285 with:0.042771004140377045 won:0.032131511718034744 got:0.026287123560905457 :0.3549996204674244 -of:0.8123350739479065 ,:0.02615019679069519 as:0.01723846234381199 and:0.015636827796697617 or:0.01271428819745779 :0.11592515092343092 -to:0.17981462180614471 up:0.12981735169887543 in:0.11413265019655228 with:0.11012297868728638 out:0.1074778363108635 :0.3586345613002777 -the:0.9114747047424316 that:0.01266202051192522 a:0.010544742457568645 tho:0.009936610236763954 this:0.008370026014745235 :0.047011896036565304 -they:0.4761016368865967 men:0.12655189633369446 others:0.0697169154882431 people:0.044767193496227264 robbers:0.021292611956596375 :0.2615697458386421 -I:0.2841503322124481 he:0.16850577294826508 then:0.12345994263887405 Jones:0.03143060952425003 Brown:0.020431993529200554 :0.37202134914696217 -and:0.6078723669052124 thereby:0.0774608626961708 thus:0.05050608143210411 or:0.03923149034380913 by:0.017261255532503128 :0.20766794309020042 -go:0.9259944558143616 take:0.021191129460930824 look:0.018374739214777946 step:0.004985327832400799 proceed:0.0030721186194568872 :0.02638222905807197 -but:0.16535134613513947 and:0.09211678802967072 except:0.06042025238275528 aided:0.05768558382987976 even:0.05109928548336029 :0.5733267441391945 -the:0.739898681640625 what:0.15210914611816406 tho:0.06444934010505676 which:0.0338132381439209 a:0.0021953529212623835 :0.007534241070970893 -race:0.24920567870140076 track:0.027616336941719055 win:0.027049897238612175 and:0.02480953000485897 round:0.01983173005282879 :0.6514868270605803 --:0.3210211396217346 ,:0.147330641746521 and:0.0653708428144455 .:0.04032761603593826 -:0.030324256047606468 :0.39562550373375416 -load:0.2483087033033371 box:0.03990524262189865 pipe:0.02632037177681923 weight:0.024205530062317848 machine:0.020815730094909668 :0.6404444221407175 -the:0.9 :0.1 -that:0.9751318693161011 and:0.011415514163672924 That:0.0038130376487970352 aud:0.0010137527715414762 that:0.0009641246288083494 :0.007661701471079141 -ladies:0.3728828430175781 ,:0.27854859828948975 women:0.047644682228565216 girls:0.04415225237607956 lady:0.030514443293213844 :0.2262571807950735 -the:0.9977243542671204 the:0.0005082958959974349 tha:0.0003309434396214783 The:0.00024091255909297615 tho:0.0002377160417381674 :0.0009577777964295819 -adding:0.5601508021354675 giving:0.06200212240219116 feeding:0.040781013667583466 yielding:0.029311424121260643 bringing:0.02548576518893242 :0.2822688724845648 -a:0.9896316528320312 the:0.0030780250672250986 A:0.0010982973035424948 a:0.000849219795782119 an:0.0003163228975608945 :0.005026482103858143 -government:0.12834160029888153 legislature:0.09561198204755783 party:0.08056566119194031 and:0.06912960112094879 ,:0.036695096641778946 :0.5896560586988926 -the:0.9 :0.1 -the:0.8085888624191284 a:0.11852993816137314 and:0.02099527232348919 that:0.017175892367959023 an:0.005812510848045349 :0.028897523880004883 -l:0.0353417843580246 -:0.02389363758265972 u:0.023303378373384476 ,:0.023011531680822372 the:0.021511495113372803 :0.872938172891736 -so:0.9054943323135376 and:0.013179991394281387 such:0.010008379817008972 hoping:0.00882086530327797 in:0.004991922993212938 :0.057504508178681135 -as:0.9494543671607971 with:0.008374846540391445 for:0.007936537265777588 than:0.004739158786833286 in:0.0029873624444007874 :0.026507727801799774 -that:0.6286633014678955 which:0.3385457694530487 she:0.008419603109359741 I:0.00421961909160018 who:0.002437479328364134 :0.01771422754973173 -,:0.059940747916698456 .:0.05869215354323387 l:0.015520877204835415 -:0.010070144198834896 ld:0.009209519252181053 :0.8465665578842163 -of:0.5313432216644287 ol:0.144154354929924 ot:0.0813072919845581 is:0.03695414215326309 o:0.013325165025889874 :0.1929158242419362 -a:0.39278703927993774 tho:0.16150060296058655 -:0.058443691581487656 to:0.03600834682583809 the:0.034936316311359406 :0.31632400304079056 -tho:0.7375474572181702 the:0.24967320263385773 an:0.003813791321590543 our:0.0013365724589675665 any:0.0007714683306403458 :0.006857508036773652 -terms:0.8950586915016174 conditions:0.037208814173936844 principles:0.006064679007977247 Terms:0.005221378058195114 circumstances:0.004673852119594812 :0.05177258513867855 -true:0.7790213823318481 faithful:0.12347132712602615 loyal:0.036801714450120926 True:0.007566962391138077 devoted:0.005610298831015825 :0.047528314869850874 -the:0.84494549036026 tho:0.09079195559024811 its:0.012543832883238792 a:0.009970808401703835 that:0.007946291007101536 :0.03380162175744772 -is:0.7777342200279236 Is:0.04986894503235817 means:0.024702437222003937 ,:0.022179536521434784 being:0.02036469615995884 :0.10515016503632069 -tion:0.13097332417964935 ter:0.03901665285229683 er:0.03382304310798645 ber:0.026230037212371826 ment:0.02345292828977108 :0.7465040143579245 -is:0.3871021866798401 Is:0.06221037730574608 has:0.05934910103678703 will:0.04559405893087387 can:0.027135925367474556 :0.4186083506792784 -They:0.30772942304611206 Workers:0.08104996383190155 Employees:0.08059735596179962 Some:0.07809574156999588 Others:0.04369278624653816 :0.4088347293436527 -thence:0.9871045351028442 and:0.004591105505824089 then:0.0024267511907964945 passing:0.0009954238776117563 proceeding:0.0005096273380331695 :0.004372556984890252 -Huff:0.9817548394203186 Johnson:0.00042125541949644685 Williams:0.00037523728678934276 Marshall:0.0003331743646413088 Porter:0.0002985211613122374 :0.01681697234744206 -also:0.14313790202140808 already:0.08487533777952194 recently:0.044849857687950134 been:0.033314455300569534 even:0.03054763190448284 :0.6632748153060675 -The:0.6312623023986816 These:0.03373222425580025 the:0.030139628797769547 Some:0.026052799075841904 All:0.016651351004838943 :0.2621616944670677 -,:0.5603322982788086 .:0.0756566971540451 up:0.06288331001996994 out:0.030158566311001778 by:0.023697074502706528 :0.24727205373346806 -the:0.9 :0.1 -William:0.09798308461904526 Joseph:0.08794227242469788 James:0.08709287643432617 John:0.06182250753045082 Charles:0.05452825874090195 :0.6106310002505779 -.:0.4629659056663513 .:0.21601155400276184 ,:0.011179350316524506 t:0.006320818793028593 ^:0.005900158081203699 :0.29762221314013004 -as:0.7822058200836182 at:0.05240202322602272 by:0.033532463014125824 in:0.025316966697573662 to:0.01806325651705265 :0.08847947046160698 -the:0.9 :0.1 -he:0.4052101969718933 I:0.3157288134098053 ho:0.08377821743488312 mo:0.033499062061309814 we:0.011887775734066963 :0.1498959343880415 -boat:0.9366243481636047 vessel:0.015156601555645466 ship:0.006291125435382128 canoe:0.005308132153004408 net:0.005154202692210674 :0.03146559000015259 -as:0.9309585690498352 ,:0.04233232140541077 and:0.012393670156598091 so:0.004504780285060406 As:0.002127428539097309 :0.007683230563998222 -they:0.5365630388259888 any:0.3782840073108673 none:0.01725606620311737 it:0.004329071845859289 there:0.003204394830390811 :0.06036342098377645 -time:0.4232527017593384 moment:0.13080383837223053 point:0.09490795433521271 place:0.04364273324608803 hour:0.02952142059803009 :0.27787135168910027 -he:0.9387551546096802 ho:0.0295364111661911 lie:0.009035594761371613 it:0.007035679649561644 be:0.004173378925770521 :0.011463780887424946 -Interest:0.1515084058046341 investment:0.11100809276103973 Investment:0.10951117426156998 interest:0.09061434864997864 improvement:0.03613610193133354 :0.501221876591444 -all:0.4240195155143738 any:0.09194602072238922 a:0.09033537656068802 most:0.08707300573587418 some:0.06873690336942673 :0.23788917809724808 -the:0.9228157997131348 tho:0.03246369585394859 a:0.014602395705878735 my:0.006003410555422306 his:0.0032817295286804438 :0.020832968642935157 -should:0.2529009282588959 must:0.1788797676563263 is:0.08168153464794159 has:0.03726118430495262 will:0.03376688063144684 :0.4155097045004368 --:0.2895406484603882 ,:0.09789080172777176 or:0.08751591295003891 of:0.08231087774038315 and:0.02165953814983368 :0.4210822209715843 -has:0.29338309168815613 market:0.21486833691596985 markets:0.06656348705291748 yesterday:0.05130179971456528 was:0.034689534455537796 :0.33919375017285347 -6:0.4105323553085327 5:0.14522488415241241 7:0.14293262362480164 4:0.12062793970108032 8:0.05327983573079109 :0.12740236148238182 -in:0.9215558767318726 In:0.06910450011491776 on:0.001498537603765726 within:0.0011669466039165854 by:0.0009983108611777425 :0.005675828084349632 -to:0.7278186082839966 lo:0.14293870329856873 of:0.022376032546162605 ,:0.0184303168207407 ot:0.01102131325751543 :0.07741502579301596 -said:0.939002275466919 the:0.030145198106765747 such:0.008745379745960236 said:0.006762199103832245 this:0.0030901404097676277 :0.0122548071667552 -In:0.2560095489025116 at:0.18868231773376465 in:0.16413481533527374 to:0.0627581849694252 about:0.06033974140882492 :0.2680753916501999 -Then:0.8096552491188049 Next:0.03362709656357765 So:0.019565414637327194 But:0.012922504916787148 And:0.01234507281333208 :0.111884661950171 -Fair:0.840678334236145 State:0.007837695069611073 fair:0.00514263566583395 Lake:0.004592386540025473 West:0.004259086679667234 :0.13748986180871725 -of:0.8936008214950562 ot:0.02906021848320961 tho:0.014153273776173592 in:0.012215564958751202 from:0.008420444093644619 :0.042549677193164825 -Most:0.27710455656051636 Thousands:0.20060421526432037 Many:0.171164870262146 Millions:0.08917120099067688 Half:0.03696140646934509 :0.2249937504529953 -the:0.7235770225524902 a:0.1536647528409958 tho:0.05404624342918396 tha:0.03949272260069847 an:0.004249225836247206 :0.02497003274038434 -few:0.9408372044563293 couple:0.02404877543449402 dozen:0.005977011751383543 several:0.002401216421276331 hundred:0.002362708793953061 :0.0243730831425637 -posed:0.07549931108951569 fed:0.0736977830529213 ed:0.02691035345196724 charged:0.0232931450009346 ing:0.01915658265352249 :0.7814428247511387 -to:0.5630088448524475 by:0.36069560050964355 from:0.017281746491789818 between:0.013762516900897026 in:0.0026768420357257128 :0.04257444920949638 -com:0.03651158884167671 -:0.03171464800834656 heart:0.026358194649219513 ­:0.022998688742518425 hand:0.019190922379493713 :0.8632259573787451 -come:0.22689422965049744 be:0.10739456862211227 fall:0.07565554231405258 arrive:0.052175864577293396 rain:0.05152100697159767 :0.48635878786444664 -has:0.6468461155891418 have:0.09153027832508087 Has:0.04140855371952057 having:0.0387442372739315 had:0.03234492614865303 :0.14912588894367218 -n:0.030803123489022255 t:0.02541995979845524 r:0.025286566466093063 the:0.024165039882063866 v:0.022592177614569664 :0.8717331327497959 -Now:0.4184802770614624 And:0.18454471230506897 But:0.15849053859710693 Then:0.06590645015239716 So:0.04319806769490242 :0.12937995418906212 -of:0.23295316100120544 to:0.14565245807170868 ot:0.13533475995063782 ol:0.13231085240840912 with:0.0879635363817215 :0.26578523218631744 -than:0.3295842707157135 and:0.25339195132255554 he:0.14452163875102997 but:0.06607551872730255 who:0.04823697358369827 :0.15818964689970016 -as:0.2825961410999298 a:0.2138853371143341 utterly:0.10102418065071106 wholly:0.0849977433681488 the:0.052461814135313034 :0.2650347836315632 -in:0.045589108020067215 to:0.04293422773480415 of:0.04210541024804115 In:0.03487779572606087 on:0.024429241195321083 :0.8100642170757055 -degree:0.08756373822689056 honors:0.05063708499073982 privileges:0.039439812302589417 honor:0.029665246605873108 degrees:0.027183599770069122 :0.765510518103838 -work:0.37831807136535645 as:0.10770872235298157 which:0.03042868711054325 described:0.026395360007882118 claim:0.017359599471092224 :0.4397895596921444 -the:0.9690759181976318 tho:0.010770205408334732 The:0.008154057897627354 our:0.0022957283072173595 the:0.002002663677558303 :0.007701426511630416 -the:0.9 :0.1 -of:0.5462666153907776 in:0.07392167299985886 that:0.04368618130683899 ,:0.04228648915886879 for:0.023298606276512146 :0.27054043486714363 -the:0.8814808130264282 this:0.04592482000589371 that:0.02576466090977192 tho:0.01068033091723919 our:0.01051456667482853 :0.025634808465838432 -he:0.8092725872993469 ho:0.055578358471393585 they:0.02028375305235386 it:0.019939102232456207 she:0.005154115613549948 :0.08977208333089948 -qualified:0.4433908462524414 competent:0.06740330904722214 suitable:0.06503760814666748 honest:0.023692691698670387 able:0.022051649168133736 :0.37842389568686485 -:0.10252686589956284 ed:0.08233693987131119 tion:0.05261067673563957 ing:0.026583468541502953 e:0.024415668100118637 :0.7115263808518648 -as:0.6426539421081543 for:0.16638197004795074 in:0.08398546278476715 by:0.061218660324811935 ,:0.019040606915950775 :0.026719357818365097 -applause:0.1034570187330246 admiration:0.053337909281253815 sympathy:0.041492726653814316 pleasure:0.037550099194049835 amusement:0.03435651585459709 :0.7298057302832603 -face:0.10407260060310364 head:0.0731513500213623 nose:0.07272432744503021 beard:0.04815736785531044 eyes:0.03719347342848778 :0.6647008806467056 -the:0.9116612076759338 in:0.0548776350915432 tho:0.009026896208524704 an:0.004384827334433794 In:0.003357420675456524 :0.016692013014107943 -I:0.35712477564811707 1:0.12000460177659988 and:0.06379416584968567 but:0.05105358362197876 you:0.03613601252436638 :0.37188686057925224 -take:0.06731682270765305 come:0.039186324924230576 make:0.0377398245036602 escape:0.0368637852370739 begin:0.03658922389149666 :0.7823040187358856 -it:0.9724072217941284 she:0.012154417112469673 It:0.005106064025312662 time:0.004305440932512283 one:0.0006482909084297717 :0.005378565227147192 -Father:0.15682236850261688 kingdom:0.04355937987565994 people:0.03979356959462166 self:0.03505679965019226 own:0.03441186994314194 :0.6903560124337673 -to:0.6908115148544312 and:0.1107478216290474 shall:0.01871548593044281 which:0.012469769455492496 t:0.010336835868656635 :0.1569185722619295 -.:0.9514169692993164 !:0.006840046960860491 chance:0.00612233392894268 .:0.004950429312884808 !:0.002494250889867544 :0.02817596960812807 -feet:0.6429682970046997 inches:0.1362251490354538 acres:0.08901078253984451 miles:0.038782015442848206 yards:0.03440374881029129 :0.05861000716686249 -I:0.9660705327987671 1:0.019392769783735275 i:0.002542247297242284 I:0.0016194095369428396 We:0.0008456271607428789 :0.009529413422569633 -counties:0.7733163833618164 towns:0.030103692784905434 districts:0.028075790032744408 County:0.02660556510090828 county:0.026107942685484886 :0.11579062603414059 -wool:0.8916308283805847 yarn:0.009540511295199394 goods:0.009518436156213284 cotton:0.009439167566597462 cloth:0.007444584276527166 :0.07242647232487798 -chiefly:0.1828630566596985 largely:0.10664283484220505 mainly:0.08843371272087097 only:0.05544605851173401 principally:0.04510549083352089 :0.5215088464319706 -R:0.86891770362854 H:0.018696341663599014 M:0.012456324882805347 S:0.0074643963016569614 L:0.006285657174885273 :0.08617957634851336 -moisture:0.24582085013389587 rain:0.16863501071929932 water:0.13396809995174408 soil:0.05761918053030968 frost:0.018414439633488655 :0.3755424190312624 -house:0.25312340259552 point:0.24402327835559845 spot:0.15076595544815063 place:0.08686483651399612 lot:0.017619377002120018 :0.24760315008461475 -,:0.2903204560279846 *:0.127539724111557 -:0.0680648535490036 and:0.06250165402889252 ­:0.04308447614312172 :0.40848883613944054 -said:0.8252794146537781 the:0.038059964776039124 this:0.03520951792597771 Said:0.033954374492168427 that:0.012399702332913876 :0.05509702581912279 -and:0.5794246196746826 the:0.10820251703262329 ,:0.09249122440814972 tho:0.03657926246523857 but:0.026542935520410538 :0.15675944089889526 -lent:0.1003994271159172 sent:0.044938329607248306 charged:0.03189222142100334 posed:0.0309557244181633 proved:0.01970503106713295 :0.7721092663705349 -in:0.8378158211708069 In:0.10907068848609924 between:0.010247888043522835 throughout:0.010114443488419056 at:0.0056512560695409775 :0.027099902741611004 -position:0.17780601978302002 course:0.15324154496192932 line:0.0642658993601799 direction:0.030588563531637192 thrust:0.02764252945780754 :0.546455442905426 -the:0.8772425055503845 tho:0.053052324801683426 all:0.03048558533191681 their:0.005255121272057295 other:0.0032094635535031557 :0.030754999490454793 -do:0.24723049998283386 eat:0.09325528889894485 and:0.047952644526958466 be:0.0408448651432991 decide:0.034571222960948944 :0.5361454784870148 -on:0.9001902341842651 at:0.034055184572935104 in:0.005924374796450138 to:0.00558997830376029 On:0.004123010206967592 :0.05011721793562174 -,:0.7343354225158691 .:0.06200355663895607 ;:0.0208742693066597 ;:0.019352087751030922 ,:0.015097329393029213 :0.14833733439445496 -tell:0.9783235788345337 recount:0.0011657150462269783 hear:0.0008575530955567956 narr:0.0006009738426655531 remember:0.0005891757900826633 :0.01846300339093432 -Whatever:0.2847102880477905 Let:0.15628117322921753 If:0.08687414228916168 Should:0.057267069816589355 As:0.026624422520399094 :0.3882429040968418 -a:0.2656520903110504 the:0.15207326412200928 his:0.1247546598315239 making:0.051988523453474045 this:0.03580961376428604 :0.3697218485176563 -pole:0.9685982465744019 poles:0.01684100180864334 pole:0.001712794415652752 Pole:0.001148759387433529 feet:0.0009283943800255656 :0.010770803433842957 -the:0.9 :0.1 -worth:0.35491761565208435 *:0.22556020319461823 annually:0.07690520584583282 ,:0.04147692024707794 s:0.029897134751081467 :0.2712429203093052 -in:0.7827301025390625 In:0.08480179309844971 in:0.04649268463253975 with:0.0151685681194067 on:0.005593914072960615 :0.06521293753758073 -when:0.6552632451057434 for:0.07748057693243027 if:0.04612043499946594 but:0.03526490926742554 and:0.033173080533742905 :0.15269775316119194 -of:0.23389899730682373 ,:0.06747812777757645 on:0.0632358118891716 which:0.060303207486867905 at:0.037319377064704895 :0.5377644784748554 -and:0.6584383249282837 ho:0.09333343803882599 then:0.06225695088505745 but:0.030878886580467224 he:0.030753279104828835 :0.12433912046253681 -the:0.884803056716919 tho:0.03074606880545616 a:0.012118068523705006 tha:0.011681661009788513 that:0.004343226086348295 :0.05630791885778308 -the:0.9340991377830505 our:0.0164299625903368 a:0.012094931676983833 this:0.009941489435732365 The:0.005756403785198927 :0.02167807472869754 -of:0.6347585916519165 in:0.10840927809476852 to:0.07010731846094131 by:0.025235988199710846 ot:0.024633582681417465 :0.13685524091124535 -known:0.48086923360824585 ,:0.20851753652095795 such:0.019107993692159653 described:0.01906590908765793 regarded:0.018336694687604904 :0.2541026324033737 -and:0.464662104845047 but:0.14877930283546448 that:0.10990100353956223 for:0.06386622041463852 yet:0.05106135830283165 :0.16173001006245613 -a:0.9776346683502197 the:0.007606517523527145 much:0.003559836884960532 an:0.0017213491955772042 no:0.0016646570293232799 :0.007812971016392112 -do:0.19908392429351807 dont:0.12277434021234512 really:0.0859748125076294 never:0.07735597342252731 just:0.06396647542715073 :0.4508444741368294 -inquire:0.20385298132896423 something:0.08592502027750015 information:0.08343369513750076 particulars:0.05752701684832573 questions:0.05416340008378029 :0.5150978863239288 -of:0.6131885051727295 in:0.2632867991924286 between:0.06409753859043121 on:0.010261700488626957 In:0.009419001638889313 :0.039746454916894436 -hold:0.3958618938922882 one:0.3307584822177887 me:0.046306438744068146 sight:0.03343365713953972 track:0.02516010031104088 :0.16847942769527435 -two:0.8704313635826111 three:0.02882418781518936 twin:0.00865648128092289 four:0.008342086337506771 several:0.005957086104899645 :0.07778879487887025 -that:0.08758286386728287 improvements:0.05125518888235092 ,:0.04260050132870674 buildings:0.036391500383615494 now:0.02873848006129265 :0.7534314654767513 -who:0.8798999786376953 and:0.08006413280963898 she:0.018427135422825813 but:0.005175906699150801 which:0.0014137893449515104 :0.015019057085737586 -the:0.9784314036369324 tho:0.008466914296150208 The:0.003637541551142931 a:0.0022892074193805456 the:0.0008404867257922888 :0.006334446370601654 -and:0.36874479055404663 take:0.20358021557331085 no:0.07425234466791153 taking:0.06414824724197388 but:0.04908454418182373 :0.24018985778093338 -the:0.9602147340774536 most:0.014174321666359901 tho:0.009694223292171955 an:0.0017737776506692171 many:0.001180062536150217 :0.012962880777195096 -very:0.29935741424560547 terrible:0.032474320381879807 little:0.0322844460606575 terribly:0.03174109011888504 great:0.026914071291685104 :0.5772286579012871 --:0.06549868732690811 street:0.06481492519378662 ,:0.0509948655962944 lot:0.04288223013281822 house:0.029205739498138428 :0.7466035522520542 -had:0.7808331847190857 was:0.023118868470191956 first:0.015755508095026016 'd:0.014080394059419632 ever:0.007565027568489313 :0.1586470170877874 -horse:0.9006757736206055 rider:0.0028682341799139977 race:0.002732660388574004 horses:0.002633749507367611 head:0.002595712896436453 :0.08849386940710247 -them:0.516908586025238 it:0.11022677272558212 fire:0.029028384014964104 all:0.023297972977161407 which:0.022537196055054665 :0.29800108820199966 -turned:0.012119668535888195 fed:0.011252393014729023 shaped:0.010922014713287354 formed:0.01089487224817276 formed:0.009284698404371738 :0.9455263530835509 -the:0.5242934226989746 his:0.23409712314605713 a:0.18007898330688477 tho:0.018853990361094475 bis:0.013927551917731762 :0.02874892856925726 -captain:0.08172262459993362 companions:0.07505457103252411 guide:0.05755851790308952 passengers:0.05263131484389305 driver:0.04931873828172684 :0.6837142333388329 -large:0.5685932040214539 small:0.1472538262605667 heavy:0.028781820088624954 great:0.024889996275305748 considerable:0.024048270657658577 :0.20643288269639015 -work:0.1429463028907776 repairs:0.08231095969676971 expenses:0.059284381568431854 purposes:0.05659718066453934 improvements:0.04306134581565857 :0.6157998293638229 -the:0.7284837961196899 this:0.10253569483757019 an:0.04054876044392586 that:0.02374809980392456 such:0.014705604873597622 :0.08997804392129183 -.:0.9523671269416809 ,:0.011734922416508198 ;:0.011516259051859379 and:0.00802895613014698 .:0.004058901220560074 :0.012293834239244461 -the:0.21446508169174194 a:0.19468732178211212 my:0.15507593750953674 said:0.07304172962903976 his:0.04915767163038254 :0.3135722577571869 -extent:0.2661542296409607 .:0.10927719622850418 time:0.10128448903560638 purpose:0.06901049613952637 degree:0.054335784167051315 :0.39993780478835106 -of:0.4723154604434967 ,:0.08762767165899277 -:0.06417394429445267 ot:0.04661763831973076 and:0.032393403351306915 :0.2968718819320202 -was:0.3305869996547699 lay:0.06942881643772125 raged:0.028612826019525528 resided:0.025795675814151764 burned:0.0255344919860363 :0.5200411900877953 -of:0.9888460040092468 ot:0.0021799032110720873 on:0.0012176493182778358 for:0.0011136914836242795 in:0.0007432197453454137 :0.0058995322324335575 -the:0.9 :0.1 -to:0.19938138127326965 from:0.10761523991823196 ,:0.03690362721681595 in:0.030055616050958633 on:0.029833272099494934 :0.5962108634412289 -pieces:0.34248843789100647 kinds:0.07584671676158905 forms:0.046439219266176224 bits:0.03687013313174248 styles:0.022504882887005806 :0.47585061006248 -policy:0.14488808810710907 scheme:0.1347542554140091 plan:0.10144060105085373 proposition:0.07117105275392532 system:0.05059418827295303 :0.49715181440114975 -the:0.9077950119972229 all:0.05509550869464874 our:0.007858220487833023 his:0.004334766883403063 tho:0.004215543624013662 :0.02070094831287861 -others:0.15695227682590485 manufacturers:0.08488284796476364 them:0.07294129580259323 farmers:0.06270954757928848 us:0.03461390361189842 :0.5879001282155514 -apply:0.08169695734977722 yield:0.05197741091251373 ,:0.04538720101118088 conform:0.04512267932295799 respond:0.03266056999564171 :0.7431551814079285 -our:0.1184537410736084 for:0.09112060070037842 in:0.07612873613834381 with:0.0709654688835144 and:0.06700102239847183 :0.5763304308056831 -be:0.9142606258392334 bo:0.05158451572060585 he:0.004079568199813366 become:0.002078617922961712 hereby:0.001054771593771875 :0.0269419007236138 -they:0.4826458692550659 he:0.3661481440067291 ho:0.03484122455120087 that:0.02400055155158043 to:0.008482023142278194 :0.08388218749314547 -this:0.7452241778373718 the:0.08046486973762512 that:0.034931767731904984 a:0.027571046724915504 any:0.01355785969644785 :0.09825027827173471 -to:0.3628767132759094 their:0.20311462879180908 her:0.15752674639225006 the:0.0943688377737999 his:0.06251000612974167 :0.11960306763648987 -of:0.5600143074989319 before:0.12500542402267456 preceding:0.09768233448266983 ol:0.04479454457759857 in:0.023601757362484932 :0.14890163205564022 -human:0.9040746092796326 our:0.030707519501447678 natural:0.008031709119677544 the:0.0054971082136034966 Human:0.005262347869575024 :0.04642670601606369 -the:0.9 :0.1 -main:0.17650561034679413 old:0.14741647243499756 entire:0.06636158376932144 railroad:0.04227760061621666 long:0.0348171591758728 :0.5326215736567974 -could:0.33156877756118774 would:0.15145806968212128 might:0.08509723842144012 to:0.05371634662151337 dared:0.05013560503721237 :0.3280239626765251 -United:0.9360124468803406 Baltic:0.01561605092138052 Northern:0.0034353642258793116 Canadian:0.002947147935628891 Atlantic:0.0021169630344957113 :0.03987202700227499 -can:0.6007566452026367 will:0.16063371300697327 must:0.08782783150672913 cannot:0.05760675296187401 should:0.040860410779714584 :0.052314646542072296 -the:0.9424451589584351 an:0.018901435658335686 tho:0.017484156414866447 its:0.0029492415487766266 his:0.0023610093630850315 :0.01585899805650115 -heat:0.9482630491256714 light:0.013903752900660038 water:0.0077545614913105965 energy:0.004981564357876778 air:0.002234063344076276 :0.022863008780404925 -to:0.7054888606071472 with:0.07838637381792068 for:0.041749048978090286 on:0.03203362226486206 in:0.024347664788365364 :0.11799442954361439 -Latin:0.9551171660423279 Greek:0.005528605543076992 English:0.004959535785019398 French:0.004272032529115677 Hebrew:0.004236698150634766 :0.025885961949825287 -not:0.6628437638282776 never:0.036169491708278656 far:0.023711372166872025 none:0.01769917830824852 much:0.013750141486525536 :0.24582605250179768 -Jones:0.6598431468009949 Hall:0.008734418079257011 Doll:0.004333712626248598 Bell:0.004018427804112434 Lee:0.003690288867801428 :0.31938000582158566 -just:0.15942202508449554 fair:0.10011200606822968 reasonable:0.06292591243982315 impartial:0.04535916447639465 even:0.0437980554997921 :0.5883828364312649 -capturing:0.05630604550242424 ailing:0.04357534274458885 ing:0.035788048058748245 cing:0.025031520053744316 uring:0.02450227364897728 :0.8147967699915171 -the:0.9389475584030151 tho:0.05267744138836861 a:0.0018873889930546284 tha:0.0007249824120663106 in:0.0005620655138045549 :0.005200563289690763 -the:0.9364431500434875 this:0.014698776416480541 tho:0.009420054964721203 a:0.007825386710464954 said:0.007732979021966457 :0.023879652842879295 -was:0.9591104388237 contained:0.021496528759598732 is:0.004614025820046663 had:0.00274667632766068 Was:0.002470774808898568 :0.009561555460095406 -Democratic:0.45715197920799255 democratic:0.09020711481571198 divided:0.08235254883766174 Republican:0.0768759697675705 united:0.02096690982580185 :0.2724454775452614 -in:0.6575164198875427 at:0.1252954751253128 to:0.0884946659207344 In:0.02428959123790264 near:0.023183366283774376 :0.08122048154473305 -we:0.9319188594818115 they:0.025444062426686287 us:0.006204608827829361 wo:0.004642802756279707 We:0.004016393795609474 :0.027773272711783648 -,:0.4424874484539032 Wilson:0.06490489840507507 .:0.033835165202617645 *,:0.025031017139554024 ,:0.02371465042233467 :0.4100268203765154 -than:0.9151389002799988 ,:0.03293801099061966 ;:0.00934547372162342 ::0.0078104170970618725 then:0.0057021817192435265 :0.02906501619145274 -the:0.19575680792331696 many:0.13759899139404297 these:0.03977469354867935 -:0.032970670610666275 tho:0.03150905296206474 :0.5623897835612297 -earn:0.5836100578308105 make:0.08894964307546616 get:0.07398176193237305 receive:0.07067297399044037 have:0.035068634897470474 :0.1477169282734394 -back:0.09474466741085052 palm:0.07499324530363083 hand:0.06725608557462692 card:0.04625626653432846 center:0.029787296429276466 :0.6869624387472868 -less:0.6329056024551392 more:0.2762677073478699 greater:0.04374309629201889 higher:0.018786095082759857 lower:0.01834125816822052 :0.0099562406539917 -a:0.8757004737854004 the:0.08772213011980057 his:0.013602803461253643 some:0.004335854202508926 another:0.0018782835686579347 :0.016760454862378538 -and:0.22573894262313843 of:0.16613751649856567 in:0.05646811053156853 but:0.041331831365823746 or:0.02913993038237095 :0.4811836685985327 -not:0.36077383160591125 only:0.1404283493757248 under:0.08102348446846008 at:0.053348951041698456 over:0.04489237070083618 :0.31953301280736923 -up:0.09441805630922318 us:0.0888030156493187 ourselves:0.07445855438709259 it:0.04704016074538231 back:0.04381519556045532 :0.6514650173485279 -accepted:0.6101429462432861 conceded:0.05722496286034584 declined:0.035188835114240646 dropped:0.026657497510313988 rejected:0.022611433640122414 :0.24817432463169098 -meet:0.33778536319732666 see:0.2526715099811554 greet:0.09182067960500717 visit:0.051962960511446 assist:0.041046928614377975 :0.2247125580906868 -the:0.31636562943458557 this:0.07456491142511368 their:0.06179031357169151 government:0.053742341697216034 our:0.03872813656926155 :0.45480866730213165 -as:0.40732407569885254 to:0.15466883778572083 fellow:0.08231142908334732 ,:0.04087672010064125 of:0.0407402366399765 :0.27407870069146156 -.:0.39305126667022705 .:0.03717087209224701 a:0.0141647569835186 J:0.013761153444647789 i:0.010313127189874649 :0.5315388236194849 -make:0.11772393435239792 secure:0.11173538863658905 hold:0.06775768846273422 have:0.06698247045278549 give:0.04736785590648651 :0.5884326621890068 -of:0.9730802774429321 ot:0.011310330592095852 ol:0.008340232074260712 of:0.002035710960626602 Of:0.0009727735305204988 :0.004260675399564207 -to:0.9697263240814209 than:0.011758556589484215 ot:0.0022878197487443686 over:0.002019157400354743 ol:0.0007618807139806449 :0.01344626146601513 -church:0.45777326822280884 house:0.08628737926483154 bridge:0.06742021441459656 chapel:0.03756904602050781 Chapel:0.015017524361610413 :0.33593256771564484 -been:0.24079623818397522 continued:0.07034259289503098 done:0.051308196038007736 dominated:0.041916485875844955 kept:0.021817943081259727 :0.5738185439258814 -deliberate:0.04892927408218384 courage:0.028859931975603104 heroic:0.026380492374300957 weakness:0.022796275094151497 heroism:0.020069850608706474 :0.8529641758650541 -of:0.978147566318512 in:0.006249638739973307 and:0.004142325837165117 from:0.0012370868353173137 to:0.0011179433204233646 :0.009105438948608935 -the:0.5462596416473389 his:0.21468085050582886 a:0.2110089659690857 tho:0.008038843981921673 th:0.0014643438626080751 :0.018547354033216834 -divided:0.4241994321346283 united:0.09247751533985138 organized:0.04957858845591545 absorbed:0.03944457694888115 merged:0.03555848449468613 :0.3587414026260376 -It:0.9932547211647034 it:0.002463803393766284 It:0.000658663222566247 This:0.00032208283664658666 it:0.00020608662453014404 :0.003094642757787369 -friends:0.15358279645442963 men:0.06910461187362671 defendants:0.047452572733163834 witnesses:0.022154182195663452 *:0.017100514844059944 :0.6906053218990564 -of:0.6909369230270386 ot:0.0774880051612854 to:0.07380163669586182 by:0.047338567674160004 for:0.011925608851015568 :0.09850925859063864 -,:0.16981667280197144 into:0.09364394843578339 on:0.09211286902427673 and:0.08495057374238968 upon:0.05346979945898056 :0.5060061365365982 -he:0.3972850441932678 she:0.28409475088119507 lie:0.10683241486549377 ,:0.01116290595382452 they:0.010641992092132568 :0.18998289201408625 -news:0.15524573624134064 newspaper:0.11300583928823471 papers:0.09266168624162674 newspapers:0.07894445210695267 paper:0.06936744600534439 :0.49077484011650085 -tion:0.7065554261207581 ment:0.02493349276483059 ty:0.015432088635861874 t:0.00991478469222784 ter:0.009328790940344334 :0.2338354168459773 -has:0.18871767818927765 may:0.14775514602661133 will:0.11406400799751282 cannot:0.08865135163068771 should:0.06892029941082001 :0.3918915167450905 -minute:0.22406351566314697 hour:0.14179189503192902 inch:0.07955549657344818 second:0.05791092664003372 pound:0.05576232820749283 :0.4409158378839493 -tion:0.5832915902137756 ty:0.05405444651842117 ing:0.034450702369213104 :0.018160928040742874 er:0.015466178767383099 :0.2945761540904641 -kept:0.6390432119369507 was:0.18977023661136627 keep:0.021377285942435265 started:0.020803289487957954 tried:0.006882962770760059 :0.12212301325052977 -in:0.5207780599594116 In:0.16167761385440826 of:0.10767072439193726 for:0.04461263492703438 on:0.02740555815398693 :0.13785540871322155 -to:0.9746714234352112 and:0.01219938974827528 ,:0.009928123094141483 to:0.0002732743741944432 could:0.00022795720724388957 :0.0026998321409337223 -ice:0.2921048104763031 cold:0.08650154620409012 frost:0.08639618754386902 darkness:0.07721839845180511 fog:0.05712246894836426 :0.4006565883755684 -tho:0.7592372894287109 the:0.22196778655052185 tha:0.010745741426944733 th:0.0009472484234720469 The:0.000813429884146899 :0.006288504286203533 -of:0.9517627954483032 ot:0.010471047833561897 and:0.005811304319649935 at:0.004742899443954229 or:0.00444979639723897 :0.022762156557291746 -said:0.5669440031051636 all:0.10770486295223236 the:0.08124642074108124 and:0.02042938768863678 of:0.019378770142793655 :0.2042965553700924 -time:0.6068212389945984 meeting:0.1785600185394287 moment:0.015474279411137104 conference:0.011672892607748508 event:0.010182958096265793 :0.1772886123508215 -the:0.39006999135017395 his:0.3158925175666809 this:0.1563781350851059 a:0.046647634357213974 tho:0.027169108390808105 :0.06384261325001717 -the:0.4654667377471924 such:0.15987302362918854 these:0.058778222650289536 tho:0.0340358130633831 all:0.028176454827189445 :0.253669748082757 -trouble:0.2174033373594284 danger:0.14084672927856445 risk:0.06275150179862976 possibility:0.037909287959337234 habit:0.03009672835469246 :0.5109924152493477 -when:0.576124906539917 if:0.07944130152463913 while:0.07173967361450195 though:0.04088948667049408 although:0.03104555420577526 :0.20075907744467258 -not:0.6023910641670227 also:0.15295284986495972 never:0.11247435957193375 only:0.028049567714333534 then:0.009288235567510128 :0.09484392311424017 -two:0.1166364997625351 three:0.08212399482727051 four:0.07124490290880203 a:0.06935890018939972 eight:0.0379788763821125 :0.6226568259298801 -city:0.04088359698653221 factories:0.040626686066389084 case:0.035587556660175323 time:0.035399120301008224 cities:0.0248323455452919 :0.8226706944406033 -.:0.9605074524879456 !:0.0057042501866817474 ?:0.003230169415473938 ,:0.003111689118668437 *.:0.002818927401676774 :0.024627511389553547 -by:0.7127050757408142 in:0.06408756226301193 to:0.048989225178956985 of:0.04784832149744034 ,:0.019651148468255997 :0.10671866685152054 -commission:0.42604777216911316 board:0.12500959634780884 body:0.12122794985771179 bureau:0.06016025319695473 committee:0.03739288076758385 :0.23016154766082764 -the:0.9 :0.1 -that:0.9623626470565796 ,:0.011341792531311512 if:0.006229470018297434 then:0.0020698774605989456 also:0.0015386982122436166 :0.016457514720968902 -that:0.14180967211723328 it:0.12250316143035889 he:0.10641889274120331 not:0.10014429688453674 ,:0.03737796097993851 :0.4917460158467293 -impetus:0.0853566974401474 blow:0.04385087639093399 appearance:0.036319900304079056 expression:0.03106374479830265 end:0.02831997722387314 :0.7750888038426638 -tion:0.2996278703212738 power:0.04533213749527931 ment:0.029306838288903236 authority:0.00972804520279169 right:0.0069691515527665615 :0.6090359571389854 -to:0.9925134778022766 from:0.0015708650462329388 and:0.0006350635085254908 can:0.0005615607951767743 will:0.00045727164251729846 :0.004261761205270886 -It:0.2025257647037506 That:0.13080748915672302 This:0.09380745142698288 that:0.06114334240555763 which:0.05458340793848038 :0.4571325443685055 -assigned:0.13911864161491394 given:0.11866232752799988 hired:0.06431888043880463 employing:0.05698380246758461 employed:0.05382557958364487 :0.5670907683670521 -I:0.8998827338218689 1:0.06438440829515457 one:0.008871784433722496 i:0.008563139475882053 you:0.001620579045265913 :0.01667735492810607 -to:0.9936142563819885 for:0.0019546623807400465 ta:0.001090332749299705 To:0.0004747379571199417 ot:0.0003822423459496349 :0.0024837681849021465 -pages:0.5596309900283813 page:0.38811445236206055 Page:0.027829589322209358 paragraphs:0.0024733024183660746 PAGE:0.0009849804919213057 :0.020966685377061367 -rock:0.24882136285305023 water:0.1424110233783722 surface:0.10004075616598129 sand:0.05511949583888054 soil:0.042914584279060364 :0.4106927774846554 -and:0.4804877042770386 where:0.1622907668352127 when:0.07406236976385117 but:0.05481041967868805 as:0.042551539838314056 :0.18579719960689545 -and:0.9020695090293884 or:0.059729889035224915 to:0.008962658233940601 ,:0.006856760010123253 the:0.004107244778424501 :0.018273938912898302 -by:0.9493380188941956 of:0.027474433183670044 by:0.008451989851891994 ,:0.002369825728237629 to:0.0013534135650843382 :0.011012318776920438 -would:0.3615812659263611 should:0.35881394147872925 will:0.11067599803209305 must:0.06401881575584412 could:0.03765496611595154 :0.06725501269102097 -conditions:0.2285323292016983 protection:0.06161179393529892 treatment:0.0483529157936573 results:0.024829847738146782 assistance:0.01987418718636036 :0.6167989261448383 -to:0.39252302050590515 on:0.1218487098813057 in:0.08167259395122528 Into:0.07745300233364105 into:0.0688716396689415 :0.2576310336589813 -,:0.4343924820423126 -:0.19287487864494324 and:0.021961065009236336 :0.012467262335121632 h:0.010518701747059822 :0.32778561022132635 -the:0.9 :0.1 -returning:0.08186466246843338 present:0.07131563127040863 talking:0.060246121138334274 tending:0.047517284750938416 listening:0.046040140092372894 :0.6930161602795124 -the:0.7450283765792847 tho:0.21881034970283508 these:0.005858260206878185 those:0.004351572133600712 some:0.0037264402490109205 :0.02222500112839043 -for:0.9934866428375244 for:0.0017107377061620355 with:0.0006464595207944512 For:0.0006147488602437079 to:0.0005413861945271492 :0.003000024880748242 -and:0.42270100116729736 of:0.28952574729919434 ot:0.14319244027137756 or:0.045301973819732666 ,:0.006512428633868694 :0.09276640880852938 -lying:0.30125805735588074 standing:0.14777159690856934 floating:0.036757975816726685 laying:0.01946726255118847 alone:0.01809428259730339 :0.4766508247703314 -If:0.0913824588060379 But:0.07905604690313339 Here:0.06884706765413284 As:0.057648319751024246 This:0.055807411670684814 :0.6472586952149868 -The:0.9681402444839478 the:0.0117991603910923 Its:0.004697518888860941 His:0.004374333191663027 The:0.0035775306168943644 :0.007411212427541614 -of:0.9850851893424988 ot:0.003735803533345461 by:0.0034671241883188486 from:0.001754243508912623 among:0.0008426678832620382 :0.00511497154366225 -the:0.2986755967140198 tho:0.2892787754535675 said:0.06980399787425995 this:0.0688839927315712 each:0.045096542686223984 :0.2282610945403576 -Ross:0.06750840693712234 Jones:0.02850235067307949 Smith:0.01923449896275997 Miller:0.014062696136534214 ,:0.011740648187696934 :0.858951399102807 -,:0.14755350351333618 the:0.06231901794672012 a:0.051082782447338104 .:0.033692121505737305 tho:0.0330406129360199 :0.6723119616508484 -deg:0.15738506615161896 sec:0.08444114774465561 ch:0.028370121493935585 feet:0.028162315487861633 s:0.02785545587539673 :0.6737858932465315 -cess:0.030786244198679924 ing:0.030485054478049278 er:0.025526028126478195 tion:0.02216743864119053 dent:0.021166764199733734 :0.8698684703558683 -when:0.7858225107192993 as:0.07374431192874908 after:0.01922607421875 if:0.014784011989831924 while:0.011289703659713268 :0.0951333874836564 -old:0.0930190458893776 party:0.0681200921535492 two:0.06648272275924683 negro:0.0532667301595211 white:0.02408786304295063 :0.6950235459953547 -his:0.27214181423187256 their:0.08307300508022308 the:0.08130540698766708 her:0.0251777283847332 made:0.01944875530898571 :0.5188532900065184 -and:0.46584972739219666 for:0.09800565987825394 or:0.04020847752690315 in:0.027217213064432144 under:0.02497263252735138 :0.34374628961086273 -a:0.7257429957389832 the:0.13906121253967285 his:0.028601165860891342 another:0.023347176611423492 our:0.019745714962482452 :0.06350173428654671 -.:0.5327787399291992 bill:0.22139357030391693 statement:0.010844757780432701 remarks:0.010218854993581772 plan:0.010043563321232796 :0.21472051367163658 -United:0.31736519932746887 State:0.08415614813566208 Union:0.04659854993224144 Confederate:0.025490639731287956 said:0.021495385095477104 :0.5048940777778625 -in:0.07983531057834625 equip:0.024153798818588257 i:0.02339506335556507 to:0.01860729232430458 at:0.01350923627614975 :0.8404992986470461 -instincts:0.061880480498075485 temper:0.030286423861980438 habits:0.029187733307480812 motives:0.022595243528485298 character:0.01928560435771942 :0.8367645144462585 -poor:0.0301599632948637 low:0.024665921926498413 unfortunate:0.017785150557756424 late:0.016768338158726692 present:0.0105921421200037 :0.9000284839421511 -try:0.05204375833272934 ter:0.03824146091938019 pose:0.03224645182490349 ly:0.03198309615254402 er:0.021967722102999687 :0.8235175106674433 -excellent:0.08358089625835419 interesting:0.06449275463819504 admirable:0.06419343501329422 extraordinary:0.048088472336530685 apt:0.044915854930877686 :0.6947285868227482 -of:0.7098855376243591 not:0.12107818573713303 above:0.02154582366347313 after:0.01962289772927761 at:0.014502352103590965 :0.11336520314216614 -required:0.969477653503418 needed:0.010503997094929218 demanded:0.00738786393776536 expected:0.00308240856975317 necessary:0.002692652866244316 :0.006855424027889967 -The:0.7060806751251221 This:0.2355116754770279 An:0.031468138098716736 That:0.0062598902732133865 the:0.0033282190561294556 :0.01735140196979046 -entertainment:0.12622179090976715 social:0.09788468480110168 cultural:0.08555275201797485 commercial:0.04237527772784233 musical:0.03155815601348877 :0.6164073385298252 -,:0.06290728598833084 to:0.06117306277155876 -:0.03384485840797424 much:0.03338741511106491 actly:0.02735891193151474 :0.7813284657895565 -confidence:0.11391355842351913 joy:0.07232511043548584 satisfaction:0.06652691960334778 pride:0.04531756043434143 conviction:0.04401956498622894 :0.6578972861170769 --:0.258629709482193 and:0.09148836135864258 con:0.047596756368875504 ­:0.03302120044827461 ad:0.028942689299583435 :0.5403212830424309 -he:0.5116755366325378 ho:0.34219059348106384 they:0.023367874324321747 wo:0.019552763551473618 it:0.015727337449789047 :0.0874858945608139 -of:0.8268662095069885 for:0.08201048523187637 ot:0.03801742196083069 Of:0.010007934644818306 ol:0.0071382904425263405 :0.035959658212959766 -ment:0.10633902996778488 pose:0.01770416647195816 stances:0.014316244050860405 ing:0.012923968955874443 ple:0.009369971230626106 :0.839346619322896 -young:0.11281472444534302 sick:0.05552424117922783 American:0.03948911651968956 medical:0.03789469599723816 many:0.03783038631081581 :0.7164468355476856 -ly:0.12622219324111938 far:0.0497300885617733 ily:0.049094218760728836 led:0.025546127930283546 it:0.021879078820347786 :0.7275282926857471 -is:0.30988091230392456 has:0.04156949371099472 was:0.040908943861722946 ,:0.03708150237798691 Is:0.02680206671357155 :0.5437570810317993 -not:0.3184242844581604 doubtless:0.05317218601703644 therefore:0.052160900086164474 certainly:0.0445757731795311 now:0.04095030948519707 :0.4907165467739105 -,:0.5057858824729919 .,:0.08445721119642258 .:0.03715421259403229 ,:0.020298108458518982 nd:0.009659082628786564 :0.34264550264924765 -Court:0.24296534061431885 court:0.17996856570243835 Senate:0.0657830461859703 Legislature:0.055903028696775436 courts:0.049318019300699234 :0.4060619994997978 -ing:0.13877679407596588 ter:0.10797706991434097 :0.04227999225258827 tion:0.03778200224041939 er:0.031725529581308365 :0.6414586119353771 --:0.1329226940870285 of:0.11953867226839066 in:0.07532799243927002 and:0.049164656549692154 being:0.031624581664800644 :0.591421402990818 -Mr:0.12352204322814941 John:0.0805654227733612 The:0.057919181883335114 Miss:0.03565378859639168 Senator:0.03219377622008324 :0.6701457872986794 -of:0.6330030560493469 the:0.11330593377351761 and:0.024794133380055428 or:0.024697965011000633 to:0.01844927854835987 :0.18574963323771954 -great:0.22940583527088165 good:0.1592613011598587 splendid:0.07952050119638443 wonderful:0.05072095990180969 marvelous:0.04214136675000191 :0.4389500357210636 -trees:0.1263660192489624 leaves:0.08283580094575882 apples:0.06354664266109467 weeds:0.06333615630865097 foliage:0.050389621406793594 :0.6135257594287395 -tho:0.16795462369918823 the:0.06606908142566681 Mr:0.04412863031029701 t:0.03270469605922699 a:0.03222837671637535 :0.6569145917892456 -present:0.2432301789522171 first:0.1885666698217392 above:0.12455877661705017 latter:0.04988829419016838 preceding:0.04659947007894516 :0.34715661033988 -certain:0.0237966850399971 re:0.02133682556450367 -:0.013745132833719254 large:0.013411913998425007 good:0.011210568249225616 :0.9164988743141294 -a:0.4556819498538971 his:0.3576667904853821 the:0.1500079333782196 your:0.004947795998305082 my:0.003960056230425835 :0.027735474053770304 -dry:0.13244594633579254 clear:0.12133471667766571 sunny:0.06354062259197235 warm:0.04428964853286743 cloudy:0.04304518178105354 :0.5953438840806484 -people:0.22356751561164856 Government:0.13190269470214844 President:0.10080379992723465 members:0.08619336783885956 citizens:0.03242470324039459 :0.4251079186797142 -other:0.4942242205142975 more:0.2551249563694 further:0.021779965609312057 others:0.01747285947203636 great:0.009514600038528442 :0.20188339799642563 -of:0.6226759552955627 for:0.16117924451828003 ,:0.04890057072043419 and:0.023629525676369667 lasting:0.02110203169286251 :0.12251267209649086 -the:0.9500203132629395 tho:0.016315804794430733 an:0.012271462939679623 tha:0.005400527734309435 no:0.0021931298542767763 :0.01379876141436398 -poor:0.2403237223625183 good:0.06325889378786087 peasant:0.06043930724263191 lowly:0.04240845516324043 humble:0.02414260059595108 :0.5694270208477974 -.:0.3168206512928009 ::0.11990103125572205 .:0.07629816234111786 ,:0.04143807291984558 30:0.027843933552503586 :0.41769814863801 -such:0.9378678798675537 said:0.02500344067811966 the:0.013014785014092922 any:0.007060727570205927 that:0.003950448241084814 :0.013102718628942966 -.:0.07071379572153091 feet:0.04873901233077049 hut:0.0482034906744957 knees:0.03688516840338707 house:0.022534100338816643 :0.7729244325309992 -in:0.34351152181625366 In:0.08371102064847946 ,:0.07672969251871109 commenced:0.07238508015871048 of:0.039220165461301804 :0.3844425193965435 -section:0.45708298683166504 part:0.25392213463783264 paragraph:0.05488221347332001 portion:0.029789553955197334 clause:0.029637610539793968 :0.174685500562191 -Dane:0.25738590955734253 ,:0.1289936900138855 Bear:0.08144659548997879 Soldier:0.053863927721977234 Shepherd:0.01606753095984459 :0.46224234625697136 -and:0.1836058646440506 with:0.156020849943161 for:0.040950506925582886 ie:0.02844669669866562 all:0.027042249217629433 :0.5639338325709105 -tho:0.521826982498169 the:0.23851414024829865 his:0.06442201137542725 in:0.009831340983510017 with:0.006967164110392332 :0.15843836078420281 -the:0.9 :0.1 -in:0.9649736881256104 In:0.03262294828891754 in:0.0008282989147119224 of:0.000587876362260431 on:0.00018061825539916754 :0.0008065700531005859 -the:0.6679582595825195 his:0.15869061648845673 her:0.08288820832967758 a:0.031006544828414917 tho:0.011364595033228397 :0.048091775737702847 -ied:0.030451901257038116 red:0.028262849897146225 ng:0.024619085714221 tried:0.017987005412578583 ived:0.01740536279976368 :0.8812737949192524 -that:0.4138377010822296 if:0.1078939437866211 as:0.10529844462871552 when:0.05135028064250946 though:0.04446132853627205 :0.27715830132365227 -lieutenant:0.710856556892395 vice:0.013958782888948917 sergeant:0.013925275765359402 deputy:0.012829079292714596 second:0.010526588186621666 :0.2379037169739604 -the:0.9 :0.1 -States:0.9839709401130676 State:0.0033580276649445295 Kingdom:0.003348482074216008 ,:0.0018397981766611338 Church:0.0005291776033118367 :0.006953574367798865 -the:0.9 :0.1 -ero:0.06467436254024506 u:0.030355079099535942 re:0.025650011375546455 iu:0.013058308511972427 ie:0.01294542383402586 :0.8533168146386743 -they:0.9775925278663635 she:0.008691844530403614 we:0.008255401626229286 he:0.001193855656310916 both:0.0009191748686134815 :0.003347195452079177 -he:0.6709487438201904 and:0.0949191302061081 ,:0.08723778277635574 he:0.017762431874871254 lie:0.014545704238116741 :0.11458620708435774 -banks:0.09556872397661209 bonds:0.05732600390911102 government:0.04260074347257614 corporations:0.04108337685465813 people:0.031651876866817474 :0.7317692749202251 -times:0.41708430647850037 nations:0.10865715146064758 Europe:0.043410852551460266 age:0.033160340040922165 ity:0.03098982572555542 :0.3666975237429142 -heinous:0.143055722117424 vile:0.08256673812866211 wicked:0.07216504216194153 evil:0.05775400251150131 terrible:0.057131800800561905 :0.5873266942799091 -come:0.8548499345779419 get:0.05634089559316635 go:0.05287681892514229 move:0.002501575043424964 be:0.0024766221176832914 :0.03095415374264121 -he:0.7547005414962769 we:0.09664202481508255 I:0.06835009157657623 ho:0.014537358656525612 ,:0.0068297479301691055 :0.058940235525369644 -bo:0.9049820303916931 be:0.06565678119659424 lie:0.007588649168610573 have:0.0013934088638052344 ho:0.000667516200337559 :0.01971161417895928 -of:0.8263645768165588 of:0.07166435569524765 in:0.01409293431788683 over:0.00871715135872364 ot:0.008688087575137615 :0.07047289423644543 -decree:0.06814475357532501 press:0.05958032235503197 pro:0.03794212266802788 .:0.031074196100234985 de:0.029262525960803032 :0.7739960793405771 -notice:0.333333820104599 approval:0.15949496626853943 license:0.09791728109121323 permission:0.04857145994901657 order:0.04548468440771103 :0.31519778817892075 -bis:0.9217807650566101 his:0.052626047283411026 the:0.00232263864018023 her:0.001254338538274169 its:0.0007536938064731658 :0.0212625166750513 -and:0.4148825407028198 which:0.28750795125961304 ,:0.1041100025177002 that:0.07654731720685959 It:0.015480385161936283 :0.10147180315107107 -.:0.056368205696344376 world:0.03801433742046356 -:0.032045233994722366 time:0.020049186423420906 question:0.019139954820275307 :0.8343830816447735 -which:0.6375438570976257 difficulty:0.05191126838326454 nothing:0.05140811204910278 whom:0.03381327912211418 before:0.01197863183915615 :0.2133448515087366 -liberties:0.47481226921081543 privileges:0.375179260969162 interests:0.049883123487234116 rights:0.023171959444880486 principles:0.016920339316129684 :0.0600330475717783 -to:0.9939969778060913 and:0.002939025405794382 ,:0.00040502985939383507 To:0.000367841828847304 on:0.0002476998488418758 :0.0020434252510312945 -its:0.37108996510505676 the:0.3550335168838501 all:0.0568382553756237 her:0.029300378635525703 other:0.028375238180160522 :0.1593626458197832 -a:0.9551683068275452 very:0.0059305764734745026 some:0.005248004570603371 another:0.004467745777219534 quite:0.003456504549831152 :0.025728861801326275 -;:0.2453182339668274 ;:0.05642184615135193 .:0.05189710855484009 ,:0.030376840382814407 8:0.016915790736675262 :0.5990701802074909 -the:0.732930600643158 a:0.13877013325691223 tho:0.09950431436300278 this:0.004591336939483881 tha:0.00240476056933403 :0.02179885422810912 -Kentucky:0.14992763102054596 College:0.05419108644127846 State:0.02766909822821617 University:0.02730158530175686 Ohio:0.02533148042857647 :0.7155791185796261 -tho:0.5417727828025818 the:0.4354047179222107 this:0.006945926230400801 that:0.002930450951680541 tha:0.002680798526853323 :0.010265323566272855 -had:0.27801713347435 has:0.20259401202201843 was:0.08514169603586197 once:0.05848846584558487 recently:0.02807190828025341 :0.34768678434193134 -ai:0.04080512002110481 lr:0.024380050599575043 u:0.019061336293816566 io:0.018915487453341484 c:0.015642767772078514 :0.8811952378600836 -In:0.9519445896148682 During:0.025939514860510826 Over:0.00715014198794961 For:0.006675409153103828 in:0.0011116050882264972 :0.0071787392953410745 -the:0.8308374285697937 their:0.07712890952825546 a:0.02146976627409458 tho:0.009179269894957542 these:0.008163487538695335 :0.05322113819420338 -with:0.2776176929473877 had:0.13594728708267212 carried:0.0786820501089096 fired:0.029802199453115463 carrying:0.026283299550414085 :0.45166747085750103 -,:0.16165493428707123 to:0.07318135350942612 have:0.04444222152233124 .:0.04091188311576843 and:0.035833824425935745 :0.6439757831394672 -conveyed:0.08841709792613983 paid:0.05786784738302231 presented:0.05700384080410004 delivered:0.055854711681604385 payable:0.05583804473280907 :0.6850184574723244 -Miss:0.9953547716140747 Mrs:0.0010687067406252027 Miss:0.0007801835890859365 and:0.00023920553212519735 Aunt:0.00016497980686835945 :0.002392152717220597 -con:0.08666574209928513 in:0.0756206214427948 have:0.05439242720603943 had:0.04980270564556122 en:0.038629718124866486 :0.6948887854814529 -on:0.20962460339069366 On:0.037197161465883255 i:0.02644047886133194 .:0.02518460713326931 on:0.020496509969234467 :0.6810566391795874 -of:0.9814163446426392 ol:0.005177489016205072 or:0.0027757484931498766 and:0.0015732129104435444 for:0.0014449174050241709 :0.007612287532538176 -plain:0.2652305066585541 clear:0.11293978244066238 simple:0.09235880523920059 easy:0.040269456803798676 concise:0.03901267424225807 :0.4501887746155262 -friends:0.13256561756134033 families:0.05013541504740715 relatives:0.04652953892946243 masters:0.03842886537313461 neighbors:0.03643781691789627 :0.6959027461707592 -decided:0.585995078086853 agreed:0.18262119591236115 resolved:0.03355074301362038 offered:0.023440828546881676 plans:0.017810288816690445 :0.15658186562359333 -great:0.23666340112686157 national:0.09352799504995346 greatest:0.03839849308133125 supreme:0.03307386115193367 imperial:0.0207136832177639 :0.5776225663721561 -they:0.9696874618530273 we:0.006521687842905521 people:0.0057244086638092995 others:0.0033691078424453735 I:0.002589064184576273 :0.012108269613236189 -cents:0.9849352836608887 dollars:0.004587828181684017 ,:0.0009548035450279713 and:0.00082073436351493 per:0.000559047213755548 :0.008142303035128862 --:0.07716648280620575 o:0.07483334839344025 ,:0.02636329084634781 io:0.023944534361362457 i:0.01978311501443386 :0.7779092285782099 -of:0.8626381158828735 from:0.0932326391339302 to:0.012356342747807503 than:0.0032570105977356434 by:0.0024515248369425535 :0.02606436680071056 -Chambers:0.9211776256561279 Chamber:0.03194135054945946 Moore:0.0013614218914881349 Tucker:0.0012863537995144725 Thompson:0.0012158690951764584 :0.04301737900823355 -his:0.6926718354225159 the:0.10883646458387375 an:0.1013541966676712 tho:0.013135126791894436 any:0.009383421391248703 :0.07461895514279604 -that:0.4057222306728363 this:0.19071701169013977 its:0.08288703858852386 the:0.07263661921024323 short:0.044987134635448456 :0.20304996520280838 -the:0.48156487941741943 this:0.2078341543674469 his:0.09634576737880707 a:0.06918201595544815 its:0.024805115535855293 :0.12026806734502316 -the:0.9 :0.1 -do:0.8513651490211487 will:0.026125416159629822 shall:0.02436264604330063 did:0.01498983521014452 need:0.013438327237963676 :0.06971862632781267 -the:0.9 :0.1 -wind:0.037313077598810196 ess:0.01119242887943983 night:0.010890314355492592 ng:0.010556533001363277 ation:0.009721438400447369 :0.9203262077644467 -the:0.9 :0.1 -are:0.8716092705726624 were:0.05042142793536186 wo:0.015331408008933067 is:0.01210489310324192 bo:0.010562335141003132 :0.039970665238797665 -crimes:0.11060599237680435 matters:0.05467645078897476 scandals:0.037701696157455444 schemes:0.03616971895098686 evils:0.0348261334002018 :0.7260200083255768 -and:0.5875372886657715 but:0.22136080265045166 as:0.0338219478726387 although:0.029260296374559402 while:0.015553250908851624 :0.11246641352772713 -true:0.5534107089042664 said:0.08284477889537811 known:0.05179598927497864 understood:0.03441040590405464 believed:0.025851836428046227 :0.251686280593276 -law:0.5246596336364746 laws:0.09242326021194458 treaty:0.09171731024980545 rules:0.022895697504281998 charter:0.019688257947564125 :0.24861584044992924 -question:0.11317330598831177 letter:0.11220427602529526 questions:0.08899584412574768 inquiry:0.04980368912220001 inquiries:0.048663537949323654 :0.5871593467891216 -the:0.9 :0.1 -cost:0.7884537577629089 price:0.10368412733078003 sum:0.021239114925265312 rate:0.013721048831939697 profit:0.009945814497768879 :0.06295613665133715 -she:0.42369335889816284 persons:0.22279679775238037 he:0.14229504764080048 her:0.07163496315479279 they:0.04377349838614464 :0.09580633416771889 -and:0.9111087918281555 which:0.03142472356557846 but:0.025556795299053192 they:0.008883883245289326 so:0.0057928673923015594 :0.017232938669621944 -it:0.31879934668540955 rates:0.26280200481414795 wages:0.15690797567367554 them:0.05518561974167824 pay:0.02776956371963024 :0.1785354893654585 -the:0.6032212376594543 this:0.09154842048883438 their:0.0382702499628067 your:0.03145686909556389 that:0.03036067634820938 :0.2051425464451313 -ad:0.2903113067150116 ex:0.12320956587791443 o:0.037279535084962845 increase:0.017926570028066635 al:0.015858842059969902 :0.5154141802340746 -.:0.9874359369277954 ::0.003985414747148752 .:0.00234676874242723 ..:0.0011518478859215975 !:0.0006146774394437671 :0.004465354257263243 -joined:0.6328774094581604 left:0.0567869208753109 entered:0.051962874829769135 commanded:0.03693930432200432 formed:0.016931945458054543 :0.2045015450567007 -gave:0.3477221131324768 picked:0.06025942414999008 packed:0.05306592956185341 took:0.052543364465236664 threw:0.04514961317181587 :0.44125955551862717 -even:0.3449898958206177 ,:0.14098384976387024 as:0.09395409375429153 what:0.08685415238142014 that:0.046286486089229584 :0.28693152219057083 -a:0.594245195388794 the:0.3301554322242737 severe:0.01213607657700777 complete:0.004054785240441561 general:0.0039062900468707085 :0.05550222052261233 -,:0.16442705690860748 and:0.12246842682361603 he:0.034892380237579346 on:0.029763033613562584 has:0.02666923590004444 :0.6217798665165901 -chances:0.34217822551727295 indications:0.33107662200927734 fears:0.07779040187597275 hopes:0.043052710592746735 expectations:0.02977902628481388 :0.17612301371991634 -Central:0.10215865075588226 Junction:0.095041424036026 Haven:0.0508403405547142 Rapids:0.04669208452105522 Pacific:0.03982672095298767 :0.6654407791793346 -he:0.9808026552200317 He:0.005627234000712633 it:0.0018288233550265431 she:0.0013290491187945008 lie:0.0007939074421301484 :0.009618330863304436 -a:0.8650942444801331 the:0.07542158663272858 no:0.01602061279118061 some:0.013722826726734638 an:0.003667817683890462 :0.026072911685332656 -,:0.19926071166992188 Representative:0.04501430690288544 representative:0.042931411415338516 Secretary:0.03199321776628494 President:0.02989228442311287 :0.6509080678224564 -a:0.8387704491615295 any:0.02200370840728283 my:0.021815281361341476 tho:0.021502889692783356 your:0.019996771588921547 :0.07591089978814125 -property:0.04132688790559769 sale:0.03270435705780983 lot:0.028773317113518715 .:0.026271048933267593 said:0.026136726140975952 :0.8447876628488302 -ing:0.8712191581726074 ed:0.09095790982246399 ly:0.015366855077445507 ber:0.0032196182291954756 ful:0.002806201111525297 :0.01643025758676231 -in:0.7563793063163757 at:0.11547863483428955 In:0.06698717921972275 into:0.05018725246191025 Into:0.0029361576307564974 :0.008031469536945224 -day:0.12424787133932114 year:0.11088322103023529 ter:0.06242839992046356 tion:0.047379206866025925 month:0.029743287712335587 :0.6253180131316185 -::0.6271336078643799 ::0.0991370901465416 that:0.09858854860067368 .:0.05361587926745415 ,:0.03195705637335777 :0.08956781774759293 -the:0.9 :0.1 -ex:0.15362869203090668 es:0.07445793598890305 unpre:0.055614739656448364 exper:0.046535346657037735 unex:0.037977349013090134 :0.631785936653614 -ness:0.16657163202762604 ment:0.11431369185447693 ing:0.11109064519405365 sum:0.06725297123193741 cess:0.05523348227143288 :0.4855375774204731 -.:0.1567186713218689 :0.13518010079860687 1:0.04768349230289459 ^:0.04516955092549324 ":0.03567091003060341 :0.579577274620533 -my:0.25872790813446045 the:0.1460580825805664 a:0.07124271988868713 being:0.07073227316141129 her:0.028639674186706543 :0.4245993420481682 -,:0.13325504958629608 the:0.09801128506660461 a:0.03647315129637718 and:0.029836244881153107 .:0.025989532470703125 :0.6764347366988659 -cultivation:0.08066441118717194 ,:0.06797303259372711 soil:0.06745737791061401 irrigation:0.03460516780614853 growth:0.0239160917699337 :0.7253839187324047 -been:0.9282118678092957 bo:0.014030973426997662 be:0.009591031819581985 yet:0.005370505154132843 not:0.0028708409518003464 :0.03992478083819151 -of:0.12243955582380295 for:0.03846864402294159 is:0.019068611785769463 to:0.01361392717808485 led:0.013035778887569904 :0.7933734823018312 -and:0.47553080320358276 thereby:0.09243030846118927 thus:0.08832935243844986 but:0.07073596119880676 by:0.05092311650514603 :0.22205045819282532 -the:0.6864358186721802 this:0.09267581254243851 tho:0.03938590735197067 a:0.03584844991564751 our:0.02252279967069626 :0.12313121184706688 -case:0.0535711832344532 ce:0.01408275868743658 st:0.012259958311915398 ie:0.009228140115737915 matter:0.00842739176005125 :0.9024305678904057 -—:0.9019123315811157 and:0.021001869812607765 And:0.008574647828936577 .:0.006749183405190706 —:0.006524946540594101 :0.05523702083155513 -increase:0.21638840436935425 reduce:0.17546376585960388 raise:0.047220658510923386 secure:0.04022790119051933 decrease:0.03787381574511528 :0.48282545432448387 -.:0.39113226532936096 and:0.21649643778800964 by:0.10158690065145493 ,:0.08329331129789352 that:0.07567094266414642 :0.13182014226913452 -he:0.1640487164258957 he:0.06555671989917755 who:0.040306784212589264 which:0.039356935769319534 He:0.03663339465856552 :0.6540974490344524 -was:0.2181784063577652 will:0.0884532704949379 is:0.06628187000751495 would:0.041565489023923874 Is:0.04138519987463951 :0.5441357642412186 -the:0.29781264066696167 very:0.03430904448032379 not:0.02471621334552765 all:0.02215266041457653 generally:0.020844344049692154 :0.6001650970429182 -as:0.6259638667106628 ,:0.05873904377222061 and:0.03944534435868263 now:0.02253616973757744 who:0.013798226602375507 :0.23951734881848097 -and:0.7377796173095703 or:0.2443964183330536 ,:0.006030678749084473 to:0.003129104617983103 nor:0.0015005649765953422 :0.007163616013713181 -had:0.8305115103721619 all:0.04023180902004242 first:0.010625816881656647 'd:0.010097202844917774 then:0.008222498930990696 :0.1003111619502306 -Savage:0.8312847018241882 Smith:0.010102517902851105 Butler:0.0029728892259299755 Johnson:0.002387164393439889 Wise:0.0020055503118783236 :0.15124717634171247 -,:0.32204708456993103 nearly:0.04479313641786575 again:0.04441874846816063 and:0.04092659056186676 almost:0.03715018555521965 :0.5106642544269562 -ment:0.04702971503138542 ple:0.03095174767076969 cess:0.02122350037097931 tant:0.01727437414228916 ing:0.01563320867717266 :0.8678874541074038 -,:0.9483768939971924 .:0.020778857171535492 ,:0.0035915228072553873 ;:0.003067495534196496 south:0.0023001227527856827 :0.02188510773703456 -collided:0.46387478709220886 along:0.03405830264091492 then:0.022228626534342766 and:0.020528847351670265 connected:0.015891430899500847 :0.44341800548136234 -the:0.4645940661430359 her:0.3007301092147827 a:0.09440835565328598 tho:0.00843645166605711 his:0.005964822601526976 :0.12586619472131133 -of:0.6989744305610657 for:0.07241570949554443 and:0.06531516462564468 or:0.03598092496395111 in:0.029409656301140785 :0.09790411405265331 -Sherman:0.023635178804397583 Jones:0.018205959349870682 Mills:0.013961988501250744 Smith:0.013874489814043045 Patton:0.013495717197656631 :0.9168266663327813 -it:0.3374580442905426 ignorance:0.14128988981246948 education:0.09251456707715988 knowledge:0.022448305040597916 science:0.022100741043686867 :0.38418845273554325 -movement:0.29360368847846985 operation:0.14811183512210846 motion:0.039622511714696884 movements:0.037699658423662186 work:0.03508596494793892 :0.4458763413131237 -or:0.519565224647522 and:0.4541289806365967 a:0.004561807960271835 then:0.00328303431160748 as:0.0023702101316303015 :0.01609074231237173 -John:0.08739425241947174 James:0.042494695633649826 William:0.04067056253552437 Charles:0.03870551660656929 Henry:0.035171736031770706 :0.7555632367730141 -men:0.02053074911236763 sur:0.013288391754031181 man:0.01033563632518053 team:0.010282805189490318 er:0.009906547144055367 :0.935655870474875 -.:0.6750359535217285 .:0.09745890647172928 erence:0.012749090790748596 ilton:0.003954270388931036 ,:0.0033449572511017323 :0.20745682157576084 -done:0.5841736197471619 said:0.13152678310871124 used:0.04217461124062538 made:0.03684538975358009 uttered:0.01859467849135399 :0.18668491765856743 -two:0.04653247445821762 three:0.033885687589645386 five:0.028498711064457893 four:0.026538651436567307 ten:0.020025204867124557 :0.8445192705839872 -,:0.6171688437461853 .:0.2553349435329437 and:0.03684575483202934 the:0.010036553256213665 .,:0.006920464802533388 :0.07369343983009458 -time:0.07010617107152939 ,:0.05700814351439476 rope:0.025216087698936462 or:0.019583025947213173 fall:0.017492761835455894 :0.8105938099324703 -negro:0.047510795295238495 tho:0.04573789983987808 young:0.04169474542140961 latter:0.034124668687582016 old:0.03217044472694397 :0.7987614460289478 -schemes:0.38869091868400574 plans:0.06783484667539597 methods:0.037253186106681824 proposals:0.023707561194896698 measures:0.014023257419466972 :0.4684902299195528 -Che:0.25595736503601074 Wall:0.01334973145276308 Cape:0.008748057298362255 White:0.00850785244256258 Wheat:0.00816256646066904 :0.7052744273096323 -Third:0.9253856539726257 Fourth:0.024475689977407455 Fifth:0.01738070882856846 third:0.00991880614310503 Second:0.006561359390616417 :0.016277781687676907 -menace:0.08435983955860138 presence:0.0789053812623024 scourge:0.052105195820331573 danger:0.03162899613380432 plague:0.027331950142979622 :0.7256686370819807 -is:0.8519383072853088 covers:0.03948172554373741 was:0.023417815566062927 Is:0.010452460497617722 represents:0.010277641005814075 :0.06443205010145903 -not:0.09493128210306168 without:0.07974065840244293 is:0.058107417076826096 then:0.05299375206232071 are:0.026601839810609818 :0.6876250505447388 -parents:0.453649640083313 friends:0.10069490969181061 mother:0.07639555633068085 father:0.07166644930839539 family:0.062241729348897934 :0.23535171523690224 -the:0.889470636844635 and:0.04281560704112053 The:0.01920919306576252 the:0.0038182756397873163 tho:0.0028617014177143574 :0.04182458599098027 -miles:0.8009134531021118 feet:0.030104925855994225 mi:0.015313283540308475 yards:0.011524048633873463 km:0.009637495502829552 :0.13250679336488247 -and:0.7820816040039062 &:0.1708967089653015 to:0.0076029347255826 or:0.005621755495667458 -:0.0043994770385324955 :0.029397519771009684 -had:0.6494617462158203 have:0.13836954534053802 were:0.10964193195104599 who:0.008507526479661465 also:0.00699918158352375 :0.08702006842941046 -of:0.9694607257843018 ot:0.009651130996644497 among:0.005398883018642664 to:0.0022578812204301357 and:0.0021316176280379295 :0.011099761351943016 -parallel:0.6268458366394043 line:0.0772821307182312 corner:0.07535644620656967 side:0.02385503239929676 intersection:0.014057529158890247 :0.18260302487760782 -of:0.8312600255012512 from:0.09758084267377853 in:0.04223157465457916 and:0.005200671497732401 ot:0.0033433823846280575 :0.020383503288030624 -to:0.9947145581245422 ot:0.0011200179578736424 ta:0.0006866403855383396 and:0.0006183928926475346 ti:0.0005250099347904325 :0.0023353807046078146 -make:0.1757817268371582 have:0.15549637377262115 find:0.05667054280638695 get:0.054833389818668365 take:0.03407667949795723 :0.5231412872672081 -as:0.25838589668273926 ,:0.25335249304771423 even:0.035742007195949554 that:0.03094269335269928 not:0.0293885488063097 :0.392188360914588 -in:0.7931128740310669 In:0.10117387771606445 out:0.01943737268447876 on:0.010746721178293228 at:0.00962968822568655 :0.06589946616441011 -will:0.7433674931526184 may:0.05819101259112358 can:0.039608754217624664 should:0.02549365721642971 would:0.011539915576577187 :0.12179916724562645 -o:0.1855563521385193 tho:0.14638203382492065 are:0.026079459115862846 bo:0.017132768407464027 were:0.016580749303102493 :0.6082686372101307 -s:0.06346870958805084 ers:0.028929848223924637 ,:0.017807718366384506 l:0.017337897792458534 interest:0.015934109687805176 :0.8565217163413763 -again:0.9510661363601685 also:0.02245447225868702 then:0.005896918009966612 further:0.003453199751675129 likewise:0.001590558560565114 :0.015538715058937669 -tooth:0.12862443923950195 whole:0.03358573839068413 afflicted:0.02544417791068554 broken:0.022471757605671883 affected:0.021879181265830994 :0.7679947055876255 -time:0.8570114374160767 years:0.0760982558131218 generation:0.026571886613965034 generations:0.00695449486374855 year:0.004907847847789526 :0.028456077445298433 -was:0.23581825196743011 in:0.06766429543495178 and:0.0578557550907135 ,:0.0531923808157444 were:0.0472155399620533 :0.5382537767291069 -and:0.4743315279483795 ,:0.10896855592727661 of:0.10467147827148438 -:0.026165824383497238 or:0.0255826897919178 :0.26027992367744446 -make:0.10450714826583862 publish:0.04366930201649666 give:0.04176398739218712 admit:0.041578397154808044 be:0.030443290248513222 :0.7380378749221563 -for:0.5504059195518494 a:0.06625522673130035 selling:0.049695614725351334 at:0.02277516946196556 price:0.020172622054815292 :0.2906954474747181 -it:0.21122179925441742 them:0.1372276097536087 disease:0.06816525012254715 anything:0.030387654900550842 which:0.023804936558008194 :0.5291927494108677 -The:0.8147788047790527 the:0.08695433288812637 His:0.02278848923742771 tho:0.016529344022274017 This:0.01515230443328619 :0.043796724639832973 -by:0.7692718505859375 on:0.04529966786503792 in:0.03139564394950867 from:0.026779668405652046 through:0.017692837864160538 :0.10956033132970333 -of:0.8969202637672424 from:0.027295848354697227 our:0.013409559614956379 by:0.006557498127222061 stricken:0.003949402365833521 :0.05186742777004838 -the:0.9 :0.1 -­:0.4542076289653778 -:0.33582738041877747 the:0.061702609062194824 our:0.02360161766409874 some:0.007746259681880474 :0.11691450420767069 -the:0.9141904711723328 this:0.01622811332345009 our:0.011490062810480595 tho:0.009144284762442112 that:0.005400136578828096 :0.043546931352466345 -as:0.218019500374794 so:0.18498152494430542 and:0.14840395748615265 such:0.0595272071659565 or:0.057704225182533264 :0.33136358484625816 -the:0.7206639647483826 tho:0.16148048639297485 very:0.00895632803440094 tha:0.004023765213787556 not:0.003177440259605646 :0.10169801535084844 -the:0.22815760970115662 a:0.05167652666568756 tho:0.04870707541704178 which:0.04019451141357422 this:0.027477407827973366 :0.6037868689745665 -old:0.472432941198349 aged:0.2434331327676773 elderly:0.24032600224018097 Old:0.00923091173171997 older:0.008473539724946022 :0.026103472337126732 -ever:0.6849700808525085 he:0.0772203877568245 recently:0.026323501020669937 being:0.026039734482765198 was:0.01836896874010563 :0.1670773271471262 -from:0.4054185748100281 ,:0.125960573554039 at:0.10409528762102127 every:0.04535207897424698 about:0.025600526481866837 :0.29357295855879784 -the:0.20162762701511383 any:0.12923935055732727 their:0.060667261481285095 a:0.0465615838766098 sufficient:0.024416832253336906 :0.5374873448163271 -habits:0.3058801293373108 customs:0.09653543680906296 conditions:0.028906576335430145 lives:0.026299161836504936 condition:0.020213287323713303 :0.5221654083579779 -made:0.018481150269508362 opened:0.012823048047721386 followed:0.012737207114696503 further:0.012359543703496456 been:0.012255574576556683 :0.9313434762880206 -will:0.1394955813884735 is:0.07420200854539871 has:0.0468999482691288 was:0.023135224357247353 i:0.021743211895227432 :0.6945240255445242 -of:0.9789817929267883 ot:0.0045773945748806 that:0.0031624874100089073 the:0.0022236453369259834 ol:0.00153261364903301 :0.00952206610236317 -the:0.9 :0.1 -The:0.6764017939567566 This:0.21371877193450928 That:0.06495082378387451 the:0.006855946034193039 The:0.005426820833235979 :0.0326458434574306 -Opera:0.9662860035896301 Court:0.01340341567993164 Jewel:0.0011310841655358672 Auction:0.001013460336253047 White:0.0007968864520080388 :0.01736914977664128 -of:0.9061699509620667 in:0.044313617050647736 ot:0.018869008868932724 for:0.005185376387089491 In:0.0037822327576577663 :0.021679813973605633 -the:0.9 :0.1 --:0.043938424438238144 -:0.0175375547260046 t:0.01632816344499588 :0.013286990113556385 *:0.010582451708614826 :0.8983264155685902 -troops:0.05543261021375656 own:0.03524307534098625 men:0.025917217135429382 forces:0.01939573884010315 guns:0.01880769245326519 :0.8452036660164595 -,:0.4737987518310547 of:0.14062117040157318 upon:0.03673013299703598 bonds:0.03632184863090515 certificates:0.025465983897447586 :0.2870621122419834 -was:0.18720151484012604 voted:0.10643862187862396 participated:0.08945498615503311 believed:0.05742250755429268 acted:0.05739797651767731 :0.5020843930542469 -her:0.9209415316581726 his:0.040233779698610306 her:0.014079678803682327 their:0.0035820018965750933 hers:0.0029146112501621246 :0.01824839669279754 -west:0.6065908670425415 east:0.24210552871227264 south:0.06333891302347183 north:0.052865803241729736 southeast:0.0060491724871098995 :0.029049715492874384 -ever:0.721555233001709 yet:0.1308670938014984 not:0.015773776918649673 thus:0.009148649871349335 never:0.00817270576953888 :0.11448254063725471 -one:0.8817020654678345 two:0.03545483946800232 three:0.019223351031541824 five:0.006740480195730925 four:0.0057395827025175095 :0.05113968113437295 -a:0.9749097228050232 the:0.006745419930666685 one:0.004089739639312029 some:0.00402472959831357 this:0.002361782593652606 :0.007868605433031917 -ty:0.03048037923872471 er:0.022167019546031952 ly:0.01933097094297409 pose:0.017404859885573387 ed:0.016267739236354828 :0.894349031150341 -little:0.09326568245887756 few:0.05903751030564308 boat:0.03270472586154938 well:0.015162346884608269 lot:0.01424486842006445 :0.7855848660692573 -a:0.5498320460319519 the:0.15769681334495544 tho:0.08689266443252563 this:0.027360431849956512 his:0.017459966242313385 :0.16075807809829712 -to:0.3548549711704254 ,:0.1337486207485199 shall:0.08931834250688553 and:0.04921909049153328 thereof:0.04490775987505913 :0.32795121520757675 -was:0.8456711769104004 Is:0.056762490421533585 is:0.03817466273903847 has:0.0192775409668684 Was:0.011236202903091908 :0.02887792605906725 -finest:0.26410117745399475 best:0.24220290780067444 most:0.06662517786026001 largest:0.049602702260017395 greatest:0.024283234030008316 :0.3531848005950451 -,:0.169247567653656 ;:0.11686242371797562 and:0.04880557954311371 to:0.03921638801693916 that:0.027949495241045952 :0.5979185458272696 -.:0.7038106322288513 tones:0.028656447306275368 ,:0.023669103160500526 and:0.02141447737812996 colors:0.012847515754401684 :0.20960182417184114 -and:0.8685132265090942 which:0.08926186710596085 that:0.011074910871684551 who:0.009054997004568577 aud:0.005945580080151558 :0.01614941842854023 -rather:0.9884528517723083 more:0.005414058919996023 other:0.00129682885017246 ,:0.0012756219366565347 better:0.0004189879400655627 :0.0031416505808010697 -of:0.6305063366889954 into:0.18282544612884521 on:0.048425815999507904 for:0.030227266252040863 in:0.01572265475988388 :0.09229248017072678 -a:0.5741361379623413 the:0.15839660167694092 this:0.0791318267583847 his:0.07797352224588394 that:0.01722056046128273 :0.0931413508951664 -In:0.4117690622806549 in:0.20255547761917114 of:0.06440500169992447 at:0.03696775808930397 near:0.027858776971697807 :0.2564439233392477 -are:0.9711454510688782 ,:0.005150169599801302 respectfully:0.004961397498846054 were:0.004503364209085703 is:0.002267156494781375 :0.011972461128607392 -the:0.04304918646812439 well:0.03546597808599472 a:0.031059935688972473 water:0.030215546488761902 stream:0.02810930274426937 :0.8321000505238771 -the:0.9 :0.1 -meat:0.07097547501325607 pigs:0.041159212589263916 corn:0.03450649976730347 chickens:0.02898578718304634 sheep:0.02784528210759163 :0.7965277433395386 -city:0.8773257732391357 county:0.03047313168644905 City:0.011117884889245033 community:0.0046052937395870686 state:0.004276302643120289 :0.07220161380246282 -secured:0.20524562895298004 reached:0.1209539994597435 made:0.08586596697568893 obtained:0.08274456113576889 attained:0.0725231021642685 :0.43266674131155014 -her:0.6473803520202637 his:0.07822787016630173 the:0.0714406967163086 tho:0.03239356726408005 Her:0.01020156778395176 :0.1603559460490942 -of:0.33736148476600647 and:0.11121828854084015 .:0.024396469816565514 coast:0.020864877849817276 ,:0.018240127712488174 :0.4879187513142824 -man:0.3889584541320801 ,:0.06180383637547493 man:0.0407014898955822 politician:0.03401476517319679 Democrat:0.030110301449894905 :0.4444111529737711 -King:0.5124830007553101 KING:0.30914151668548584 King:0.12380499392747879 king:0.0060080233961343765 KING:0.005428117699921131 :0.043134347535669804 -into:0.7662235498428345 Into:0.08887699991464615 by:0.04219735041260719 in:0.019972175359725952 as:0.012964959256350994 :0.06976496521383524 -wait:0.2699514925479889 pay:0.21392080187797546 ask:0.20208196341991425 settle:0.034181300550699234 look:0.03264212980866432 :0.24722231179475784 -building:0.35703033208847046 library:0.157969132065773 property:0.07356306910514832 site:0.06527689844369888 lot:0.028634577989578247 :0.3175259903073311 -satisfied:0.8938764929771423 there:0.012124392203986645 done:0.006161730270832777 quite:0.0049779340624809265 ready:0.004782166797667742 :0.07807728368788958 -a:0.08048118650913239 white:0.06035884469747543 the:0.05564650148153305 plain:0.04292178153991699 her:0.04074692726135254 :0.7198447585105896 -employed:0.2633068859577179 done:0.1526457518339157 required:0.06708081811666489 applied:0.042038556188344955 used:0.03820043429732323 :0.4367275536060333 -ing:0.2849590480327606 tion:0.04561201483011246 ment:0.03880448266863823 er:0.021778782829642296 men:0.01891942508518696 :0.5899262465536594 -taken:0.05751969665288925 had:0.05445626750588417 worn:0.040232960134744644 ,:0.034357983618974686 occupied:0.034011110663414 :0.7794219814240932 -closing:0.3815583884716034 closed:0.12355425953865051 open:0.02976871095597744 cash:0.018876705318689346 selling:0.015476918779313564 :0.43076501693576574 -It:0.277021199464798 America:0.07271230220794678 Washington:0.039256926625967026 This:0.03202914446592331 Camp:0.02992331236600876 :0.5490571148693562 -his:0.7168607115745544 a:0.10704611241817474 one:0.07966084033250809 the:0.06370296329259872 its:0.011634554713964462 :0.02109481766819954 -is:0.9278638362884521 Is:0.031255971640348434 was:0.012059275060892105 ls:0.005201360676437616 keeps:0.002638876438140869 :0.020980679895728827 -;:0.45698079466819763 street:0.28821665048599243 ,:0.13049475848674774 Street:0.018721438944339752 ::0.012840064242482185 :0.09274629317224026 -tho:0.7470152974128723 the:0.21408593654632568 o:0.0033114003017544746 th:0.0022924081422388554 The:0.002106844214722514 :0.031188113382086158 --:0.8859942555427551 arity:0.018259642645716667 -:0.006023343652486801 ­:0.004320796113461256 ug:0.0039050776977092028 :0.08149688434787095 -,:0.04768452048301697 not:0.045109353959560394 the:0.025421414524316788 and:0.024251360446214676 ever:0.02218944951891899 :0.8353439010679722 -into:0.6390341520309448 in:0.15152864158153534 through:0.1085011437535286 Into:0.035826656967401505 In:0.024038340896368027 :0.04107106477022171 -been:0.9933668971061707 be:0.0008148089400492609 bee:0.0006551133701577783 not:0.0006401744903996587 been:0.0005313325091265142 :0.003991673584096134 -middle:0.06856934726238251 back:0.043846894055604935 corner:0.035096392035484314 rear:0.03483881428837776 center:0.031447842717170715 :0.7862007096409798 -great:0.10544253140687943 ardent:0.08012469857931137 prominent:0.028223523870110512 staunch:0.027403661981225014 leading:0.02064894698560238 :0.7381566371768713 -policy:0.3123258650302887 system:0.10536079108715057 program:0.07433459907770157 programme:0.023420531302690506 method:0.022853637114167213 :0.46170457638800144 -idle:0.13437803089618683 dull:0.04683332517743111 little:0.011800235137343407 long:0.01088631246238947 bad:0.010489467531442642 :0.7856126287952065 -and:0.8216142058372498 or:0.1535644382238388 to:0.005374333821237087 ,:0.0018412078497931361 nor:0.0017445842968299985 :0.015861229971051216 -These:0.8148044347763062 The:0.1375821977853775 Those:0.020129729062318802 Both:0.00659053772687912 Such:0.0064538693986833096 :0.014439231250435114 -at:0.6338145732879639 that:0.06447452306747437 every:0.06262359768152237 all:0.050301048904657364 each:0.027303356677293777 :0.16148290038108826 -and:0.7399531006813049 ,:0.07920558750629425 which:0.04541454836726189 that:0.024238191545009613 but:0.01090229768306017 :0.10028627421706915 -street:0.043684061616659164 other:0.04304521158337593 telephone:0.025759443640708923 *:0.02045307494699955 such:0.020134001970291138 :0.8469242062419653 -horse:0.2609941065311432 horse:0.19234810769557953 inch:0.031615711748600006 cent:0.02560608834028244 foot:0.014873540960252285 :0.47456244472414255 -went:0.6141780018806458 came:0.2044997364282608 were:0.03327956050634384 got:0.01969427615404129 flew:0.01311655342578888 :0.11523187160491943 -at:0.4015710949897766 on:0.26438096165657043 and:0.041864823549985886 in:0.03696950897574425 At:0.026210207492113113 :0.2290034033358097 -in:0.24397113919258118 In:0.16306008398532867 that:0.125416100025177 if:0.059800583869218826 for:0.043218035250902176 :0.36453405767679214 -basis:0.172991544008255 foundation:0.06308067589998245 center:0.057618413120508194 base:0.03789270669221878 name:0.03679832071065903 :0.6316183395683765 -as:0.19432878494262695 of:0.1282562017440796 like:0.10253755748271942 than:0.04778258875012398 for:0.039167895913124084 :0.487926971167326 -its:0.34723910689353943 all:0.09239090234041214 their:0.0911688506603241 the:0.09104729443788528 a:0.06006202474236488 :0.31809182092547417 -had:0.7692652344703674 had:0.08644887804985046 was:0.010082363151013851 'd:0.008200054056942463 have:0.005065849516540766 :0.12093762075528502 -each:0.7694848775863647 either:0.09953311830759048 the:0.024058548733592033 one:0.016082562506198883 every:0.009260149672627449 :0.0815807431936264 -all:0.7694250345230103 everywhere:0.026876453310251236 always:0.022267255932092667 everything:0.017490210011601448 constantly:0.0060922568663954735 :0.15784878935664892 -be:0.8950027823448181 bo:0.06592848151922226 have:0.0032389326952397823 he:0.0027791198808699846 get:0.0026551822666078806 :0.030395501293241978 -of:0.9970467686653137 Of:0.001083721173927188 of:0.0007679297705180943 from:0.00017194986867252737 ot:0.00014137319521978498 :0.0007882573263486847 -the:0.6069298386573792 a:0.10606562346220016 tho:0.0856936126947403 t:0.007040663622319698 every:0.007003422826528549 :0.18726683873683214 -has:0.9809914231300354 had:0.0054811742156744 's:0.0022958144545555115 having:0.0019099812489002943 have:0.0018808413296937943 :0.007440765621140599 -pain:0.32210659980773926 ,:0.20839707553386688 pains:0.05576354265213013 sensation:0.027794573456048965 fever:0.024644125252962112 :0.36129408329725266 -J:0.1517513245344162 W:0.1119512990117073 A:0.08654820919036865 M:0.07252071052789688 E:0.0703616514801979 :0.506866805255413 -to:0.9522864818572998 in:0.028769973665475845 In:0.0058944812044501305 To:0.003246514592319727 at:0.0022148725111037493 :0.007587676169350743 -to:0.7093554139137268 my:0.1647752970457077 the:0.06170228496193886 a:0.02690010890364647 his:0.006795098073780537 :0.030471797101199627 -pen:0.18664099276065826 sword:0.08984524756669998 enemies:0.03802284970879555 guns:0.03530268743634224 enemy:0.02296030893921852 :0.6272279135882854 -women:0.35990485548973083 people:0.09040722995996475 ladies:0.07781387865543365 girls:0.05226314440369606 minds:0.020897135138511658 :0.39871375635266304 -public:0.29767492413520813 general:0.20994322001934052 majority:0.064339280128479 popular:0.042104970663785934 national:0.02242700196802616 :0.36351060308516026 -arrival:0.0760503038764 average:0.0428587831556797 o:0.038377903401851654 trial:0.02731575071811676 duty:0.02571064606308937 :0.7896866127848625 -had:0.41923704743385315 having:0.32257920503616333 had:0.024804802611470222 d:0.016855711117386818 have:0.010183394886553288 :0.2063398389145732 -a:0.8848837018013 the:0.06225384771823883 tho:0.037546366453170776 this:0.002081361599266529 A:0.0015548041556030512 :0.011679918272420764 -the:0.9 :0.1 -legislation:0.10235343873500824 law:0.09576898068189621 decree:0.05760049819946289 taxation:0.056429389864206314 fiat:0.050211645662784576 :0.6376360468566418 -the:0.9 :0.1 -Well:0.09363272041082382 If:0.07504545897245407 That:0.05323464050889015 But:0.051390141248703 Now:0.03682841360569 :0.689868625253439 -and:0.7185831665992737 &:0.07023459672927856 -:0.0696149617433548 ,:0.03299989178776741 to:0.021586759015917778 :0.08698062412440777 -Napoleon:0.6745122671127319 France:0.09447285532951355 Germany:0.07140440493822098 Austria:0.03820985555648804 England:0.033399809151887894 :0.08800080791115761 -manufactured:0.13108372688293457 raised:0.06314925104379654 bought:0.05474783852696419 made:0.04546284303069115 produced:0.04253798723220825 :0.6630183532834053 -.:0.4437229037284851 scene:0.05739203467965126 death:0.04536145552992821 sight:0.016629701480269432 wound:0.011182011105120182 :0.4257118934765458 -provided:0.36378881335258484 prescribed:0.22994780540466309 required:0.22370822727680206 permitted:0.02734227478504181 described:0.026636622846126556 :0.12857625633478165 -the:0.9 :0.1 -the:0.6379845142364502 their:0.14144663512706757 frequent:0.02130313217639923 careless:0.015649810433387756 repeated:0.015002354979515076 :0.16861355304718018 -,:0.14386510848999023 cheerful:0.09226590394973755 sad:0.035911813378334045 miserable:0.027854621410369873 glad:0.02572142519056797 :0.6743811275810003 -tho:0.9247542023658752 the:0.0707545205950737 tha:0.0004376533324830234 th:0.00031517245224677026 ho:0.0002110540372086689 :0.0035273972171125934 -rights:0.9060969948768616 right:0.015985501930117607 ies:0.002804321702569723 means:0.002073132200166583 privileges:0.0015765618300065398 :0.07146348746027797 -of:0.4379242956638336 for:0.31559956073760986 without:0.12331870943307877 to:0.025238538160920143 with:0.01935962215065956 :0.07855927385389805 -cog:0.6532239317893982 element:0.09035943448543549 tool:0.04568492993712425 part:0.034840650856494904 piece:0.03221243992447853 :0.14367861300706863 -the:0.9 :0.1 -she:0.4970192313194275 we:0.08902968466281891 I:0.07253125309944153 would:0.021525530144572258 he:0.017224809154868126 :0.3026694916188717 -he:0.5140762329101562 ho:0.16104981303215027 we:0.080121710896492 I:0.018980203196406364 Columbus:0.018768223002552986 :0.20700381696224213 -the:0.9 :0.1 -lungs:0.7853946685791016 lung:0.13476160168647766 patient:0.01436540111899376 body:0.01255558617413044 liver:0.00495497602969408 :0.0479677664116025 -.:0.4193100035190582 for:0.02586008980870247 and:0.023129085078835487 ,:0.017568206414580345 with:0.016243675723671913 :0.49788893945515156 -the:0.6733596324920654 this:0.10559356957674026 such:0.09785759449005127 assessment:0.03498362749814987 said:0.022860288619995117 :0.06534528732299805 -and:0.1000766009092331 west:0.04011450707912445 at:0.03023332916200161 n:0.027998855337500572 or:0.02717842347919941 :0.7743982840329409 -ho:0.3658698499202728 was:0.35611048340797424 he:0.1348838359117508 we:0.013023382984101772 Ho:0.012747649103403091 :0.11736479867249727 -Carolina:0.9265397191047668 American:0.019469423219561577 Dakota:0.017112107947468758 Shore:0.002920289523899555 Atlantic:0.0028680695686489344 :0.03109039063565433 -to:0.7393469214439392 for:0.16452015936374664 in:0.05510414019227028 of:0.006697142496705055 In:0.006360404193401337 :0.027971232309937477 -cents:0.18175941705703735 fares:0.0873386338353157 minutes:0.07624758780002594 hours:0.05986351519823074 trains:0.05563421547412872 :0.5391566306352615 -the:0.1467883139848709 with:0.09567670524120331 ,:0.08685572445392609 and:0.07996032387018204 a:0.06714218854904175 :0.5235767439007759 -its:0.14733003079891205 ,:0.10631871223449707 so:0.0345078781247139 in:0.029736163094639778 to:0.02851482667028904 :0.6535923890769482 -man:0.05402036011219025 lie:0.023333324119448662 had:0.020426908507943153 men:0.012745188549160957 er:0.009103130549192429 :0.8803710881620646 -of:0.6777511239051819 in:0.1855044960975647 In:0.06087683513760567 for:0.02201281301677227 about:0.006605204194784164 :0.047249527648091316 -terrible:0.050552815198898315 dreadful:0.030480168759822845 horrible:0.027544917538762093 peculiar:0.027063384652137756 great:0.022614482790231705 :0.8417442310601473 -makes:0.16319966316223145 made:0.05626201629638672 will:0.04119244962930679 has:0.029449332505464554 would:0.02461654134094715 :0.6852799970656633 -tho:0.7798227071762085 the:0.17265067994594574 those:0.004883185029029846 these:0.002574585611000657 all:0.002044870052486658 :0.0380239721853286 -having:0.28791725635528564 who:0.042497288435697556 which:0.037813808768987656 Congress:0.021289709955453873 whom:0.016286976635456085 :0.5941949598491192 -the:0.26312336325645447 tho:0.12978197634220123 our:0.05503753200173378 Captain:0.05064592510461807 Miss:0.015837980434298515 :0.48557322286069393 --:0.14211007952690125 ,:0.0649782195687294 h:0.040189098566770554 .:0.039216917008161545 o:0.03215008229017258 :0.6813556030392647 -part:0.624301552772522 corner:0.14883673191070557 section:0.027823803946375847 branch:0.01932571642100811 state:0.014096721075475216 :0.1656154738739133 -be:0.9459596872329712 bo:0.030578847974538803 lie:0.004873605910688639 he:0.003084480529651046 are:0.001072115614078939 :0.014431262738071382 -the:0.8970488905906677 tho:0.05368749052286148 this:0.005168466828763485 a:0.0033441719133406878 The:0.002964052138850093 :0.03778692800551653 -to:0.48928382992744446 for:0.37741410732269287 at:0.03395386040210724 of:0.01074774470180273 with:0.010242237709462643 :0.07835821993649006 -the:0.6127673983573914 tho:0.34245362877845764 its:0.011599704623222351 this:0.007400109898298979 his:0.003187112510204315 :0.022592045832425356 -tion:0.3470505475997925 ment:0.10579387843608856 ty:0.03309042751789093 t:0.00823028665035963 cons:0.006891545373946428 :0.49894331442192197 -,:0.28895458579063416 thing:0.18018107116222382 task:0.029035164043307304 factor:0.0268249548971653 step:0.023556014522910118 :0.4514482095837593 -Examples:0.06363844126462936 Pieces:0.05760873109102249 Hundreds:0.04406588897109032 Some:0.024546388536691666 veins:0.02342304214835167 :0.7867175079882145 -of:0.30917856097221375 .:0.21168242394924164 's:0.1646036058664322 and:0.07633666694164276 ,:0.0719173327088356 :0.16628140956163406 -of:0.9916722178459167 ot:0.003423403250053525 or:0.0012492641108110547 ol:0.0007158734370023012 Of:0.00044363285996951163 :0.0024956084962468594 -by:0.9228055477142334 in:0.03868315741419792 at:0.009367004036903381 By:0.006651214323937893 In:0.004087659530341625 :0.01840541698038578 -,:0.1848708838224411 alone:0.035891253501176834 ports:0.03363507613539696 Alaska:0.03204181417822838 .:0.02727118693292141 :0.6862897854298353 -itable:0.7798293828964233 ging:0.02287924848496914 d:0.00954318605363369 id:0.009199744090437889 ged:0.00885624811053276 :0.16969219036400318 -and:0.16050004959106445 to:0.1503795087337494 payable:0.04912535473704338 by:0.048592451959848404 in:0.022461408749222755 :0.5689412262290716 -from:0.6219005584716797 to:0.06086769700050354 over:0.05035432428121567 off:0.04667097330093384 into:0.04322979226708412 :0.17697665467858315 -the:0.9571424722671509 tho:0.028126588091254234 tha:0.004712705034762621 th:0.0015406492166221142 our:0.0009081295575015247 :0.007569455832708627 -,:0.4328582286834717 (:0.3776021897792816 .:0.10626358538866043 (.:0.01801123283803463 (:0.009885826148092747 :0.0553789371624589 -the:0.6365286707878113 a:0.10622245073318481 another:0.03068152815103531 an:0.01608881726861 his:0.008298343978822231 :0.20218018908053637 -soil:0.22299262881278992 hay:0.10538982599973679 manure:0.08076527714729309 stock:0.07715294510126114 grass:0.06993292272090912 :0.44376640021800995 -it:0.5446394681930542 It:0.42519518733024597 it:0.00810157135128975 It:0.004801858216524124 there:0.0017996153328567743 :0.015462299576029181 -him:0.9244601726531982 them:0.03824716433882713 her:0.0032025694381445646 himself:0.0022655257489532232 it:0.0019358989084139466 :0.02988866891246289 -be:0.46794602274894714 have:0.09484115988016129 learn:0.028138412162661552 the:0.023796075955033302 get:0.019060058519244194 :0.3662182707339525 -in:0.08606396615505219 for:0.07859241962432861 and:0.07265478372573853 thereby:0.04791277274489403 duly:0.03781640902161598 :0.6769596487283707 -!":0.29778534173965454 ?":0.2301025539636612 .":0.1816108375787735 .:0.053661689162254333 !:0.03947176784276962 :0.1973678097128868 -'s:0.6538048386573792 War:0.08216593414545059 the:0.06016865745186806 .:0.0096470657736063 ':0.00737246498465538 :0.18684103898704052 -could:0.6945879459381104 would:0.16084198653697968 can:0.05126640200614929 might:0.03869665414094925 did:0.010296041145920753 :0.04431097023189068 -very:0.2109757363796234 so:0.15992097556591034 standing:0.028933584690093994 sitting:0.02550653927028179 not:0.021998396143317223 :0.5526647679507732 -the:0.9 :0.1 -ing:0.35381051898002625 ment:0.23839953541755676 tor:0.03528069332242012 er:0.024384304881095886 pose:0.02034115605056286 :0.3277837913483381 -nearer:0.40927696228027344 near:0.3842865824699402 up:0.047889336943626404 in:0.02937178872525692 close:0.02718154340982437 :0.10199378617107868 -taxes:0.513813316822052 property:0.06259693950414658 bonds:0.031283147633075714 premises:0.02307671494781971 debts:0.016762318089604378 :0.3524675630033016 -layer:0.7140576243400574 layers:0.09931644797325134 pile:0.015854695811867714 piece:0.014310210943222046 section:0.008814163506031036 :0.1476468574255705 -the:0.9 :0.1 -in:0.9240696430206299 In:0.05557117238640785 for:0.006346314679831266 under:0.0018176670419052243 within:0.00101544801145792 :0.011179754859767854 -giving:0.11877018213272095 providing:0.08926212787628174 Admiral:0.04930148273706436 Commodore:0.04789600521326065 Captain:0.03305578976869583 :0.6617144122719765 -corner:0.35557353496551514 line:0.2106890231370926 end:0.07977764308452606 side:0.07013466954231262 edge:0.04189246520400047 :0.24193266406655312 -their:0.5262900590896606 the:0.15870070457458496 its:0.037287481129169464 all:0.01761389523744583 tho:0.011015264317393303 :0.2490925956517458 -constitu:0.18956252932548523 -:0.06495173275470734 na:0.040916405618190765 :0.018310626968741417 ra:0.015507353469729424 :0.6707513518631458 -ly:0.03593266382813454 able:0.02858753874897957 sat:0.026893796399235725 fort:0.025808492675423622 ful:0.02263210155069828 :0.8601454067975283 -fever:0.03211978077888489 er:0.02974594198167324 ing:0.02442196197807789 ed:0.02205432951450348 party:0.014843171462416649 :0.8768148142844439 -the:0.1825045347213745 u:0.06798987090587616 i:0.06797976046800613 ,:0.05127605050802231 in:0.041657205671072006 :0.5885925777256489 -appointed:0.31824642419815063 designated:0.09328629821538925 notified:0.07296118140220642 named:0.0351790115237236 certified:0.03197045996785164 :0.44835662469267845 -but:0.611137330532074 and:0.27227792143821716 which:0.03539392352104187 who:0.02814147248864174 he:0.017998110502958298 :0.035051241517066956 -say:0.16743436455726624 believe:0.1615200638771057 know:0.13973316550254822 said:0.06199534237384796 think:0.056296657770872116 :0.41302040591835976 -the:0.9 :0.1 -they:0.3342973589897156 names:0.06378607451915741 medals:0.025544142350554466 warrants:0.022808201611042023 convictions:0.01607278361916542 :0.5374914389103651 -hills:0.09158223122358322 streams:0.08843223005533218 streets:0.07227663695812225 trees:0.05056286230683327 woods:0.031671442091464996 :0.6654745973646641 -regard:0.32714736461639404 see:0.06937558948993683 perceive:0.033061958849430084 know:0.022645052522420883 take:0.015143045224249363 :0.5326269892975688 -from:0.2326691448688507 of:0.21572519838809967 for:0.08245442807674408 ,:0.07181276381015778 .:0.047473758459091187 :0.3498647063970566 -the:0.20391924679279327 tho:0.20197567343711853 an:0.07605871558189392 th:0.030889518558979034 -:0.02934977039694786 :0.4578070752322674 -.:0.3220219314098358 if:0.2876758277416229 when:0.19384169578552246 as:0.022862130776047707 ;:0.015371173620223999 :0.1582272406667471 -to:0.9950072765350342 to:0.002405378967523575 To:0.0012938296422362328 ta:0.0003154039441142231 ot:0.0001276209222851321 :0.0008504899888066575 -,:0.1627260148525238 continues:0.15932846069335938 ceases:0.08214394748210907 is:0.02995109371840954 proceeds:0.028259236365556717 :0.5375912468880415 -the:0.9 :0.1 -was:0.43660968542099 remained:0.06015501543879509 man:0.054826222360134125 one:0.03746157884597778 soldier:0.02017555758357048 :0.39077194035053253 -stain:0.16189588606357574 paint:0.1428893804550171 work:0.05803614482283592 dust:0.0441599041223526 brush:0.02945810742676258 :0.5635605771094561 -money:0.035179805010557175 deposits:0.03351496905088425 reserves:0.03253919631242752 operations:0.027653319761157036 business:0.026227692142128944 :0.8448850177228451 -illness:0.15666764974594116 sickness:0.11424137651920319 suffering:0.09317976236343384 life:0.070614293217659 ,:0.05349797382950783 :0.511798944324255 -the:0.9 :0.1 -hail:0.3816389739513397 be:0.3086162209510803 come:0.18851734697818756 arrive:0.01085528451949358 ,:0.008968631736934185 :0.10140354186296463 -On:0.3552587330341339 During:0.19887465238571167 In:0.13279606401920319 After:0.10421872138977051 At:0.05781470239162445 :0.15103712677955627 -,:0.16934464871883392 advance:0.09557822346687317 February:0.05842551961541176 March:0.05766042321920395 June:0.039976563304662704 :0.5790146216750145 -Salt:0.7469751238822937 the:0.19814589619636536 Silver:0.00734460074454546 Clear:0.002795557724311948 Indian:0.002555685117840767 :0.04218313633464277 -later:0.3061939775943756 out:0.044900957494974136 there:0.03537506237626076 going:0.03440653905272484 here:0.02346908487379551 :0.5556543786078691 -,:0.5116475224494934 which:0.20684102177619934 and:0.09840687364339828 that:0.0777214840054512 but:0.029344355687499046 :0.07603874243795872 -ment:0.2821153402328491 tion:0.15888932347297668 ly:0.07806599140167236 ing:0.031584348529577255 ed:0.026059087365865707 :0.42328590899705887 -day:0.09158905595541 crop:0.062477611005306244 stock:0.060157410800457 stocks:0.03732733428478241 commodities:0.025219440460205078 :0.7232291474938393 -least:0.7442336678504944 once:0.07884221524000168 last:0.030957672744989395 first:0.02644583396613598 most:0.01653786189854145 :0.10298274829983711 -carried:0.08970396965742111 directed:0.04301626607775688 whispered:0.04058162868022919 shouted:0.03372565284371376 brought:0.028190476819872856 :0.7647820059210062 -South:0.6395694017410278 East:0.07255420833826065 North:0.06800312548875809 south:0.05072534456849098 West:0.042650990188121796 :0.12649692967534065 -I:0.5325613617897034 It:0.20134079456329346 We:0.12505720555782318 They:0.02451670542359352 This:0.020883813500404358 :0.09564011916518211 -the:0.6712843179702759 tho:0.23219239711761475 this:0.05384672060608864 a:0.017787983641028404 that:0.007489732000976801 :0.01739884866401553 -work:0.15339404344558716 do:0.056431591510772705 wait:0.04361003264784813 go:0.034046221524477005 keep:0.033246759325265884 :0.6792713515460491 -club:0.17039331793785095 race:0.12155613303184509 ,:0.06432069838047028 .:0.0490468367934227 that:0.044272322207689285 :0.5504106916487217 -from:0.8062835335731506 to:0.03191858157515526 From:0.01367209106683731 off:0.01312271598726511 into:0.011727843433618546 :0.12327523436397314 -brought:0.6496568322181702 given:0.040439777076244354 promised:0.03224373608827591 shown:0.028110351413488388 proved:0.01616663485765457 :0.2333826683461666 -but:0.2336980700492859 and:0.21195556223392487 we:0.18777917325496674 which:0.06796735525131226 as:0.03442700207233429 :0.26417283713817596 -prosperity:0.11962179094552994 blessings:0.06799918413162231 relief:0.03535753861069679 things:0.03249615803360939 good:0.028992734849452972 :0.7155325934290886 -purpose:0.48504966497421265 task:0.13741473853588104 cause:0.04945765435695648 work:0.02956889569759369 mission:0.01998664252460003 :0.2785224039107561 -the:0.7177284955978394 our:0.07853617519140244 a:0.04431960731744766 this:0.039136093109846115 its:0.027599330991506577 :0.09268029779195786 -in:0.5343087315559387 In:0.40979844331741333 on:0.011697261594235897 at:0.004700912162661552 from:0.004364565946161747 :0.03513008542358875 -of:0.943181574344635 for:0.005809243302792311 ol:0.005484404508024454 in:0.004882914945483208 on:0.004450276028364897 :0.03619158687070012 -little:0.06889978796243668 uld:0.037062425166368484 few:0.03636869788169861 good:0.03336895629763603 -:0.023542622104287148 :0.800757510587573 -the:0.254876971244812 an:0.14095927774906158 tho:0.12882903218269348 be:0.09678098559379578 a:0.06454164534807205 :0.3140120878815651 -the:0.27989450097084045 to:0.03048493154346943 help:0.027721133083105087 save:0.024241048842668533 a:0.01840984635055065 :0.6192485392093658 -the:0.9 :0.1 -at:0.9917774200439453 at:0.003420082153752446 At:0.0027120874729007483 on:0.00042970257345587015 in:0.00013043207582086325 :0.0015302756801247597 -filled:0.26598992943763733 stocked:0.253030925989151 furnished:0.07838576287031174 supplied:0.05589890480041504 packed:0.04448772221803665 :0.30220675468444824 -difficult:0.27720609307289124 great:0.12949390709400177 hard:0.0494576171040535 heavy:0.04625987634062767 large:0.031501248478889465 :0.46608125790953636 -In:0.44336751103401184 with:0.19703924655914307 in:0.12755340337753296 With:0.06572239100933075 in:0.02174331061542034 :0.14457413740456104 -later:0.4445359706878662 rather:0.1528220772743225 sooner:0.13567644357681274 longer:0.09249170869588852 earlier:0.09226705133914948 :0.08220674842596054 -Times:0.06587222963571548 Gazette:0.05045957863330841 daily:0.03856055065989494 Herald:0.03402012586593628 City:0.03060183860361576 :0.7804856766015291 -General:0.24545669555664062 Major:0.12448040395975113 Gen:0.05835659056901932 Captain:0.044254422187805176 Colonel:0.036619797348976135 :0.4908320903778076 -a:0.49626433849334717 the:0.4670351445674896 his:0.008065403439104557 one:0.00540535245090723 another:0.003060482209548354 :0.020169278839603066 -was:0.3596157431602478 had:0.16689541935920715 ,:0.04478643089532852 finally:0.025892727077007294 ho:0.023140646517276764 :0.37966903299093246 -any:0.4502705931663513 a:0.1885334998369217 the:0.12055124342441559 some:0.03567228093743324 this:0.030938101932406425 :0.17403428070247173 -and:0.7171515226364136 ,:0.11455344408750534 or:0.04810227453708649 by:0.027164960280060768 to:0.023956215009093285 :0.06907158344984055 -i:0.049997568130493164 t:0.03191697597503662 l:0.02615673653781414 d:0.023517319932579994 e:0.017497409135103226 :0.8509139902889729 -,:0.20206867158412933 .:0.06463657319545746 and:0.05917523056268692 to:0.04144906625151634 *:0.028407374396920204 :0.6042630840092897 -i:0.045128822326660156 ot:0.03334563598036766 n:0.03249199315905571 nt:0.028822846710681915 io:0.02729899436235428 :0.8329117074608803 -of:0.9476506114006042 ot:0.03522416576743126 ol:0.005941023584455252 at:0.001206984044983983 in:0.001141490531153977 :0.008835724671371281 -Cutting:0.977245032787323 Cutter:0.001138345804065466 White:0.000613778829574585 He:0.0006134967552497983 Brown:0.0005788717535324395 :0.019810474070254713 -,:0.0884149968624115 so:0.06996937096118927 as:0.06179511547088623 are:0.05985584855079651 of:0.04606425762176514 :0.6739004105329514 -Southern:0.11780576407909393 Roman:0.06911502033472061 Christian:0.050492480397224426 southern:0.04732309281826019 Indian:0.035952962934970856 :0.67931067943573 -said:0.026994241401553154 believed:0.024202581495046616 hoped:0.020377498120069504 understood:0.018996180966496468 thought:0.014617197215557098 :0.8948123008012772 -distribution:0.15152573585510254 amount:0.10147037357091904 supply:0.07570541650056839 rate:0.06148235872387886 season:0.037200041115283966 :0.5726160742342472 -whose:0.6812459230422974 her:0.11410609632730484 tho:0.09357742965221405 wo:0.023828893899917603 the:0.00832115113735199 :0.07892050594091415 -.:0.38768622279167175 No:0.2916802167892456 ,:0.25078284740448 Number:0.011538518592715263 .:0.009846610948443413 :0.048465583473443985 -in:0.944076418876648 In:0.033567171543836594 about:0.015452898107469082 around:0.0008541965507902205 in:0.0007856225129216909 :0.005263692408334464 -the:0.6145031452178955 natural:0.12629057466983795 spontaneous:0.02644592523574829 pure:0.01590355858206749 voluntary:0.012247957289218903 :0.20460883900523186 -Who:0.9277843832969666 who:0.03973078727722168 Who:0.007702899165451527 He:0.004763883538544178 Wh:0.0032855705358088017 :0.01673247618600726 -it:0.6873425245285034 which:0.035810016095638275 rock:0.03566884249448776 what:0.030866749584674835 this:0.02417515031993389 :0.18613671697676182 -of:0.25954097509384155 on:0.17662329971790314 in:0.14202697575092316 from:0.11402896791696548 and:0.08766230940818787 :0.2201174721121788 -has:0.5232895612716675 had:0.44411855936050415 was:0.005481804721057415 ,:0.0026305699720978737 :0.0015947774518281221 :0.02288472722284496 -of:0.9753410816192627 and:0.014618121087551117 or:0.0023242440074682236 ot:0.0017041952814906836 water:0.0005238046869635582 :0.005488553317263722 -tobacco:0.3168179392814636 cigars:0.09934013336896896 ,:0.09577037394046783 liquor:0.047106411308050156 gin:0.044683877378702164 :0.39628126472234726 -are:0.9922956228256226 were:0.0018899014685302973 is:0.0013586289715021849 lie:0.0007174104684963822 exist:0.0005158997373655438 :0.003222536528483033 -,:0.21120359003543854 .:0.12029474228620529 -:0.06687165796756744 ;:0.01473321858793497 or:0.01021523680537939 :0.5766815543174744 -of:0.7646451592445374 in:0.1944998800754547 In:0.010422425344586372 throughout:0.005106080323457718 ol:0.004015130922198296 :0.02131132408976555 -and:0.7627934217453003 ,:0.10379120707511902 .:0.03418077901005745 &:0.026580924168229103 of:0.019575148820877075 :0.05307851918041706 -of:0.9861772656440735 for:0.0054052588529884815 ot:0.0024240990169346333 with:0.0005624372861348093 the:0.00044534524204209447 :0.004985593957826495 -and:0.5077944993972778 with:0.07642227411270142 but:0.029010578989982605 by:0.02882387861609459 on:0.025487467646598816 :0.33246130123734474 -,:0.09436621516942978 in:0.053100187331438065 o:0.05237790197134018 ine:0.021846769377589226 ese:0.019568216055631638 :0.7587407100945711 -have:0.559529721736908 not:0.04528879001736641 yet:0.027127766981720924 had:0.019811395555734634 a:0.01480734534561634 :0.33343498036265373 -the:0.9319273233413696 tho:0.030036969110369682 two:0.0026803540531545877 out:0.002599935280159116 a:0.0021312679164111614 :0.030624150298535824 -s:0.15229851007461548 es:0.03262969106435776 cs:0.014966119080781937 ts:0.014793381094932556 o:0.014163313433527946 :0.7711489852517843 -It:0.46414172649383545 it:0.44122612476348877 there:0.06309381127357483 this:0.007994487881660461 There:0.006901637651026249 :0.016642211936414242 -premises:0.30190765857696533 mortgage:0.21478049457073212 same:0.04150828719139099 matter:0.0403396300971508 property:0.0334247425198555 :0.36803918704390526 -for:0.759154736995697 under:0.0907553881406784 to:0.08075609058141708 in:0.010929315350949764 by:0.0067468672059476376 :0.05165760172531009 -who:0.5856213569641113 to:0.24052011966705322 that:0.05750920996069908 which:0.017411425709724426 would:0.01173020526766777 :0.08720768243074417 -line:0.04159122332930565 dc:0.028855469077825546 -:0.019734090194106102 front:0.016397718340158463 lc:0.014167768880724907 :0.8792537301778793 -competent:0.08269557356834412 single:0.06465791165828705 honest:0.037633031606674194 reasonable:0.03426824137568474 other:0.030143629759550095 :0.7506016120314598 -the:0.9 :0.1 -paper:0.062315769493579865 day:0.04660066217184067 grave:0.029538555070757866 whim:0.02873317152261734 record:0.027526922523975372 :0.8052849192172289 -little:0.7098822593688965 short:0.1813013255596161 long:0.0464182011783123 good:0.012540511786937714 few:0.007458774838596582 :0.04239892726764083 -from:0.876911461353302 in:0.018162023276090622 the:0.01777035742998123 to:0.012662230059504509 From:0.008822303265333176 :0.06567162461578846 -Warren:0.030643092468380928 Greene:0.020540433004498482 Franklin:0.01950526051223278 Clark:0.01447522733360529 Main:0.013495175167918205 :0.9013408115133643 -Accessories:0.039328861981630325 others:0.022218115627765656 furniture:0.0218915194272995 towels:0.01939699426293373 everything:0.018010856583714485 :0.8791536521166563 -week:0.2492562085390091 day:0.22848355770111084 year:0.14272727072238922 month:0.1175447404384613 hour:0.08416678011417389 :0.17782144248485565 -Secretary:0.27783602476119995 Officer:0.08899128437042236 Commissioner:0.07722537219524384 .:0.052466925233602524 Engineer:0.04593557119369507 :0.45754482224583626 -of:0.9905587434768677 more:0.0042815362103283405 in:0.0006522865151055157 ot:0.0005505825974978507 ,:0.0004892762517556548 :0.0034675749484449625 -since:0.42938897013664246 when:0.23111875355243683 ,:0.06359555572271347 that:0.05103627219796181 after:0.049662213772535324 :0.1751982346177101 -and:0.1176135390996933 ,:0.10576505213975906 Carolina:0.06151103228330612 or:0.05677729472517967 by:0.043467774987220764 :0.6148653067648411 -.,:0.5360773205757141 ,:0.2136647254228592 .:0.16505487263202667 ..:0.01822253316640854 ,.:0.01698313094675541 :0.049997417256236076 -i:0.680418848991394 ending:0.048688892275094986 iring:0.01974332518875599 ing:0.011763300746679306 o:0.01121313963085413 :0.22817249316722155 -in:0.35914093255996704 for:0.12468477338552475 join:0.1050105169415474 with:0.04837258160114288 to:0.03337693586945534 :0.3294142596423626 -for:0.37749210000038147 by:0.19977913796901703 in:0.19059422612190247 of:0.09715531021356583 after:0.015868354588747025 :0.11911087110638618 -med:0.029187295585870743 -:0.027452653273940086 a:0.025537321344017982 ana:0.021840540692210197 medicine:0.020460331812500954 :0.87552185729146 -the:0.9 :0.1 -upon:0.41200879216194153 on:0.24830074608325958 from:0.09953701496124268 in:0.07018227130174637 with:0.03908437490463257 :0.13088680058717728 -had:0.8651798963546753 have:0.031112439930438995 never:0.009160702116787434 ha:0.008958160877227783 having:0.008326870389282703 :0.07726193033158779 -guarded:0.2858101427555084 occupied:0.21190805733203888 surrounded:0.1094842478632927 manned:0.06280475854873657 inhabited:0.05861242115497589 :0.27138037234544754 -of:0.9586756825447083 for:0.022064020857214928 that:0.008921798318624496 in:0.003155518090352416 ot:0.002179086674004793 :0.005003893515095115 -water:0.1019807830452919 ground:0.04786462336778641 shore:0.03835836425423622 nest:0.029106905683875084 river:0.02247438207268715 :0.7602149415761232 -the:0.9 :0.1 -tracks:0.44644373655319214 track:0.2580525875091553 rails:0.03701853007078171 line:0.028956368565559387 route:0.027599995955824852 :0.20192878134548664 -tho:0.6387833952903748 the:0.322563111782074 a:0.005387067329138517 tha:0.0043782396242022514 n:0.00323405209928751 :0.02565413387492299 -day:0.932778537273407 night:0.013308823108673096 time:0.010379046201705933 Day:0.0036488089244812727 year:0.0029279354494065046 :0.03695684904232621 -tho:0.7515507340431213 the:0.23272188007831573 our:0.00320725841447711 ho:0.001333654043264687 this:0.0006548521341755986 :0.010531621286645532 -*:0.04025020822882652 e:0.01677839085459709 «:0.01471428107470274 ':0.013334688730537891 i:0.011869865469634533 :0.9030525656417012 -,:0.8755819797515869 to:0.010275714099407196 so:0.007153942249715328 that:0.00656336173415184 false:0.005700156092643738 :0.09472484607249498 -Alexandria:0.07055587321519852 Richmond:0.06750895828008652 Havana:0.04667293652892113 Orleans:0.04503413662314415 Mexico:0.04405960813164711 :0.7261684872210026 -handsome:0.17113466560840607 good:0.11167839914560318 small:0.07242538779973984 reasonable:0.061012960970401764 great:0.05746869742870331 :0.5262798890471458 -protect:0.2165183424949646 keep:0.08042879402637482 secure:0.07068108022212982 save:0.05564497038722038 recover:0.04541735723614693 :0.5313094556331635 -build:0.21108482778072357 have:0.200973778963089 make:0.07750528305768967 find:0.045613694936037064 furnish:0.042707230895757675 :0.42211518436670303 -In:0.6382790207862854 in:0.3396851718425751 tho:0.0018655698513612151 at:0.001578500377945602 on:0.001496102660894394 :0.017095634480938315 -not:0.17168579995632172 ,:0.10199673473834991 government:0.06420454382896423 people:0.04121759906411171 as:0.034872736781835556 :0.5860225856304169 -committee:0.9454904794692993 Committee:0.026977110654115677 court:0.0037379092536866665 commission:0.002889716299250722 jury:0.002341663697734475 :0.018563120625913143 -an:0.8622764348983765 a:0.12217020243406296 the:0.002977280179038644 as:0.0013795895501971245 no:0.0008745035156607628 :0.010321989422664046 -two:0.1529422253370285 ten:0.09382854402065277 three:0.07847095280885696 twenty:0.07653360068798065 five:0.0636724978685379 :0.5345521792769432 -those:0.4097181260585785 sources:0.08396033197641373 persons:0.08318040519952774 officials:0.060785092413425446 people:0.050490740686655045 :0.31186530366539955 -was:0.20786355435848236 is:0.17845353484153748 Is:0.09397906064987183 all:0.02182001806795597 were:0.01687130518257618 :0.4810125268995762 -the:0.9 :0.1 -persons:0.6377643942832947 person:0.2625069320201874 party:0.028373412787914276 parties:0.009010170586407185 man:0.008539603091776371 :0.05380548723042011 -Ken:0.8302712440490723 the:0.05875229090452194 Kens:0.008868797682225704 a:0.0043160622008144855 K:0.0027618820313364267 :0.09502972313202918 -men:0.49977076053619385 man:0.1858024150133133 boys:0.08787102997303009 boy:0.06085145100951195 persons:0.02332989312708378 :0.14237445034086704 -a:0.5769689083099365 very:0.07263344526290894 fiercely:0.033709146082401276 always:0.02736199088394642 an:0.021121477708220482 :0.26820503175258636 -on:0.2523092031478882 in:0.08812593668699265 worn:0.05768245458602905 removed:0.054165277630090714 lost:0.04066181182861328 :0.5070553161203861 -,:0.26813650131225586 .:0.05703834444284439 i:0.024329490959644318 is:0.01962260715663433 j:0.018892018124461174 :0.6119810380041599 -to:0.5231975317001343 and:0.05986073985695839 ly:0.03528810665011406 or:0.027018116787075996 ,:0.010089118033647537 :0.34454638697206974 -ations:0.14294877648353577 age:0.08531995117664337 ition:0.08091092109680176 ages:0.07103076577186584 ance:0.05396134778857231 :0.565828237682581 -ment:0.9929351210594177 ing:0.0006088882801122963 tion:0.0004910158459097147 ed:0.00037026230711489916 mit:0.00024309528816957027 :0.005351617219275795 -for:0.13737720251083374 of:0.10636471956968307 -:0.10356976091861725 to:0.06794551759958267 and:0.06537310779094696 :0.5193696916103363 -the:0.8001370429992676 tho:0.04502906650304794 this:0.027275564149022102 a:0.017747294157743454 our:0.010339335538446903 :0.09947169665247202 -the:0.15000247955322266 this:0.052420832216739655 tho:0.05198809504508972 said:0.041579607874155045 a:0.038212258368730545 :0.6657967269420624 -such:0.9809936285018921 be:0.0020508181769400835 Such:0.0016046001110225916 ,:0.0013312145601958036 what:0.0010878753382712603 :0.012931863311678171 -a:0.5747258067131042 the:0.09593966603279114 this:0.018986772745847702 good:0.01871979422867298 by:0.011680868454277515 :0.2799470918253064 -11:0.25447022914886475 12:0.13712003827095032 18:0.0676860585808754 10:0.06392224133014679 15:0.060030724853277206 :0.41677070781588554 -was:0.13868743181228638 being:0.04507969692349434 been:0.03720181807875633 were:0.02911517582833767 is:0.022006765007972717 :0.7279091123491526 -":0.05108451098203659 the:0.03592253103852272 istant:0.02920074574649334 aunted:0.01808828115463257 ":0.017791559919714928 :0.8479123711585999 -to:0.9708508849143982 for:0.006186831276863813 ot:0.006164497695863247 would:0.002570122480392456 ta:0.0014591338112950325 :0.012768529821187258 -10:0.1046106219291687 11:0.07977193593978882 nine:0.04737043380737305 1:0.0469515286386013 9:0.044840361922979355 :0.6764551177620888 -insurance:0.2209727019071579 Insurance:0.06711156666278839 ,:0.01919892616569996 U:0.011364934965968132 i:0.010920492000877857 :0.6704313782975078 -events:0.07967345416545868 lessons:0.0385318286716938 time:0.01405472680926323 policy:0.014041878283023834 changes:0.013223707675933838 :0.8404744043946266 -coin:0.03445440158247948 two:0.0326010063290596 :0.018729710951447487 whole:0.016107594594359398 tho:0.014726263470947742 :0.8833810230717063 -action:0.13575002551078796 alone:0.0405852347612381 case:0.03063914179801941 law:0.02524280734360218 decision:0.022722287103533745 :0.7450605034828186 -of:0.6416434049606323 and:0.208018496632576 or:0.03587163984775543 for:0.017077624797821045 ot:0.00979598332196474 :0.08759285043925047 -surplus:0.11457791179418564 increase:0.10380543023347855 number:0.03692595288157463 majority:0.031116127967834473 margin:0.025694796815514565 :0.6878797803074121 -A:0.46254459023475647 One:0.1420956552028656 Every:0.08591979742050171 The:0.08532843738794327 Any:0.07524831593036652 :0.14886320382356644 -of:0.10055939853191376 for:0.09566635638475418 with:0.057191379368305206 by:0.05540832504630089 in:0.034570492804050446 :0.6566040478646755 -parallel:0.9756126403808594 along:0.012294392101466656 perpendicular:0.005639658309519291 concurrent:0.0010398834710940719 adjacent:0.0003910791710950434 :0.005022346565965563 -after:0.9505003690719604 as:0.01863534189760685 before:0.010585339739918709 following:0.005903130397200584 After:0.0016809678636491299 :0.012694851029664278 -ability:0.5138586163520813 abilities:0.07547921687364578 skill:0.06286408752202988 game:0.05066932365298271 work:0.0473719984292984 :0.24975675716996193 -House:0.37562692165374756 Hall:0.1525866687297821 Jail:0.05987341329455376 Building:0.05296928435564041 ,:0.04762398451566696 :0.3113197274506092 -to:0.6538220643997192 ,:0.14915701746940613 ;:0.052220504730939865 for:0.029520714655518532 ;:0.02126520499587059 :0.09401449374854565 -track:0.11998724937438965 wagon:0.03706963732838631 horse:0.03484642505645752 hill:0.03104407899081707 tree:0.02666417509317398 :0.7503884341567755 -Episcopal:0.9733169674873352 Lutheran:0.00434292433783412 Presbyterian:0.003099751891568303 United:0.002767099067568779 Baptist:0.002228663768619299 :0.014244593447074294 -tion:0.8917124271392822 ment:0.05360141396522522 ty:0.01744949258863926 pose:0.002696879440918565 tem:0.0021725534461438656 :0.032367233419790864 -sacred:0.24001014232635498 religious:0.04983492195606232 noble:0.03968566283583641 moral:0.03230150043964386 spiritual:0.024417588487267494 :0.6137501839548349 -been:0.9729990363121033 be:0.00482904864475131 he:0.004576614126563072 bene:0.003611578606069088 ben:0.0024486244656145573 :0.0115350978448987 -pt:0.13854892551898956 pleted:0.07510172575712204 ended:0.06694646924734116 o:0.027255376800894737 itted:0.01807752065360546 :0.674069982022047 -tho:0.743806004524231 the:0.18797144293785095 a:0.03272321820259094 further:0.0032066814601421356 his:0.002695994218811393 :0.02959665865637362 -by:0.8419674634933472 to:0.04466657713055611 under:0.028849391266703606 from:0.019817745313048363 in:0.008318138308823109 :0.05638068448752165 -the:0.518729567527771 to:0.15871208906173706 by:0.05038102716207504 of:0.024830393493175507 and:0.018925560638308525 :0.22842136211693287 -as:0.9791477918624878 that:0.004114524461328983 ,:0.002440084470435977 so:0.002344863722100854 which:0.0018464451422914863 :0.010106290341354907 -told:0.508793294429779 to:0.08128830045461655 by:0.04694696515798569 with:0.04538575932383537 before:0.0342792347073555 :0.28330644592642784 -the:0.9691725373268127 that:0.006335726473480463 this:0.005875756032764912 tho:0.004434914328157902 last:0.0038561238907277584 :0.010324941948056221 -of:0.7749640941619873 and:0.034009337425231934 on:0.031239988282322884 to:0.017173761501908302 from:0.015326490625739098 :0.12728632800281048 -controls:0.251583456993103 determines:0.10519754141569138 has:0.09848232567310333 regulates:0.0770622119307518 decides:0.04768647626042366 :0.4199879877269268 -all:0.46734389662742615 up:0.16518442332744598 down:0.14518897235393524 off:0.06724564731121063 out:0.06037791073322296 :0.09465914964675903 -mortgage:0.9948986172676086 Mortgage:0.0016075202729552984 title:0.000504397030454129 mortgages:0.0002796458138618618 deed:0.00021953776013106108 :0.002490281854989007 -the:0.7181500196456909 tho:0.04328657314181328 those:0.02423430234193802 a:0.02021270990371704 any:0.015166858211159706 :0.17894953675568104 -in:0.7837199568748474 In:0.08525525778532028 throughout:0.04914144054055214 within:0.012471948750317097 from:0.01195156667381525 :0.05745982937514782 -frozen:0.16517698764801025 human:0.03721034154295921 dead:0.028182851150631905 sore:0.022263875231146812 bleeding:0.021689971908926964 :0.7254759725183249 -,:0.0945369079709053 executed:0.029007963836193085 held:0.02227196656167507 owned:0.020330751314759254 sued:0.017552204430103302 :0.816300205886364 -or:0.8573318719863892 and:0.11684730648994446 ,:0.01596316136419773 an:0.0014865734847262502 the:0.0014380195643752813 :0.006933067110367119 -,:0.353039026260376 be:0.06038679927587509 ;:0.020784348249435425 interest:0.017742987722158432 .:0.017283806577324867 :0.5307630319148302 -that:0.6030804514884949 one:0.12696491181850433 this:0.03297114372253418 the:0.03154931962490082 next:0.030536770820617676 :0.17489740252494812 -the:0.6188591718673706 an:0.20568692684173584 tho:0.0531332790851593 a:0.016484489664435387 proper:0.008441507816314697 :0.09739462472498417 -eding:0.08858957886695862 ining:0.07395106554031372 -:0.052907880395650864 opposed:0.04865496605634689 opposition:0.039224956184625626 :0.6966715529561043 -the:0.4263809323310852 its:0.0440489798784256 all:0.040165845304727554 tho:0.030718140304088593 their:0.021190473809838295 :0.43749562837183475 -,:0.9416813850402832 and:0.048348601907491684 -:0.003964636009186506 but:0.0007947797421365976 ,:0.0007029602420516312 :0.004507637058850378 -me:0.30512621998786926 in:0.23808348178863525 him:0.09208132326602936 In:0.03907977417111397 it:0.028536835685372353 :0.2970923651009798 -sympathy:0.06888806819915771 respect:0.05695585161447525 confidence:0.05687698349356651 sincerity:0.03344215452671051 courtesy:0.027199637144804 :0.756637305021286 -be:0.839863657951355 bo:0.08118154108524323 he:0.03433901071548462 lie:0.006850120145827532 have:0.003567684208974242 :0.0341979858931154 -State:0.0755075067281723 town:0.061964940279722214 Municipal:0.06124080717563629 Town:0.05810534954071045 county:0.029379738494753838 :0.7138016577810049 -great:0.13740447163581848 Protestant:0.1301073282957077 Christian:0.0998956486582756 general:0.03153853490948677 first:0.03064943477511406 :0.5704045817255974 -more:0.5696096420288086 less:0.35594508051872253 greater:0.023332176730036736 larger:0.013084694743156433 rather:0.01173657551407814 :0.026291830465197563 -turned:0.6965621709823608 handed:0.19925081729888916 gave:0.024640504270792007 sent:0.017749007791280746 passed:0.012680966407060623 :0.04911653324961662 -will:0.7642152309417725 would:0.06857796758413315 wont:0.035293031483888626 'll:0.03528256714344025 should:0.024740980938076973 :0.07189022190868855 -and:0.6799482107162476 to:0.13382157683372498 which:0.061926256865262985 that:0.03862752392888069 ,:0.02488924190402031 :0.06078718975186348 -,:0.04591156169772148 and:0.03273846581578255 social:0.026155764237046242 -:0.0203611571341753 night:0.02024519443511963 :0.8545878566801548 -as:0.9688188433647156 as:0.0136059345677495 so:0.0074821398593485355 As:0.001091023557819426 too:0.00035838005715049803 :0.008643678593216464 -The:0.45613548159599304 At:0.06768536567687988 In:0.040928471833467484 A:0.029860153794288635 No:0.018018033355474472 :0.3873724937438965 -right:0.917209804058075 wrong:0.012892058119177818 good:0.008058493956923485 correct:0.006953987758606672 ,:0.005149925593286753 :0.04973573051393032 -the:0.831660807132721 a:0.04179443046450615 tho:0.021686388179659843 that:0.020625360310077667 this:0.019101645797491074 :0.06513136811554432 -bis:0.028407683596014977 unfortunate:0.02243269421160221 old:0.02159344032406807 first:0.017401574179530144 bad:0.01640973798930645 :0.8937548696994781 -BY:0.5221143960952759 ON:0.23954984545707703 IN:0.061187852174043655 FOR:0.03320430591702461 TO:0.03280801698565483 :0.111135583370924 -Company:0.081790030002594 CEO:0.07028546184301376 Treasurer:0.05701626092195511 shareholders:0.05553365871310234 Directors:0.051409196108579636 :0.6839653924107552 -as:0.9582479596138 to:0.012314018793404102 for:0.008712831884622574 by:0.003851494053378701 into:0.003695534076541662 :0.013178161578252912 -a:0.7277330756187439 the:0.18394534289836884 another:0.0092403469607234 that:0.009056075476109982 one:0.008781686425209045 :0.06124347262084484 -Pacific:0.20779603719711304 California:0.15585409104824066 Southern:0.05030107870697975 Sacramento:0.041920166462659836 Northern:0.039218589663505554 :0.5049100369215012 -est:0.01001629326492548 ce:0.006046081427484751 ter:0.005893286317586899 port:0.005819349549710751 arc:0.005361304618418217 :0.9668636848218739 -stationed:0.05753955617547035 now:0.037244852632284164 arrived:0.026020245626568794 was:0.024948617443442345 present:0.023445116356015205 :0.8308016117662191 -second:0.22872941195964813 other:0.22109147906303406 elder:0.06131776049733162 last:0.04150443151593208 next:0.04092024639248848 :0.40643667057156563 -confinement:0.1254059374332428 law:0.11559218168258667 prison:0.03271440416574478 punishment:0.032567258924245834 prisoner:0.03168240934610367 :0.6620378084480762 -.:0.4826369285583496 *.:0.04131337255239487 !:0.03994183614850044 .:0.017959794029593468 !:0.012317879125475883 :0.40583018958568573 -upon:0.38375145196914673 when:0.21044595539569855 in:0.09113374352455139 after:0.0607115812599659 while:0.050151847302913666 :0.20380542054772377 -of:0.9021868109703064 and:0.026985691860318184 in:0.011550506576895714 on:0.010997221805155277 ot:0.005486419890075922 :0.04279334889724851 -the:0.9 :0.1 -friends:0.19869987666606903 children:0.04627051204442978 people:0.0400150828063488 men:0.03515710309147835 faces:0.029816538095474243 :0.6500408872961998 -distress:0.24243466556072235 confusion:0.2055380493402481 alarm:0.037454329431056976 anxiety:0.03579234704375267 trouble:0.031110454350709915 :0.44767015427351 -had:0.4684717059135437 got:0.08302449434995651 allowed:0.07301321625709534 with:0.05850037932395935 has:0.058203332126140594 :0.2587868720293045 -has:0.9107386469841003 have:0.017161864787340164 had:0.011724499985575676 is:0.00340973399579525 arc:0.003102434566244483 :0.053862819680944085 -on:0.7602897882461548 to:0.0911828875541687 upon:0.026527080684900284 by:0.023172330111265182 from:0.022196462377905846 :0.0766314510256052 -all:0.4700034260749817 what:0.2487422078847885 everything:0.05901641026139259 anything:0.020690331235527992 whatever:0.012329453602433205 :0.189218170940876 -and:0.3344424366950989 's:0.3068152964115143 of:0.03283607214689255 from:0.022680960595607758 with:0.020260123535990715 :0.2829651106148958 -May:0.32429006695747375 April:0.13130511343479156 February:0.13007409870624542 March:0.11085198819637299 June:0.07146421074867249 :0.2320145219564438 -by:0.6034854054450989 to:0.20692333579063416 from:0.06976669281721115 among:0.029919812455773354 of:0.028598163276910782 :0.06130659021437168 -Duke:0.2837367057800293 King:0.17726874351501465 Emperor:0.11005575209856033 Queen:0.061491888016462326 Admiral:0.045085884630680084 :0.3223610259592533 -made:0.6052831411361694 grown:0.01771542802453041 worn:0.016516011208295822 picked:0.013449619524180889 kept:0.012916400097310543 :0.3341194000095129 -in:0.7007348537445068 In:0.037164654582738876 before:0.034615177661180496 for:0.02977621741592884 last:0.02973918244242668 :0.16796991415321827 -works:0.29716527462005615 acts:0.12392996996641159 objects:0.029193872585892677 things:0.024816837161779404 workers:0.0191169623285532 :0.505777083337307 -is:0.97407066822052 Is:0.01633770950138569 has:0.0016573457978665829 makes:0.0009212298318743706 was:0.0008663021726533771 :0.006146744475699961 -tion:0.2871229350566864 ment:0.12686187028884888 stances:0.030839374288916588 ing:0.027260929346084595 poses:0.016792649403214455 :0.5111222416162491 -tho:0.4571199417114258 the:0.25458431243896484 this:0.06111200526356697 every:0.04368535801768303 our:0.03983329236507416 :0.14366509020328522 -.:0.9656773209571838 grounds:0.0015239504864439368 ,:0.0014866137644276023 .":0.0013496227329596877 ::0.0010162751423195004 :0.028946216916665435 -transportation:0.32305023074150085 shipping:0.09241008758544922 freight:0.05875791609287262 transport:0.05783626064658165 postage:0.0343841053545475 :0.43356139957904816 -our:0.28728023171424866 the:0.17181430757045746 a:0.06032567098736763 any:0.046045564115047455 this:0.04168606922030449 :0.3928481563925743 -sun:0.3996632993221283 moon:0.16376140713691711 planet:0.09287873655557632 Sun:0.05664696916937828 earth:0.04618397727608681 :0.24086561053991318 -Dakota:0.37806734442710876 Carolina:0.1088699921965599 of:0.044049039483070374 ,:0.030123116448521614 for:0.0217730849981308 :0.41711742244660854 -that:0.8017355799674988 ::0.08606679737567902 ,:0.0534265860915184 .:0.020116472616791725 ::0.00564159732311964 :0.03301296662539244 -spends:0.08615962415933609 pays:0.034648776054382324 invests:0.023866843432188034 finances:0.021610481664538383 governs:0.020187722519040108 :0.8135265521705151 -the:0.9 :0.1 -and:0.47108766436576843 or:0.41780897974967957 but:0.02407706528902054 not:0.023355305194854736 to:0.007028904743492603 :0.056642080657184124 -shall:0.8257889151573181 will:0.0645378977060318 may:0.04717579483985901 must:0.018892619758844376 to:0.0050519430078566074 :0.038552829530090094 -her:0.4631234109401703 his:0.33210498094558716 him:0.055003635585308075 the:0.017762495204806328 a:0.014226173050701618 :0.11777930427342653 -up:0.31021785736083984 down:0.14117152988910675 ,:0.09280426055192947 and:0.06577519327402115 away:0.04422406852245331 :0.3458070904016495 -do:0.353102445602417 accomplish:0.14013107120990753 obtain:0.0296911783516407 him:0.02836436592042446 win:0.021545713767409325 :0.427165225148201 -the:0.6161370277404785 a:0.025313125923275948 -:0.021897640079259872 ed:0.012556925415992737 ):0.008382531814277172 :0.31571274902671576 -wages:0.7537141442298889 prices:0.08635727316141129 pay:0.05221236124634743 rates:0.018301626667380333 salaries:0.012405687011778355 :0.07700890768319368 -the:0.9 :0.1 -temple:0.27755072712898254 city:0.1246027797460556 site:0.026584193110466003 church:0.020981470122933388 ground:0.01901550590991974 :0.5312653239816427 -the:0.6061797738075256 this:0.08341122418642044 tho:0.0811692550778389 Chicago:0.04522603005170822 his:0.04379170015454292 :0.14022201672196388 -a:0.34935081005096436 the:0.15476970374584198 any:0.13963034749031067 one:0.06412496417760849 two:0.032162364572286606 :0.2599618099629879 -would:0.17739956080913544 to:0.07551757991313934 could:0.05479755997657776 'd:0.043520960956811905 had:0.040416017174720764 :0.6083483211696148 -.:0.05338335782289505 health:0.043365322053432465 body:0.041483353823423386 head:0.04016377776861191 heart:0.03542798385024071 :0.7861762046813965 -already:0.26131829619407654 not:0.22320851683616638 just:0.09794531017541885 recently:0.05211026966571808 also:0.039211444556713104 :0.32620616257190704 -aking:0.0835089161992073 o:0.04260242357850075 aching:0.0372534804046154 the:0.03223014622926712 u:0.027653614059090614 :0.7767514195293188 -all:0.8976653218269348 once:0.04392042011022568 present:0.01151456031948328 last:0.011076834984123707 least:0.004635005258023739 :0.031187857501208782 -most:0.6566181182861328 very:0.025741197168827057 more:0.02300671674311161 best:0.02161196433007717 many:0.019507529214024544 :0.2535144742578268 -of:0.9124952554702759 and:0.017825452610850334 ot:0.0111340107396245 that:0.00752470875158906 or:0.006514396984130144 :0.04450617544353008 -young:0.9394465684890747 new:0.051424309611320496 old:0.0032830063719302416 young:0.000700621516443789 youth:0.0005217372672632337 :0.004623756743967533 -a:0.6210830211639404 the:0.029613686725497246 military:0.027941180393099785 political:0.02727620303630829 its:0.021948274224996567 :0.2721376344561577 -their:0.7059122323989868 the:0.08451003581285477 your:0.046574924141168594 at:0.024479513987898827 our:0.02158902958035469 :0.1169342640787363 -and:0.9435827136039734 ,:0.031792327761650085 which:0.0056946114636957645 then:0.00312808551825583 but:0.001622843323275447 :0.014179418329149485 -ing:0.5654510855674744 ing:0.16257183253765106 of:0.02751438319683075 all:0.025910353288054466 uring:0.01341620646417141 :0.20513613894581795 -of:0.8585171699523926 for:0.03593361750245094 ot:0.0288002360612154 against:0.0163054708391428 to:0.01371486485004425 :0.04672864079475403 -looked:0.539771556854248 glared:0.08302798867225647 pointed:0.05525484308600426 stared:0.05262979120016098 smiled:0.034565627574920654 :0.2347501926124096 -House:0.09298257529735565 Church:0.053397286683321 house:0.04930051416158676 place:0.0314447246491909 Mount:0.028438003733754158 :0.7444368954747915 -thrown:0.32623496651649475 dropped:0.11354019492864609 put:0.08147097378969193 fired:0.03179286792874336 sent:0.026844428852200508 :0.42011656798422337 -Or:0.1141432672739029 And:0.09998674690723419 Just:0.09954727441072464 and:0.09445516020059586 To:0.09050295501947403 :0.5013645961880684 -the:0.23515570163726807 tho:0.05578644573688507 grain:0.05524473264813423 freight:0.03948230668902397 foreign:0.0230178814381361 :0.5913129318505526 -The:0.2472166270017624 He:0.2024436593055725 When:0.04592973738908768 Mr:0.028821447864174843 It:0.017328932881355286 :0.4582595955580473 -fingerprints:0.2257644385099411 whereabouts:0.15227724611759186 feet:0.03314528986811638 roots:0.032621994614601135 fingers:0.027744418010115623 :0.5284466128796339 -ll:0.562006413936615 l:0.12395108491182327 ls:0.025841791182756424 le:0.023456158116459846 rl:0.017706330865621567 :0.2470382209867239 -the:0.9 :0.1 -works:0.1422572284936905 work:0.06451617926359177 books:0.05510924383997917 articles:0.0476415678858757 pictures:0.03381219878792763 :0.6566635817289352 -ing:0.781450092792511 ment:0.09369771182537079 ed:0.021041622385382652 tion:0.007658203598111868 ter:0.006379931699484587 :0.08977243769913912 -doors:0.3256622552871704 ,:0.11680629104375839 walls:0.09959672391414642 windows:0.08279938995838165 rooms:0.05016910284757614 :0.324966236948967 -of:0.3192158341407776 from:0.03136896714568138 on:0.029787646606564522 side:0.02814595215022564 avenue:0.02136058919131756 :0.5701210107654333 -he:0.17407801747322083 Jesus:0.03564782440662384 Napoleon:0.02410297840833664 Moses:0.017522301524877548 they:0.01680276356637478 :0.7318461146205664 -,:0.20267580449581146 's:0.047727301716804504 his:0.04353925213217735 ':0.036456622183322906 or:0.02932879887521267 :0.6402722205966711 -a:0.5223923921585083 the:0.11545120179653168 some:0.06470292806625366 in:0.05475003644824028 tho:0.03354647755622864 :0.20915696397423744 -little:0.4464845061302185 no:0.09684428572654724 minor:0.06791678816080093 slight:0.0360729843378067 small:0.031165610998868942 :0.3215158246457577 -and:0.11580049246549606 or:0.07016123086214066 And:0.03886865824460983 Or:0.03862905502319336 or:0.036187171936035156 :0.7003533914685249 -fence:0.5823612213134766 fences:0.062203001230955124 wall:0.059375520795583725 edge:0.016540732234716415 walls:0.010720785707235336 :0.26879873871803284 -the:0.7503718733787537 tho:0.10475620627403259 a:0.036959294229745865 this:0.03407776728272438 his:0.026748405769467354 :0.047086453065276146 -could:0.14423464238643646 it:0.1424197256565094 to:0.1406228244304657 he:0.07329504191875458 ot:0.07192963361740112 :0.42749813199043274 -sell:0.2568107843399048 buy:0.1202416867017746 carry:0.05838673934340477 keep:0.050920866429805756 get:0.03638271987438202 :0.4772572033107281 -cutting:0.1703031361103058 work:0.12293246388435364 curing:0.0597522146999836 drying:0.04356465861201286 grinding:0.029137542471289635 :0.5743099842220545 -of:0.20265108346939087 at:0.19922882318496704 to:0.17100968956947327 from:0.14421045780181885 in:0.06802049279212952 :0.21487945318222046 -and:0.6486610770225525 or:0.1409432291984558 ,:0.07117706537246704 of:0.035701852291822433 ol:0.016672734171152115 :0.08684404194355011 -Price:0.46940839290618896 Fry:0.0647977888584137 Fisher:0.018432246521115303 Perkins:0.014953218400478363 Wheat:0.008933113887906075 :0.4234752394258976 -had:0.8842921257019043 were:0.029542846605181694 all:0.004968956112861633 ever:0.004732457455247641 who:0.004258620552718639 :0.0722049935720861 -the:0.9302002191543579 his:0.03125939890742302 every:0.00813787616789341 that:0.006626895163208246 their:0.0028120314236730337 :0.02096357918344438 -by:0.4537365138530731 in:0.09385222941637039 an:0.08050967752933502 as:0.07896459847688675 to:0.035066939890384674 :0.25787004083395004 -he:0.8822600245475769 lie:0.024955905973911285 ho:0.0068686301819980145 He:0.005618043709546328 he:0.005224147345870733 :0.07507324824109674 -ho:0.4198068082332611 it:0.2901816666126251 he:0.1906934678554535 they:0.012713364325463772 congress:0.00938456878066063 :0.07722012419253588 -specially:0.14417576789855957 properly:0.08630122989416122 well:0.07959257811307907 fully:0.06273341178894043 partially:0.03440524637699127 :0.5927917659282684 -District:0.9279650449752808 district:0.025344498455524445 State:0.016962073743343353 Territory:0.005011383909732103 state:0.003949402831494808 :0.02076759608462453 -the:0.9039441347122192 tho:0.03855586796998978 all:0.022448595613241196 many:0.006177156697958708 those:0.0022721607238054276 :0.026602084282785654 -of:0.13416358828544617 and:0.0820622369647026 in:0.06990022957324982 is:0.04444501921534538 over:0.03887948766350746 :0.6305494382977486 -proper:0.06717008352279663 wise:0.04716959595680237 careful:0.033946678042411804 effective:0.029113659635186195 direct:0.02764863893389702 :0.794951343908906 -bark:0.07736419141292572 trunk:0.02629915624856949 ness:0.023573176935315132 foliage:0.023317012935876846 head:0.020804228261113167 :0.8286422342061996 -Mr:0.7584009766578674 Mrs:0.15682581067085266 Miss:0.03187267854809761 Dr:0.0030734590254724026 the:0.0025619659572839737 :0.04726510914042592 -the:0.5643134713172913 tho:0.31204408407211304 their:0.026102125644683838 its:0.014518214389681816 domestic:0.0051875850185751915 :0.07783451955765486 --:0.07731201499700546 l:0.03862234577536583 li:0.0340387225151062 .:0.01494556199759245 ne:0.01416019070893526 :0.8209211640059948 -more:0.881584882736206 less:0.11356120556592941 fewer:0.0018174235010519624 greater:0.000964221777394414 better:0.00045948513434268534 :0.0016127812850754708 -it:0.42890000343322754 he:0.1790180206298828 that:0.08934632688760757 this:0.0368289090692997 there:0.031412214040756226 :0.23449452593922615 -streak:0.7445124387741089 drought:0.12822125852108002 slump:0.018603308126330376 absence:0.010675444267690182 run:0.006271348334848881 :0.09171620197594166 -that:0.668213427066803 which:0.32406753301620483 what:0.0010041565401479602 ,:0.0008743554353713989 as:0.0008202411700040102 :0.005020286771468818 -ty:0.0847666785120964 ter:0.01446506567299366 te:0.01399647630751133 ,:0.013711760751903057 t:0.010799559764564037 :0.8622604589909315 -the:0.6764135956764221 a:0.1709267944097519 this:0.03487270325422287 its:0.031136663630604744 tho:0.021672207862138748 :0.06497803516685963 -pleasant:0.06787990778684616 delightful:0.050629474222660065 amusing:0.041968584060668945 unusual:0.03623819723725319 enjoyable:0.027796052396297455 :0.7754877842962742 -made:0.09649628400802612 that:0.058380674570798874 it:0.038938865065574646 ,:0.020526012405753136 said:0.0157083161175251 :0.7699498478323221 -by:0.343515008687973 a:0.2518504858016968 the:0.08458151668310165 said:0.03898804262280464 in:0.03206001967191696 :0.24900492653250694 -,:0.4343157112598419 and:0.2413838505744934 she:0.07032091170549393 .:0.024836132302880287 was:0.02422081120312214 :0.20492258295416832 -the:0.07328453660011292 The:0.06832563877105713 -:0.04854040965437889 all:0.024841055274009705 Those:0.022283926606178284 :0.7627244330942631 -the:0.5256320238113403 tariff:0.15057887136936188 this:0.08506813645362854 tho:0.030271954834461212 a:0.025380274280905724 :0.18306873925030231 -them:0.4331939220428467 it:0.28362637758255005 ,:0.11268790811300278 It:0.031371813267469406 myself:0.022883547469973564 :0.11623643152415752 -to:0.15787796676158905 u:0.048116639256477356 on:0.04233667254447937 upon:0.03778509050607681 of:0.03427579998970032 :0.6796078309416771 -ained:0.13074526190757751 ated:0.10398859530687332 anted:0.048577502369880676 ived:0.04386766254901886 aged:0.03782830014824867 :0.634992677718401 -on:0.4534253776073456 in:0.17350295186042786 upon:0.1595863252878189 at:0.10166043043136597 In:0.024901272729039192 :0.0869236420840025 -Dove:0.10650721937417984 Goose:0.07302263379096985 Duck:0.041516516357660294 Hawk:0.033160388469696045 Squirrel:0.029844846576452255 :0.7159483954310417 -business:0.6038850545883179 office:0.06572477519512177 apartment:0.04479596018791199 building:0.01874692738056183 commercial:0.014088001102209091 :0.25275928154587746 -history:0.2655262053012848 work:0.08978143334388733 works:0.049094509333372116 facts:0.043750885874032974 story:0.03648070618510246 :0.5153662599623203 -protecting:0.23764407634735107 preserving:0.1910068392753601 preservation:0.09960979968309402 saving:0.047629501670598984 caring:0.029535384848713875 :0.39457439817488194 -willfully:0.08173079788684845 wholly:0.05773911625146866 utterly:0.05701763555407524 has:0.021382084116339684 unlawfully:0.02075205370783806 :0.7613783124834299 -of:0.3624691665172577 on:0.1847771257162094 in:0.07889118790626526 upon:0.05499100312590599 to:0.03681724891066551 :0.28205426782369614 -the:0.9 :0.1 -to:0.5168296098709106 will:0.18672862648963928 may:0.07169473171234131 shall:0.06541677564382553 then:0.017076117917895317 :0.14225413836538792 -been:0.9876985549926758 be:0.0028984551317989826 just:0.0012772756163030863 been:0.0010096838232129812 already:0.0009472916717641056 :0.006168738764245063 -this:0.430807501077652 that:0.14442579448223114 any:0.12900224328041077 a:0.08186731487512589 some:0.052478838711977005 :0.16141830757260323 -pose:0.11067409813404083 ment:0.043777815997600555 dent:0.03190786764025688 port:0.010381748899817467 position:0.010274267755448818 :0.7929842015728354 -detract:0.32977092266082764 depart:0.12050876766443253 withdraw:0.07626604288816452 dissent:0.0349884033203125 refrain:0.030355608090758324 :0.4081102553755045 -ed:0.07355528324842453 pose:0.051472242921590805 er:0.04538828134536743 ing:0.03968615457415581 ly:0.035925671458244324 :0.7539723664522171 -and:0.4845257103443146 ,:0.2704508304595947 ;:0.10934872925281525 .:0.025133278220891953 but:0.014531286433339119 :0.09601016528904438 -Lot:0.6412673592567444 lot:0.16459670662879944 street:0.03362398222088814 Lots:0.029536357149481773 lots:0.010300960391759872 :0.1206746343523264 -was:0.13808339834213257 am:0.13455002009868622 have:0.07333337515592575 will:0.045926619321107864 wish:0.028148185461759567 :0.579958401620388 -who:0.19550511240959167 il:0.05063890665769577 i:0.03756580874323845 I:0.03221707046031952 c:0.027568994089961052 :0.6565041076391935 -the:0.9 :0.1 -.:0.07635071873664856 ,:0.05028492584824562 .,:0.014528953470289707 .:0.014415242709219456 -:0.014123765751719475 :0.8302963934838772 -most:0.2955038547515869 very:0.27206531167030334 more:0.06580076366662979 highly:0.04443398863077164 manner:0.02854331023991108 :0.29365277104079723 -Is:0.6208075284957886 is:0.3471972346305847 are:0.018948886543512344 IS:0.00158511137124151 was:0.001064180163666606 :0.010397058795206249 -that:0.06675688922405243 ,:0.0646379292011261 yet:0.06176205724477768 the:0.04929151013493538 tho:0.047385282814502716 :0.7101663313806057 -object:0.12074004858732224 ,:0.10192505270242691 refer:0.06013922393321991 appeal:0.048335205763578415 speak:0.030051307752728462 :0.6388091612607241 -ple:0.16824419796466827 ty:0.08782550692558289 lo:0.0593772791326046 po:0.017430271953344345 tion:0.015925705432891846 :0.651197038590908 -first:0.4394511878490448 last:0.1380557119846344 third:0.07656212896108627 fourth:0.038221802562475204 second:0.02837635949254036 :0.27933280915021896 -the:0.6151160597801208 tho:0.04592571780085564 much:0.04024559259414673 Il:0.0169327761977911 .:0.01017727144062519 :0.2716025821864605 -the:0.9 :0.1 -the:0.90701824426651 an:0.04939286783337593 his:0.01492866687476635 whose:0.007578883320093155 what:0.005377816502004862 :0.015703521203249693 -street:0.9628328680992126 .:0.011867795139551163 Street:0.011449821293354034 streets:0.005959801375865936 avenue:0.0017443987308070064 :0.006145315361209214 -so:0.5214978456497192 ,:0.10987303406000137 such:0.05389169976115227 enough:0.017274996265769005 and:0.013457079418003559 :0.28400534484535456 -to:0.9202239513397217 upon:0.041141871362924576 on:0.011004136875271797 for:0.00633834907785058 ot:0.003030044725164771 :0.018261646619066596 -of:0.8363977670669556 ot:0.10197693109512329 in:0.014560322277247906 ol:0.013609027490019798 In:0.005931242369115353 :0.027524709701538086 -feet:0.3110397756099701 own:0.13553856313228607 knees:0.0876607894897461 medicine:0.061237435787916183 stool:0.03270581364631653 :0.37181762233376503 -legal:0.5449984073638916 all:0.07603238523006439 other:0.05603683739900589 the:0.025175873190164566 commercial:0.016754968091845512 :0.28100152872502804 -In:0.9837645888328552 in:0.0042891791090369225 A:0.0015221223002299666 By:0.0014484976418316364 After:0.0008605988114140928 :0.008115013304632157 -consulted:0.69209885597229 been:0.05942412093281746 visited:0.024094846099615097 employed:0.019644590094685555 engaged:0.01173804234713316 :0.1929995445534587 -,:0.3640882670879364 with:0.16378474235534668 and:0.12214284390211105 or:0.06720685958862305 in:0.04953156039118767 :0.23324572667479515 -the:0.9 :0.1 -not:0.757731556892395 never:0.07181611657142639 have:0.03354814276099205 they:0.022594064474105835 he:0.018478024750947952 :0.09583209455013275 -or:0.7274261116981506 and:0.25840938091278076 ,:0.004109565634280443 them:0.000745329016353935 nor:0.0004058839404024184 :0.008903728798031807 -not:0.0200083889067173 even:0.019654802978038788 especially:0.0186142697930336 engaged:0.010424111969769001 then:0.009164505638182163 :0.9221339207142591 -country:0.5128807425498962 way:0.15968403220176697 case:0.04803270474076271 manner:0.02305087260901928 city:0.01493622362613678 :0.24141542427241802 -it:0.28403347730636597 you:0.22027039527893066 she:0.15289263427257538 they:0.10691046714782715 I:0.1041051521897316 :0.13178787380456924 -Third:0.1682739108800888 Second:0.1676105260848999 First:0.16186925768852234 Fourth:0.1488140970468521 Fifth:0.0878620520234108 :0.26557015627622604 -that:0.25684547424316406 only:0.21750451624393463 the:0.11840953677892685 ,:0.06566648930311203 as:0.05273699015378952 :0.2888369932770729 -ter:0.02134024165570736 for:0.019952259957790375 er:0.01781650073826313 t:0.015146070159971714 to:0.01304736640304327 :0.9126975610852242 -months:0.34791427850723267 weeks:0.16936060786247253 years:0.13670527935028076 awhile:0.02060418762266636 days:0.01922665536403656 :0.3061889912933111 -attention:0.30562910437583923 interest:0.15554964542388916 importance:0.06573735177516937 concern:0.02590738981962204 notoriety:0.017380118370056152 :0.42979639023542404 -had:0.5064653754234314 has:0.08201594650745392 once:0.031296852976083755 he:0.025360437110066414 was:0.02261609397828579 :0.3322452940046787 -the:0.7542645335197449 tho:0.2205537110567093 these:0.00318876258097589 this:0.002522350288927555 th:0.0024879099801182747 :0.016982732573524117 -the:0.613919198513031 tho:0.11919768154621124 a:0.060780785977840424 his:0.05740620568394661 their:0.025348003953695297 :0.12334812432527542 -District:0.9971668124198914 District:0.0008343944209627807 district:0.0006732541369274259 Department:0.00031324903829954565 Board:0.0003063935728278011 :0.0007058964110910892 -the:0.9 :0.1 -not:0.28336089849472046 more:0.05365997925400734 only:0.03675409033894539 entirely:0.03502386808395386 also:0.0281540397554636 :0.5630471240729094 -mountain:0.5730177164077759 hill:0.08005592972040176 valley:0.034278325736522675 tree:0.01845603995025158 ridge:0.017196163535118103 :0.27699582464993 -pose:0.13873082399368286 tem:0.037948206067085266 posed:0.0299740731716156 par:0.022481467574834824 ple:0.02026623673737049 :0.750599192455411 -in:0.346428781747818 of:0.2835675776004791 In:0.0704590454697609 ol:0.06480205059051514 for:0.03103921189904213 :0.20370333269238472 -achment:0.21562185883522034 cial:0.06858741492033005 re:0.028320571407675743 on:0.027849694713950157 a:0.027762502431869507 :0.6318579576909542 -copy:0.18087272346019745 piece:0.0954119935631752 pieces:0.08789991587400436 portion:0.06290700286626816 part:0.051710911095142365 :0.5211974531412125 -from:0.2482369840145111 to:0.08999323099851608 in:0.05109715089201927 a:0.04438229277729988 of:0.033187489956617355 :0.5331028513610363 -,:0.7131604552268982 with:0.06636931002140045 and:0.022963805124163628 ;:0.02014140412211418 .:0.011403641663491726 :0.16596138384193182 -the:0.8754169940948486 a:0.04999183490872383 any:0.024872349575161934 said:0.021670766174793243 tho:0.013068726286292076 :0.014979328960180283 -Its:0.22979103028774261 its:0.218075692653656 the:0.12537826597690582 this:0.12025562673807144 that:0.06714677065610886 :0.23935261368751526 -,:0.32720860838890076 and:0.13276849687099457 those:0.06841164082288742 ;:0.047524988651275635 or:0.026391971856355667 :0.39769429340958595 -to:0.2121722400188446 and:0.08518355339765549 to:0.03530401736497879 To:0.03215699642896652 or:0.028681930154561996 :0.6065012626349926 -may:0.1567741185426712 represent:0.10833597183227539 should:0.040353838354349136 have:0.03916322812438011 deem:0.03891456872224808 :0.6164582744240761 -few:0.9881061315536499 couple:0.007565984968096018 short:0.0006270373705774546 few:0.0004576622450258583 little:0.0004457373870536685 :0.0027974464755970985 -the:0.6404845714569092 a:0.24934490025043488 my:0.04622827097773552 that:0.013220190070569515 this:0.0075230104848742485 :0.04319905675947666 -that:0.9969236254692078 ,:0.0007827514200471342 that:0.00019317316764499992 dat:0.00015739336959086359 himself:0.00014898550580255687 :0.0017940710677066818 -the:0.9350467324256897 tho:0.04693576693534851 a:0.0038034850731492043 tha:0.0019205909920856357 The:0.0015389497857540846 :0.010754474787972867 --:0.28781530261039734 and:0.2394127994775772 board:0.12157068401575089 or:0.060537189245224 road:0.02185995690524578 :0.2688040677458048 -told:0.9629565477371216 informed:0.011238631792366505 tells:0.008747498504817486 telling:0.002464252756908536 asked:0.0017367410473525524 :0.012856328161433339 -making:0.5333141684532166 rendering:0.17980454862117767 leaving:0.11160826683044434 makes:0.06242562085390091 renders:0.03546205163002014 :0.07738534361124039 -saw:0.35248085856437683 seeing:0.08816090226173401 asked:0.08372113853693008 heard:0.052160926163196564 hearing:0.044274985790252686 :0.3792011886835098 -ing:0.33069121837615967 ful:0.10459835082292557 :0.039936456829309464 er:0.034952424466609955 ter:0.02047210931777954 :0.4693494401872158 -His:0.5767903327941895 The:0.269868403673172 This:0.012019702233374119 He:0.009419395588338375 A:0.008724361658096313 :0.12317780405282974 -in:0.1746375411748886 of:0.10541461408138275 In:0.08279021829366684 n:0.030794769525527954 in:0.03034047968685627 :0.5760223772376776 -will:0.9392294883728027 shall:0.01327440608292818 should:0.010428952984511852 must:0.009423885494470596 may:0.0064264824613928795 :0.021216784603893757 -are:0.3825515806674957 ,:0.0695059597492218 of:0.05697781220078468 and:0.0366571880877018 were:0.03479946032166481 :0.4195079989731312 -they:0.9492120146751404 them:0.013840064406394958 these:0.00803632102906704 it:0.0033263545483350754 any:0.0028046853840351105 :0.022780559957027435 -home:0.25895965099334717 Hospital:0.2447451949119568 hospital:0.1858065128326416 Home:0.06798999756574631 school:0.03408795967698097 :0.20841068401932716 -by:0.30995914340019226 and:0.18975305557250977 or:0.10056069493293762 from:0.09948860108852386 in:0.0672290176153183 :0.2330094873905182 -quest:0.06874821335077286 way:0.06680949777364731 rush:0.0487821064889431 attempt:0.031319133937358856 bid:0.03124788962304592 :0.753093158826232 -under:0.6639649868011475 over:0.15659408271312714 in:0.07399365305900574 into:0.015650412067770958 down:0.011242914944887161 :0.07855395041406155 -would:0.8939012289047241 could:0.02551891840994358 should:0.0235560555011034 will:0.01921243779361248 might:0.013584517873823643 :0.024226841516792774 -this:0.1724497675895691 such:0.08667457848787308 their:0.07745814323425293 the:0.051221709698438644 no:0.046103693544864655 :0.5660921074450016 -the:0.5830176472663879 no:0.2765916883945465 every:0.022954881191253662 all:0.014540031552314758 a:0.010100604966282845 :0.09279514662921429 -business:0.08101838827133179 enterprise:0.04253028705716133 event:0.024941226467490196 story:0.02385266311466694 history:0.023207595571875572 :0.8044498395174742 -dining:0.21982449293136597 banquet:0.08001583814620972 music:0.05626382306218147 dance:0.04695086553692818 church:0.041559480130672455 :0.5553855001926422 -reports:0.11965194344520569 developments:0.0676567479968071 events:0.056420858949422836 movements:0.04953519627451897 indications:0.045076634734869 :0.6616586185991764 -his:0.5289686322212219 her:0.17206211388111115 the:0.09962484985589981 a:0.09588488191366196 my:0.009064610116183758 :0.0943949120119214 -with:0.24507194757461548 and:0.193098783493042 by:0.06069572642445564 in:0.04431811347603798 sent:0.022996913641691208 :0.4338185153901577 -of:0.938130795955658 for:0.01642676815390587 and:0.009232225827872753 or:0.005757534876465797 ot:0.0035636676475405693 :0.026889007538557053 -of:0.8668249249458313 about:0.07763394713401794 more:0.019728701561689377 better:0.0025685951113700867 all:0.00237836642190814 :0.030865464825183153 -there:0.4085521399974823 the:0.0681353509426117 a:0.053241632878780365 they:0.03505166992545128 in:0.03340185061097145 :0.4016173556447029 -and:0.14126314222812653 ,:0.13000646233558655 default:0.0667363852262497 question:0.028632452711462975 full:0.028448402881622314 :0.6049131546169519 -­:0.2197258174419403 attend:0.13119226694107056 help:0.04923864081501961 at:0.04575500264763832 :0.04292868822813034 :0.5111595839262009 -a:0.7593446969985962 the:0.06880868226289749 in:0.01581965759396553 his:0.012621892616152763 some:0.01004931703209877 :0.13335575349628925 -the:0.9822710156440735 a:0.0057821269147098064 tho:0.003011888125911355 The:0.0026656710542738438 said:0.0012749087763950229 :0.004994389484636486 -weather:0.10084141790866852 crop:0.030769959092140198 ness:0.028972642496228218 cotton:0.025510238483548164 season:0.024868406355381012 :0.7890373356640339 -equal:0.21430668234825134 up:0.12350617349147797 ten:0.09272583574056625 thirty:0.08120274543762207 twenty:0.07494980096817017 :0.4133087620139122 -the:0.9485085010528564 tho:0.03807125240564346 constant:0.0017248288495466113 a:0.001463798456825316 any:0.0007891978020779788 :0.009442421433050185 -an:0.814833402633667 the:0.15065141022205353 its:0.009992806240916252 a:0.004260629415512085 his:0.003435737919062376 :0.016826013568788767 -ish:0.1230737566947937 ive:0.04916220158338547 a:0.027270741760730743 ay:0.026299726217985153 v:0.019833529368042946 :0.754360044375062 -are:0.5141139030456543 were:0.15885518491268158 include:0.08740806579589844 ::0.06365904957056046 ,:0.04814300313591957 :0.12782079353928566 -time:0.7836835384368896 day:0.032376792281866074 moment:0.013653455302119255 end:0.00878885854035616 answer:0.00730949966236949 :0.15418785577639937 -vote:0.365062415599823 know:0.0405929833650589 ,:0.03996437042951584 care:0.020098280161619186 believe:0.017765821889042854 :0.5165161285549402 -and:0.2650150954723358 against:0.12815891206264496 of:0.07728562504053116 to:0.04944298788905144 in:0.04283939674496651 :0.4372579827904701 -Nelson:0.26158449053764343 Johnson:0.01201240811496973 Smith:0.011467043310403824 Allen:0.009364430792629719 He:0.008973809890449047 :0.6965978173539042 -many:0.1474110633134842 no:0.09982001781463623 some:0.07263466715812683 a:0.06673460453748703 others:0.05053607374429703 :0.5628635734319687 -deny:0.16278183460235596 believe:0.08221594244241714 assert:0.06070375442504883 require:0.03575446829199791 insist:0.034422993659973145 :0.624121006578207 -the:0.9 :0.1 -favor:0.9411834478378296 support:0.024200549349188805 favour:0.006068472750484943 opposition:0.005979992914944887 need:0.003099552122876048 :0.019467985024675727 -bounded:0.1993902176618576 ,:0.19471341371536255 known:0.0687243789434433 situated:0.0677487850189209 described:0.03200268745422363 :0.437420517206192 -,:0.556345522403717 ;:0.23733897507190704 ;:0.07000789046287537 and:0.030858352780342102 .:0.028991365805268288 :0.07645789347589016 -west:0.34723132848739624 southwest:0.20581036806106567 southeast:0.12251642346382141 northwest:0.08064908534288406 east:0.0785214751958847 :0.1652713194489479 -not:0.07207956165075302 cause:0.04242656007409096 enough:0.04209984838962555 serve:0.0269651859998703 nothing:0.02344946563243866 :0.7929793782532215 -was:0.801040530204773 and:0.01975608989596367 Was:0.01181941106915474 being:0.008047341369092464 when:0.006619177758693695 :0.15271744970232248 -.:0.5306901931762695 .:0.3829464018344879 .,:0.019370360299944878 and:0.018417835235595703 &:0.011785885319113731 :0.03678932413458824 -of:0.16981278359889984 in:0.08342578262090683 all:0.0794331431388855 from:0.07274680584669113 with:0.02630351483821869 :0.568277969956398 -is:0.5229974985122681 Is:0.08218835294246674 was:0.04409230500459671 is:0.026019619777798653 has:0.019045386463403702 :0.30565683729946613 -necessary:0.10878803580999374 vital:0.06961789727210999 valuable:0.06384015083312988 other:0.0386759489774704 ample:0.03005322627723217 :0.6890247408300638 -will:0.49785980582237244 can:0.16319982707500458 shall:0.056870684027671814 may:0.042097579687833786 must:0.03153994679450989 :0.2084321565926075 -Smith:0.3443007469177246 Brown:0.01641422137618065 Jones:0.014918632805347443 Butler:0.0069288890808820724 Pierce:0.0068802610039711 :0.6105572488158941 -of:0.12561377882957458 in:0.057054031640291214 on:0.03524906560778618 to:0.03340393677353859 n:0.02844827063381672 :0.7202309165149927 -was:0.2462335228919983 is:0.2152433693408966 ,:0.029340608045458794 bo:0.022660689428448677 boat:0.021384766325354576 :0.46513704396784306 -against:0.3392944633960724 for:0.1628415286540985 to:0.061249587684869766 upon:0.04312094673514366 in:0.042042385786771774 :0.3514510877430439 -says:0.25132235884666443 knows:0.16684108972549438 hopes:0.12154291570186615 believes:0.07648097723722458 promises:0.06540822237730026 :0.3184044361114502 -abolish:0.09639107435941696 regulate:0.06319377571344376 tax:0.03447394818067551 seize:0.033159058541059494 levy:0.02910754084587097 :0.7436746023595333 -the:0.9430031180381775 tho:0.030357742682099342 good:0.001684041228145361 tha:0.001417858642525971 his:0.0011776319006457925 :0.022359607508406043 -'ll:0.3391265869140625 can:0.2093476802110672 should:0.16791410744190216 will:0.05132943019270897 must:0.04717045649886131 :0.18511173874139786 -and:0.24148118495941162 ,:0.1519036889076233 ;:0.10362063348293304 as:0.05854359641671181 if:0.038568735122680664 :0.40588216111063957 -at:0.2384120523929596 all:0.21237167716026306 every:0.20377397537231445 one:0.0909753143787384 each:0.06637146323919296 :0.18809551745653152 -to:0.9345749020576477 or:0.0369873084127903 and:0.021144365891814232 for:0.0010660997359082103 ot:0.000892787182237953 :0.005334536719601601 -appoint:0.1706659495830536 hold:0.13993699848651886 occupy:0.12613147497177124 fill:0.1257057636976242 do:0.0791378766298294 :0.3584219366312027 -the:0.7562512159347534 said:0.18294736742973328 Said:0.008653602562844753 that:0.005778803490102291 this:0.005139097571372986 :0.041229913011193275 -,:0.32519954442977905 .:0.05820867046713829 the:0.04771967977285385 in:0.04480605572462082 -:0.024771995842456818 :0.49929405376315117 -the:0.9 :0.1 -very:0.14666596055030823 highly:0.08143432438373566 therefore:0.05720704048871994 not:0.04848888888955116 entirely:0.04156236723065376 :0.6246414184570312 -the:0.5392283797264099 tho:0.3556177616119385 my:0.031159712001681328 that:0.014381521381437778 his:0.009661356918513775 :0.04995126836001873 -out:0.2751324474811554 with:0.10135302692651749 in:0.0823332890868187 up:0.07680843770503998 by:0.052217110991477966 :0.4121556878089905 -of:0.37595558166503906 from:0.20948119461536407 by:0.20152297616004944 to:0.09255661815404892 for:0.014666038565337658 :0.10581759084016085 -it:0.4493999481201172 this:0.39082545042037964 that:0.027348916977643967 there:0.02615237794816494 It:0.019512666389346123 :0.08676064014434814 -,:0.6810369491577148 ;:0.09169498085975647 ;:0.050753120332956314 .:0.023995669558644295 ,:0.008626322261989117 :0.14389295782893896 -other:0.7612637877464294 .:0.2145034670829773 another:0.004456512164324522 other:0.0029086682479828596 Other:0.001765526132658124 :0.015102038625627756 -United:0.9648379683494568 Confederate:0.007817319594323635 Southern:0.0030641481280326843 united:0.001635153777897358 Northern:0.001030701445415616 :0.02161470870487392 -4:0.8941327929496765 3:0.017952637746930122 44:0.013802661560475826 4:0.010627824813127518 8:0.007659594062715769 :0.05582448886707425 -open:0.09711740165948868 ,:0.08632315695285797 explode:0.058430399745702744 work:0.03412095084786415 out:0.02766452357172966 :0.6963435672223568 -said:0.28638118505477905 testified:0.2856539785861969 stated:0.05447295680642128 swore:0.05155891180038452 claimed:0.032540105283260345 :0.2893928624689579 -the:0.8985348343849182 said:0.02426675520837307 tho:0.01905173808336258 an:0.008628829382359982 his:0.005147774703800678 :0.04437006823718548 -on:0.7408521175384521 by:0.17733001708984375 to:0.023603469133377075 from:0.021033359691500664 upon:0.01333830039948225 :0.023842736147344112 -to:0.1670399010181427 after:0.1632087081670761 for:0.09512192755937576 past:0.07960227876901627 from:0.07438480854034424 :0.4206423759460449 -,:0.8181092739105225 ;:0.026125172153115273 for:0.02182708866894245 of:0.01894356682896614 .:0.007758314721286297 :0.10723658371716738 -of:0.939061164855957 for:0.010038900189101696 ot:0.007420336361974478 ,:0.006601955275982618 to:0.004860243760049343 :0.032017399556934834 -of:0.6980032920837402 her:0.06721699237823486 and:0.039234329015016556 with:0.03570565581321716 's:0.03182818740606308 :0.1280115433037281 -and:0.9859532117843628 &:0.007955525070428848 or:0.0018574477871879935 And:0.0017109652981162071 ,:0.0007474590092897415 :0.0017753910506144166 -.:0.6138231754302979 ,:0.05053774639964104 ;:0.04647357761859894 and:0.020739085972309113 while:0.01597372442483902 :0.25245269015431404 -discovery:0.766756534576416 conquest:0.041405029594898224 discoveries:0.02020687237381935 Discovery:0.020062340423464775 formation:0.010340966284275055 :0.14122825674712658 -in:0.5373907685279846 In:0.0994262620806694 and:0.07061918079853058 of:0.060486625880002975 on:0.044324763119220734 :0.1877523995935917 -and:0.3543526232242584 but:0.24064618349075317 ,:0.18917828798294067 ;:0.05836186558008194 .:0.04969136416912079 :0.107769675552845 -three:0.9695279598236084 more:0.014651362784206867 four:0.002982953330501914 two:0.0019696345552802086 three:0.001654626801609993 :0.009213462704792619 -In:0.14094693958759308 At:0.12151961773633957 On:0.09999601542949677 During:0.08047498017549515 For:0.03743661940097809 :0.5196258276700974 -,:0.6205235123634338 built:0.025076905265450478 constructed:0.021515237167477608 erected:0.020829789340496063 tall:0.019619517028331757 :0.29243503883481026 -be:0.06878110766410828 o:0.051073044538497925 of:0.038663480430841446 vo:0.03801758959889412 the:0.03572399169206619 :0.767740786075592 -a:0.7321067452430725 the:0.157457634806633 her:0.06947784125804901 tho:0.011723469942808151 an:0.004403593949973583 :0.02483071479946375 -they:0.4024849534034729 and:0.1330011636018753 or:0.06756839901208878 who:0.03855420649051666 ho:0.0289202481508255 :0.32947102934122086 -never:0.959509551525116 Never:0.011930019594728947 ever:0.008105804212391376 really:0.0031418963335454464 once:0.002367862733080983 :0.01494486560113728 -the:0.9185793399810791 tho:0.030933594331145287 tha:0.01502113789319992 said:0.00723935617133975 th:0.0033435181248933077 :0.024883053498342633 -such:0.2664583623409271 a:0.20202724635601044 the:0.1725328415632248 that:0.05408120155334473 said:0.04946567490696907 :0.25543467327952385 -in:0.10467227548360825 by:0.07949025183916092 not:0.06135072186589241 all:0.05638498812913895 from:0.051008425652980804 :0.6470933370292187 -a:0.8539879322052002 the:0.047858692705631256 ,:0.04721400886774063 one:0.006593526806682348 another:0.006499188952147961 :0.03784665046259761 -so:0.9721283316612244 such:0.005004025064408779 too:0.002221386879682541 makes:0.0013903988292440772 has:0.0011205043410882354 :0.018135353224352002 -J:0.13150160014629364 W:0.10452085733413696 A:0.10387623310089111 H:0.0745399221777916 M:0.0516563281416893 :0.5339050590991974 --:0.9918912649154663 a:0.002839975990355015 ­:0.0014081149129197001 -:0.000610081129707396 of:0.00016317843983415514 :0.0030873846117174253 -liable:0.15077310800552368 entitled:0.11775212734937668 competent:0.07546650618314743 willing:0.06003909558057785 unwilling:0.055367760360240936 :0.5406014025211334 -or:0.9560419917106628 of:0.010709929279983044 and:0.008916161023080349 by:0.00428321398794651 to:0.002768960315734148 :0.017279743682593107 -great:0.10339570790529251 good:0.06762057542800903 strong:0.039670851081609726 sufficient:0.03239072859287262 powerful:0.025418221950531006 :0.7315039150416851 -these:0.4684942960739136 the:0.35241222381591797 our:0.0448334626853466 those:0.03123183362185955 his:0.02626197040081024 :0.07676621340215206 -the:0.4368632435798645 tho:0.29737210273742676 his:0.1108967736363411 him:0.018813127651810646 a:0.013562740758061409 :0.12249201163649559 -tho:0.6454373598098755 the:0.09507326036691666 such:0.027582671493291855 these:0.01965942792594433 his:0.0181498434394598 :0.19409743696451187 -bars:0.2453995943069458 rods:0.20734283328056335 fences:0.032071661204099655 roofs:0.0269942507147789 buildings:0.016883552074432373 :0.4713081084191799 -Panama:0.5991857051849365 Mexico:0.24115781486034393 America:0.019235296174883842 Japan:0.015390408225357533 China:0.012264711782336235 :0.11276606377214193 -the:0.9 :0.1 -law:0.14803215861320496 convention:0.05483461916446686 laws:0.052160345017910004 Convention:0.048606038093566895 order:0.045327719300985336 :0.651039119809866 -the:0.9 :0.1 -Joseph:0.10064596682786942 George:0.08535531908273697 William:0.08531731367111206 James:0.06899546831846237 John:0.0592719241976738 :0.6004140079021454 -cause:0.2842983901500702 even:0.08931677788496017 induce:0.06055504456162453 sometimes:0.05538046360015869 often:0.03282025828957558 :0.47762906551361084 -the:0.5728487372398376 tho:0.3961889147758484 bis:0.008441532962024212 he:0.0029511665925383568 tha:0.00210708100348711 :0.017462567426264286 -a:0.525408148765564 the:0.06873803585767746 such:0.05970640853047371 any:0.05432749167084694 of:0.01946827583014965 :0.2723516393452883 -,:0.14596043527126312 anxious:0.10061022639274597 and:0.0893092080950737 unwilling:0.04748295247554779 willing:0.044082559645175934 :0.5725546181201935 -.:0.7018752098083496 ,:0.1904730349779129 ;:0.01188939530402422 ..:0.010569121688604355 and:0.007651439867913723 :0.07754179835319519 -and:0.6415772438049316 ,:0.07560236006975174 .:0.040720678865909576 or:0.02898970991373062 ;:0.014160911552608013 :0.1989490957930684 -went:0.31620320677757263 came:0.1685304492712021 walked:0.07162448018789291 ran:0.0685691386461258 passed:0.06054016202688217 :0.3145325630903244 -had:0.19539512693881989 he:0.18208539485931396 congress:0.12031827121973038 was:0.10690189898014069 Congress:0.08807829022407532 :0.30722101777791977 -is:0.40509676933288574 has:0.271285742521286 will:0.07604425400495529 Is:0.04666560888290405 was:0.020524125546216965 :0.18038349971175194 -the:0.8440625667572021 tho:0.0427975095808506 her:0.015573397278785706 then:0.010633309371769428 his:0.009091369807720184 :0.07784184720367193 -attempt:0.3268056809902191 action:0.06023934483528137 attempts:0.04995150864124298 refusal:0.049151431769132614 interference:0.03323276340961456 :0.48061927035450935 -of:0.7928748726844788 for:0.0985221192240715 to:0.01898609846830368 after:0.015993358567357063 ,:0.00790094118565321 :0.06572260987013578 -the:0.9 :0.1 -,:0.07342979311943054 construction:0.0623178668320179 this:0.05075353384017944 us:0.03096255660057068 service:0.02683260664343834 :0.7557036429643631 -the:0.9285169839859009 his:0.031475406140089035 a:0.021779537200927734 tho:0.006843490991741419 bis:0.0021137804724276066 :0.009270801208913326 -Ferguson:0.6605129241943359 Brown:0.01295565627515316 Jackson:0.010452850721776485 Wilson:0.00600640382617712 White:0.005871922709047794 :0.3042002422735095 -and:0.38302454352378845 or:0.1359819620847702 he:0.13501113653182983 ,:0.13369500637054443 aud:0.09744353592395782 :0.11484381556510925 -thoughts:0.09130129218101501 doubts:0.0615965873003006 devils:0.0572318509221077 passions:0.04394182190299034 feelings:0.035301510244607925 :0.7106269374489784 -then:0.13811267912387848 be:0.0780918076634407 now:0.06815753132104874 was:0.06591196358203888 were:0.06137732043862343 :0.5883486978709698 -Mary:0.07069160789251328 .:0.03687833994626999 .:0.03540144860744476 John:0.02897351235151291 Miss:0.02190696820616722 :0.8061481229960918 -on:0.5345098376274109 of:0.3280450403690338 against:0.043947938829660416 for:0.023795297369360924 upon:0.023183420300483704 :0.046518465504050255 -will:0.9354171752929688 may:0.034606557339429855 would:0.00829742755740881 should:0.005678636487573385 can:0.0037515710573643446 :0.012248632265254855 -the:0.5286899209022522 its:0.3091176152229309 a:0.05793432891368866 this:0.04551222175359726 that:0.015662891790270805 :0.04308302141726017 -and:0.5374478101730347 ,:0.3291260898113251 ;:0.0744396522641182 ;:0.02007201313972473 And:0.006363078486174345 :0.03255135612562299 -At:0.9123660326004028 at:0.01642603427171707 From:0.01617652364075184 In:0.014132185839116573 About:0.010320178233087063 :0.03057904541492462 -by:0.6537953615188599 to:0.12482509016990662 In:0.04273694381117821 in:0.040425144135951996 from:0.01946759968996048 :0.11874986067414284 -re:0.03146282210946083 o:0.016785958781838417 mere:0.0159626342356205 :0.014799829572439194 de:0.014691457152366638 :0.9062972981482744 -the:0.9 :0.1 -on:0.5270868539810181 of:0.16571420431137085 from:0.058323249220848083 to:0.051921434700489044 at:0.045573800802230835 :0.15138045698404312 -has:0.909403920173645 have:0.07287302613258362 having:0.0037064736243337393 had:0.0031779916025698185 ha:0.00216869474388659 :0.008669893722981215 -petition:0.8824923038482666 paper:0.025912053883075714 Petition:0.014934518374502659 petitions:0.014251173473894596 bill:0.006275885738432407 :0.05613406468182802 -.:0.7989826202392578 life:0.08775002509355545 .:0.00821663811802864 time:0.005899846088141203 years:0.003977757878601551 :0.09517311258241534 -which:0.7216132879257202 that:0.2383171021938324 who:0.004537475761026144 it:0.004211887251585722 what:0.003313871333375573 :0.02800637553445995 -the:0.9 :0.1 -have:0.7809944748878479 get:0.11102567613124847 take:0.023176100105047226 find:0.013866904191672802 receive:0.01155973318964243 :0.05937711149454117 -have:0.6816338896751404 had:0.13536368310451508 all:0.009594947099685669 will:0.009141044691205025 are:0.008006548509001732 :0.15625988692045212 -dealer:0.18007460236549377 gentleman:0.10833536088466644 man:0.09950944781303406 merchant:0.04783676564693451 collector:0.04250796139240265 :0.5217358618974686 -10:0.18880002200603485 11:0.127287819981575 9:0.07467252761125565 8:0.07354843616485596 1:0.0692913681268692 :0.46639982610940933 -the:0.8244869709014893 this:0.07864709943532944 our:0.04614904895424843 tho:0.012876688502728939 a:0.011349968612194061 :0.026490223594009876 -I:0.932883083820343 he:0.009919282048940659 i:0.005926226265728474 ,:0.004586255177855492 be:0.004522840026766062 :0.0421623126603663 -anted:0.2568248510360718 ailed:0.05669686570763588 ued:0.056134313344955444 ained:0.04582890495657921 atted:0.0259611327201128 :0.5585539322346449 -,:0.7095683217048645 ;:0.0818677544593811 known:0.02653627097606659 .:0.022754935547709465 ;:0.01512886956334114 :0.1441438477486372 -This:0.17264331877231598 The:0.12762132287025452 It:0.09870383143424988 I:0.04181572049856186 That:0.03338029608130455 :0.5258355103433132 -pool:0.20610269904136658 pond:0.10650517791509628 lot:0.09357664734125137 pot:0.07069061696529388 tub:0.03757137060165405 :0.48555348813533783 -property:0.24999412894248962 services:0.053097788244485855 persons:0.05270478501915932 notes:0.029990097507834435 documents:0.01870405301451683 :0.5955091472715139 -of:0.5004698634147644 -:0.11326447874307632 in:0.046162135899066925 ot:0.032170847058296204 ol:0.030567225068807602 :0.27736544981598854 -ter:0.27665945887565613 r:0.09007525444030762 t:0.05226731300354004 t:0.03321726620197296 to:0.02802976779639721 :0.519750939682126 -idea:0.26385778188705444 sight:0.14036720991134644 thought:0.12771685421466827 sound:0.07444743067026138 feeling:0.03049343265593052 :0.36311729066073895 -the:0.9 :0.1 -told:0.8593717813491821 informed:0.12004096806049347 tells:0.004268483258783817 notified:0.0028779858257621527 reminded:0.00253269262611866 :0.010908088879659772 -the:0.5514719486236572 this:0.10948220640420914 its:0.08767100423574448 his:0.058371078222990036 a:0.039610933512449265 :0.15339282900094986 -,:0.9149085283279419 ;:0.02711014449596405 ::0.024610869586467743 .:0.009221255779266357 *,:0.0034092008136212826 :0.020740000996738672 -of:0.4853680431842804 and:0.11053827404975891 or:0.05119900032877922 in:0.035240139812231064 -:0.024745376780629158 :0.29290916584432125 -.:0.2876683473587036 ,:0.0883224606513977 ;:0.08399223536252975 ;:0.07523976266384125 and:0.033224403858184814 :0.43155279010534286 -of:0.8856467604637146 which:0.035273488610982895 by:0.02235492132604122 that:0.013662214390933514 for:0.0043385871686041355 :0.038724028039723635 -of:0.1996259093284607 to:0.15119598805904388 with:0.07610997557640076 by:0.07536307722330093 ot:0.050045743584632874 :0.44765930622816086 -to:0.8347631692886353 for:0.12283436208963394 of:0.023800017312169075 the:0.005114790052175522 ot:0.004682234954088926 :0.008805426303297281 -of:0.9979971051216125 ,:0.0005148993222974241 in:0.00041916625923477113 ot:0.0001577491348143667 Of:0.00013605246203951538 :0.0007750277000013739 -sent:0.2631523013114929 turned:0.09964872151613235 held:0.07190918177366257 brought:0.06783778220415115 called:0.05481827259063721 :0.4426337406039238 -say:0.5083310008049011 do:0.16855843365192413 ,:0.04731873422861099 write:0.043694738298654556 think:0.03229125961661339 :0.1998058333992958 -extensive:0.15101048350334167 thorough:0.10726521909236908 careful:0.0986117422580719 exhaustive:0.09232846647500992 recent:0.04368164390325546 :0.507102444767952 -the:0.5718536376953125 tho:0.09111014008522034 this:0.04029208421707153 an:0.038803841918706894 his:0.029034005478024483 :0.22890629060566425 -fallen:0.15689679980278015 struck:0.057617638260126114 come:0.056937627494335175 gone:0.03225654736161232 broken:0.0231254231184721 :0.6731659639626741 -are:0.2484445869922638 county:0.19696177542209625 have:0.14814846217632294 County:0.05307244509458542 were:0.021174293011426926 :0.33219843730330467 -college:0.12095959484577179 -:0.05691760405898094 high:0.05611748248338699 of:0.04064638912677765 good:0.02832224778831005 :0.6970366816967726 -bonds:0.27821654081344604 currency:0.23957225680351257 debt:0.040139149874448776 money:0.027326174080371857 debts:0.019137751311063766 :0.395608127117157 -tion:0.38929301500320435 ing:0.0531623400747776 ment:0.04592207819223404 ed:0.040041420608758926 ly:0.018956610932946205 :0.4526245351880789 -,:0.3322123885154724 had:0.06316538900136948 they:0.031126441434025764 who:0.02456330694258213 and:0.022472869604825974 :0.5264596045017242 -the:0.9 :0.1 -John:0.46834689378738403 Henry:0.05371715873479843 Judge:0.03395674750208855 General:0.03379344195127487 William:0.030920714139938354 :0.37926504388451576 -have:0.40790611505508423 see:0.3662777841091156 hear:0.07754866033792496 find:0.05933932214975357 meet:0.01744469814002514 :0.0714834202080965 -The:0.9583378434181213 the:0.0068098860792815685 tho:0.005628085229545832 A:0.005245456472039223 In:0.001987266819924116 :0.021991461981087923 -tin:0.056184135377407074 little:0.026740938425064087 iron:0.013927193358540535 wooden:0.0116213234141469 ,:0.011319451034069061 :0.8802069583907723 -Boot:0.9974600672721863 Boots:0.0008416394121013582 boot:0.00018877157708629966 Boot:9.059355215867981e-05 Foot:7.85938318585977e-05 :0.0013403343546087854 -been:0.9905468225479126 be:0.0014575202949345112 been:0.0010641005355864763 bo:0.0009708862635307014 being:0.0006156374583952129 :0.0053450328996405005 -June:0.11751233786344528 March:0.11221909523010254 April:0.08331751823425293 July:0.07791908085346222 September:0.05818802863359451 :0.5508439391851425 -Sheriff:0.9621846675872803 sheriff:0.03495224192738533 Marshal:0.0004029098490718752 Chief:0.0003670075675472617 Mayor:0.00030530462390743196 :0.0017878684448078275 -pay:0.3628178834915161 -:0.2660946249961853 pay:0.2076600342988968 paying:0.01368262991309166 payment:0.008598105050623417 :0.14114672224968672 -,:0.23729071021080017 when:0.10330943763256073 whe:0.047361113131046295 that:0.03930281847715378 th:0.031004300341010094 :0.5417316202074289 -the:0.2979593575000763 The:0.262577086687088 tho:0.0397157147526741 as:0.031752850860357285 As:0.03084385022521019 :0.3371511399745941 -place:0.9398020505905151 places:0.009985343553125858 room:0.004889821168035269 point:0.0029018630739301443 port:0.0026851973962038755 :0.039735724218189716 -ii:0.1795143187046051 xx:0.14805081486701965 x:0.09403110295534134 1:0.06782450526952744 iii:0.030855774879455566 :0.4797234833240509 -will:0.7425698637962341 would:0.16893576085567474 may:0.036504097282886505 shall:0.02136056125164032 should:0.010931945405900478 :0.019697771407663822 -the:0.7015992999076843 each:0.0943949744105339 tho:0.04346827417612076 that:0.01665884256362915 The:0.013967092148959637 :0.12991151679307222 -this:0.11124497652053833 nineteenth:0.10567576438188553 new:0.055545225739479065 ,:0.05229823291301727 last:0.05011856555938721 :0.6251172348856926 -caused:0.20987041294574738 had:0.0880650207400322 made:0.046273890882730484 endured:0.037447765469551086 brought:0.03493479639291763 :0.5834081135690212 -best:0.03377735614776611 time:0.01912977173924446 nearest:0.016722774133086205 better:0.01404445432126522 public:0.013534090481698513 :0.9027915531769395 -than:0.8988046050071716 that:0.015571089461445808 which:0.008518122136592865 then:0.00577132822945714 ,:0.005586800165474415 :0.06574805499985814 -ness:0.06810466200113297 parts:0.06542625278234482 form:0.061190441250801086 shape:0.029698293656110764 death:0.028772719204425812 :0.7468076311051846 -.:0.8841336369514465 States:0.02539748139679432 .":0.012458108365535736 states:0.012193900533020496 countries:0.00568733923137188 :0.060129533521831036 -.,:0.6132135391235352 ,:0.10402240604162216 .:0.09948185086250305 .;:0.04075884073972702 ;:0.020766934379935265 :0.12175642885267735 -the:0.17276959121227264 a:0.08361446112394333 my:0.07810794562101364 tho:0.04308132454752922 no:0.015616552904248238 :0.6068101245909929 -of:0.31441086530685425 as:0.06612955033779144 to:0.04091649129986763 sum:0.03363654762506485 .:0.03240460902452469 :0.5125019364058971 -the:0.37533506751060486 a:0.30589404702186584 his:0.11504332721233368 this:0.07962846755981445 any:0.022686969488859177 :0.10141212120652199 -con:0.03186064958572388 -:0.030391383916139603 unpre:0.025380844250321388 ill:0.02236323431134224 de:0.018848692998290062 :0.8711551949381828 -his:0.3788336515426636 the:0.14935946464538574 -:0.048367250710725784 tho:0.042542360723018646 a:0.03994176164269447 :0.3409555107355118 -to:0.6473498940467834 of:0.1532728672027588 ,:0.042625948786735535 and:0.0223247017711401 between:0.017826763913035393 :0.11659982427954674 -the:0.9010347127914429 a:0.04727152734994888 tho:0.02290370687842369 such:0.008037136867642403 any:0.0035573469940572977 :0.017195569118484855 -the:0.9 :0.1 -of:0.9599061012268066 for:0.01465677935630083 ed:0.002474072389304638 the:0.0015685779508203268 on:0.0010770432418212295 :0.020317425834946334 -owns:0.610103189945221 runs:0.10000072419643402 has:0.08043058216571808 operates:0.03312630206346512 is:0.01251999568194151 :0.16381920594722033 -That:0.2833062708377838 that:0.10228842496871948 Provided:0.08886421471834183 And:0.07269041240215302 and:0.04704367369413376 :0.4058070033788681 -:0.08898039907217026 n:0.043184325098991394 -:0.03684956580400467 i:0.029250992462038994 -:0.024375619366765022 :0.7773590981960297 -open:0.7050981521606445 make:0.020763570442795753 operate:0.014233963564038277 start:0.011504435911774635 enter:0.009109345264732838 :0.23929053265601397 -be:0.259918749332428 the:0.0862896665930748 have:0.047923896461725235 bo:0.015486945398151875 a:0.014243097975850105 :0.57613764423877 -successful:0.0673748254776001 recent:0.037241674959659576 re:0.015105729922652245 land:0.014470651745796204 great:0.012901924550533295 :0.8529051933437586 -market:0.03590696305036545 speculative:0.03518456593155861 daily:0.03296831250190735 capital:0.025457940995693207 trading:0.025234494358301163 :0.8452477231621742 -,:0.04683370888233185 from:0.036405980587005615 at:0.027639135718345642 very:0.025365976616740227 and:0.024946551769971848 :0.8388086464256048 -of:0.9854094386100769 from:0.007102709263563156 ot:0.0015282672829926014 ,:0.0008351547294296324 between:0.0008309021359309554 :0.00429352797800675 -charges:0.6931400895118713 poses:0.017068644985556602 forts:0.0160742849111557 section:0.01071176491677761 eries:0.009386666119098663 :0.2536185495555401 -by:0.32067012786865234 in:0.11831632256507874 up:0.07769428938627243 from:0.07542938739061356 on:0.07186917960643768 :0.33602069318294525 -the:0.890720784664154 this:0.06041157618165016 that:0.021945618093013763 an:0.009784902445971966 its:0.003469794988632202 :0.013667323626577854 -have:0.2061324268579483 be:0.198678120970726 cease:0.09353224188089371 continue:0.08773796260356903 bo:0.02687331661581993 :0.387045931071043 -appreciated:0.07977893948554993 encouraged:0.06540855020284653 supported:0.0522209070622921 felt:0.04104796424508095 lent:0.02635561302304268 :0.7351880259811878 -tho:0.48990848660469055 his:0.37848275899887085 the:0.05810074880719185 a:0.03171636536717415 ho:0.003343878546729684 :0.03844776167534292 -William:0.19694003462791443 John:0.12257404625415802 James:0.10743755847215652 Joseph:0.05787050724029541 Charles:0.04558682069182396 :0.46959103271365166 -the:0.9 :0.1 -ng:0.08815266937017441 -:0.04813569411635399 ug:0.02564960904419422 .:0.015300402417778969 «:0.01252935454249382 :0.8102322705090046 -a:0.2211759239435196 with:0.08055813610553741 of:0.0791897177696228 and:0.04671257734298706 in:0.032379020005464554 :0.5399846248328686 -to:0.8979606032371521 me:0.018737677484750748 you:0.01395324058830738 dared:0.006396690383553505 not:0.004158366471529007 :0.05879342183470726 -vigilance:0.18121962249279022 courage:0.09053660184144974 care:0.05454724282026291 strength:0.04978129267692566 discipline:0.02753605507314205 :0.5963791850954294 --:0.5995500683784485 be:0.07006686925888062 been:0.02832558937370777 fully:0.025328930467367172 -:0.01694565825164318 :0.2597828842699528 -supposed:0.1481935679912567 hired:0.05713392794132233 compelled:0.045950934290885925 unable:0.041230276226997375 authorized:0.03995352238416672 :0.6675377711653709 -the:0.3658582866191864 to:0.30779486894607544 their:0.03510797768831253 tho:0.028112400323152542 and:0.019719669595360756 :0.24340679682791233 -we:0.3724331259727478 you:0.3058687746524811 they:0.10234109312295914 but:0.037948742508888245 We:0.024594679474830627 :0.1568135842680931 -of:0.7028701901435852 ot:0.044026393443346024 said:0.02911163493990898 and:0.01464823354035616 on:0.009405073709785938 :0.1999384742230177 -could:0.6484625935554504 would:0.17244108021259308 might:0.07627226412296295 may:0.04816949740052223 should:0.01925792545080185 :0.03539663925766945 -not:0.9216569066047668 otherwise:0.007289514876902103 now:0.006434551440179348 actually:0.006233714986592531 already:0.0060683367773890495 :0.05231697531417012 -terrible:0.0857633501291275 great:0.08288546651601791 dreadful:0.03602037578821182 horrible:0.029818428680300713 tragic:0.025349542498588562 :0.7401628363877535 -number:0.7721491456031799 majority:0.07139166444540024 variety:0.03503067418932915 class:0.010232816450297832 range:0.006914868950843811 :0.10428083036094904 -less:0.8351326584815979 ish:0.05418897420167923 -:0.03457816690206528 ly:0.024518772959709167 same:0.007757116574794054 :0.04382431088015437 -had:0.6994092464447021 has:0.20269513130187988 made:0.01636369712650776 lost:0.009738016873598099 was:0.00917783658951521 :0.0626160716637969 -has:0.20529623329639435 may:0.16413801908493042 can:0.1466474086046219 will:0.10413564741611481 should:0.07109349220991135 :0.3086891993880272 -tho:0.8731222748756409 the:0.05304465815424919 o:0.017352735623717308 a:0.005708240903913975 their:0.004889446310698986 :0.04588264413177967 -a:0.8716042041778564 the:0.016774369403719902 :0.00708385556936264 some:0.006793603766709566 an:0.0061529227532446384 :0.09159104432910681 -more:0.08221692591905594 a:0.07785189151763916 the:0.05489377677440643 so:0.0329999178647995 and:0.0321882925927639 :0.7198491953313351 -the:0.9 :0.1 -,:0.152069553732872 doubted:0.04210561886429787 confidence:0.030615201219916344 expressed:0.017299536615610123 doubt:0.015190583653748035 :0.7427195059135556 -took:0.11046399921178818 had:0.0815860852599144 with:0.0678241103887558 fired:0.043711673468351364 held:0.038066308945417404 :0.6583478227257729 -ports:0.32016119360923767 places:0.0817185714840889 those:0.03103228285908699 ships:0.028595587238669395 vessels:0.026917744427919388 :0.5115746203809977 -er:0.04707123711705208 ment:0.04394225776195526 ing:0.03949728235602379 ly:0.030994853004813194 ed:0.029872825369238853 :0.8086215443909168 -Mary:0.07056768238544464 John:0.04054003581404686 James:0.030072173103690147 William:0.0235561765730381 Charles:0.01998944580554962 :0.8152744863182306 -they:0.4646383225917816 it:0.21054735779762268 he:0.062196675688028336 ho:0.05026274174451828 this:0.01782284304499626 :0.19453205913305283 -the:0.39657649397850037 .:0.029833773151040077 ,:0.022901108488440514 ::0.022539546713232994 a:0.014656806364655495 :0.5134922713041306 -tho:0.7335628271102905 the:0.10920380055904388 o:0.007855537347495556 to:0.005469560157507658 of:0.005011354573071003 :0.13889692025259137 -ed:0.19961902499198914 ported:0.08373741060495377 posed:0.0379653200507164 ted:0.022869206964969635 ing:0.016603069379925728 :0.6392059680074453 -59:0.033347152173519135 4:0.03133191913366318 44:0.02489764429628849 5:0.0234574843198061 55:0.02311624214053154 :0.8638495579361916 -the:0.9 :0.1 -but:0.3839065730571747 and:0.3047006130218506 ,:0.07560974359512329 much:0.06277492642402649 though:0.022611994296312332 :0.15039614960551262 -and:0.5766105651855469 ,:0.22880296409130096 ;:0.018424931913614273 or:0.010362206026911736 they:0.009181193076074123 :0.15661813970655203 -to:0.9344351887702942 for:0.013656468130648136 To:0.010922153480350971 In:0.007151721976697445 in:0.005249835550785065 :0.028584632091224194 -er:0.05012389272451401 ton:0.037733953446149826 :0.03761230409145355 ter:0.03608877211809158 e:0.030380142852663994 :0.808060934767127 -right:0.947893500328064 rights:0.012093567289412022 claim:0.011867169290781021 power:0.0071201082319021225 duty:0.002139951102435589 :0.01888570375740528 -all:0.7137584686279297 the:0.031067267060279846 to:0.027550596743822098 tho:0.027436070144176483 th:0.012663227505981922 :0.18752436991780996 -the:0.9 :0.1 -and:0.6538169384002686 but:0.12878593802452087 or:0.026002168655395508 not:0.015242868103086948 aud:0.008840736001729965 :0.16731135081499815 -member:0.18675442039966583 bishop:0.09723783284425735 Bishop:0.09694735705852509 church:0.04295752942562103 canon:0.0428316555917263 :0.5332712046802044 --:0.2267386019229889 and:0.058482229709625244 mentioned:0.057358518242836 mentioned:0.046696990728378296 ,:0.03972093015909195 :0.5710027292370796 -the:0.9645947813987732 tho:0.022886861115694046 a:0.001434985431842506 its:0.0011392600135877728 said:0.0008907283190637827 :0.0090533837210387 -republican:0.09033969789743423 great:0.037570297718048096 Republican:0.03229718655347824 political:0.03228899464011192 State:0.029258523136377335 :0.7782453000545502 -would:0.4052206873893738 should:0.1913250982761383 may:0.10775316506624222 must:0.09836181998252869 could:0.06191935017704964 :0.13541987910866737 -cure:0.11023608595132828 medicine:0.04379831627011299 remedy:0.031060975044965744 cures:0.028691714629530907 condition:0.0209833811968565 :0.7652295269072056 -ton:0.5071913003921509 ing:0.05917546525597572 tun:0.024054300040006638 d:0.015249739401042461 se:0.013854939490556717 :0.3804742554202676 -he:0.04118461161851883 he:0.03928986191749573 i:0.02246101386845112 it:0.0194671880453825 ,:0.017938392236828804 :0.859658932313323 -,:0.7100467681884766 ;:0.20874281227588654 ;:0.02299882285296917 .:0.02136046625673771 her:0.007609390653669834 :0.02924173977226019 -to:0.9980061650276184 and:0.000908459653146565 t:0.00011459067172836512 ot:0.00010367254435550421 To:0.00010129434667760506 :0.0007658177564735524 -found:0.14733421802520752 noticed:0.13482216000556946 thought:0.10520067065954208 remarked:0.07820899784564972 felt:0.05925336480140686 :0.47518058866262436 -nation:0.23653532564640045 government:0.12253959476947784 party:0.10882321000099182 country:0.09789742529392242 majority:0.049957163631916046 :0.3842472806572914 -the:0.9788368344306946 tho:0.01103241741657257 this:0.0022846392821520567 he:0.0015804556896910071 his:0.0013116014888510108 :0.0049540516920387745 -great:0.16381219029426575 river:0.15457066893577576 Delaware:0.05320252478122711 new:0.021996917203068733 Atlantic:0.021614952012896538 :0.5848027467727661 -the:0.9 :0.1 -It:0.8516395092010498 He:0.024653278291225433 They:0.023171650245785713 We:0.005916566122323275 Napoleon:0.00494370236992836 :0.08967529376968741 -them:0.3688679337501526 so:0.35694533586502075 ,:0.11612258851528168 such:0.03634663671255112 it:0.03133983910083771 :0.09037766605615616 -told:0.5035493969917297 asked:0.27306243777275085 to:0.030745958909392357 gave:0.009695574641227722 ed:0.008410240523517132 :0.1745363911613822 -onic:0.17768466472625732 ica:0.10283707827329636 ical:0.08061804622411728 ic:0.07465797662734985 ron:0.04993844032287598 :0.5142637938261032 -on:0.38946533203125 for:0.2629731297492981 in:0.05240951105952263 upon:0.048455484211444855 to:0.025298643857240677 :0.22139789909124374 -way:0.4171334207057953 head:0.09689456969499588 feet:0.04334976524114609 hand:0.03147722780704498 foot:0.023711342364549637 :0.3874336741864681 -it:0.36039474606513977 It:0.1316552311182022 relief:0.10052864998579025 one:0.046911388635635376 out:0.03891557827591896 :0.32159440591931343 -dated:0.8537937998771667 of:0.03286503627896309 enacted:0.021226122975349426 on:0.015061842277646065 issued:0.00886284839361906 :0.06819035019725561 -the:0.2908514738082886 u:0.13049666583538055 the:0.06382161378860474 i:0.05025043338537216 tho:0.04962361976504326 :0.4149561934173107 -,:0.4005621671676636 ;:0.04067038372159004 that:0.028795786201953888 .:0.020139003172516823 of:0.010678310878574848 :0.4991543488577008 -settlers:0.13937707245349884 Indians:0.07131683826446533 men:0.06761008501052856 natives:0.06024972349405289 expedition:0.04889894276857376 :0.6125473380088806 -The:0.9151490926742554 This:0.02471296116709709 A:0.0237057376652956 One:0.003713626181706786 That:0.0030123807955533266 :0.029706201516091824 -the:0.9227726459503174 tho:0.01915394701063633 said:0.013169349171221256 a:0.00903823971748352 tha:0.006646450143307447 :0.029219368007034063 -satisfaction:0.06251506507396698 happiness:0.03973623365163803 pride:0.03535717353224754 admiration:0.035348981618881226 strength:0.03440757840871811 :0.7926349677145481 -there:0.9422688484191895 There:0.0210237056016922 it:0.011680115014314651 wo:0.0030301620718091726 there:0.0014591006329283118 :0.02053806826006621 -and:0.3207857310771942 that:0.14253798127174377 secured:0.0518658347427845 or:0.03441474214196205 caused:0.01452333852648735 :0.4358723722398281 -roar:0.19127492606639862 sound:0.04617279767990112 ringing:0.04582152143120766 hum:0.01807621866464615 sounds:0.016009770333766937 :0.6826447658240795 -or:0.5470768213272095 and:0.09499029815196991 all:0.03260359913110733 ,:0.025764821097254753 once:0.01932591199874878 :0.28023854829370975 -wages:0.8805103302001953 salaries:0.016388997435569763 earnings:0.011961333453655243 wage:0.010568632744252682 rates:0.00916963815689087 :0.07140106800943613 -pair:0.273711234331131 series:0.12372089922428131 number:0.09431876987218857 row:0.08663063496351242 couple:0.06643398106098175 :0.35518448054790497 -he:0.8595876693725586 they:0.0507107637822628 ho:0.028906717896461487 he:0.01994764246046543 and:0.006488489452749491 :0.034358717035502195 -command:0.07563112676143646 lead:0.04331077262759209 leave:0.03537009656429291 visit:0.029331259429454803 examine:0.029241185635328293 :0.7871155589818954 -that:0.5732285380363464 one:0.04384752735495567 composed:0.026480650529265404 property:0.016121791675686836 home:0.01558597944676876 :0.3247355129569769 -and:0.5107811689376831 ,:0.3948550820350647 ;:0.02813202701508999 aud:0.014017049223184586 .:0.006961597595363855 :0.04525307519361377 -it:0.23843462765216827 he:0.17042315006256104 we:0.12732677161693573 I:0.09374932199716568 there:0.07407834380865097 :0.2959877848625183 -tho:0.31339406967163086 a:0.2521645426750183 his:0.18423575162887573 the:0.08841194957494736 their:0.03047356940805912 :0.13132011704146862 -at:0.20655375719070435 with:0.10994222015142441 .:0.09978841990232468 upon:0.03189265355467796 on:0.030472347512841225 :0.5213506016880274 -a:0.5307743549346924 any:0.11223496496677399 her:0.08109269291162491 his:0.050940219312906265 the:0.034254975616931915 :0.19070279225707054 -present:0.609408438205719 all:0.18559373915195465 liberty:0.03609222546219826 home:0.029507918283343315 once:0.02550513669848442 :0.11389254219830036 -reason:0.23359571397304535 one:0.07294604927301407 result:0.06403917074203491 idea:0.05756145715713501 rule:0.052068594843149185 :0.5197890140116215 -his:0.4725862443447113 the:0.1705992966890335 her:0.04225686192512512 their:0.04118805006146431 His:0.03527209535241127 :0.23809745162725449 -affected:0.4601532816886902 devastated:0.050061970949172974 effected:0.04333316907286644 destroyed:0.03583015874028206 hit:0.030400888994336128 :0.3802205305546522 -been:0.9509707689285278 become:0.02742306888103485 as:0.004971454385668039 remained:0.002294763457030058 served:0.001248673303052783 :0.013091271044686437 -the:0.649952232837677 tho:0.24618755280971527 The:0.03284742683172226 while:0.0066991401836276054 the:0.003978469874709845 :0.06033517746254802 -.:0.9716360569000244 ,:0.004436670336872339 .":0.002939000027254224 .:0.0026460071094334126 !:0.00246133073233068 :0.01588093489408493 -they:0.11670662462711334 some:0.09610871225595474 They:0.07323156297206879 others:0.07025612145662308 Some:0.06994285434484482 :0.5737541243433952 -the:0.6431899070739746 his:0.06788312643766403 this:0.05202323570847511 a:0.03801247850060463 church:0.011652630753815174 :0.18723862152546644 -the:0.4432410001754761 any:0.1478976309299469 such:0.1314573436975479 this:0.10397446155548096 his:0.029094481840729713 :0.14433508180081844 -a:0.11557872593402863 the:0.07170727103948593 his:0.022717036306858063 Lyons:0.009203492663800716 State:0.008285438641905785 :0.7725080354139209 -using:0.06759590655565262 considering:0.06293358653783798 such:0.03950829058885574 describing:0.03684151545166969 ,:0.02246825024485588 :0.7706524506211281 -judgment:0.06348282843828201 Judgment:0.05471377447247505 default:0.03963344916701317 suit:0.035600725561380386 action:0.032229479402303696 :0.7743397429585457 -in:0.4000413417816162 from:0.159950390458107 to:0.0636805072426796 on:0.05717507749795914 at:0.04585995897650719 :0.2732927240431309 -our:0.2918177843093872 the:0.25158926844596863 these:0.035896237939596176 counterfeit:0.030073827132582664 genuine:0.019124511629343033 :0.3714983705431223 -After:0.7064699530601501 In:0.09015724062919617 While:0.02912895195186138 Upon:0.02400180511176586 On:0.023022864013910294 :0.12721918523311615 -that:0.9910067915916443 and:0.0024436654057353735 that:0.001325335237197578 but:0.0011237810831516981 when:0.0006821266142651439 :0.0034183000680059195 -now:0.27852749824523926 is:0.11815492808818817 being:0.09623532742261887 formerly:0.07674305140972137 already:0.06952080130577087 :0.36081839352846146 -of:0.5428957939147949 in:0.30476588010787964 In:0.05583347752690315 ,:0.02736496739089489 at:0.020456086844205856 :0.04868379421532154 -his:0.10974656790494919 his:0.07781269401311874 His:0.07405717670917511 my:0.07355181872844696 he:0.057298436760902405 :0.6075333058834076 -country:0.34444892406463623 world:0.07478685677051544 city:0.0562027171254158 county:0.055714741349220276 state:0.0442584753036499 :0.42458828538656235 -Quite:0.2840458154678345 Not:0.13956493139266968 Un:0.028744187206029892 Put:0.02620994672179222 Most:0.01725168526172638 :0.5041834339499474 -there:0.19800813496112823 it:0.10427629947662354 love:0.045532967895269394 this:0.024988513439893723 that:0.021994294598698616 :0.6051997896283865 -competent:0.24894487857818604 good:0.12245161086320877 qualified:0.0804390162229538 capable:0.06417954713106155 fair:0.034957464784383774 :0.44902748242020607 -doubt:0.49965429306030273 question:0.20107236504554749 wonder:0.04682958871126175 say:0.04031088575720787 dispute:0.035779330879449844 :0.17635353654623032 -nightly:0.15913841128349304 weekly:0.1559528261423111 hourly:0.09547753632068634 daily:0.08684413135051727 frequent:0.05238752067089081 :0.45019957423210144 -the:0.17117880284786224 had:0.08949325978755951 more:0.07138101756572723 taken:0.059961870312690735 his:0.029043905436992645 :0.5789411440491676 -and:0.9268028736114502 or:0.01407585944980383 ,:0.010443106293678284 n:0.010356640443205833 &:0.010126951150596142 :0.028194569051265717 -the:0.6198697090148926 his:0.3525066375732422 her:0.007499773055315018 a:0.005909701343625784 tho:0.0044121695682406425 :0.00980200944468379 -not:0.24753326177597046 but:0.058480698615312576 given:0.047304946929216385 only:0.018990466371178627 always:0.018474847078323364 :0.6092157792299986 -of:0.8529536128044128 ,:0.04550471901893616 ol:0.04306287690997124 to:0.018570953980088234 .:0.008323744870722294 :0.031584092415869236 -temple:0.07068411260843277 city:0.04449903964996338 street:0.042027708142995834 village:0.02956601232290268 museum:0.02365005761384964 :0.7895730696618557 -have:0.9113114476203918 once:0.021194828674197197 ever:0.009396344423294067 bo:0.009193334728479385 ho:0.005849605426192284 :0.04305443912744522 -assurance:0.06716737896203995 ce:0.032242294400930405 indication:0.024725740775465965 od:0.02139897644519806 o:0.020660705864429474 :0.8338049035519361 -we:0.9825403094291687 you:0.0027308391872793436 they:0.0021039173007011414 I:0.0009562516934238374 to:0.0006064889603294432 :0.011062193429097533 -defendant:0.08420614153146744 case:0.06523405760526657 court:0.049884919077157974 jury:0.045429620891809464 trial:0.03320765122771263 :0.7220376096665859 -By:0.41195401549339294 At:0.3579958379268646 Towards:0.05784805864095688 Before:0.05696071311831474 Since:0.025970106944441795 :0.08927126787602901 -required:0.057182010263204575 necessary:0.054039593786001205 e:0.033815015107393265 i:0.01939469762146473 is:0.018013987690210342 :0.8175546955317259 -,:0.6926690936088562 he:0.057730428874492645 .:0.04900635406374931 and:0.035255324095487595 was:0.018086601048707962 :0.14725219830870628 -was:0.17442616820335388 ,:0.036715731024742126 ran:0.033251360058784485 went:0.03183799982070923 were:0.025163725018501282 :0.698605015873909 -of:0.7369710206985474 for:0.1088988184928894 ot:0.027183687314391136 to:0.02058439515531063 with:0.016055118292570114 :0.09030696004629135 -to:0.4289543032646179 would:0.34154728055000305 must:0.09120726585388184 should:0.029796915128827095 could:0.027699900791049004 :0.0807943344116211 -to:0.983062744140625 to:0.005273429676890373 would:0.003512563183903694 that:0.00212665693834424 will:0.0009557706653140485 :0.005068835394922644 -by:0.7798731923103333 in:0.026467518880963326 after:0.02525712177157402 ,:0.023257501423358917 while:0.022892102599143982 :0.1222525630146265 -,:0.10200072079896927 death:0.06540296971797943 die:0.02462121471762657 them:0.01985071785748005 cases:0.016037320718169212 :0.7720870561897755 -and:0.3916599154472351 for:0.1624642014503479 at:0.11071691662073135 without:0.053013190627098083 bearing:0.035694535821676254 :0.2464512400329113 --:0.20773251354694366 .:0.07598318159580231 of:0.05209379643201828 to:0.01927652582526207 *:0.01896638050675392 :0.6259476020932198 -auction:0.9714084267616272 sale:0.018184488639235497 Auction:0.005139325745403767 tender:0.0018860797863453627 bidding:0.000683990481775254 :0.002697688585612923 -a:0.4453016221523285 the:0.15718933939933777 this:0.14868174493312836 his:0.13452428579330444 their:0.017409389838576317 :0.09689361788332462 -and:0.37458479404449463 whereas:0.12843264639377594 while:0.12338802963495255 or:0.07314474135637283 as:0.03282901272177696 :0.2676207758486271 -the:0.9 :0.1 -to:0.41936391592025757 on:0.14826403558254242 upon:0.062025003135204315 in:0.06088452786207199 at:0.055244628340005875 :0.25421788915991783 -error:0.9078757762908936 out:0.031007787212729454 RBI:0.01008759904652834 ace:0.006196224596351385 effort:0.004261369816958904 :0.04057124303653836 -newspaper:0.21575826406478882 form:0.13498201966285706 paper:0.13024123013019562 newspapers:0.0476151667535305 order:0.029892612248659134 :0.44151070713996887 -due:0.9384373426437378 great:0.009904625825583935 full:0.009421874769032001 all:0.007168242242187262 utmost:0.004533993545919657 :0.030533920973539352 -benevolent:0.0406685397028923 glorious:0.03577200695872307 generous:0.03251953795552254 enlightened:0.02561703510582447 exalted:0.022924669086933136 :0.8424982111901045 -be:0.9762296676635742 bo:0.004920339211821556 get:0.002032970078289509 have:0.0019379634177312255 take:0.0011128829792141914 :0.0137661766493693 -to:0.44728994369506836 on:0.19343151152133942 for:0.13226544857025146 upon:0.07317499071359634 in:0.02598291076719761 :0.1278551947325468 -to:0.27656179666519165 for:0.1527983695268631 on:0.14899227023124695 toward:0.07715786248445511 by:0.06768111139535904 :0.27680858969688416 -of:0.9113444685935974 ot:0.057040680199861526 between:0.011345813050866127 to:0.008556153625249863 Of:0.0016399044543504715 :0.0100729800760746 -this:0.5463870167732239 the:0.24692030251026154 tho:0.06367605179548264 said:0.057045213878154755 our:0.015126769430935383 :0.07084464561194181 -adopt:0.13796856999397278 draft:0.11651283502578735 make:0.08319161087274551 prepare:0.06879733502864838 present:0.05449827387928963 :0.5390313751995564 -.:0.4828557074069977 it:0.17357759177684784 It:0.04002462700009346 .:0.014702067710459232 ::0.013627320528030396 :0.2752126855775714 -the:0.6580215692520142 tho:0.10078209638595581 a:0.03071957267820835 tha:0.01488972082734108 you:0.011143412441015244 :0.18444362841546535 -as:0.7961515188217163 so:0.13521267473697662 and:0.009456020779907703 the:0.007814348675310612 such:0.006154311820864677 :0.045211125165224075 -escape:0.08095277100801468 eat:0.052554886788129807 feed:0.05002288892865181 survive:0.044059623032808304 live:0.038260575383901596 :0.7341492548584938 -ing:0.2174241989850998 ment:0.11743952333927155 tion:0.03231626749038696 way:0.01951729692518711 haste:0.011882086284458637 :0.601420626975596 -regions:0.14824533462524414 people:0.09341499209403992 states:0.09318151324987411 region:0.036207057535648346 interests:0.028018910437822342 :0.6009321920573711 -no:0.7810583710670471 little:0.09803372621536255 nothing:0.02132733352482319 few:0.016157241538167 none:0.012649024836719036 :0.07077430281788111 -to:0.4987684488296509 thus:0.053866785019636154 then:0.02753637544810772 faithfully:0.027228208258748055 even:0.015890104696154594 :0.3767100777477026 -some:0.2572557032108307 the:0.17682242393493652 more:0.11091147363185883 his:0.10127808898687363 fresh:0.03836296871304512 :0.3153693415224552 -All:0.2206651270389557 Now:0.0895957350730896 But:0.07574059069156647 Then:0.06567847728729248 And:0.04856179654598236 :0.4997582733631134 -be:0.28454989194869995 avail:0.14133606851100922 partake:0.05158612132072449 complain:0.04304156079888344 boast:0.03153179958462715 :0.44795455783605576 -the:0.5818510055541992 tho:0.32350867986679077 th:0.016428044065833092 an:0.013585236854851246 this:0.008212490938603878 :0.056414542719721794 -and:0.7773019075393677 ,:0.1265944242477417 ;:0.05821080878376961 or:0.006709496024996042 to:0.006059414707124233 :0.025123948697000742 -so:0.10404673963785172 not:0.057640694081783295 is:0.05298742651939392 rose:0.04988757148385048 rises:0.04344649240374565 :0.6919910758733749 -to:0.27198126912117004 upon:0.08123473823070526 with:0.03959457576274872 for:0.02786615677177906 adopted:0.022377101704478264 :0.5569461584091187 -that:0.28831982612609863 which:0.18334922194480896 and:0.056253399699926376 ,:0.04578479006886482 here:0.02540118619799614 :0.40089157596230507 -west:0.17079328000545502 north:0.08802003413438797 south:0.08165356516838074 east:0.07325810194015503 northwest:0.07264447957277298 :0.5136305391788483 -to:0.9956161975860596 and:0.0016503267688676715 to:0.0004413254791870713 not:0.000267509778495878 should:0.0001770456728991121 :0.0018475947144906968 -the:0.9 :0.1 -was:0.8096848726272583 is:0.0749872699379921 became:0.018721839413046837 being:0.016895717009902 made:0.009937870316207409 :0.06977243069559336 -great:0.2975960671901703 loud:0.0456482395529747 long:0.036012303084135056 weeping:0.03367386385798454 prayer:0.030278149992227554 :0.5567913763225079 -name:0.05669860169291496 testimony:0.04443047195672989 friends:0.029933221638202667 story:0.02652169018983841 experience:0.021684225648641586 :0.8207317888736725 -.:0.9745926260948181 .":0.0031597900670021772 .:0.0028952895663678646 ,:0.0014477737713605165 *.:0.001387004042044282 :0.016517516458407044 -the:0.8623850345611572 tho:0.10557031631469727 a:0.019464639946818352 our:0.0030947185587137938 this:0.001092365593649447 :0.008392925024963915 -the:0.8234026432037354 a:0.13755793869495392 exclusive:0.007129313424229622 its:0.005629997234791517 tho:0.004766975063830614 :0.021513132378458977 -the:0.9376063942909241 these:0.01475865300744772 all:0.00456868764013052 tho:0.00438834959641099 those:0.0038456283509731293 :0.03483228711411357 -and:0.7488048672676086 ,:0.07878387719392776 with:0.060848936438560486 of:0.008112014271318913 to:0.007606468163430691 :0.0958438366651535 -all:0.5786077976226807 various:0.08676829189062119 different:0.04848852753639221 two:0.025906410068273544 three:0.02409093827009201 :0.23613803461194038 -old:0.0661228597164154 great:0.06028667464852333 whole:0.03278680145740509 conquered:0.030075212940573692 British:0.02927110157907009 :0.7814573496580124 -the:0.46966487169265747 tho:0.3726614713668823 at:0.04927491024136543 a:0.016415096819400787 their:0.010674908757209778 :0.08130874112248421 -to:0.8742520213127136 in:0.016986116766929626 upon:0.01598886214196682 by:0.009256168268620968 with:0.008272736333310604 :0.07524409517645836 -the:0.9 :0.1 -hot:0.5841981172561646 bath:0.0277259461581707 cold:0.02459992840886116 hot:0.02087591402232647 boiling:0.0178059171885252 :0.3247941769659519 -regulation:0.12460316717624664 law:0.04739191010594368 act:0.040112242102622986 statute:0.02809615060687065 ,:0.027708688750863075 :0.732087841257453 -provided:0.3315756022930145 required:0.26039519906044006 prescribed:0.22762250900268555 permitted:0.030191440135240555 described:0.023877767845988274 :0.12633748166263103 -great:0.2675124704837799 lofty:0.13499023020267487 high:0.04484690725803375 commanding:0.037748102098703384 mighty:0.02493073046207428 :0.4899715594947338 -.:0.4883612096309662 friend:0.04424715414643288 ,:0.029691973701119423 and:0.02793775498867035 life:0.027784284204244614 :0.38197762332856655 --:0.043572623282670975 *:0.030554253607988358 to:0.017634395509958267 ions:0.012697557918727398 ,:0.011174986138939857 :0.8843661835417151 -to:0.3269282281398773 ,:0.15514974296092987 and:0.07624523341655731 which:0.04126177355647087 .:0.03182350471615791 :0.3685915172100067 -one:0.18529659509658813 talent:0.06571561843156815 it:0.06174700707197189 skill:0.03515320643782616 two:0.03328746184706688 :0.6188001111149788 -,:0.05706610530614853 ,:0.051953185349702835 Smith:0.022162357345223427 Brown:0.018456853926181793 Jones:0.01712830737233162 :0.8332331907004118 -the:0.9 :0.1 -the:0.8163844347000122 an:0.10872861742973328 tho:0.05873602256178856 a:0.0039265211671590805 some:0.0019752695225179195 :0.010249134618788958 -so:0.1943216621875763 would:0.147121861577034 who:0.09711743146181107 now:0.07153584063053131 will:0.026905907317996025 :0.4629972968250513 -tion:0.12754814326763153 ment:0.08459208905696869 ing:0.028181543573737144 est:0.02779046632349491 cess:0.019210334867239 :0.7126774229109287 -ing:0.1913611888885498 ment:0.026500368490815163 ter:0.022379418835043907 ed:0.02147715352475643 ton:0.019429100677371025 :0.7188527695834637 -*:0.22381116449832916 full:0.20409297943115234 worth:0.09034737944602966 out:0.04428725689649582 thick:0.02799268811941147 :0.40946853160858154 -will:0.4155923128128052 shall:0.07082058489322662 to:0.04192144796252251 ,:0.04079718515276909 a:0.032928381115198135 :0.39794008806347847 -to:0.9944717884063721 and:0.0019866041839122772 ti:0.0007761749438941479 ot:0.0005821686936542392 to:0.00024884266895242035 :0.001934421103214845 -know:0.1670922487974167 knew:0.08165916800498962 had:0.05292558670043945 have:0.047993823885917664 hate:0.025683144107460976 :0.6246460285037756 -the:0.7488523721694946 their:0.10050224512815475 his:0.025775711983442307 these:0.02226077765226364 this:0.019436851143836975 :0.0831720419228077 -the:0.927931547164917 this:0.02034129574894905 next:0.016336213797330856 late:0.01070683915168047 early:0.00908606592565775 :0.015598038211464882 -world:0.7855179905891418 Lord:0.04866958409547806 people:0.02105698548257351 disciples:0.020884312689304352 Father:0.019581405445933342 :0.1042897216975689 -the:0.8898634910583496 this:0.07007793337106705 a:0.019769368693232536 their:0.005262867081910372 tho:0.004561887122690678 :0.010464452672749758 -reached:0.8010206818580627 .:0.06576771289110184 exceeded:0.016351686790585518 surpassed:0.010425650514662266 met:0.010021069087088108 :0.09641319885849953 -is:0.5388432145118713 Is:0.347364604473114 was:0.024420708417892456 be:0.019166041165590286 are:0.008681898936629295 :0.06152353249490261 -the:0.9 :0.1 -quarrel:0.5021923184394836 fight:0.19835315644741058 dispute:0.06449060887098312 struggle:0.02351240999996662 riot:0.02091137319803238 :0.19054013304412365 -the:0.9 :0.1 -.:0.8533817529678345 !:0.0074014365673065186 .:0.006844491697847843 ,:0.0039274184964597225 *.:0.003823417006060481 :0.12462148326449096 -the:0.9 :0.1 -so:0.7713228464126587 such:0.058295927941799164 this:0.02544257417321205 the:0.020217709243297577 a:0.008276901207864285 :0.11644404102116823 -word:0.4860532879829407 thought:0.07427959889173508 glance:0.03451286256313324 hesitation:0.023407891392707825 doubt:0.022634413093328476 :0.3591119460761547 -ten:0.13972099125385284 eight:0.08339589089155197 twelve:0.08325603604316711 twenty:0.05321454256772995 fifteen:0.041795987635850906 :0.5986165516078472 -Springfield:0.0331263393163681 New:0.019857490435242653 West:0.014173830859363079 Elizabeth:0.014072545804083347 Bloom:0.012007437646389008 :0.9067623559385538 -years:0.19681037962436676 -:0.04453489929437637 the:0.03232116252183914 a:0.01734255999326706 .:0.017162185162305832 :0.6918288134038448 -general:0.0732933059334755 great:0.07192862033843994 exclusive:0.019288266077637672 executive:0.018935518339276314 constitutional:0.01743813045322895 :0.7991161588579416 -minutes:0.21942318975925446 ,:0.17326660454273224 dollars:0.041372355073690414 thirty:0.037640586495399475 cents:0.035691194236278534 :0.4926060698926449 -from:0.7301023006439209 of:0.1945650428533554 in:0.01229351107031107 between:0.003704275004565716 at:0.003453613491728902 :0.05588125693611801 -is:0.23928654193878174 has:0.23197799921035767 occupies:0.06543951481580734 of:0.062121957540512085 holds:0.042439840734004974 :0.3587341457605362 -one:0.150760680437088 a:0.1417904794216156 two:0.06793035566806793 three:0.05820923671126366 1:0.047185782343149185 :0.5341234654188156 -of:0.8447816967964172 from:0.1331600397825241 at:0.0051279072649776936 on:0.0033624793868511915 in:0.0026670016814023256 :0.010900875087827444 -the:0.9 :0.1 -account:0.6159024238586426 description:0.09029635041952133 history:0.060482412576675415 exposition:0.03658898547291756 explanation:0.028948187828063965 :0.16778163984417915 -.:0.9095513820648193 .:0.0120890773832798 .":0.011832809075713158 ::0.005170624237507582 ;:0.004281556233763695 :0.05707455100491643 -,:0.9363502264022827 by:0.007900770753622055 -:0.0078339958563447 .:0.005986380390822887 ;:0.005544227082282305 :0.03638439951464534 -the:0.9898293614387512 tho:0.005469605326652527 tha:0.0012170656118541956 said:0.0005732143181376159 the:0.0005214057164266706 :0.0023893475881777704 -examination:0.1865410953760147 consideration:0.13144885003566742 discussion:0.10036971420049667 analysis:0.0964401513338089 study:0.030508099123835564 :0.45469208993017673 -share:0.9131696820259094 part:0.021676229313015938 portion:0.01808372512459755 half:0.006725165992975235 shares:0.003948750905692577 :0.03639644663780928 -American:0.3147926330566406 English:0.2616273760795593 British:0.09241999685764313 French:0.04664970934391022 German:0.02248954400420189 :0.2620207406580448 -and:0.41074952483177185 The:0.2188265025615692 the:0.12145624309778214 ,:0.015629079192876816 And:0.009777658618986607 :0.22356099169701338 -he:0.07908989489078522 lie:0.06367579102516174 would:0.051338501274585724 they:0.04887596517801285 were:0.026965292170643806 :0.7300545554608107 -able:0.510768711566925 ive:0.13917240500450134 ant:0.1181471049785614 ed:0.026744147762656212 ful:0.02026454359292984 :0.18490308709442616 -,:0.3467386066913605 and:0.07424111664295197 cash:0.05804821476340294 order:0.052430689334869385 or:0.032890237867832184 :0.43565113469958305 -preceding:0.10320355743169785 long:0.06548827886581421 hundred:0.04664453864097595 great:0.0291916336864233 three:0.02793111465871334 :0.7275408767163754 -30:0.04104919359087944 40:0.0409647636115551 50:0.03601991757750511 20:0.028877556324005127 100:0.028841281309723854 :0.8242472875863314 -imposing:0.3856830894947052 imposes:0.12386494129896164 authorizing:0.07271956652402878 requiring:0.041323352605104446 prohibiting:0.038618456572294235 :0.3377905935049057 -sympathy:0.060457147657871246 pride:0.05320848152041435 gratitude:0.047449786216020584 pain:0.03638791665434837 love:0.03289736062288284 :0.7695993073284626 -brought:0.3186846971511841 carried:0.3105056881904602 taken:0.10146112740039825 turned:0.03675544261932373 put:0.027106596156954765 :0.20548644848167896 -did:0.8161760568618774 could:0.06331552565097809 would:0.03814093396067619 will:0.03330310806632042 does:0.008529949933290482 :0.040534425526857376 -a:0.2920570969581604 the:0.15079185366630554 to:0.09519869089126587 my:0.08063381910324097 and:0.03032900206744671 :0.3509895373135805 -ever:0.21813641488552094 who:0.06313115358352661 alone:0.03506065532565117 themselves:0.03106655180454254 ,:0.022098690271377563 :0.6305065341293812 -.:0.339334100484848 vote:0.03771684318780899 act:0.018345924094319344 see:0.017824893817305565 say:0.016699502244591713 :0.5700787361711264 -she:0.7890158295631409 who:0.04084965959191322 which:0.03411756455898285 and:0.03384702280163765 Virginia:0.017753127962350845 :0.08441679552197456 -same:0.9316424131393433 usual:0.011829100549221039 following:0.007725701201707125 opposite:0.0066859726794064045 right:0.003996937070041895 :0.038119875360280275 -ot:0.5284789204597473 of:0.4121611416339874 ol:0.019037283957004547 for:0.016549991443753242 ,:0.0029459535144269466 :0.020826708991080523 -regard:0.7699925899505615 regards:0.06445611268281937 as:0.0500667542219162 respect:0.0415789857506752 relation:0.041005708277225494 :0.032899849116802216 -question:0.14888231456279755 words:0.05823608115315437 ::0.05347871780395508 reply:0.04128638654947281 saying:0.03639950975775719 :0.661716990172863 -he:0.46107369661331177 she:0.3860384523868561 they:0.020906809717416763 lie:0.012445701286196709 it:0.011910739354789257 :0.10762460064142942 -Monday:0.8733765482902527 day:0.04433388262987137 Tuesday:0.03154199942946434 Sunday:0.011909338645637035 Wednesday:0.010554119013249874 :0.028284111991524696 -and:0.17174690961837769 or:0.06377135217189789 as:0.058830104768276215 according:0.030012596398591995 especially:0.02518640086054802 :0.6504526361823082 -sed:0.1513734757900238 vo:0.05133296176791191 rived:0.049155957996845245 ced:0.029372498393058777 occurred:0.01936209760606289 :0.6994030084460974 -Beach:0.8993762135505676 Anderson:0.0033481637947261333 Brown:0.0028196005150675774 Banks:0.0023759386967867613 Scott:0.002142005367204547 :0.08993807807564735 -for:0.4636373817920685 on:0.3251058757305145 in:0.10062256455421448 by:0.035785067826509476 as:0.015800220891833305 :0.059048889204859734 -leaves:0.5368955135345459 makes:0.155617356300354 finds:0.02660101279616356 sets:0.024640846997499466 places:0.018116146326065063 :0.238129124045372 -Great:0.08395509421825409 Portland:0.04753783717751503 Twin:0.04259208217263222 Niagara:0.02905375510454178 Spokane:0.027032876387238503 :0.7698283549398184 -lot:0.06023507937788963 alley:0.049459364265203476 lots:0.04844240844249725 street:0.04130644351243973 plat:0.018332166597247124 :0.7822245378047228 -they:0.5865578651428223 and:0.23231302201747894 They:0.035812247544527054 which:0.028091933578252792 but:0.024341819807887077 :0.09288311190903187 -the:0.4661823809146881 to:0.05926668271422386 of:0.04122978448867798 as:0.03603726997971535 in:0.025673869997262955 :0.37161001190543175 -im:0.9860397577285767 Im:0.010446775704622269 i:0.0002665899519342929 am:0.0002595476107671857 im:0.00018790032481774688 :0.0027994286792818457 -at:0.6153294444084167 by:0.12518474459648132 in:0.1068834736943245 In:0.04410494863986969 on:0.01402564998716116 :0.09447173867374659 -is:0.6319332718849182 stands:0.05707867816090584 lies:0.038472410291433334 falls:0.023655353114008904 remains:0.023371020331978798 :0.2254892662167549 -bank:0.45161405205726624 Bank:0.11856167018413544 Treasury:0.09337126463651657 government:0.050759073346853256 Government:0.024994367733597755 :0.26069957204163074 -,:0.7121153473854065 of:0.0805743932723999 ;:0.03629940375685692 by:0.03288589045405388 with:0.021301865577697754 :0.11682309955358505 -In:0.1611701101064682 But:0.0886029526591301 For:0.06609521061182022 And:0.05737830698490143 With:0.05433852970600128 :0.5724148899316788 -in:0.5825710892677307 into:0.06500893831253052 In:0.06351076066493988 for:0.05340090021491051 during:0.03539487347006798 :0.2001134380698204 -.:0.5520515441894531 it:0.041764989495277405 which:0.03721913695335388 .:0.0274570994079113 them:0.026154063642024994 :0.3153531663119793 -tho:0.5605571269989014 the:0.247532919049263 her:0.07444848865270615 his:0.015355346724390984 a:0.014055090956389904 :0.0880510276183486 -affecting:0.16371503472328186 surrounding:0.09334012120962143 preceding:0.08264981955289841 in:0.07409022003412247 of:0.057144369930028915 :0.5290604345500469 -of:0.8073645234107971 ot:0.1006803810596466 and:0.018619168549776077 ,:0.014973081648349762 ol:0.011840165592730045 :0.04652267973870039 -and:0.3363494873046875 but:0.27854079008102417 even:0.0628950372338295 especially:0.036803748458623886 as:0.026059364899992943 :0.259351572021842 -a:0.3360624611377716 the:0.06601382791996002 to:0.052387841045856476 no:0.049896661192178726 some:0.045559294521808624 :0.45007991418242455 -the:0.9806308746337891 a:0.01272694393992424 in:0.0016018940368667245 tho:0.0012053231475874782 The:0.0011793505400419235 :0.002655613701790571 -that:0.23770400881767273 of:0.12201624363660812 ,:0.10539283603429794 the:0.05887134000658989 .:0.03388727456331253 :0.4421282969415188 -their:0.767077624797821 his:0.14256013929843903 the:0.03387582302093506 tho:0.014729020185768604 its:0.014513049274682999 :0.027244343422353268 -for:0.19719018042087555 on:0.14264513552188873 of:0.12115247547626495 upon:0.09105871617794037 to:0.08524897694587708 :0.3627045154571533 -he:0.738516092300415 ho:0.10237934440374374 lie:0.012999388389289379 they:0.010346231050789356 be:0.009863304905593395 :0.1258956389501691 -1908:0.1495208740234375 1907:0.13544861972332 1915:0.08305614441633224 1911:0.05319543182849884 1909:0.049054183065891266 :0.5297247469425201 -enemy:0.0547342374920845 same:0.03518250957131386 right:0.027109524235129356 duty:0.021885761991143227 greatest:0.019307082518935204 :0.8417808841913939 -and:0.6287404894828796 as:0.16547271609306335 or:0.04792065545916557 unless:0.011821138672530651 if:0.011472725309431553 :0.13457227498292923 -thousand:0.5416644215583801 hundred:0.13934434950351715 few:0.11014576256275177 million:0.07425273209810257 dozen:0.02909087762236595 :0.10550185665488243 -ed:0.34874433279037476 ured:0.11953553557395935 able:0.10639794170856476 ued:0.06010778620839119 ied:0.04044982045888901 :0.32476458325982094 -way:0.17676904797554016 arc:0.013600542210042477 control:0.012006373144686222 tun:0.011575987562537193 ed:0.011158368550240993 :0.774889680556953 -post:0.8580731153488159 stone:0.02415822073817253 place:0.00868743471801281 stake:0.0043503111228346825 point:0.004150735680013895 :0.10058018239215016 -Noah:0.19259008765220642 Jackson:0.027365533635020256 Wright:0.019494492560625076 Wilson:0.019357236102223396 Polk:0.019286606460809708 :0.7219060435891151 -in:0.3014286160469055 of:0.2288370132446289 under:0.1903896927833557 In:0.0864742323756218 and:0.06087367609143257 :0.1319967694580555 -and:0.2791738212108612 being:0.055562373250722885 ,:0.050157513469457626 where:0.049838099628686905 in:0.04330182448029518 :0.5219663679599762 -the:0.941565215587616 tho:0.044313620775938034 a:0.0026971944607794285 tha:0.002227789955213666 be:0.0013038153992965817 :0.007892363821156323 -is:0.7814828157424927 Is:0.1519474983215332 be:0.007174941711127758 exists:0.007166667375713587 IS:0.005248313304036856 :0.04697976354509592 -satisfaction:0.07413487136363983 fulfillment:0.07411684095859528 object:0.06601985543966293 sake:0.05887290835380554 purpose:0.04286065697669983 :0.6839948669075966 -nomination:0.06069355085492134 recommendation:0.03889784589409828 decision:0.037614855915308 proposal:0.024116799235343933 vote:0.01876390166580677 :0.8199130464345217 -the:0.5341969132423401 this:0.4235472083091736 that:0.014160039834678173 tho:0.009790224954485893 such:0.0023760769981890917 :0.01592953666113317 -is:0.6481631398200989 has:0.20224426686763763 are:0.04187675938010216 Is:0.03041919134557247 was:0.014157507568597794 :0.06313913501799107 -many:0.977995753288269 what:0.009431727230548859 few:0.004065260756760836 long:0.0014380397042259574 much:0.0013476473977789283 :0.005721571622416377 -has:0.932222306728363 had:0.044528793543577194 hath:0.005402481649070978 ha:0.003140948247164488 have:0.002938813529908657 :0.011766656301915646 -It:0.27816078066825867 which:0.24098534882068634 which:0.05764540657401085 and:0.04610515385866165 it:0.04589274525642395 :0.33121056482195854 -levied:0.10784207284450531 paid:0.09624512493610382 made:0.06476843357086182 payable:0.0617440864443779 *:0.05285433679819107 :0.6165459454059601 -led:0.07230203598737717 lo:0.029347365722060204 ,:0.028581764549016953 ed:0.028242068365216255 been:0.0196975264698267 :0.8218292389065027 -the:0.9006950259208679 a:0.06163732334971428 his:0.01736186258494854 tho:0.00512499688193202 their:0.0027677305042743683 :0.012413060758262873 -the:0.9 :0.1 -will:0.5973188877105713 may:0.10748013108968735 would:0.10163406282663345 should:0.04195212945342064 can:0.034835271537303925 :0.11677951738238335 -It:0.5763294696807861 That:0.12038680911064148 This:0.1144939512014389 I:0.07691892981529236 1:0.011434199288487434 :0.10043664090335369 -probable:0.22244317829608917 expected:0.1368510127067566 hoped:0.10466886311769485 likely:0.10359110683202744 anticipated:0.07403145730495453 :0.3584143817424774 -on:0.9966148734092712 On:0.0013640561373904347 upon:0.0005817736382596195 in:0.00025662092957645655 On:0.00014845863915979862 :0.0010342172463424504 -movement:0.3193269968032837 volume:0.06764811277389526 trade:0.06458637118339539 supply:0.03536912053823471 amount:0.03527931123971939 :0.47779008746147156 -the:0.7921978831291199 tho:0.16303756833076477 a:0.008753983303904533 tha:0.003787993686273694 his:0.0023917590733617544 :0.029830812476575375 -,:0.1667543351650238 -:0.08673545718193054 poor:0.0317220501601696 young:0.024306582286953926 :0.021416500210762024 :0.6690650749951601 -the:0.9 :0.1 -the:0.9 :0.1 -highest:0.2063581496477127 best:0.09363046288490295 most:0.08808351308107376 tin:0.05880477651953697 gold:0.04931569844484329 :0.5038073994219303 -built:0.437136173248291 constructed:0.09358236193656921 commissioned:0.055710624903440475 ordered:0.04355006664991379 completed:0.04272809997200966 :0.32729267328977585 -letter:0.23670333623886108 paper:0.16556720435619354 column:0.06594758480787277 ,:0.05888736993074417 article:0.050067126750946045 :0.4228273779153824 -that:0.3067695200443268 ,:0.0917254090309143 what:0.07977423071861267 it:0.07145728170871735 which:0.02857540361583233 :0.42169815488159657 -their:0.6049599647521973 his:0.3556444048881531 the:0.02530655264854431 its:0.0029738277662545443 our:0.002140009542927146 :0.008975240401923656 -put:0.14534857869148254 taken:0.0910576656460762 set:0.07967536896467209 picked:0.042035408318042755 dug:0.025675032287836075 :0.6162079460918903 -black:0.12474124133586884 white:0.09169141948223114 fur:0.03416668251156807 large:0.025267040356993675 red:0.023602331057190895 :0.7005312852561474 -thoughts:0.29474732279777527 visions:0.12761202454566956 feelings:0.08301916718482971 fears:0.04716065153479576 memories:0.04528730735182762 :0.4021735265851021 -knowledge:0.5067123174667358 discovery:0.10012749582529068 theory:0.05131286755204201 discoveries:0.045996297150850296 grasp:0.021142711862921715 :0.27470831014215946 -as:0.8810958862304688 so:0.06897519528865814 a:0.006789122708141804 very:0.0036698344629257917 still:0.0029345040675252676 :0.036535457242280245 -wife:0.27471259236335754 father:0.11790376901626587 man:0.0902748629450798 girl:0.06441963464021683 children:0.06334739923477173 :0.3893417418003082 -railroad:0.269453763961792 freight:0.09910815954208374 new:0.03348652645945549 small:0.02760348655283451 large:0.026678822934627533 :0.5436692405492067 -a:0.5068984627723694 ,:0.1623474806547165 and:0.1608555167913437 an:0.03934377059340477 ;:0.011242183856666088 :0.11931258533149958 -the:0.08377476036548615 was:0.04279571399092674 wonderful:0.02604272961616516 great:0.024452120065689087 an:0.02426859177649021 :0.7986660841852427 -the:0.9 :0.1 -daily:0.17439167201519012 national:0.07710898667573929 newspaper:0.05124456062912941 local:0.03257293254137039 public:0.018904410302639008 :0.6457774378359318 -the:0.4046471118927002 all:0.2793283462524414 said:0.09929448366165161 any:0.05491218343377113 such:0.04529406502842903 :0.11652380973100662 -grade:0.3645590841770172 a:0.02152327634394169 running:0.01740305870771408 going:0.012556164525449276 age:0.01159445010125637 :0.5723639661446214 -if:0.3704148828983307 while:0.10833681374788284 when:0.08206785470247269 although:0.05747247859835625 had:0.05237746983766556 :0.329330500215292 -saw:0.18997010588645935 young:0.03746259585022926 seen:0.02681790292263031 mortal:0.025516007095575333 blind:0.02455667220056057 :0.6956767160445452 -she:0.5200047492980957 the:0.08429887145757675 her:0.022112268954515457 a:0.011636156588792801 She:0.01140671968460083 :0.35054123401641846 -There:0.9587836265563965 Reports:0.0036321559455245733 Stories:0.002622441155835986 Cases:0.0025885440409183502 There:0.0023334084544330835 :0.030039823846891522 -same:0.9887863397598267 more:0.0013375324197113514 less:0.0011970574269071221 most:0.0005308040999807417 equally:0.0004176553338766098 :0.007730610959697515 -the:0.7873610854148865 this:0.13448722660541534 that:0.04608169570565224 tho:0.012732163071632385 these:0.004263504408299923 :0.015074324794113636 -and:0.8718864917755127 ,:0.03696511685848236 but:0.02621179260313511 as:0.00892321765422821 that:0.008053225465118885 :0.04796015564352274 -either:0.24265560507774353 support:0.10537227243185043 oppose:0.03233085572719574 favor:0.03124917671084404 help:0.023972006514668465 :0.5644200835376978 -D:0.1906566321849823 M:0.10487750172615051 C:0.029501313343644142 1:0.024498648941516876 30:0.02161070704460144 :0.6288551967591047 -the:0.8146284818649292 all:0.04198964312672615 such:0.018243566155433655 both:0.015194897539913654 various:0.01091031450778246 :0.09903309680521488 -of:0.33495646715164185 ,:0.3334699273109436 and:0.2951197624206543 for:0.009511340409517288 or:0.0069435639306902885 :0.019998938776552677 -of:0.9624517560005188 of:0.014260202646255493 ot:0.00790413934737444 ta:0.006000125780701637 Of:0.0024180011823773384 :0.006965775042772293 -charging:0.9974518418312073 performing:0.0007004245999269187 mounted:0.00022602597891818732 puting:0.0001772806135704741 serving:9.893818787531927e-05 :0.0013454887885018252 -Is:0.5284630656242371 is:0.433285117149353 was:0.008209902793169022 has:0.003566754749044776 are:0.0012931512901559472 :0.025182008394040167 -u:0.089678093791008 ot:0.04635617136955261 ut:0.02789768949151039 -:0.026731614023447037 ulk:0.023472459986805916 :0.785863971337676 -the:0.9 :0.1 -in:0.15475232899188995 on:0.1259421706199646 at:0.10720188915729523 by:0.09243733435869217 over:0.07977370917797089 :0.43989256769418716 -est:0.8883417844772339 ever:0.019759876653552055 looking:0.015025999397039413 oldest:0.011253105476498604 lest:0.005888122133910656 :0.059731111861765385 -commissioners:0.23823730647563934 Commissioners:0.04540352150797844 committee:0.03825215995311737 council:0.03713609650731087 delegates:0.03628227487206459 :0.6046886406838894 -Is:0.07636905461549759 In:0.06574495881795883 and:0.05463521182537079 With:0.05116434395313263 1:0.044540535658597946 :0.7075458951294422 -punished:0.1451900154352188 enforced:0.06804601103067398 pursued:0.05143720656633377 investigated:0.03629182651638985 tried:0.028222758322954178 :0.6708121821284294 -road:0.9597305059432983 highway:0.013057001866400242 route:0.00499390996992588 line:0.0023801301140338182 roadway:0.001987931551411748 :0.01785052055492997 -or:0.26980477571487427 and:0.07865789532661438 an:0.054013729095458984 the:0.035680606961250305 a:0.03515970706939697 :0.5266832858324051 -gateway:0.0816270187497139 road:0.07442346215248108 entrance:0.05915943905711174 barrier:0.0562000647187233 obstacle:0.05023186281323433 :0.6783581525087357 -His:0.6659653186798096 The:0.26118701696395874 My:0.014647401869297028 He:0.010693400166928768 A:0.007092098705470562 :0.04041476361453533 -the:0.9 :0.1 -different:0.44696366786956787 separate:0.24965019524097443 harmless:0.15133562684059143 distinct:0.04588231071829796 new:0.033219113945961 :0.07294908538460732 -to:0.09523513168096542 and:0.0474756620824337 d:0.03296873718500137 he:0.02598637342453003 n:0.025371862575411797 :0.7729622330516577 -the:0.515997052192688 their:0.29653409123420715 a:0.05258829519152641 its:0.05101769044995308 his:0.02669593319296837 :0.057166937738657 -Street:0.03829476609826088 Broadway:0.02650444023311138 street:0.023492787033319473 Side:0.02334110625088215 Lake:0.013555694371461868 :0.8748112060129642 -attitude:0.18131306767463684 hostility:0.17994274199008942 resentment:0.05484981834888458 hatred:0.032847415655851364 prejudice:0.031562041491270065 :0.5194849148392677 -we:0.5866733193397522 they:0.17331960797309875 you:0.06986235827207565 to:0.05298304557800293 it:0.02312272973358631 :0.09403893910348415 -able:0.10648685693740845 made:0.07911718636751175 allowed:0.054197829216718674 required:0.039698291569948196 permitted:0.03498730808496475 :0.6855125278234482 -,:0.7986539006233215 .:0.04878012835979462 ;:0.03913923352956772 is:0.023411568254232407 ;:0.020235149189829826 :0.0697800200432539 -getting:0.8411956429481506 going:0.05371340736746788 proceeding:0.009522409178316593 returning:0.007024894002825022 driving:0.006733897607773542 :0.08180974889546633 -The:0.6349999308586121 This:0.29554468393325806 Their:0.027832500636577606 That:0.020359817892313004 Such:0.0050584180280566216 :0.01620464865118265 -John:0.09273944795131683 William:0.06393565237522125 George:0.05666584149003029 James:0.05011991411447525 Henry:0.03193292394280434 :0.704606220126152 -which:0.8166071772575378 whom:0.047042760998010635 the:0.04616526514291763 what:0.019353557378053665 tho:0.01134895533323288 :0.059482283890247345 -defend:0.3628042936325073 uphold:0.05813344568014145 promote:0.0318882055580616 proclaim:0.02238396555185318 apply:0.019405249506235123 :0.5053848400712013 -notice:0.8494312167167664 it:0.07032391428947449 It:0.025120142847299576 Notice:0.01476452685892582 and:0.007120754569768906 :0.033239444717764854 -naval:0.874519407749176 navy:0.03300860896706581 Navy:0.014388194307684898 Naval:0.009967751801013947 marine:0.00865358579903841 :0.05946245137602091 -tion:0.03348309174180031 gress:0.025100624188780785 ward:0.011844138614833355 way:0.010285337455570698 elect:0.009496343322098255 :0.9097904646769166 -of:0.33793550729751587 on:0.11107229441404343 ot:0.060667939484119415 upon:0.057892292737960815 to:0.05520392581820488 :0.3772280402481556 -also:0.15713034570217133 only:0.11460708826780319 not:0.06923266500234604 continuing:0.029437940567731857 continue:0.028883788734674454 :0.6007081717252731 -the:0.5725216865539551 his:0.13395264744758606 why:0.046648092567920685 what:0.03378375619649887 how:0.02623850107192993 :0.18685531616210938 -ment:0.13929946720600128 cess:0.08386003971099854 tion:0.06529775261878967 sum:0.012282172217965126 struct:0.011233647353947163 :0.6880269208922982 -testified:0.8391351699829102 said:0.05426196753978729 stated:0.03790361434221268 admitted:0.008816968649625778 claimed:0.005382272880524397 :0.0545000066049397 -this:0.44157588481903076 an:0.27485665678977966 the:0.08482574671506882 said:0.0661759302020073 such:0.04179925099015236 :0.0907665304839611 -.:0.49911096692085266 .":0.01840013638138771 ,:0.018253080546855927 ;:0.010353745892643929 air:0.00693674897775054 :0.44694532128050923 -):0.5802769064903259 .:0.021753836423158646 ).:0.014229759573936462 ):0.01145983673632145 %):0.011140434071421623 :0.3611392267048359 -I:0.7497504353523254 and:0.16775795817375183 ,:0.024358492344617844 or:0.005054593086242676 he:0.004704906139522791 :0.04837361490353942 -the:0.9751732349395752 tho:0.00927561055868864 this:0.0033723139204084873 said:0.00266715744510293 a:0.0020607681944966316 :0.007450914941728115 -.:0.07028616219758987 coming:0.054539188742637634 pouring:0.04430327191948891 ,:0.04373449832201004 and:0.03745343163609505 :0.7496834471821785 -who:0.4884536862373352 and:0.35082292556762695 he:0.03669728338718414 but:0.026389015838503838 then:0.005908430088311434 :0.09172865888103843 -extent:0.10063015669584274 whole:0.04586470499634743 origin:0.04200257360935211 breadth:0.035372816026210785 base:0.03527858853340149 :0.7408511601388454 -and:0.8749834299087524 ,:0.09099910408258438 or:0.018195586279034615 of:0.003591626649722457 .:0.0010449826950207353 :0.01118527038488537 -.:0.3395891785621643 them:0.22769343852996826 it:0.048321932554244995 you:0.03425639495253563 the:0.02836049534380436 :0.32177856005728245 -and:0.17622525990009308 often:0.08906149119138718 even:0.0668635219335556 to:0.05425695329904556 sometimes:0.04638905078172684 :0.5672037228941917 -any:0.1513296514749527 every:0.1450537145137787 plain:0.13568738102912903 no:0.1205090805888176 his:0.037990085780620575 :0.4094300866127014 -to:0.09617026895284653 t:0.02973731979727745 i:0.025076450780034065 d:0.022931823506951332 will:0.02246311493217945 :0.8036210220307112 --:0.12264474481344223 ia:0.03709986060857773 u:0.028850115835666656 a:0.028220882639288902 ­:0.02603255771100521 :0.7571518383920193 -the:0.9 :0.1 -the:0.383664071559906 his:0.025540370494127274 her:0.011589772999286652 said:0.010718547739088535 two:0.009085893630981445 :0.5594013435766101 -willing:0.11347687244415283 able:0.052650898694992065 obliged:0.04160876199603081 compelled:0.037663694471120834 disposed:0.034954920411109924 :0.7196448519825935 -own:0.019378026947379112 son:0.01646306924521923 wife:0.0141736576333642 dear:0.013680760748684406 friend:0.01059145200997591 :0.9257130334153771 -between:0.8793686628341675 in:0.04693905636668205 In:0.027427474036812782 Between:0.013941359706223011 of:0.00958201102912426 :0.022741436026990414 -We:0.728274405002594 I:0.18838036060333252 we:0.025695862248539925 1:0.018690643832087517 They:0.007055103313177824 :0.03190362500026822 -Boyd:0.9183050394058228 Brown:0.006244351156055927 Barker:0.0029148750472813845 Bryan:0.0026788448449224234 Jones:0.0022069502156227827 :0.06764993933029473 -at:0.49120497703552246 about:0.17124010622501373 after:0.11041244864463806 before:0.10065111517906189 around:0.023106854408979416 :0.10338449850678444 -at:0.8468376994132996 by:0.049145039170980453 to:0.024587487801909447 in:0.013872748240828514 with:0.009199772961437702 :0.05635725241154432 -for:0.3113566040992737 in:0.1723899394273758 on:0.0907781645655632 among:0.08567608147859573 In:0.041273172944784164 :0.2985260374844074 -a:0.9910911321640015 an:0.0032329964451491833 the:0.0010608581360429525 his:0.0006751943728886545 this:0.0005974245723336935 :0.0033423943095840514 -purchase:0.26373010873794556 sale:0.13824209570884705 shipment:0.052902135998010635 raising:0.0350724458694458 taking:0.03329357132315636 :0.4767596423625946 -the:0.8129839301109314 said:0.06128668040037155 tho:0.04077436774969101 such:0.016753215342760086 all:0.0079256072640419 :0.060276199132204056 -,:0.43102726340293884 which:0.11933725327253342 that:0.07584133744239807 and:0.030808255076408386 arising:0.01715007610619068 :0.3258358146995306 -of:0.9771335124969482 on:0.005279162898659706 in:0.004307297524064779 ot:0.0037792723160237074 of:0.002055726945400238 :0.007445027818903327 -elect:0.22000159323215485 wish:0.1560285985469818 register:0.04807382822036743 vote:0.04212408512830734 have:0.031418003141880035 :0.5023538917303085 -now:0.6173941493034363 still:0.2355278879404068 presently:0.026847882196307182 also:0.02611219882965088 here:0.016736814752221107 :0.07738106697797775 -said:0.31824612617492676 following:0.2027285248041153 same:0.03721556067466736 mailed:0.02672085352241993 mail:0.021425828337669373 :0.3936631064862013 -abandon:0.1647936999797821 accept:0.12163728475570679 join:0.06680955737829208 adopt:0.05605973303318024 embrace:0.042790137231349945 :0.5479095876216888 -of:0.5015530586242676 ol:0.15746435523033142 ot:0.055543575435876846 at:0.05358651280403137 in:0.02676563523709774 :0.20508686266839504 -good:0.8514761924743652 -:0.026215333491563797 all:0.016916466876864433 his:0.013555299490690231 every:0.012682674452662468 :0.07915403321385384 -will:0.6857904195785522 may:0.031231028959155083 must:0.02646920643746853 to:0.018861854448914528 can:0.017862319946289062 :0.21978517062962055 -Secretary:0.9914090037345886 secretary:0.004547497257590294 Department:0.0032511278986930847 Secretary:0.00017421718803234398 Minister:0.00010821456089615822 :0.0005099393601994962 -I:0.9549167156219482 i:0.013616973534226418 to:0.007887516170740128 they:0.00778840109705925 you:0.007752268109470606 :0.008038125466555357 -and:0.9504458904266357 but:0.03542786464095116 or:0.004980129189789295 And:0.0022964973468333483 and:0.0008730256813578308 :0.005976592714432627 -the:0.9790234565734863 tho:0.004813835024833679 about:0.002126061823219061 The:0.0014821370132267475 nearly:0.0013393810950219631 :0.011215128470212221 -of:0.7988625764846802 and:0.10515826940536499 or:0.03864331170916557 an:0.00632338086143136 ol:0.005197232123464346 :0.045815229415893555 -,:0.18837231397628784 of:0.12010177224874496 for:0.10971293598413467 and:0.05478842183947563 now:0.05075119063258171 :0.4762733653187752 -States:0.9044607281684875 State:0.01892787776887417 Kingdom:0.01690109446644783 ,:0.008952406235039234 Territories:0.007139652036130428 :0.04361824132502079 -should:0.9123223423957825 would:0.0440320149064064 could:0.019871007651090622 must:0.01463181059807539 might:0.0044867186807096004 :0.0046561057679355145 -the:0.8265057802200317 a:0.07790400087833405 this:0.054976534098386765 tho:0.008259817026555538 that:0.007414340041577816 :0.024939527735114098 -than:0.5925775170326233 a:0.042756859213113785 to:0.03129047900438309 of:0.024514921009540558 at:0.01850292645394802 :0.29035729728639126 -will:0.3754987418651581 do:0.16431647539138794 would:0.09110211580991745 did:0.08864081650972366 should:0.08695006370544434 :0.19349178671836853 -which:0.20320165157318115 far:0.03647720813751221 means:0.034634318202733994 breeding:0.03237069025635719 hand:0.023607291281223297 :0.6697088405489922 -blood:0.17050975561141968 flesh:0.06747892498970032 clothing:0.04530744254589081 hair:0.03282982110977173 food:0.024797867983579636 :0.6590761877596378 -.:0.794062614440918 ,:0.10738958418369293 ;:0.040681540966033936 ::0.012381295673549175 with:0.00634686229750514 :0.03913810243830085 -,:0.19224201142787933 for:0.10574132204055786 in:0.050982557237148285 with:0.04672064259648323 at:0.03262286260724068 :0.5716906040906906 -and:0.3710371255874634 ,:0.18570539355278015 of:0.18447457253932953 in:0.03534454107284546 with:0.025798270478844643 :0.19764009676873684 -charter:0.42762333154678345 the:0.07859592139720917 active:0.02158518321812153 visiting:0.014204580336809158 elected:0.011561156250536442 :0.44642982725054026 -the:0.14625096321105957 a:0.05644852668046951 all:0.04989605024456978 many:0.040256429463624954 any:0.03874921053647995 :0.6683988198637962 -help:0.5340209603309631 to:0.3995972275733948 thus:0.009642243385314941 thereby:0.00537443021312356 further:0.0037316062953323126 :0.047633532201871276 -policy:0.09664681553840637 payment:0.07321225851774216 action:0.05088972672820091 argument:0.029129238799214363 taxation:0.028288815170526505 :0.7218331452459097 -that:0.9784849286079407 ,:0.004569515585899353 t:0.0014715794241055846 if:0.001217366079799831 That:0.0009696714696474373 :0.01328693883260712 -the:0.3358893096446991 bed:0.19457699358463287 ,:0.10222858190536499 and:0.05857211723923683 a:0.027889933437108994 :0.2808430641889572 -for:0.2977047860622406 against:0.1295846402645111 from:0.10725244879722595 on:0.08631745725870132 to:0.06519107520580292 :0.3139495924115181 -whole:0.08194686472415924 human:0.07268264889717102 entire:0.03422399237751961 rotting:0.023834528401494026 wretched:0.022119082510471344 :0.7651928830891848 -its:0.40533533692359924 the:0.39604657888412476 his:0.09475947171449661 a:0.03661894425749779 Its:0.007996957749128342 :0.05924271047115326 -the:0.3393688201904297 tho:0.31729304790496826 its:0.05297813564538956 all:0.03060775250196457 their:0.02840232290327549 :0.23134992085397243 -i:0.059844620525836945 u:0.03958725929260254 t:0.03565888851881027 a:0.02776135876774788 to:0.020852386951446533 :0.8162954859435558 -the:0.9 :0.1 -a:0.590493381023407 the:0.28992170095443726 their:0.06359290331602097 any:0.015070236288011074 his:0.008012608624994755 :0.03290916979312897 -was:0.9168100953102112 became:0.06939912587404251 got:0.0014809099957346916 had:0.0010776757262647152 fell:0.001010141335427761 :0.01022205175831914 -negro:0.23803800344467163 people:0.1066218838095665 natives:0.05723857134580612 world:0.03372779116034508 man:0.022398578003048897 :0.5419751722365618 -day:0.9635661244392395 year:0.013176530599594116 week:0.006909866817295551 month:0.005109906662255526 ton:0.004772295709699392 :0.006465275771915913 -.:0.2688494026660919 -:0.05228760465979576 to:0.03901622071862221 able:0.02378794178366661 ible:0.01798129826784134 :0.5980775319039822 -the:0.13300862908363342 a:0.13183945417404175 -:0.07501733303070068 centrif:0.015253812074661255 air:0.014899790287017822 :0.6299809813499451 -the:0.9597812294960022 tho:0.023202652111649513 this:0.0016409854870289564 total:0.0016292170621454716 The:0.0013657960807904601 :0.012380119762383401 -The:0.9236838817596436 An:0.02281406708061695 Every:0.011629094369709492 This:0.00905661005526781 Any:0.007159730419516563 :0.02565661631524563 -the:0.5382305383682251 a:0.1184505894780159 this:0.09685299545526505 some:0.0890747532248497 every:0.04928768798708916 :0.1081034354865551 -the:0.7006033658981323 tho:0.04495033994317055 a:0.0350959412753582 good:0.016368171200156212 fine:0.012655027210712433 :0.19032715447247028 -The:0.23176158964633942 Her:0.09872014075517654 the:0.03875541314482689 Those:0.02638089843094349 The:0.024127250537276268 :0.5802547074854374 -miles:0.6165587902069092 feet:0.17805254459381104 mile:0.044148750603199005 kilometers:0.029589882120490074 foot:0.027582721784710884 :0.10406731069087982 -been:0.9915940761566162 become:0.00147954560816288 be:0.0009139082976616919 bee:0.0008865974377840757 very:0.0005193851538933814 :0.00460648734588176 -the:0.5641160607337952 a:0.3328389525413513 every:0.0199537742882967 tho:0.01917964220046997 this:0.017083309590816498 :0.04682826064527035 -which:0.7575201988220215 and:0.10403954982757568 that:0.018296891823410988 but:0.012390902265906334 as:0.012329735793173313 :0.0954227214679122 -,:0.6663662791252136 diseases:0.07520408183336258 ;:0.04097089171409607 .:0.03098062053322792 ailments:0.02482658065855503 :0.16165154613554478 -was:0.4659424424171448 ,:0.09845125675201416 is:0.039003580808639526 in:0.038049519062042236 by:0.03604225814342499 :0.3225109428167343 -the:0.4662332236766815 a:0.14705319702625275 or:0.13446444272994995 and:0.10653702169656754 any:0.03872815892100334 :0.1069839559495449 -.:0.3268597424030304 little:0.16627199947834015 .:0.049796611070632935 bit:0.016005104407668114 few:0.015987437218427658 :0.42507910542190075 -invitation:0.2864617109298706 offer:0.16971582174301147 request:0.055013447999954224 opportunity:0.03216022625565529 invitations:0.0263337604701519 :0.4303150326013565 -gave:0.21456332504749298 giving:0.1202085018157959 give:0.09028375893831253 to:0.07927563041448593 did:0.026648586615920067 :0.4690201971679926 -all:0.3737775683403015 of:0.09301051497459412 with:0.07215990126132965 the:0.03130108490586281 *:0.023702045902609825 :0.4060488846153021 -woman:0.4919728934764862 girl:0.060032326728105545 an:0.03967992961406708 e:0.03805326297879219 negro:0.032133109867572784 :0.3381284773349762 -saints:0.2618858218193054 devils:0.05851425975561142 prophets:0.05443257838487625 angels:0.03215908259153366 men:0.0231959018856287 :0.5698123555630445 -other:0.15125545859336853 officers:0.036358337849378586 ground:0.03254574537277222 subject:0.030967293307185173 officer:0.02243516780436039 :0.7264379970729351 -to:0.8106878399848938 of:0.1020122542977333 with:0.06634911894798279 ot:0.00947500765323639 by:0.0034899285528808832 :0.007985850563272834 -use:0.1836908757686615 application:0.07515028119087219 effect:0.06671839952468872 purpose:0.06647655367851257 action:0.04809388145804405 :0.559870008379221 -hearts:0.41840922832489014 ears:0.12813258171081543 eyes:0.06992913037538528 souls:0.0645119920372963 brains:0.06061121076345444 :0.2584058567881584 -John:0.08276497572660446 William:0.036666613072156906 Henry:0.031035711988806725 George:0.030083568766713142 Joseph:0.027105296030640602 :0.7923438344150782 -she:0.3302527368068695 he:0.172872394323349 ho:0.16097503900527954 I:0.043098121881484985 bo:0.023400599136948586 :0.2694011088460684 -next:0.1580434888601303 last:0.08819039911031723 full:0.071188785135746 present:0.05849315971136093 said:0.05809234455227852 :0.565991822630167 -value:0.1411425918340683 use:0.07752274721860886 coin:0.04323193058371544 price:0.029864944517612457 currency:0.024545835331082344 :0.6836919505149126 -An:0.4870144724845886 The:0.44975459575653076 This:0.02664317563176155 Some:0.006065688095986843 One:0.005927002057433128 :0.024595065973699093 -salaries:0.03067382238805294 expenses:0.02775060199201107 attendance:0.02340724878013134 work:0.021836252883076668 use:0.016586484387516975 :0.879745589569211 -in:0.6348268985748291 on:0.3009665608406067 In:0.04875779151916504 en:0.005814830306917429 On:0.0011050284374505281 :0.008528890321031213 -These:0.39171603322029114 The:0.19942396879196167 Such:0.06528986245393753 Their:0.05942510440945625 Those:0.025191130116581917 :0.2589539010077715 -to:0.8144451379776001 from:0.06921602040529251 into:0.03437310457229614 for:0.02802114002406597 in:0.01870521903038025 :0.03523937799036503 -of:0.9070626497268677 from:0.02979654259979725 in:0.029179291799664497 on:0.012171047739684582 In:0.0023242279421538115 :0.019466240191832185 -Not:0.4282553195953369 What:0.2210686355829239 Just:0.05184096470475197 But:0.026022640988230705 For:0.02421305701136589 :0.24859938211739063 -a:0.7630345225334167 the:0.17469456791877747 each:0.01630166545510292 any:0.008048228919506073 that:0.005929684732109308 :0.031991330441087484 -pot:0.8708242177963257 kettle:0.03754843771457672 pots:0.01876513473689556 water:0.008603316731750965 Pot:0.0066892048344016075 :0.05756968818604946 -of:0.4658420979976654 ot:0.05086623877286911 next:0.023770036175847054 of:0.017375575378537178 commissioners:0.011646823957562447 :0.4304992277175188 -should:0.21343347430229187 will:0.14391420781612396 may:0.1346285194158554 can:0.1285027712583542 to:0.08059047907590866 :0.2989305481314659 -of:0.7345283627510071 for:0.20884045958518982 in:0.019416891038417816 ot:0.00765748368576169 on:0.007632229011505842 :0.021924573928117752 -the:0.9 :0.1 -,:0.8094550967216492 by:0.1117766797542572 and:0.04428133741021156 in:0.004954185802489519 ;:0.004005492199212313 :0.025527208112180233 -who:0.7625635862350464 and:0.16598351299762726 which:0.015750644728541374 he:0.011240450665354729 but:0.008779656141996384 :0.03568214923143387 -Senate:0.17878544330596924 White:0.0970240980386734 lower:0.048358671367168427 upper:0.02758638747036457 State:0.019888781011104584 :0.6283566188067198 -a:0.8082877993583679 his:0.10647640377283096 the:0.042547307908535004 tho:0.012210159562528133 that:0.002659962512552738 :0.02781836688518524 -the:0.8764005303382874 tho:0.0387258417904377 a:0.011464478448033333 The:0.010790987871587276 th:0.005095935892313719 :0.05752222565934062 -than:0.9671567678451538 than:0.010907125659286976 then:0.005908052437007427 as:0.001816838514059782 compared:0.0016677352832630277 :0.012543480261228979 -is:0.32940012216567993 was:0.11405258625745773 tho:0.08271105587482452 bo:0.04689931124448776 o:0.02580309845507145 :0.4011338260024786 -train:0.7960280179977417 wagon:0.01585390232503414 trains:0.011459589004516602 rails:0.010331127792596817 track:0.009211164899170399 :0.15711619798094034 -The:0.8242166042327881 No:0.11512386053800583 the:0.021509967744350433 The:0.004278581589460373 Some:0.0023211496882140636 :0.032549836207181215 -.:0.18321138620376587 of:0.10538045316934586 Van:0.042811471968889236 ,:0.021498503163456917 from:0.01592124067246914 :0.631176944822073 --:0.8039416074752808 ­:0.03421067073941231 l:0.027301019057631493 p:0.005575590301305056 st:0.004307989031076431 :0.12466312339529395 -world:0.2056218385696411 country:0.06849633902311325 day:0.05935688316822052 nation:0.05826157331466675 Atlantic:0.03971226513385773 :0.5685511007905006 -comes:0.7593898773193359 arrives:0.06463135033845901 grows:0.02005120925605297 enters:0.015366862528026104 come:0.015198597684502602 :0.12536210287362337 -of:0.4284566640853882 in:0.08852899819612503 report:0.06268546730279922 to:0.06101016700267792 ot:0.018811486661434174 :0.34050721675157547 -this:0.20546074211597443 one:0.11855238676071167 first:0.10777006298303604 last:0.09045874327421188 the:0.08060089498758316 :0.3971571698784828 -the:0.6887964010238647 tho:0.19166772067546844 a:0.06517913937568665 any:0.008697069250047207 every:0.0037884614430367947 :0.04187120823189616 -regarded:0.3154345154762268 construed:0.2649955153465271 interpreted:0.04303843155503273 seen:0.03804842755198479 taken:0.02962813340127468 :0.3088549766689539 -class:0.03374205157160759 er:0.027286682277917862 or:0.026308227330446243 school:0.021124329417943954 person:0.019361386075615883 :0.8721773233264685 -course:0.15314613282680511 method:0.14688223600387573 kind:0.09570569545030594 avenue:0.07982628047466278 form:0.07513502240180969 :0.44930463284254074 -say:0.2740682363510132 think:0.06798599660396576 admit:0.04966051131486893 assert:0.0438104122877121 remember:0.038113489747047424 :0.5263613536953926 -were:0.6280241012573242 was:0.06222890317440033 felt:0.029999036341905594 looked:0.02539721131324768 are:0.022332629188895226 :0.23201811872422695 -two:0.23294641077518463 six:0.1499549299478531 four:0.09734833240509033 one:0.06764835119247437 ten:0.05299060419201851 :0.3991113714873791 -the:0.5778284668922424 this:0.053647689521312714 his:0.024191703647375107 our:0.015642786398530006 -:0.01418161392211914 :0.3145077396184206 -about:0.62614905834198 only:0.1586759239435196 over:0.08392743021249771 nearly:0.019473528489470482 some:0.012905005365610123 :0.09886905364692211 -possibly:0.0845094844698906 to:0.050827089697122574 inj:0.03607061877846718 more:0.03236817196011543 almost:0.031282588839530945 :0.7649420462548733 -the:0.780066192150116 this:0.14055989682674408 that:0.031227681785821915 our:0.016713475808501244 tho:0.009222306311130524 :0.02221044711768627 -Seymour:0.4424911439418793 Howard:0.02883913554251194 Sherman:0.010123932734131813 Dixon:0.009335262700915337 Vernon:0.009218340739607811 :0.4999921843409538 -running:0.21030789613723755 drilled:0.14454635977745056 cut:0.09517428278923035 poking:0.04201142489910126 going:0.03331424668431282 :0.47464578971266747 -,:0.17901167273521423 and:0.05450895428657532 is:0.042030733078718185 as:0.027372777462005615 :0.021416382864117622 :0.675659479573369 -loud:0.05264556407928467 ,:0.04084780812263489 plainly:0.034003403037786484 clear:0.016696352511644363 plain:0.013716209679841995 :0.8420906625688076 -and:0.41348302364349365 but:0.16170485317707062 for:0.04822757467627525 as:0.022687280550599098 so:0.017747078090906143 :0.33615018986165524 -patent:0.9570193886756897 patented:0.024435944855213165 patents:0.004318246152251959 Patent:0.0020800025667995214 the:0.0012150321854278445 :0.010931385564617813 -the:0.8822989463806152 tho:0.04670388624072075 tha:0.008688412606716156 The:0.007566823624074459 my:0.004786912817507982 :0.04995501833036542 -Even:0.10142970085144043 But:0.09779781103134155 As:0.08525481820106506 And:0.06090487539768219 If:0.042772237211465836 :0.6118405573070049 -and:0.7540227174758911 or:0.09987210482358932 but:0.0211110208183527 Brown:0.013943316414952278 nor:0.011194595135748386 :0.0998562453314662 -little:0.15583162009716034 faint:0.026757534593343735 great:0.019519908353686333 certain:0.01942027360200882 i:0.015025598928332329 :0.7634450644254684 -posed:0.17128582298755646 submitted:0.06071634218096733 scribed:0.04663410037755966 mitted:0.03404932841658592 ced:0.03216364607214928 :0.6551507599651814 -House:0.7482649683952332 house:0.04005778953433037 said:0.027756456285715103 of:0.025881512090563774 Houses:0.01021967176347971 :0.1478196019306779 -of:0.04277914762496948 -:0.034799009561538696 difference:0.02677004598081112 con:0.022857774049043655 in:0.018746089190244675 :0.8540479335933924 -,:0.46843817830085754 and:0.07415755838155746 was:0.06061280146241188 which:0.0215140487998724 of:0.017985880374908447 :0.35729153268039227 -tion:0.8555124998092651 ment:0.05936972424387932 ty:0.00614306703209877 ly:0.004170627798885107 dent:0.0032526603899896145 :0.07155142072588205 -people:0.17027325928211212 delegates:0.10901698470115662 legislature:0.06329282373189926 voters:0.03622313216328621 Governor:0.030386798083782196 :0.5908070020377636 -John:0.08496615290641785 Joseph:0.08343496173620224 James:0.0667644515633583 William:0.04458049312233925 George:0.03126189112663269 :0.6889920495450497 -man:0.8218470215797424 person:0.02266644313931465 boy:0.013750607147812843 farmer:0.013733073137700558 woman:0.009946132078766823 :0.11805672291666269 -sell:0.7397903800010681 buy:0.04773934185504913 get:0.028512362390756607 take:0.017248952761292458 have:0.009138781577348709 :0.15757018141448498 -and:0.6792857646942139 but:0.0893310084939003 or:0.05581796169281006 than:0.016483165323734283 as:0.014024586416780949 :0.14505751337856054 -fact:0.42940887808799744 turn:0.3228412866592407 effect:0.15906929969787598 theory:0.008500942029058933 itself:0.008127172477543354 :0.07205242104828358 -they:0.8343570828437805 we:0.08670593053102493 men:0.00927658099681139 I:0.007758387364447117 mortals:0.0059019941836595535 :0.05600002408027649 -without:0.12596720457077026 in:0.08832228928804398 for:0.08400849252939224 from:0.06690055131912231 under:0.04927567392587662 :0.5855257883667946 -Brown:0.018258223310112953 Bryan:0.01370577234774828 Jones:0.012519007548689842 Smith:0.010930118151009083 Alley:0.010387885384261608 :0.9341989932581782 -the:0.9179376363754272 this:0.03260848671197891 that:0.022290626540780067 a:0.007434216793626547 its:0.006735395174473524 :0.012993638403713703 -vigorous:0.05409219488501549 careful:0.04256179928779602 prompt:0.03745613619685173 fair:0.03672074154019356 speedy:0.03635150566697121 :0.792817622423172 -high:0.8152399063110352 low:0.020809561014175415 single:0.012891878373920918 higher:0.0064970930106937885 petty:0.0056224060244858265 :0.1389391552656889 -of:0.9058672785758972 ot:0.030558329075574875 of:0.014473894611001015 ol:0.008894888684153557 to:0.00882930587977171 :0.03137630317360163 -Attorney:0.8686740398406982 Clerk:0.03687165305018425 Judge:0.03070247732102871 attorney:0.016184283420443535 Auditor:0.009059826843440533 :0.03850771952420473 -and:0.8425291776657104 with:0.03671133518218994 for:0.03400470316410065 to:0.0137587059289217 ,:0.01064297091215849 :0.062353107146918774 -As:0.964213490486145 By:0.011575626209378242 as:0.004376375116407871 On:0.002514353720471263 Such:0.0017403799574822187 :0.015579774510115385 -laws:0.08091102540493011 stances:0.05975109338760376 interests:0.03333749994635582 chains:0.024588141590356827 ports:0.023227671161293983 :0.7781845685094595 -that:0.633732259273529 as:0.07960553467273712 when:0.039964016526937485 where:0.02604077011346817 since:0.013607890345156193 :0.20704952906817198 -The:0.8180922269821167 This:0.07605728507041931 His:0.009427675977349281 Mr:0.008161891251802444 John:0.005010196007788181 :0.08325072471052408 -that:0.9845830202102661 therefore:0.0020445878617465496 said:0.001186395762488246 yet:0.0011054524220526218 thus:0.0010781621094793081 :0.010002381633967161 -wishes:0.1672305315732956 wants:0.15072861313819885 comes:0.060003865510225296 desires:0.05039660632610321 seeks:0.04469846561551094 :0.5269419178366661 -per:0.9699563384056091 p:0.004559753462672234 .:0.0020640159491449594 a:0.0014076561201363802 per:0.0010969321010634303 :0.020915303961373866 -name:0.058719173073768616 case:0.042509809136390686 cause:0.037182774394750595 words:0.02749929390847683 reputation:0.015922551974654198 :0.8181663975119591 -,:0.3136458992958069 and:0.06081752851605415 the:0.05466381460428238 their:0.05123244598507881 of:0.030928177759051323 :0.48871213383972645 -to:0.9919353723526001 ot:0.0019134271424263716 and:0.0016905738739296794 ta:0.00035105200367979705 ,:0.00034391487133689225 :0.003765659756027162 -the:0.9 :0.1 -his:0.6896349191665649 bis:0.25999000668525696 the:0.01072632148861885 their:0.00489667896181345 her:0.002298538340255618 :0.03245353535749018 -.:0.12552714347839355 .:0.05071493983268738 ,:0.04849037900567055 and:0.040632009506225586 to:0.02815726399421692 :0.706478264182806 -and:0.7282398343086243 but:0.0491032674908638 then:0.038677796721458435 being:0.03369990736246109 when:0.02310345508158207 :0.12717573903501034 -words:0.02654758095741272 moment:0.022473108023405075 whole:0.0219861026853323 time:0.02057422511279583 next:0.017390191555023193 :0.8910287916660309 -1896:0.07809177041053772 first:0.07740525156259537 last:0.06736992299556732 next:0.04631609469652176 general:0.04539843276143074 :0.6854185275733471 -help:0.0959068238735199 save:0.08960717916488647 join:0.0371490977704525 with:0.034845102578401566 aid:0.02941833809018135 :0.7130734585225582 -to:0.9813544750213623 who:0.008518864400684834 To:0.0014601493021473289 and:0.0012978145387023687 or:0.0010021476773545146 :0.00636654905974865 -rested:0.09219411015510559 fed:0.029670801013708115 lent:0.02400686778128147 depended:0.02136903814971447 stood:0.01668199896812439 :0.816077183932066 -and:0.29510703682899475 where:0.09842142462730408 yet:0.08790440857410431 if:0.08166545629501343 unless:0.05958253890275955 :0.3773191347718239 -29:0.6755751967430115 31:0.10146252065896988 30:0.073645681142807 28:0.051197730004787445 27:0.04145418852567673 :0.05666468292474747 -Scotch:0.4766690135002136 the:0.07355909049510956 a:0.025678327307105064 white:0.022791322320699692 this:0.013998701237142086 :0.38730354513973 -will:0.9774768948554993 would:0.00608001509681344 must:0.003897801972925663 may:0.0030666582752019167 should:0.0017535676015540957 :0.007725062198005617 -while:0.2589833736419678 now:0.16063891351222992 then:0.1061972975730896 when:0.09503018856048584 here:0.052616920322179794 :0.3265333063900471 -of:0.7010800838470459 on:0.08334115147590637 in:0.04291074350476265 under:0.03290745988488197 and:0.013019987381994724 :0.12674057390540838 -the:0.959526002407074 a:0.013791831210255623 his:0.010050366632640362 this:0.005650792736560106 our:0.0015786411240696907 :0.009402365889400244 -The:0.12369943410158157 the:0.07771335542201996 .:0.0398796871304512 The:0.03202721104025841 an:0.024975214153528214 :0.7017050981521606 -but:0.1533253937959671 and:0.12312865257263184 I:0.09712181985378265 .:0.07001756131649017 now:0.020953109487891197 :0.535453462973237 -the:0.039946578443050385 -:0.03820820525288582 com:0.023350348696112633 pro:0.02192338928580284 l:0.020753519609570503 :0.8558179587125778 -and:0.6141054630279541 ,:0.3600402772426605 or:0.008691499941051006 but:0.003168825525790453 ly:0.0018928456120193005 :0.012101088650524616 -insure:0.5734618306159973 guarantee:0.13941769301891327 assure:0.043920792639255524 mean:0.03418822959065437 ensure:0.017675258219242096 :0.19133619591593742 -it:0.7661008238792419 them:0.033998940140008926 as:0.015375376679003239 It:0.014845275320112705 that:0.012912296690046787 :0.1567672872915864 -the:0.45099490880966187 that:0.2516895830631256 this:0.17204609513282776 tho:0.07201659679412842 my:0.010618549771606922 :0.042634266428649426 -first:0.14082056283950806 most:0.09122291952371597 early:0.05682067945599556 last:0.04217475652694702 earliest:0.02031719498336315 :0.6486438866704702 -changes:0.22266031801700592 alters:0.17964573204517365 affects:0.1428270936012268 changed:0.03157151862978935 affected:0.02748873084783554 :0.39580660685896873 -that:0.6959636807441711 and:0.05478727072477341 for:0.023285256698727608 if:0.021461613476276398 but:0.019617147743701935 :0.1848850306123495 -only:0.9813091158866882 just:0.005354180000722408 merely:0.005045761354267597 be:0.0009263804531656206 simply:0.000481350754853338 :0.0068832115503028035 -about:0.6072104573249817 only:0.13338720798492432 nearly:0.06288351118564606 over:0.04516690969467163 not:0.02114519290626049 :0.13020672090351582 -great:0.04135052487254143 own:0.03391069173812866 national:0.02407165803015232 whole:0.014179528690874577 com:0.011624346487224102 :0.8748632501810789 -subscription:0.15364210307598114 contract:0.07045332342386246 subscribe:0.048761021345853806 pay:0.046353019773960114 acc:0.018972475081682205 :0.6618180572986603 -the:0.6764176487922668 tho:0.2721535563468933 my:0.012093042023479939 our:0.005724100861698389 these:0.005053679458796978 :0.028557972516864538 -is:0.18345540761947632 was:0.12827861309051514 has:0.11440257728099823 had:0.02845858968794346 ,:0.023958822712302208 :0.5214459896087646 --:0.43305960297584534 ­:0.1192866787314415 *:0.06164008006453514 ,:0.021947992965579033 .:0.01547220628708601 :0.348593438975513 -later:0.5905478596687317 passed:0.18748833239078522 ago:0.044697340577840805 ,:0.03580957278609276 after:0.027816563844680786 :0.11364033073186874 -and:0.6272408962249756 ,:0.028988255187869072 more:0.022771548479795456 -:0.020275773480534554 or:0.01811830699443817 :0.28260521963238716 -in:0.35572269558906555 at:0.32782620191574097 before:0.11267844587564468 of:0.05040911212563515 In:0.043591517955064774 :0.10977202653884888 -ever:0.3095012903213501 not:0.2627878487110138 really:0.05530213564634323 even:0.03459874168038368 necessarily:0.021489158272743225 :0.31632082536816597 -John:0.18713875114917755 William:0.10901444405317307 George:0.10892173647880554 James:0.045910779386758804 Charles:0.029830073937773705 :0.5191842149943113 -Is:0.8134581446647644 Why:0.0843825414776802 And:0.0065552969463169575 is:0.006530462298542261 Should:0.006030614022165537 :0.08304294059053063 -they:0.8748321533203125 men:0.019906995818018913 to:0.017557810992002487 we:0.016486112028360367 I:0.009625043720006943 :0.06159188412129879 -flag:0.20259541273117065 sign:0.1264587938785553 banner:0.08908534049987793 pole:0.041105229407548904 platform:0.036435868591070175 :0.504319354891777 -vines:0.2698043882846832 fruit:0.07038409262895584 grapes:0.06792335957288742 berries:0.06668701767921448 fruits:0.06636554002761841 :0.4588356018066406 -,:0.41361096501350403 of:0.3709084391593933 .:0.058914631605148315 by:0.013318103738129139 named:0.010110702365636826 :0.13313715811818838 -::0.40700873732566833 .:0.1459752917289734 ,:0.08410418033599854 ;:0.02558080106973648 said:0.018417254090309143 :0.3189137354493141 -his:0.6819748878479004 the:0.15618176758289337 tho:0.09218116849660873 ho:0.0064956373535096645 bis:0.00530111463740468 :0.05786542408168316 -and:0.2679019868373871 to:0.14279088377952576 ,:0.11977364867925644 as:0.10831271857023239 .:0.03884381800889969 :0.32237694412469864 -.:0.6968135237693787 than:0.04224821925163269 ,:0.034996356815099716 as:0.012723235413432121 the:0.010917124338448048 :0.20230154041200876 -described:0.19061274826526642 made:0.18485361337661743 explained:0.04406632110476494 arranged:0.0392390601336956 prepared:0.029630979523062706 :0.5115972775965929 -,:0.6773063540458679 ,":0.10242994129657745 .:0.03545377403497696 ;:0.02664647065103054 ,':0.015393950045108795 :0.14276950992643833 -so:0.9200681447982788 as:0.07186339050531387 so:0.001364150200970471 too:0.0011958678951486945 and:0.0005898926174268126 :0.00491855398286134 -Philadelphia:0.03341837227344513 Evening:0.033316317945718765 New:0.02296929433941841 London:0.022372297942638397 Boston:0.02099481411278248 :0.8669289033859968 -of:0.9822309613227844 in:0.012159878388047218 on:0.0015860009007155895 ot:0.001000398420728743 to:0.0007048160186968744 :0.002317944949027151 -,:0.41937676072120667 he:0.021664904430508614 vigilance:0.009738325141370296 .:0.009358626790344715 attention:0.008977613411843777 :0.5308837695047259 -nothing:0.11661238223314285 something:0.05412501469254494 paintings:0.048454876989126205 been:0.03486544266343117 scenes:0.024355443194508553 :0.7215868402272463 -the:0.9 :0.1 -the:0.37598085403442383 and:0.1856907159090042 tho:0.05260579288005829 a:0.05000739172101021 which:0.021797290071845055 :0.3139179553836584 --:0.25877153873443604 more:0.08194880932569504 other:0.04213224723935127 ,:0.02650902047753334 less:0.015883849933743477 :0.5747545342892408 -and:0.7442956566810608 to:0.05645966902375221 or:0.042730603367090225 the:0.017854807898402214 after:0.016353100538253784 :0.12230616249144077 -the:0.09149330109357834 tho:0.0827476978302002 among:0.06137334927916527 ,:0.05982102081179619 not:0.026660650968551636 :0.6779039800167084 -could:0.09816694259643555 will:0.043040551245212555 were:0.04227151721715927 of:0.03581848368048668 did:0.03556489944458008 :0.7451376058161259 -in:0.34147197008132935 by:0.1490904539823532 In:0.10279811173677444 then:0.06597349792718887 for:0.03039436973631382 :0.3102715965360403 -.:0.216201052069664 plan:0.038969241082668304 plans:0.03808264061808586 question:0.03192809224128723 laws:0.031286370009183884 :0.6435326039791107 -ched:0.18061701953411102 upon:0.12738001346588135 up:0.08825484663248062 with:0.07684917002916336 out:0.057708024978637695 :0.46919092535972595 -time:0.7722659707069397 ?:0.15702392160892487 ?:0.031288616359233856 .:0.014404414221644402 point:0.005578737705945969 :0.01943833939731121 -upon:0.258125364780426 since:0.1541348695755005 with:0.13836458325386047 after:0.12150239199399948 at:0.10557418316602707 :0.22229860723018646 -t:0.042838286608457565 d:0.03126509487628937 :0.020549487322568893 c:0.01964113675057888 -:0.017114825546741486 :0.8685911688953638 -on:0.6068075895309448 in:0.09881113469600677 to:0.07684609293937683 at:0.017349328845739365 near:0.01687648333609104 :0.18330937065184116 -that:0.9732827544212341 all:0.002927711233496666 if:0.002030373550951481 the:0.0011088985484093428 :0.0010699561098590493 :0.01958030613604933 -to:0.9696924686431885 and:0.010082311928272247 ly:0.00443223537877202 ary:0.001710161566734314 ion:0.00042355674668215215 :0.01365926573635079 -devised:0.17792390286922455 established:0.07732344418764114 adopted:0.03801532834768295 instituted:0.031396958976984024 examined:0.03112785890698433 :0.644212506711483 -,:0.10322979092597961 U:0.050233617424964905 at:0.027246348559856415 in:0.017207220196723938 to:0.017075568437576294 :0.7850074544548988 -nothing:0.7455449104309082 little:0.13780440390110016 something:0.04999919608235359 much:0.018860388547182083 anything:0.01617022044956684 :0.03162088058888912 -land:0.06385339796543121 furnish:0.05412556603550911 ­:0.044384270906448364 begin:0.03996426984667778 plan:0.03003966249525547 :0.7676328327506781 -stealing:0.9473087191581726 stolen:0.01119264867156744 taking:0.010242331773042679 receiving:0.009354216046631336 obtaining:0.003064145799726248 :0.01883793855085969 -Is:0.36559298634529114 and:0.04345245659351349 is:0.03557875379920006 And:0.022827889770269394 It:0.016814084723591805 :0.5157338287681341 -and:0.2581630051136017 with:0.17268739640712738 ,:0.15520809590816498 when:0.03976444900035858 without:0.03117137774825096 :0.3430056758224964 -the:0.39834269881248474 improved:0.08597677201032639 its:0.04257579892873764 better:0.03367296978831291 proper:0.01908748969435692 :0.4203442707657814 -the:0.557941198348999 this:0.3064960539340973 that:0.03876781836152077 said:0.022794533520936966 its:0.00862790085375309 :0.06537249498069286 -,:0.344500333070755 publication:0.06389185041189194 newspaper:0.04698818176984787 press:0.023081492632627487 nation:0.01947755552828312 :0.5020605865865946 -I:0.8430535793304443 1:0.13054250180721283 i:0.005786138121038675 it:0.0030554465483874083 ,:0.00305279903113842 :0.01450953516177833 -all:0.7625969052314758 both:0.04840715602040291 half:0.04012749344110489 All:0.017074787989258766 :0.00999070517718792 :0.12180295214056969 -government:0.03591335192322731 rights:0.02625763602554798 rebellion:0.019740348681807518 action:0.018969077616930008 ty:0.016293680295348167 :0.882825905457139 -case:0.12333502620458603 section:0.10029581934213638 act:0.08013364672660828 Court:0.04835842177271843 State:0.048109106719493866 :0.599767979234457 -is:0.8016476631164551 Is:0.10784246772527695 was:0.022126032039523125 ,:0.015200097113847733 or:0.010436787270009518 :0.0427469527348876 -.:0.9933930039405823 .:0.002630164148285985 ..:0.000888191454578191 ,:0.0006027706549502909 ::0.000483621668536216 :0.0020022481330670416 -Had:0.5789142847061157 and:0.08546766638755798 But:0.0747809112071991 but:0.05711717531085014 And:0.03601005673408508 :0.16770990565419197 -,:0.7151102423667908 ;:0.11671828478574753 .:0.04121820628643036 ;:0.020570019260048866 .,:0.00608905078843236 :0.10029419651255012 -come:0.43570467829704285 .:0.33598819375038147 time:0.017978485673666 -:0.010917352512478828 be:0.010696099139750004 :0.18871519062668085 -you:0.9555550813674927 I:0.009383821859955788 we:0.004602537024766207 they:0.0029489260632544756 ye:0.001974597806110978 :0.025535035878419876 -money:0.49165621399879456 it:0.2358238846063614 him:0.018764983862638474 them:0.017016569152474403 time:0.01258170511573553 :0.22415664326399565 -will:0.5178905725479126 may:0.2984069585800171 should:0.05980456992983818 must:0.04327283799648285 would:0.032945144921541214 :0.04767991602420807 -team:0.31605032086372375 club:0.25336548686027527 game:0.05273023620247841 league:0.04292730987071991 .:0.04117949679493904 :0.2937471494078636 -term:0.9915019273757935 Term:0.0030690962448716164 terms:0.0009084612247534096 time:0.0008879568194970489 sentence:0.00042924087028950453 :0.0032033174647949636 -with:0.9889718890190125 With:0.003895851317793131 having:0.0015677575720474124 of:0.0008811339503154159 in:0.0004980909870937467 :0.004185277153737843 -of:0.6342782974243164 and:0.25370901823043823 ,:0.025583436712622643 or:0.007566229440271854 among:0.006692666094750166 :0.0721703520976007 -presented:0.12401188164949417 delivered:0.06558661162853241 referred:0.057060178369283676 sent:0.056716542690992355 gave:0.04520599544048309 :0.6514187902212143 -in:0.096318319439888 for:0.0744718387722969 the:0.07040350139141083 tho:0.03076164610683918 In:0.028095290064811707 :0.6999494042247534 -the:0.9 :0.1 -the:0.9 :0.1 -the:0.685088574886322 tho:0.14119048416614532 an:0.04904656857252121 his:0.025974215939641 my:0.015899963676929474 :0.08280019275844097 -line:0.12794044613838196 Hue:0.08850537240505219 company:0.03983813151717186 pole:0.038294531404972076 building:0.02923494577407837 :0.6761865727603436 -the:0.9 :0.1 -method:0.17129461467266083 ,:0.08551496267318726 system:0.06369099766016006 process:0.032693054527044296 effect:0.03129563480615616 :0.6155107356607914 -the:0.9 :0.1 -said:0.3000844717025757 the:0.1922750622034073 this:0.18494033813476562 such:0.1496206372976303 that:0.13471926748752594 :0.038360223174095154 -office:0.3434424102306366 serving:0.04590683802962303 nomination:0.045112479478120804 service:0.04068741947412491 ,:0.04042256623506546 :0.4844282865524292 -to:0.9221453666687012 and:0.026371989399194717 or:0.023036809638142586 a:0.0027611933182924986 ,:0.002585750538855791 :0.023098890436813235 -degrees:0.2945554554462433 feet:0.11009116470813751 minutes:0.09865929931402206 inches:0.049831490963697433 °:0.04362329840660095 :0.40323929116129875 -,:0.15273213386535645 dog:0.06752943247556686 lamp:0.0391264483332634 home:0.03609003126621246 cigarette:0.035696521401405334 :0.6688254326581955 -the:0.7509101629257202 this:0.09190937876701355 a:0.05613669380545616 that:0.02781255915760994 tho:0.017123695462942123 :0.05610750988125801 -is:0.2029883712530136 was:0.19021877646446228 may:0.05526619777083397 it:0.05250438302755356 could:0.043494049459695816 :0.45552822202444077 -would:0.6460331082344055 and:0.2031027376651764 aud:0.04337408021092415 could:0.02297445572912693 to:0.016459740698337555 :0.06805587746202946 -goes:0.07777515798807144 s:0.034378260374069214 going:0.02282121777534485 so:0.016343126073479652 ng:0.015050279907882214 :0.8336319578811526 -in:0.1161077544093132 In:0.06931180506944656 it:0.060702845454216 not:0.03166897967457771 at:0.026899809017777443 :0.6953088063746691 -as:0.685386598110199 is:0.058449964970350266 ,:0.028970004990696907 Is:0.015474189072847366 shall:0.015128089115023613 :0.19659115374088287 -able:0.17555749416351318 ful:0.11637065559625626 worthy:0.03468245267868042 er:0.01874033361673355 ing:0.016183041036128998 :0.6384660229086876 -on:0.4938552677631378 in:0.1379956156015396 upon:0.08496062457561493 over:0.030238283798098564 by:0.022565459832549095 :0.23038474842905998 -up:0.9095278382301331 forth:0.037367746233940125 out:0.03140446916222572 aside:0.0026637010741978884 in:0.001516006770543754 :0.017520238528959453 -on:0.3235856294631958 to:0.12490075081586838 in:0.09985849261283875 upon:0.08764104545116425 by:0.08184584975242615 :0.2821682319045067 -,:0.18476450443267822 and:0.09094162285327911 of:0.08740068227052689 in:0.07604765146970749 had:0.027676863595843315 :0.533168675377965 -whether:0.8393540978431702 should:0.033484023064374924 if:0.01898210681974888 lest:0.011387215927243233 Whether:0.008827734738588333 :0.08796482160687447 -with:0.5227919220924377 to:0.12361839413642883 and:0.07131588459014893 for:0.04731851816177368 among:0.04553442820906639 :0.18942085281014442 -and:0.6811729669570923 of:0.11998365819454193 or:0.04313776269555092 ,:0.03536112233996391 for:0.015059077180922031 :0.10528541263192892 -duty:0.6195160150527954 right:0.06850975006818771 pleasure:0.026975736021995544 desire:0.02402307465672493 interest:0.016725480556488037 :0.24424994364380836 -it:0.2758830487728119 this:0.258905291557312 he:0.16585463285446167 that:0.07087979465723038 which:0.0698624774813652 :0.15861475467681885 -easy:0.08505605906248093 hard:0.08319824934005737 bad:0.04988233000040054 much:0.0378275029361248 difficult:0.0266451183706522 :0.7173907402902842 -tho:0.44376811385154724 the:0.2725081145763397 a:0.02879207767546177 his:0.008434130810201168 th:0.004839988891035318 :0.24165757419541478 -all:0.7835869789123535 that:0.013870369642972946 all:0.011759186163544655 .:0.011121678166091442 All:0.008791832253336906 :0.17086995486170053 -the:0.3169980049133301 this:0.11663273721933365 ied:0.053391583263874054 d:0.04693058505654335 a:0.03416728973388672 :0.43187979981303215 -the:0.9 :0.1 -other:0.6795702576637268 cotton:0.05043309926986694 corn:0.03548303246498108 rye:0.019624019041657448 wheat:0.01675308868288994 :0.19813650287687778 -the:0.9 :0.1 -other:0.41957908868789673 real:0.18893884122371674 personal:0.06990604102611542 such:0.0641365498304367 valuable:0.027111319825053215 :0.2303281594067812 -by:0.9787946939468384 with:0.004616972990334034 from:0.001061856048181653 of:0.001014276291243732 the:0.0008888077572919428 :0.01362339296611026 -difficult:0.08811763674020767 ,:0.0554153174161911 hard:0.05207356438040733 interesting:0.046199388802051544 important:0.02696259319782257 :0.7312314994633198 -were:0.8592034578323364 had:0.021212946623563766 was:0.01572001539170742 then:0.008062713779509068 stood:0.005759068764746189 :0.09004179760813713 -ment:0.08331717550754547 pose:0.02440873719751835 test:0.022076347842812538 devotion:0.012054524384438992 cess:0.011577569879591465 :0.8465656451880932 -f:0.08772983402013779 l:0.06758192181587219 n:0.052429910749197006 to:0.04697519540786743 u:0.03200959414243698 :0.7132735438644886 -sum:0.2601347863674164 total:0.08284338563680649 loss:0.06121388077735901 cost:0.04311717674136162 payment:0.042797062546014786 :0.5098937079310417 -.:0.9627891778945923 .:0.006507031619548798 !:0.002633678261190653 *.:0.0020656685810536146 -.:0.001482348539866507 :0.024522095103748143 -to:0.9228804707527161 for:0.019309816882014275 To:0.010418880730867386 on:0.009382651187479496 In:0.006981723476201296 :0.031026456970721483 -that:0.28992822766304016 who:0.2872942090034485 which:0.06920066475868225 and:0.04727931693196297 they:0.03214608505368233 :0.2741514965891838 -the:0.45117759704589844 a:0.2784556746482849 tho:0.14431604743003845 this:0.0335250087082386 his:0.010873322375118732 :0.08165234979242086 -up:0.0672874003648758 ered:0.0282010268419981 out:0.024354802444577217 ed:0.02151091955602169 of:0.0204037856310606 :0.8382420651614666 -public:0.11943357437849045 miners:0.10866184532642365 company:0.09755901247262955 miner:0.04611113294959068 people:0.046102117747068405 :0.5821323171257973 -and:0.21561932563781738 while:0.13132891058921814 the:0.06969565898180008 but:0.03969075530767441 that:0.03209838271141052 :0.5115669667720795 -be:0.6887757182121277 seem:0.06955120712518692 bo:0.043340377509593964 he:0.018808729946613312 sound:0.017999643459916115 :0.161524323746562 -the:0.8988147974014282 a:0.09138466417789459 tho:0.002430165885016322 th:0.000800696958322078 his:0.0006614768062718213 :0.005908198771066964 -rock:0.17744003236293793 mine:0.16933465003967285 mill:0.038203537464141846 box:0.031525928527116776 pit:0.021374927833676338 :0.5621209237724543 -the:0.9 :0.1 -ing:0.16427946090698242 with:0.14058980345726013 to:0.11123041808605194 for:0.035183969885110855 olf:0.021739957854151726 :0.5269763898104429 -to:0.9751192927360535 lo:0.006849987432360649 o:0.0013820413732901216 ot:0.001351658720523119 ol:0.0013272279174998403 :0.013969791820272803 -acres:0.9721627831459045 trees:0.006952287163585424 ,:0.0015720254741609097 crops:0.0014066356234252453 cows:0.0012584973592311144 :0.016647771233692765 -read:0.35693225264549255 had:0.20756807923316956 seen:0.08451390266418457 done:0.06700817495584488 received:0.03733253479003906 :0.24664505571126938 -In:0.6888595819473267 in:0.22705133259296417 ­:0.046766120940446854 -:0.006040934473276138 in:0.0034212651662528515 :0.027860764879733324 -and:0.7994298338890076 or:0.10253830254077911 ,:0.0794866606593132 und:0.0028252070769667625 .:0.0022787917405366898 :0.013441204093396664 -try:0.14867711067199707 have:0.07301736623048782 attempt:0.07193628698587418 be:0.03923099860548973 manage:0.037506699562072754 :0.6296315379440784 -the:0.5642903447151184 bright:0.0549192875623703 their:0.030294939875602722 glowing:0.018659455701708794 its:0.010294504463672638 :0.32154146768152714 -they:0.1274658739566803 were:0.0557904876768589 it:0.04863683134317398 ,:0.04256748780608177 have:0.040762536227703094 :0.684776782989502 -to:0.07315227389335632 by:0.05377843603491783 on:0.027159079909324646 of:0.025706183165311813 n:0.023988576605916023 :0.7962154503911734 -a:0.5703054666519165 the:0.16619643568992615 give:0.032846931368112564 gain:0.02369343861937523 obtain:0.021942730993032455 :0.1850149966776371 -sentiment:0.24986286461353302 opinion:0.17107193171977997 ,:0.08884333819150925 virtue:0.02415955625474453 view:0.023902811110019684 :0.44215949811041355 -William:0.5237314105033875 Russell:0.024319274351000786 Margaret:0.020660176873207092 Elizabeth:0.019014451652765274 Joseph:0.014571532607078552 :0.39770315401256084 -Smith:0.02208544686436653 Brown:0.014085247181355953 Wilson:0.013466115109622478 Wright:0.01322399266064167 Sherman:0.011911081150174141 :0.9252281170338392 -and:0.7790249586105347 or:0.059501275420188904 ,:0.04946405068039894 aud:0.044117219746112823 which:0.008926591835916042 :0.05896590370684862 -it:0.24538491666316986 thence:0.08057574927806854 itself:0.036873139441013336 *:0.027720246464014053 «:0.026957020163536072 :0.5824889279901981 -to:0.9574529528617859 of:0.01851106993854046 for:0.004536410793662071 ot:0.0035587043967097998 in:0.002317681210115552 :0.01362318079918623 -was:0.06634896248579025 is:0.06019454821944237 agreed:0.03308476507663727 ,:0.024611754342913628 tried:0.0190596804022789 :0.7967002894729376 -tho:0.55640709400177 the:0.23444241285324097 his:0.037757210433483124 our:0.033070050179958344 my:0.02842533588409424 :0.10989789664745331 -at:0.2586856186389923 on:0.20212194323539734 for:0.09413789212703705 ot:0.05407183617353439 in:0.053333789110183716 :0.3376489207148552 -general:0.03858942911028862 decisive:0.03843443840742111 favorable:0.030560337007045746 fair:0.020106837153434753 great:0.020022395998239517 :0.8522865623235703 -.:0.2296793907880783 .:0.038369517773389816 i:0.03412715718150139 !:0.023832445964217186 !:0.023816099390387535 :0.6501753889024258 -,:0.5899429321289062 .:0.11187054216861725 ::0.06752504408359528 ;:0.04387590289115906 of:0.024244051426649094 :0.16254152730107307 -cries:0.021917616948485374 demands:0.020616240799427032 enemies:0.016876595094799995 ones:0.016293833032250404 promises:0.01407009456306696 :0.9102256195619702 -the:0.9 :0.1 -in:0.4063332974910736 In:0.30817338824272156 at:0.09569153189659119 of:0.06559912860393524 ol:0.016196975484490395 :0.10800567828118801 -a:0.14515390992164612 a:0.07761138677597046 i:0.0696343183517456 u:0.04509950429201126 very:0.034432779997587204 :0.6280681006610394 -to:0.7972453236579895 from:0.06861573457717896 on:0.05538366734981537 over:0.01833154447376728 into:0.006248984485864639 :0.054174745455384254 -given:0.8192960619926453 held:0.05214334651827812 done:0.02543788030743599 made:0.014314677566289902 had:0.012530668638646603 :0.07627736497670412 -in:0.4994054436683655 In:0.13541609048843384 at:0.07895790785551071 among:0.03750741481781006 for:0.03313214331865311 :0.2155809998512268 -has:0.8183018565177917 have:0.11117707192897797 had:0.014150951988995075 having:0.006342019885778427 as:0.005799640901386738 :0.044228458777070045 -all:0.9150049686431885 course:0.01342238299548626 ,:0.011604532599449158 these:0.0031614035833626986 all:0.0030624312348663807 :0.05374428094364703 -this:0.5637220740318298 every:0.14819958806037903 that:0.11297312378883362 any:0.07026565074920654 all:0.020364167168736458 :0.08447539620101452 -the:0.9 :0.1 -tion:0.6416108012199402 ment:0.03021414577960968 ter:0.02340356819331646 er:0.02258581854403019 dent:0.010893047787249088 :0.2712926184758544 -and:0.9901907444000244 &:0.0043265032581985 ,:0.0013174066552892327 .:0.0003461161395534873 und:0.0002953362127300352 :0.003523893334204331 -at:0.7242927551269531 in:0.12152912467718124 for:0.07826226949691772 with:0.01667069084942341 In:0.013580773957073689 :0.04566438589245081 -the:0.9 :0.1 -.:0.9425893425941467 .:0.008349500596523285 men:0.004679546691477299 dead:0.004185515455901623 soldiers:0.0030681989155709743 :0.03712789574638009 -and:0.09344800561666489 :0.09287150204181671 1:0.04352940618991852 .:0.039309531450271606 And:0.03759400546550751 :0.6932475492358208 --:0.059960443526506424 hundred:0.0528513602912426 a:0.043360888957977295 year:0.01806182600557804 ,:0.017886990681290627 :0.807878490537405 -prepares:0.2484535574913025 stimulates:0.204078808426857 drives:0.04580351710319519 strengthens:0.02386026456952095 trains:0.022096388041973114 :0.45570746436715126 -brick:0.2274257093667984 -:0.16374720633029938 and:0.061495278030633926 -:0.016276905313134193 or:0.010923551395535469 :0.5201313495635986 -bills:0.47199976444244385 Bills:0.06890342384576797 bill:0.06390807777643204 amendments:0.046379417181015015 houses:0.014144761487841606 :0.3346645552664995 -.:0.1303197294473648 eyes:0.07597141712903976 ,:0.07469600439071655 faces:0.0719766616821289 hearts:0.036146435886621475 :0.6108897514641285 -claim:0.2859749495983124 say:0.08977095037698746 assert:0.07693836838006973 said:0.06130750849843025 allege:0.045183297246694565 :0.4408249258995056 -more:0.39845213294029236 all:0.03052852489054203 others:0.026292523369193077 which:0.024631300941109657 interest:0.022628704085946083 :0.4974668137729168 -points:0.31452125310897827 places:0.05211460217833519 sites:0.04284124821424484 ,:0.030424483120441437 least:0.022516213357448578 :0.5375822000205517 -to:0.04300960898399353 ated:0.0337262861430645 ited:0.03092809207737446 ially:0.03079318068921566 ed:0.0302170030772686 :0.8313258290290833 -where:0.5515718460083008 when:0.0773666575551033 that:0.07469883561134338 which:0.04431651160120964 in:0.04347601905465126 :0.20857013016939163 -was:0.7977597117424011 is:0.07396173477172852 got:0.037580158561468124 Is:0.01341303065419197 has:0.012560554780066013 :0.06472480949014425 -of:0.3547622561454773 the:0.04886648803949356 from:0.047048117965459824 or:0.04330610856413841 to:0.042033083736896515 :0.4639839455485344 -will:0.44820669293403625 did:0.22279226779937744 does:0.2209872454404831 would:0.05570003390312195 may:0.011066962964832783 :0.04124679695814848 -sail:0.3639078140258789 get:0.07060779631137848 go:0.06353983283042908 ship:0.020760593935847282 be:0.019234828650951385 :0.46194913424551487 -to:0.6721917390823364 will:0.06502433121204376 to:0.03154682740569115 shall:0.02820424735546112 should:0.023038171231746674 :0.17999468371272087 -1908:0.04910654574632645 1898:0.04232356697320938 1907:0.038375452160835266 1893:0.029136622324585915 1897:0.028139207512140274 :0.8129186052829027 -ing:0.6272515654563904 ful:0.1601908653974533 ed:0.023980725556612015 o:0.015060046687722206 ly:0.011424706317484379 :0.1620920905843377 -much:0.19523562490940094 nearly:0.1295805424451828 about:0.09633714705705643 exactly:0.09169448167085648 almost:0.08355425298213959 :0.40359795093536377 -,:0.87472003698349 ;:0.07988694310188293 .:0.017643913626670837 ;:0.010984323918819427 ::0.0018363527487963438 :0.014928429620340466 -streets:0.09894063323736191 woods:0.08818764239549637 docks:0.0841250792145729 fields:0.06165226548910141 yards:0.043748825788497925 :0.6233455538749695 -He:0.9285151362419128 Ho:0.005798232275992632 he:0.004812660161405802 It:0.004065816290676594 They:0.0026612626388669014 :0.05414689239114523 -of:0.9634199142456055 in:0.01254445780068636 ot:0.003171006916090846 to:0.002943349303677678 through:0.0024549299851059914 :0.015466341748833656 -had:0.9743452668190002 has:0.010813453234732151 having:0.006398357450962067 had:0.002126681385561824 Had:0.0011776839382946491 :0.005138557171449065 -to:0.9847645163536072 and:0.013263224624097347 ,:0.0008613601676188409 to:0.00021679956989828497 To:8.833880565362051e-05 :0.0008057604791247286 -me:0.4936898350715637 up:0.08978729695081711 on:0.07311569154262543 in:0.045210447162389755 home:0.04435088485479355 :0.25384584441781044 -ording:0.15876036882400513 the:0.0546778067946434 o:0.051681045442819595 u:0.025518350303173065 i:0.022601472213864326 :0.6867609564214945 -and:0.7629056572914124 upon:0.0676281526684761 or:0.0355033352971077 to:0.021091334521770477 on:0.012314933352172375 :0.100556586869061 -to:0.9647367596626282 with:0.006032293662428856 upon:0.004930038936436176 by:0.0040838769637048244 from:0.0038600414991378784 :0.01635698927566409 -*:0.4350410997867584 ,:0.15779046714305878 and:0.030692869797348976 all:0.021600259467959404 of:0.020585045218467712 :0.3342902585864067 -result:0.6777897477149963 part:0.20381782948970795 consequence:0.05053545907139778 product:0.010063541121780872 feature:0.004709652159363031 :0.05308377044275403 -.:0.0685829222202301 to:0.03533967584371567 the:0.030192432925105095 by:0.02920890413224697 -:0.02753855660557747 :0.8091375082731247 -American:0.47121578454971313 Canadian:0.3491514325141907 British:0.03193726763129234 other:0.019230561330914497 English:0.014288745820522308 :0.11417620815336704 -of:0.9448939561843872 for:0.02311289682984352 ot:0.015230085700750351 ol:0.0012198920594528317 o:0.00106341321952641 :0.014479756006039679 -,:0.8963987827301025 enough:0.011601733043789864 .:0.004860179498791695 done:0.004671088419854641 ;:0.003577491035684943 :0.07889072527177632 -the:0.3013463318347931 this:0.1312912553548813 a:0.0507693812251091 his:0.04537070915102959 active:0.0407252311706543 :0.43049709126353264 -drive:0.5786687731742859 club:0.09074711799621582 effort:0.041068777441978455 endeavor:0.023115336894989014 scheme:0.01898011565208435 :0.24741987884044647 -est:0.029532160609960556 plat:0.024614404886960983 pose:0.02097509615123272 ment:0.020253032445907593 cess:0.0175485797226429 :0.8870767261832952 -ing:0.24696218967437744 ed:0.1793033629655838 ful:0.10985428094863892 ted:0.022645337507128716 ter:0.02218172512948513 :0.419053103774786 -John:0.16334183514118195 William:0.08140408247709274 George:0.05284697562456131 James:0.038213301450014114 Henry:0.03527155891060829 :0.6289222463965416 -sometimes:0.0770241841673851 also:0.06481800973415375 mixed:0.043985482305288315 some:0.037109918892383575 colored:0.03242064639925957 :0.7446417585015297 -and:0.6375021934509277 of:0.1535445749759674 or:0.09677555412054062 's:0.0157479178160429 -:0.0144263980910182 :0.08200336154550314 -was:0.9651157855987549 wa:0.01875280775129795 were:0.0033273922745138407 was:0.0020524098072201014 is:0.001134700607508421 :0.009616903960704803 -A:0.10590717941522598 W:0.09027252346277237 .:0.06932598352432251 H:0.061800092458724976 E:0.048118673264980316 :0.6245755478739738 -the:0.7188498973846436 its:0.08509166538715363 a:0.051313240081071854 tho:0.024729527533054352 their:0.01950554922223091 :0.1005101203918457 -The:0.6945174932479858 A:0.18598458170890808 This:0.022156180813908577 One:0.015532177872955799 Another:0.0068030464462935925 :0.07500651990994811 -to:0.5243753790855408 by:0.35376814007759094 for:0.04677246883511543 with:0.012539942748844624 upon:0.00968632847070694 :0.05285774078220129 -of:0.807321310043335 ot:0.1665458381175995 ol:0.0051131658256053925 o:0.003714986378327012 to:0.002380938036367297 :0.01492376159876585 -women:0.35199570655822754 men:0.1667252779006958 girls:0.09163059294223785 children:0.055746737867593765 boys:0.05043252184987068 :0.28346916288137436 -of:0.030353093519806862 *:0.029806604608893394 parts:0.02817845344543457 corn:0.027811625972390175 seed:0.026070529595017433 :0.8577796928584576 -way:0.24977876245975494 road:0.13091608881950378 line:0.10797349363565445 scene:0.10152897238731384 ground:0.036717988550662994 :0.37308469414711 -of:0.6609573364257812 for:0.0740872323513031 ol:0.04147404804825783 ot:0.032555896788835526 after:0.01749088242650032 :0.17343460395932198 -were:0.982012927532196 was:0.005207355134189129 had:0.004156946670264006 are:0.0017092155758291483 being:0.0012851302744820714 :0.005628424813039601 -on:0.3455602526664734 ,:0.19003140926361084 for:0.13492244482040405 upon:0.09687119722366333 and:0.05877642333507538 :0.173838272690773 -,:0.22152608633041382 *:0.08385936170816422 .:0.04507989436388016 *,:0.03253477066755295 ;:0.02416471764445305 :0.5928351692855358 -been:0.1509394496679306 interest:0.1097787469625473 come:0.07812419533729553 gold:0.05342545732855797 gone:0.04931862652301788 :0.5584135241806507 -it:0.6415563225746155 It:0.035295020788908005 them:0.028795339167118073 her:0.023160507902503014 relief:0.021720051765441895 :0.24947275780141354 -ing:0.0809500440955162 ter:0.062024421989917755 er:0.06105932965874672 dan:0.02116069570183754 n:0.015274799428880215 :0.7595307091251016 -of:0.28245124220848083 in:0.24327696859836578 In:0.14726772904396057 from:0.04071195796132088 and:0.020698348060250282 :0.26559375412762165 -always:0.08427499234676361 now:0.056959398090839386 and:0.039005376398563385 then:0.036505118012428284 who:0.03163629397749901 :0.7516188211739063 -was:0.6313204765319824 is:0.34346631169319153 Is:0.012263375334441662 were:0.001789295463822782 seems:0.001437487080693245 :0.009723053895868361 -the:0.8917111754417419 his:0.054022565484046936 two:0.004077901132404804 these:0.003471222473308444 our:0.003233449999243021 :0.04348368546925485 -in:0.7485607266426086 In:0.11895205825567245 of:0.0749288871884346 from:0.012793906964361668 by:0.00921336468309164 :0.035551056265830994 -arms:0.8640706539154053 hearts:0.032131776213645935 ness:0.016138901934027672 affection:0.006752306129783392 love:0.005483935121446848 :0.07542242668569088 -the:0.8350790739059448 this:0.09618068486452103 tho:0.02704407460987568 an:0.007594082038849592 its:0.004603908862918615 :0.029498175717890263 -about:0.4947246313095093 either:0.07592283934354782 some:0.061769407242536545 only:0.059485938400030136 probably:0.04499072954058647 :0.26310645416378975 -are:0.6832131743431091 were:0.23275747895240784 and:0.00854489766061306 ,:0.0066352165304124355 lie:0.006616443395614624 :0.06223278911784291 -ber:0.08900441974401474 ment:0.051153119653463364 ter:0.025573376566171646 er:0.020109407603740692 men:0.018738988786935806 :0.7954206876456738 -The:0.9879889488220215 The:0.002256549196317792 the:0.0021103734616190195 This:0.001511039212346077 But:0.0005852984031662345 :0.005547790904529393 -the:0.9388219714164734 a:0.008262562565505505 every:0.002104229526594281 45:0.0018052835948765278 50:0.0016717812977731228 :0.047334171598777175 -the:0.078593909740448 in:0.04101952165365219 of:0.02394995465874672 a:0.018895864486694336 on:0.015496364794671535 :0.8220443846657872 -and:0.3262355923652649 leaving:0.06069289520382881 tearing:0.04147208482027054 tore:0.027035603299736977 with:0.024832412600517273 :0.5197314117103815 -of:0.7708836197853088 from:0.03893538936972618 in:0.03780093789100647 for:0.032600246369838715 on:0.024717843160033226 :0.09506196342408657 -sale:0.16531327366828918 all:0.08006738871335983 law:0.07400447875261307 trial:0.06776489317417145 court:0.061856117099523544 :0.5509938485920429 -said:0.39106106758117676 the:0.3297426402568817 this:0.1242252066731453 that:0.08137903362512589 Baltimore:0.027775201946496964 :0.045816849917173386 -In:0.3854292929172516 in:0.3604607582092285 of:0.10365282744169235 and:0.03100227750837803 or:0.02672448940575123 :0.09273035451769829 -could:0.9330608248710632 would:0.039730582386255264 can:0.01246006228029728 should:0.0026716249994933605 did:0.0024944283068180084 :0.009582477156072855 -ed:0.5330629944801331 ment:0.04940030351281166 ted:0.04352528229355812 tion:0.01602686010301113 dent:0.014671364799141884 :0.34331319481134415 -and:0.3572092354297638 ,:0.28334376215934753 that:0.07065101712942123 then:0.034289680421352386 when:0.03150525316596031 :0.22300105169415474 -the:0.9 :0.1 -.:0.37486690282821655 .:0.052825674414634705 !:0.02515660971403122 >:0.020173076540231705 :0.018929321318864822 :0.508048415184021 -wife:0.29636967182159424 sister:0.13646239042282104 father:0.09474612772464752 brother:0.09447237849235535 mother:0.07251127064228058 :0.30543816089630127 -movements:0.5240316390991211 experiments:0.05809228867292404 events:0.03512685373425484 things:0.025699255988001823 all:0.017011461779475212 :0.340038500726223 -and:0.08764534443616867 ,:0.07506440579891205 u:0.012395847588777542 o:0.008223685435950756 s:0.00764137739315629 :0.8090293393470347 -tho:0.7865166068077087 the:0.18836332857608795 his:0.0048487684689462185 a:0.00411846861243248 tha:0.0019785368349403143 :0.014174290699884295 -will:0.43581077456474304 must:0.19046826660633087 may:0.14610673487186432 should:0.09356611222028732 can:0.03851498290896416 :0.09553312882781029 -crisis:0.07035966217517853 war:0.05550678074359894 scarcity:0.0405026450753212 disaster:0.034043993800878525 prosperity:0.024056944996118546 :0.7755299732089043 -try:0.25443699955940247 inquire:0.050938963890075684 call:0.0492328405380249 attend:0.03429384157061577 come:0.03243245556950569 :0.5786648988723755 -the:0.9 :0.1 -t:0.024535132572054863 ing:0.023824576288461685 n:0.011798469349741936 the:0.008690980263054371 side:0.007015365641564131 :0.924135475885123 -Third:0.30041027069091797 First:0.07114149630069733 Second:0.0395493358373642 Central:0.037488147616386414 Fourth:0.02453571744263172 :0.5268750321120024 -of:0.9870518445968628 in:0.00242572370916605 ot:0.0012777535011991858 for:0.0012583336792886257 to:0.0011116316309198737 :0.006874712882563472 -the:0.965103805065155 tho:0.014600244350731373 a:0.008166401647031307 tha:0.0014312778366729617 great:0.0008387049892917275 :0.009859566111117601 -come:0.7815858125686646 be:0.08672277629375458 go:0.07118703424930573 bring:0.011721506714820862 open:0.005036657210439444 :0.04374621296301484 -the:0.9572426080703735 this:0.011668725870549679 tho:0.007137461099773645 our:0.005425075069069862 a:0.0046490211971104145 :0.013877108693122864 -it:0.932969868183136 It:0.061768099665641785 there:0.0007148168515414 this:0.0004405123181641102 is:0.0003956624132115394 :0.0037110405683051795 -the:0.9672255516052246 a:0.007109965663403273 tho:0.005571917165070772 that:0.0037627127021551132 tha:0.0033758634235709906 :0.012953989440575242 -length:0.08456224203109741 roots:0.06535535305738449 growth:0.05738150328397751 stems:0.03501858562231064 heads:0.02539096400141716 :0.7322913520038128 -tariff:0.6051591038703918 year:0.03532490134239197 Act:0.01072167418897152 levy:0.010563486255705357 law:0.009170567616820335 :0.329060266725719 -marry:0.2865028977394104 help:0.06756476312875748 accompany:0.03506677970290184 love:0.029135385528206825 feed:0.018210578709840775 :0.5635195951908827 -most:0.3745197653770447 half:0.13180121779441833 many:0.12191574275493622 all:0.05807309225201607 some:0.04725723713636398 :0.2664329446852207 -doubt:0.7787284851074219 believe:0.053688570857048035 deny:0.04605252295732498 know:0.015157817862927914 forget:0.014537481591105461 :0.09183512162417173 -is:0.3533781170845032 was:0.3273463249206543 as:0.023673932999372482 being:0.022479599341750145 has:0.02091078832745552 :0.2522112373262644 -the:0.9666601419448853 tho:0.016571572050452232 a:0.003659100504592061 any:0.0014700618339702487 its:0.001063034520484507 :0.010576089145615697 -and:0.8587467074394226 when:0.03765162080526352 but:0.024656623601913452 as:0.024026770144701004 while:0.00811217911541462 :0.0468060988932848 -had:0.3407488465309143 carried:0.22464120388031006 held:0.10387398302555084 kept:0.07621319591999054 found:0.036739472299814224 :0.21778329834342003 -The:0.9235880970954895 A:0.04047041013836861 This:0.02237376943230629 Another:0.0017645942280068994 The:0.0014864219119772315 :0.010316707193851471 -ly:0.0557192787528038 times:0.03455227613449097 ter:0.022718725726008415 way:0.021234504878520966 time:0.01746341399848461 :0.8483118005096912 -handle:0.16478866338729858 star:0.07868088781833649 bowl:0.04990484192967415 spot:0.026583446189761162 Star:0.018767809495329857 :0.6612743511795998 -with:0.6074962615966797 visiting:0.23978951573371887 to:0.025092976167798042 from:0.01930893398821354 by:0.015308397822082043 :0.09300391469150782 -ful:0.44396427273750305 ing:0.27608543634414673 ed:0.09008239954710007 able:0.023093344643712044 ly:0.01809653453528881 :0.1486780121922493 -took:0.3146730959415436 taken:0.1324172019958496 o:0.03490064665675163 in:0.03091380186378956 ook:0.02415001392364502 :0.4629452396184206 -the:0.7520718574523926 this:0.06478174775838852 tho:0.03239144757390022 he:0.029201174154877663 The:0.014455823227763176 :0.10709794983267784 -to:0.6213324666023254 and:0.36107316613197327 or:0.005713195540010929 ,:0.004426758736371994 aud:0.002031584968790412 :0.005422828020527959 -as:0.9495935440063477 so:0.03466205298900604 of:0.0033119849395006895 almost:0.0011730438563972712 equally:0.0009102861513383687 :0.010349088057409972 -with:0.12607644498348236 good:0.08451288938522339 his:0.0768580436706543 sound:0.05093492195010185 the:0.04642629250884056 :0.6151914075016975 -to:0.12416344881057739 the:0.06940286606550217 with:0.03166806697845459 from:0.029118424281477928 of:0.025808628648519516 :0.7198385652154684 -hed:0.058451905846595764 ried:0.02855382300913334 kered:0.01597556471824646 ied:0.015187609009444714 nt:0.014731028117239475 :0.8671000692993402 -no:0.18399228155612946 some:0.12370340526103973 immediate:0.088714599609375 complete:0.08600318431854248 great:0.07999355345964432 :0.437592975795269 -class:0.575702428817749 group:0.09993051737546921 number:0.08101755380630493 set:0.045792073011398315 kind:0.0133848050609231 :0.18417262192815542 -an:0.9810358285903931 a:0.014196685515344143 the:0.0015852090436965227 this:0.00035091553581878543 his:0.000236609936109744 :0.0025947513786377385 -published:0.23357903957366943 gave:0.2131260633468628 printed:0.08227092027664185 received:0.05967303737998009 had:0.05469616502523422 :0.3566547743976116 -to:0.9980892539024353 To:0.0002865695278160274 to:0.00011957279639318585 ,:9.695895278127864e-05 and:6.600307824555784e-05 :0.0013416417423286475 -a:0.14746779203414917 not:0.10231555253267288 very:0.08534268289804459 too:0.04783010110259056 in:0.02642384171485901 :0.5906200297176838 -In:0.5959943532943726 For:0.07969745993614197 The:0.07631157338619232 Among:0.035165730863809586 As:0.025122035294771194 :0.18770884722471237 -quarter:0.8806695342063904 half:0.10526647418737411 corner:0.003449767827987671 quarter:0.0032778852619230747 half:0.002876668469980359 :0.0044596700463443995 -the:0.22389380633831024 a:0.03114684857428074 tho:0.030921796336770058 in:0.03010917641222477 when:0.025664202868938446 :0.6582641694694757 -Mobile:0.828285276889801 Buffalo:0.005309975706040859 here:0.00500855315476656 Washington:0.004426832776516676 Memphis:0.00395168038085103 :0.15301768109202385 -ter:0.055552683770656586 man:0.04382571578025818 master:0.023376768454909325 ment:0.022407222539186478 er:0.021739499643445015 :0.8330981098115444 -A:0.666552722454071 The:0.276208758354187 This:0.007771898061037064 One:0.004636879079043865 Another:0.00398307666182518 :0.040846665389835835 -him:0.7028016448020935 B:0.02898513711988926 the:0.027125291526317596 it:0.011322589591145515 a:0.011047261767089367 :0.21871807519346476 -ter:0.10874324291944504 ly:0.05861068516969681 ty:0.040843792259693146 le:0.030017226934432983 er:0.02301555499434471 :0.7387694977223873 -be:0.2490030825138092 of:0.0801224410533905 and:0.044449225068092346 li:0.03195791691541672 to:0.02965359389781952 :0.5648137405514717 -who:0.6490005254745483 which:0.19855599105358124 that:0.04597805440425873 it:0.02471049129962921 as:0.022447913885116577 :0.059307023882865906 -the:0.9 :0.1 -up:0.14236409962177277 there:0.11551414430141449 away:0.06758828461170197 here:0.052077580243349075 prisoner:0.03978019207715988 :0.5826756991446018 -up:0.4118572473526001 out:0.1912444829940796 forth:0.07814532518386841 down:0.07665864378213882 apart:0.0623810738325119 :0.17971322685480118 -the:0.9 :0.1 -up:0.21036799252033234 me:0.12431968748569489 out:0.06273732334375381 all:0.04938172549009323 in:0.03516396880149841 :0.5180293023586273 -ch:0.49419718980789185 ment:0.021651001647114754 tion:0.0190277136862278 ch:0.014384378679096699 c:0.012031292542815208 :0.4387084236368537 -ing:0.22829553484916687 line:0.028060177341103554 out:0.02684764564037323 ter:0.023217355832457542 ly:0.020429208874702454 :0.6731500774621964 -than:0.5168357491493225 ,:0.11636874824762344 in:0.0980534479022026 by:0.04398448392748833 with:0.03485294431447983 :0.18990462645888329 -.:0.16706739366054535 to:0.05708927661180496 follows:0.052328694611787796 required:0.04872544854879379 provided:0.039586883038282394 :0.6352023035287857 -the:0.9525447487831116 its:0.008217668160796165 my:0.00810793787240982 tho:0.005934004671871662 a:0.005403137765824795 :0.019792502745985985 -ight:0.34573137760162354 ,:0.07172337174415588 .:0.06577157229185104 and:0.04880499094724655 as:0.026479654014110565 :0.4414890334010124 --:0.07214738428592682 and:0.05661255493760109 :0.0450810045003891 *:0.041851144284009933 for:0.032758284360170364 :0.7515496276319027 -doubt:0.0292469821870327 ,:0.025156129151582718 feeling:0.021963946521282196 fact:0.02069738693535328 law:0.013683288358151913 :0.8892522668465972 -,:0.25168654322624207 .:0.024435868486762047 l:0.02152218297123909 s:0.020684845745563507 ,:0.015058523043990135 :0.6666120365262032 -of:0.2960178256034851 is:0.08658179640769958 Is:0.04611165076494217 ,:0.04252925515174866 .:0.025707917287945747 :0.5030515547841787 -as:0.07319241762161255 ,:0.07015591114759445 and:0.06857658177614212 scarcely:0.052468884736299515 without:0.032736796885728836 :0.7028694078326225 -and:0.600244402885437 but:0.10454973578453064 while:0.052280277013778687 which:0.048416875302791595 as:0.04143692925572395 :0.1530717797577381 -,:0.11220837384462357 soon:0.04086829721927643 d:0.03962057828903198 t:0.026938343420624733 u:0.016681212931871414 :0.7636831942945719 -last:0.03896844759583473 once:0.02709103934466839 seemed:0.02032875455915928 :0.0189621951431036 ly:0.01832202821969986 :0.8763275351375341 -year:0.6237128973007202 week:0.10215339064598083 summer:0.04525642842054367 season:0.04189017787575722 fall:0.027186883613467216 :0.15980022214353085 -.:0.029887864366173744 be:0.02386857569217682 n:0.022064490243792534 *:0.02016131579875946 nd:0.015843380242586136 :0.8881743736565113 -some:0.3085334300994873 a:0.2518277168273926 her:0.1712641566991806 no:0.029882432892918587 the:0.023638026788830757 :0.21485423669219017 -as:0.9509569406509399 so:0.031610410660505295 too:0.0023330796975642443 As:0.001168272690847516 very:0.0010023309150710702 :0.012928965385071933 -so:0.45113834738731384 as:0.2200632095336914 this:0.06743975728750229 such:0.052410151809453964 that:0.04007480666041374 :0.16887372732162476 -the:0.280963659286499 Mr:0.08372053503990173 a:0.04481297358870506 his:0.04204705357551575 our:0.032759055495262146 :0.5156967230141163 -forts:0.5671494603157043 o:0.04194553196430206 unity:0.02424084022641182 ittee:0.018895860761404037 bers:0.008565285243093967 :0.33920302148908377 -The:0.8822498321533203 A:0.03225471079349518 This:0.025087840855121613 One:0.012362990528345108 That:0.009295577183365822 :0.03874904848635197 -ing:0.3602839708328247 er:0.05678258091211319 ter:0.03276422247290611 :0.012092280201613903 ber:0.011661294847726822 :0.5264156507328153 -to:0.8493390083312988 at:0.026208579540252686 by:0.021772664040327072 ,:0.01573784649372101 and:0.008310221135616302 :0.0786316804587841 -of:0.8703810572624207 's:0.07514578849077225 in:0.008301843889057636 ':0.00492436857894063 ot:0.0027183692436665297 :0.0385285725351423 -of:0.921721339225769 ot:0.01838040165603161 In:0.01746557652950287 in:0.011094599030911922 Of:0.009091316722333431 :0.022246766835451126 -the:0.9 :0.1 -er:0.07236851006746292 and:0.03946734964847565 ed:0.035866476595401764 ter:0.031141847372055054 y:0.030757172033190727 :0.7903986442834139 -regard:0.14576153457164764 reference:0.04732590168714523 nod:0.046984799206256866 addition:0.03510518744587898 seat:0.025202911347150803 :0.6996196657419205 -eyes:0.03593556582927704 mouth:0.029372021555900574 door:0.02872762270271778 head:0.026130467653274536 ,:0.026038924232125282 :0.8537953980267048 -ing:0.1261398047208786 ly:0.11204490065574646 ful:0.04652787744998932 ter:0.046038027852773666 lo:0.042326919734478 :0.626922469586134 -of:0.48162609338760376 and:0.16918990015983582 ol:0.06028567999601364 ot:0.05141226202249527 to:0.03081526607275009 :0.20667079836130142 -States:0.973280668258667 State:0.02130945399403572 Methodist:0.0007116562337614596 District:0.0006135942530818284 Jersey:0.0005282782949507236 :0.0035563489655032754 -Is:0.5835297703742981 is:0.38384756445884705 was:0.008050898090004921 are:0.0028670928440988064 lies:0.002433063695207238 :0.019271610537543893 -tion:0.23302844166755676 ment:0.029509220272302628 ing:0.021974043920636177 t:0.018630312755703926 ly:0.014137770980596542 :0.682720210403204 -under:0.9334274530410767 on:0.026486825197935104 in:0.01878519542515278 en:0.0038675416726619005 In:0.0020789022091776133 :0.015354082453995943 -tho:0.7193604707717896 the:0.23575171828269958 his:0.008147147484123707 he:0.00346636981703341 tha:0.0028657603543251753 :0.030408533290028572 -men:0.08566580712795258 members:0.08316177874803543 years:0.05738071724772453 names:0.05552711337804794 chapters:0.04192817583680153 :0.676336407661438 -2:0.023062610998749733 8:0.019002526998519897 3:0.017850762233138084 4:0.01782301813364029 two:0.01722649298608303 :0.905034588649869 -This:0.5841336846351624 The:0.06935954838991165 His:0.058490488678216934 This:0.03827236220240593 That:0.02637605182826519 :0.22336786426603794 -organs:0.039303191006183624 needs:0.0349605493247509 bones:0.03481873869895935 necessities:0.03041280247271061 souls:0.024946367368102074 :0.8355583511292934 -against:0.5270378589630127 for:0.2832238972187042 on:0.10106280446052551 upon:0.020372720435261726 with:0.014511708170175552 :0.05379101075232029 -this:0.49405911564826965 the:0.29709699749946594 that:0.1545679122209549 a:0.017559031024575233 one:0.007868019863963127 :0.02884892374277115 -any:0.06738043576478958 -:0.043832242488861084 only:0.030828777700662613 a:0.030704312026500702 at:0.025821419432759285 :0.8014328125864267 -Judge:0.26937559247016907 William:0.04598906636238098 George:0.04205380752682686 John:0.03271707147359848 Joseph:0.031999990344047546 :0.5778644718229771 -from:0.4984973669052124 to:0.4047289490699768 of:0.017875779420137405 in:0.013952266424894333 on:0.010042360983788967 :0.054903277195990086 -the:0.6210448741912842 a:0.08688384294509888 our:0.027448365464806557 their:0.024189207702875137 and:0.023936642333865166 :0.21649706736207008 -.:0.23117610812187195 cured:0.10031949728727341 fatal:0.03474859893321991 harmless:0.02754261903464794 useless:0.023527398705482483 :0.5826857779175043 -,:0.22247153520584106 plant:0.07505332678556442 works:0.0720919519662857 pipes:0.0660395547747612 supply:0.04029339924454689 :0.5240502320230007 -the:0.8688317537307739 tho:0.08247263729572296 two:0.0065690274350345135 our:0.0041135805658996105 these:0.004019002430140972 :0.03399399854242802 -or:0.9381704330444336 and:0.024826712906360626 of:0.00674545718356967 in:0.006676986813545227 to:0.006481860298663378 :0.017098549753427505 -the:0.9477955102920532 a:0.02518126741051674 tho:0.006703624501824379 late:0.0022747914772480726 Saturday:0.0012446452165022492 :0.016800161101855338 -my:0.43645235896110535 the:0.31037336587905884 his:0.05613602697849274 that:0.029334137216210365 its:0.018811391666531563 :0.14889271929860115 -E:0.19288495182991028 Edward:0.06364293396472931 Earl:0.05554318428039551 .:0.04426190257072449 Lee:0.02103961445391178 :0.6226274129003286 -these:0.6388392448425293 the:0.15083645284175873 such:0.1152939647436142 this:0.010082156397402287 those:0.0075929900631308556 :0.07735519111156464 -into:0.26067396998405457 in:0.23227669298648834 Into:0.12782706320285797 In:0.07796970009803772 to:0.07394790649414062 :0.22730466723442078 -The:0.944847583770752 These:0.02814452163875103 the:0.00330212339758873 Many:0.003082461655139923 Some:0.002969011664390564 :0.0176542978733778 -How:0.722352921962738 how:0.09138544648885727 For:0.014443552121520042 But:0.012760765850543976 Not:0.012008661404252052 :0.14704865217208862 -i:0.034759655594825745 and:0.029449736699461937 not:0.027516327798366547 a:0.026092400774359703 ':0.02283390611410141 :0.8593479730188847 -;:0.3379296064376831 ;:0.04584939405322075 ::0.03471220284700394 ,:0.0226188525557518 >:0.01831863261759281 :0.5405713114887476 -absence:0.058000240474939346 effect:0.03922659158706665 nature:0.03426240012049675 inventor:0.03212910145521164 use:0.02387138083577156 :0.812510285526514 -day:0.3706691563129425 Day:0.10314640402793884 Sabbath:0.07024441659450531 morning:0.036096569150686264 service:0.033687762916088104 :0.386155690997839 -of:0.13572020828723907 at:0.09486650675535202 on:0.07740165293216705 for:0.06780482828617096 over:0.06685037910938263 :0.5573564246296883 -way:0.1278577744960785 standard:0.06279432028532028 method:0.044892020523548126 system:0.03089628927409649 principle:0.030052337795495987 :0.7035072576254606 -or:0.899412989616394 and:0.04453068971633911 of:0.027025924995541573 ,:0.0048751370050013065 without:0.00360351474955678 :0.020551743917167187 -of:0.9456857442855835 for:0.03460029140114784 in:0.01471795979887247 at:0.0012997816083952785 to:0.00104798364918679 :0.002648239256814122 -revolver:0.08803252130746841 ,:0.0830506831407547 nothing:0.034659724682569504 gun:0.021383672952651978 vo:0.01922202855348587 :0.7536513693630695 -Thompson:0.33843347430229187 he:0.26570916175842285 they:0.11553293466567993 she:0.067902572453022 it:0.04495072364807129 :0.16747113317251205 -t:0.11060597002506256 :0.04905850067734718 l:0.040499038994312286 m:0.03922894597053528 p:0.02303139679133892 :0.7375761475414038 -quartz:0.26157060265541077 silver:0.17421932518482208 gold:0.09470207244157791 copper:0.04189877584576607 tin:0.031816840171813965 :0.3957923837006092 -wages:0.37821298837661743 work:0.06297571212053299 labor:0.054016295820474625 prices:0.04776577651500702 pay:0.04213578626513481 :0.4148934409022331 -If:0.922687828540802 When:0.048278436064720154 if:0.004582702182233334 Unless:0.0034922389313578606 If:0.0032305200584232807 :0.01772827422246337 -4:0.04727958142757416 .:0.04678391292691231 2:0.03509984910488129 3:0.025889649987220764 .:0.024471139535307884 :0.8204758670181036 -State:0.34008127450942993 state:0.280516117811203 city:0.2579065263271332 City:0.05335211008787155 cities:0.00994174461811781 :0.058202226646244526 -from:0.2866121530532837 through:0.16003063321113586 into:0.0863458588719368 over:0.0848182663321495 in:0.06503459066152573 :0.3171584978699684 -causes:0.3648970127105713 leads:0.09930187463760376 induces:0.04648232087492943 drives:0.03426329419016838 forces:0.032638780772686005 :0.42241671681404114 -the:0.9624550342559814 a:0.012941333465278149 our:0.011841153725981712 this:0.0045880768448114395 tho:0.0033729427959769964 :0.004801458911970258 -course:0.948246419429779 necessity:0.008276472799479961 origin:0.0023183191660791636 ,:0.002251464407891035 interest:0.0017143272561952472 :0.03719299694057554 -they:0.3689745366573334 who:0.2931530177593231 you:0.04701464995741844 we:0.04429445043206215 men:0.024891451001167297 :0.22167189419269562 -on:0.31003403663635254 to:0.18160046637058258 in:0.13693250715732574 for:0.08436303585767746 by:0.06830545514822006 :0.2187644988298416 -the:0.9 :0.1 -to:0.8710723519325256 lo:0.039922017604112625 ta:0.031108323484659195 you:0.011243813671171665 ti:0.00908142700791359 :0.03757206629961729 -the:0.9 :0.1 -erson:0.11357547342777252 he:0.026300586760044098 att:0.022145118564367294 .:0.016191968694329262 -:0.014258425682783127 :0.8075284268707037 -,:0.38563305139541626 and:0.15447203814983368 -:0.018633674830198288 .:0.015699375420808792 or:0.01365673542022705 :0.41190512478351593 -and:0.047303084284067154 ied:0.03090783767402172 ently:0.02521548978984356 ed:0.023245133459568024 ingly:0.02291231043636799 :0.8504161443561316 -had:0.940831184387207 'd:0.02034590020775795 have:0.006013296544551849 would:0.0057121519930660725 ha:0.002226645592600107 :0.02487082127481699 -.:0.6185659170150757 1:0.056472815573215485 ,:0.024095021188259125 .:0.02099691890180111 18:0.014551605097949505 :0.2653177222236991 -to:0.614720344543457 until:0.27335497736930847 till:0.03378657251596451 through:0.021904557943344116 on:0.013317144475877285 :0.04291640315204859 -famous:0.021316509693861008 new:0.016505947336554527 larger:0.016164401546120644 large:0.015479573979973793 obsolete:0.014865406788885593 :0.9156681606546044 -centers:0.335197389125824 organs:0.036597635596990585 faculties:0.033188339322805405 centres:0.031170276924967766 rods:0.02258526161313057 :0.5412610974162817 -then:0.2886124551296234 immediately:0.07254446297883987 promptly:0.03130318596959114 first:0.0236101895570755 also:0.022975051775574684 :0.5609546545892954 -be:0.7100235223770142 bo:0.15267038345336914 he:0.020637527108192444 lie:0.01660321094095707 ho:0.011181812733411789 :0.0888835433870554 -line:0.9894087314605713 side:0.0019080745987594128 lines:0.0010858194436877966 line:0.0010153752518817782 end:0.00037015051930211484 :0.0062118487257976085 -of:0.26326820254325867 on:0.18592751026153564 to:0.0679188072681427 about:0.06389551609754562 upon:0.05787566304206848 :0.3611143007874489 -of:0.894472599029541 ot:0.021259458735585213 of:0.004912287462502718 all:0.004736615344882011 ,:0.004530040081590414 :0.07008899934589863 -;:0.4999588131904602 ,:0.354608416557312 ;:0.056662291288375854 and:0.04568248242139816 ::0.0070243407972157 :0.036063655745238066 -voters:0.34785789251327515 vote:0.08946381509304047 election:0.05816660448908806 people:0.04505186527967453 ballot:0.020310301333665848 :0.43914952129125595 -of:0.8018019199371338 in:0.05372531712055206 lack:0.04304371401667595 have:0.039599496871232986 with:0.016357241198420525 :0.04547231085598469 -end:0.2188320904970169 corner:0.1484893262386322 side:0.08937455713748932 door:0.04828818142414093 center:0.031874287873506546 :0.4631415568292141 -duty:0.9067222476005554 right:0.018615735694766045 responsibility:0.013454305939376354 privilege:0.007679298985749483 obligation:0.005160443019121885 :0.04836796876043081 -and:0.6093831658363342 with:0.18981251120567322 or:0.07214535772800446 all:0.026388807222247124 leaving:0.013708231970667839 :0.08856192603707314 -for:0.809791088104248 tor:0.09320162236690521 of:0.018560446798801422 ,:0.009686782956123352 or:0.009110926650464535 :0.05964913312345743 -to:0.7585281133651733 for:0.04526418074965477 the:0.022608069702982903 a:0.015824120491743088 ot:0.012969876639544964 :0.14480563905090094 -of:0.8988071084022522 in:0.04753224924206734 In:0.01125254575163126 for:0.008588794618844986 when:0.0052865613251924515 :0.02853274066001177 -who:0.5748332142829895 that:0.03077445738017559 to:0.026850152760744095 affected:0.01805746555328369 authorized:0.016399603337049484 :0.33308510668575764 -those:0.7034103274345398 others:0.058718547224998474 all:0.05671539157629013 tho:0.02736724726855755 any:0.011504248715937138 :0.14228423777967691 -tried:0.5338898301124573 sought:0.08924517780542374 wished:0.05393587425351143 attempted:0.04150697588920593 wanted:0.03222406283020973 :0.2491980791091919 -the:0.9 :0.1 -be:0.8803259134292603 bo:0.025622280314564705 lie:0.0088805565610528 ho:0.008646690286695957 ha:0.00825084000825882 :0.06827371940016747 -a:0.697619616985321 no:0.0599738173186779 a:0.03847809508442879 very:0.03464609012007713 is:0.014388089068233967 :0.15489429142326117 -was:0.892859160900116 is:0.033933401107788086 had:0.006768142804503441 were:0.006381852552294731 he:0.006032584235072136 :0.05402485840022564 -party:0.10004822164773941 revival:0.039098672568798065 reform:0.036033302545547485 grand:0.03007575497031212 political:0.022669529542326927 :0.772074518725276 -other:0.3183771073818207 sane:0.05837075039744377 American:0.050907257944345474 one:0.037702444940805435 reasonable:0.03262510895729065 :0.502017330378294 -the:0.699993908405304 this:0.07374870777130127 that:0.03298831358551979 his:0.01812903583049774 a:0.015891369432210922 :0.15924866497516632 -Board:0.6627882122993469 Office:0.034527167677879333 office:0.027306178584694862 board:0.02544650062918663 City:0.023191852495074272 :0.22674008831381798 -that:0.15401636064052582 the:0.12011244148015976 tho:0.11412182450294495 in:0.08490557223558426 yet:0.030429860576987267 :0.49641394056379795 -but:0.2108139842748642 although:0.15472200512886047 though:0.15083619952201843 for:0.14118371903896332 as:0.10416579991579056 :0.23827829211950302 -the:0.08296830952167511 trout:0.02912461757659912 striped:0.02216341160237789 sea:0.021169845014810562 other:0.020942173898220062 :0.8236316423863173 -at:0.5244128704071045 about:0.4088656008243561 around:0.02436745911836624 in:0.006987694650888443 ,:0.002497322391718626 :0.03286905260756612 -as:0.9959471821784973 by:0.001231218222528696 for:0.0005537037504836917 to:0.0005193208926357329 As:0.00040264142444357276 :0.0013459335314109921 -the:0.6681250333786011 and:0.08791283518075943 several:0.014562370255589485 some:0.012421300634741783 small:0.0122747253626585 :0.20470373518764973 -monthly:0.06624043732881546 usual:0.055635854601860046 occasional:0.05167737975716591 annual:0.04872864857316017 weekly:0.0413048155605793 :0.7364128641784191 -When:0.6956312656402588 As:0.16704802215099335 After:0.05911270156502724 Before:0.03570346161723137 While:0.011070473119616508 :0.03143407590687275 -of:0.872765839099884 ot:0.0482734814286232 for:0.02147182635962963 ,:0.01618722639977932 in:0.008153440430760384 :0.03314818628132343 -the:0.9 :0.1 -matter:0.825568675994873 subject:0.02529824897646904 issue:0.02450510673224926 question:0.018310224637389183 dispute:0.011696882545948029 :0.09462086111307144 -,:0.8390804529190063 it:0.015742288902401924 ■:0.012079278007149696 and:0.008816915564239025 .:0.00794564001262188 :0.11633542459458113 -was:0.3986967206001282 is:0.22579964995384216 it:0.07861315459012985 ho:0.0640328973531723 Is:0.01848006621003151 :0.214377511292696 -sent:0.023997826501727104 sworn:0.020149674266576767 ed:0.01908748224377632 ported:0.014358977787196636 known:0.009351560845971107 :0.9130544783547521 -and:0.8260496258735657 thirty:0.04215764254331589 twenty:0.025845617055892944 forty:0.022844096645712852 eighty:0.013514699414372444 :0.0695883184671402 -sold:0.6973263025283813 offered:0.10171939432621002 available:0.01620825007557869 distributed:0.01392222661525011 advertised:0.011744538322091103 :0.15907928813248873 -taken:0.7051750421524048 set:0.041803453117609024 held:0.03407203033566475 brought:0.02470594085752964 summed:0.02085587941110134 :0.17338765412569046 -to:0.1453646719455719 .:0.09087654203176498 of:0.07249248772859573 with:0.061776742339134216 ,:0.048056334257125854 :0.5814332216978073 -,:0.8475739359855652 .:0.048760417848825455 ;:0.04300277680158615 and:0.007103186100721359 ,:0.0060385228134691715 :0.04752116044983268 -ment:0.0606386698782444 ter:0.04031943529844284 ing:0.036815498024225235 tion:0.03665972873568535 man:0.027123402804136276 :0.7984432652592659 -removal:0.24797984957695007 grading:0.040291909128427505 replacement:0.03690291568636894 repair:0.025730613619089127 use:0.020980756729841232 :0.6281139552593231 -interests:0.12508808076381683 sentiments:0.06320749968290329 forces:0.037406258285045624 currents:0.023027313873171806 feelings:0.01843065395951271 :0.7328401934355497 -the:0.9 :0.1 -the:0.6121426224708557 tho:0.10934910178184509 no:0.08201045542955399 an:0.04810890182852745 this:0.028134509921073914 :0.12025440856814384 -the:0.946167528629303 The:0.005868094973266125 City:0.005061229690909386 tho:0.004699766635894775 State:0.002147159306332469 :0.03605622076429427 -to:0.9984866380691528 ot:0.0005844025290571153 not:0.00013034323637839407 To:7.323973113670945e-05 lo:6.65515472064726e-05 :0.0006588248870684765 -the:0.646789014339447 tho:0.20346860587596893 an:0.03930985927581787 any:0.02852066420018673 that:0.015534685924649239 :0.0663771703839302 -of:0.36913344264030457 at:0.19245778024196625 from:0.1811186969280243 in:0.060335054993629456 to:0.05801209434866905 :0.1389429308474064 -and:0.7452724575996399 to:0.1465061753988266 ,:0.06064991280436516 or:0.014589262194931507 our:0.003612518310546875 :0.029369673691689968 -warm:0.32322436571121216 fresh:0.07431820780038834 soft:0.06967760622501373 clean:0.0633942261338234 hot:0.06090356782078743 :0.40848202630877495 -our:0.18070842325687408 the:0.14702674746513367 THE:0.11619842797517776 these:0.04184623435139656 making:0.041019245982170105 :0.4732009209692478 -on:0.6471551060676575 in:0.14605292677879333 upon:0.07174631208181381 over:0.05771414563059807 In:0.019381621852517128 :0.057949887588620186 -their:0.4017498195171356 the:0.25907719135284424 an:0.18101100623607635 his:0.10854028165340424 our:0.014436321333050728 :0.03518537990748882 -Whether:0.673446536064148 If:0.15366634726524353 When:0.018459465354681015 whether:0.014759885147213936 Either:0.014212445355951786 :0.12545532081276178 -,:0.11932700127363205 commissioner:0.10832163691520691 treasurer:0.08533114194869995 Commissioner:0.05886425822973251 Treasurer:0.054244380444288254 :0.5739115811884403 -has:0.4517216384410858 had:0.2823116183280945 ever:0.045507244765758514 :0.03178142011165619 himself:0.01693905144929886 :0.17173902690410614 -country:0.053534578531980515 bill:0.04654071107506752 government:0.044723030179739 constitution:0.037246737629175186 law:0.028581060469150543 :0.7893738821148872 -which:0.9294691681861877 that:0.014608231373131275 who:0.012469453737139702 it:0.004606237169355154 as:0.0038682199083268642 :0.03497868962585926 -the:0.9 :0.1 -way:0.18973912298679352 case:0.06896107643842697 escape:0.06492772698402405 peace:0.0297384150326252 decision:0.014023927971720695 :0.6326097305864096 -Cincinnati:0.537180483341217 Ohio:0.10617753863334656 Cleveland:0.06583188474178314 Toledo:0.031523410230875015 Columbus:0.02225092612206936 :0.23703575693070889 -in:0.4430907368659973 throughout:0.39718472957611084 In:0.023565057665109634 across:0.022032037377357483 by:0.017850343137979507 :0.09627709537744522 -of:0.9958190321922302 ot:0.0012448170455172658 the:0.0005778782069683075 Of:0.00025122181978076696 for:0.00023105264699552208 :0.001875998088507913 -the:0.9 :0.1 -the:0.340130478143692 their:0.23575973510742188 this:0.09822268784046173 these:0.07093604654073715 that:0.033558085560798645 :0.22139296680688858 -in:0.6410754323005676 that:0.03866478055715561 ,:0.03296320140361786 In:0.018921449780464172 of:0.017212999984622 :0.25116213597357273 -,:0.1952298879623413 was:0.02212456427514553 -:0.01934181898832321 Smith:0.01763809658586979 .:0.017588594928383827 :0.7280770372599363 -said:0.23840510845184326 stated:0.16917984187602997 contended:0.07377807796001434 claimed:0.05839889869093895 asserted:0.049325037747621536 :0.41091303527355194 -one:0.133163183927536 three:0.08498986810445786 two:0.07926173508167267 eleven:0.06776493042707443 five:0.06226993724703789 :0.5725503452122211 -glass:0.03656370937824249 cable:0.03449937328696251 light:0.027529073879122734 beam:0.017449550330638885 it:0.015013259835541248 :0.8689450332894921 -changes:0.2461153119802475 change:0.2215024083852768 reform:0.11292959749698639 reforms:0.041317325085401535 thing:0.0278319101780653 :0.3503034468740225 -had:0.29717275500297546 wanted:0.14958995580673218 used:0.10515045374631882 got:0.07354601472616196 was:0.06571192294359207 :0.3088288977742195 -a:0.5593628287315369 the:0.3743070363998413 some:0.015986118465662003 an:0.008282297290861607 their:0.006412404589354992 :0.035649314522743225 -years:0.6580002903938293 year:0.22711707651615143 age:0.04225178435444832 -:0.005268391687422991 year:0.004949464928358793 :0.062412992119789124 -the:0.973699688911438 tho:0.010331030935049057 their:0.0036666053347289562 a:0.0022282202262431383 The:0.0017854990437626839 :0.008288955548778176 -a:0.3808954954147339 to:0.24652574956417084 tho:0.1674223691225052 the:0.05168801173567772 no:0.018391966819763184 :0.13507640734314919 -with:0.5595188140869141 to:0.1183348000049591 into:0.08237436413764954 against:0.061589550226926804 under:0.03008165955543518 :0.1481008119881153 -the:0.9 :0.1 -tree:0.017829522490501404 o:0.016662314534187317 e:0.014674412086606026 ly:0.013536453247070312 ornament:0.010933958925306797 :0.9263633387163281 -the:0.5774720907211304 tho:0.11518730223178864 a:0.1013287752866745 his:0.06169414147734642 t:0.023192472755908966 :0.12112521752715111 -.:0.8230512142181396 ,:0.038451358675956726 !:0.01344964001327753 ?:0.008803731761872768 -:0.008728891611099243 :0.10751516371965408 -the:0.9 :0.1 -State:0.8616161942481995 state:0.11747703701257706 State:0.010195417329668999 District:0.001449083792977035 county:0.0011268527014181018 :0.008135414915159345 -factories:0.8413019776344299 factory:0.10320836305618286 mills:0.009218734689056873 houses:0.008004694245755672 stores:0.0024765338748693466 :0.035789696499705315 -twenty:0.1669926941394806 forty:0.16373996436595917 fifty:0.12575839459896088 thirty:0.09414747357368469 sixty:0.08695965260267258 :0.3624018207192421 -property:0.13419084250926971 debt:0.12138206511735916 taxes:0.08329795300960541 money:0.05699016526341438 debts:0.044212762266397476 :0.5599262118339539 -The:0.5487527847290039 A:0.04446065425872803 That:0.04416319727897644 This:0.036254242062568665 Poor:0.022017156705260277 :0.3043519649654627 -Fifth:0.149309441447258 High:0.11480686813592911 Orange:0.0912848711013794 Fourth:0.0566195584833622 Sixth:0.04107854515314102 :0.5469007156789303 -unemployment:0.35050857067108154 employment:0.25672653317451477 labor:0.09198830276727676 wages:0.04359859973192215 unemployed:0.03511732444167137 :0.2220606692135334 -from:0.279918372631073 on:0.1849043220281601 to:0.13006877899169922 of:0.09754446893930435 in:0.05619828402996063 :0.2513657733798027 -tho:0.8045550584793091 the:0.07563131302595139 a:0.047038182616233826 this:0.007230295799672604 its:0.004009478725492954 :0.06153567135334015 -the:0.9717278480529785 tho:0.019999176263809204 this:0.0015497637214139104 its:0.0012826189631596208 at:0.0008478789823129773 :0.004592714016325772 -In:0.6452254056930542 in:0.24267707765102386 with:0.018037091940641403 ,:0.010765798389911652 at:0.007065663579851389 :0.07622896274551749 -not:0.3891250193119049 vo:0.025584587827324867 nt:0.02539832331240177 was:0.023945454508066177 been:0.019563792273402214 :0.5163828227669001 -officers:0.12447867542505264 officials:0.10276520252227783 men:0.09616471827030182 clerks:0.06354305893182755 Senators:0.047778867185115814 :0.5652694776654243 -the:0.46471336483955383 of:0.09059841930866241 said:0.07958614826202393 a:0.048636071383953094 and:0.03274867683649063 :0.2837173193693161 -,:0.12999983131885529 street:0.0363907627761364 Hot:0.033986981958150864 Lot:0.030208386480808258 .:0.019581738859415054 :0.7498322986066341 -crop:0.9764115214347839 production:0.0023344941437244415 product:0.0020673004910349846 corn:0.0013623451814055443 grain:0.001024005003273487 :0.016800333745777607 -some:0.1989193707704544 all:0.14712603390216827 none:0.1321098804473877 many:0.1268184781074524 two:0.08851785957813263 :0.3065083771944046 -as:0.8145011067390442 so:0.0773528441786766 duly:0.040421001613140106 and:0.010470646433532238 as:0.0030547985807061195 :0.05419960245490074 -to:0.7471646666526794 ,:0.032368771731853485 for:0.030954968184232712 that:0.027364781126379967 and:0.02728745900094509 :0.1348593533039093 -the:0.49191322922706604 tho:0.34299609065055847 said:0.04991227388381958 any:0.028451498597860336 that:0.026056677103042603 :0.06067023053765297 -say:0.43910419940948486 think:0.058445077389478683 believe:0.046149153262376785 add:0.037453360855579376 suggest:0.02452573925256729 :0.394322469830513 -.:0.11876019090414047 A:0.027273403480648994 C:0.019514577463269234 J:0.01923968270421028 James:0.017990363761782646 :0.7972217816859484 -ly:0.07570765912532806 s:0.07088417559862137 ions:0.05138063058257103 ries:0.04939229041337967 es:0.046915020793676376 :0.7057202234864235 -shall:0.3844333589076996 will:0.20932118594646454 should:0.11700696498155594 may:0.08280973136425018 does:0.06652946025133133 :0.13989929854869843 -spiritual:0.054649367928504944 great:0.05033186450600624 divine:0.045172128826379776 eternal:0.033319566398859024 religious:0.03148432448506355 :0.7850427478551865 -.:0.5117616057395935 city:0.019490180537104607 .:0.014374803751707077 country:0.010428502224385738 ..:0.009484308771789074 :0.43446059897542 -any:0.7825307250022888 no:0.10612908005714417 all:0.06077300384640694 by:0.020489413291215897 the:0.007626921404153109 :0.022450856398791075 -to:0.8758001327514648 per:0.05580449104309082 in:0.012336211279034615 for:0.008692936971783638 follows:0.006860656663775444 :0.04050557129085064 -the:0.9953058362007141 any:0.0010588797740638256 a:0.0009372293134219944 this:0.00044552088365890086 its:0.0003976559091825038 :0.001854877918958664 -miner:0.8870871067047119 mining:0.09640131890773773 miners:0.0047533633187413216 mine:0.0034369491040706635 mined:0.0009009093046188354 :0.0074203526601195335 -he:0.06808333843946457 I:0.04973237216472626 be:0.03939959406852722 is:0.03810324892401695 we:0.020154956728219986 :0.784526489675045 -.:0.8369935750961304 executed:0.017332525923848152 made:0.009062097407877445 issued:0.0052179982885718346 repealed:0.005108038429170847 :0.12628576485440135 -of:0.9318251013755798 in:0.02733137086033821 ot:0.01703104004263878 ol:0.004409146029502153 for:0.0025607061106711626 :0.01684263558126986 -the:0.49421215057373047 this:0.19383013248443604 our:0.1681334227323532 its:0.03969116508960724 a:0.0294342041015625 :0.07469892501831055 -at:0.9867160320281982 in:0.003502459730952978 about:0.0034638706129044294 At:0.0012737595243379474 around:0.00126565748360008 :0.003778220620006323 -having:0.9908331036567688 has:0.0030831408221274614 Having:0.0012821016134694219 after:0.0008256678120233119 had:0.0006040306179784238 :0.003371955477632582 -years:0.7728413939476013 months:0.10912866145372391 days:0.045853376388549805 centuries:0.030679168179631233 weeks:0.026139775291085243 :0.015357624739408493 -.:0.17696920037269592 and:0.03806261345744133 &:0.024121589958667755 1:0.013253211043775082 .:0.012149953283369541 :0.7354434318840504 -keeping:0.06987472623586655 in:0.030592482537031174 the:0.030202927067875862 seeing:0.024628235027194023 not:0.02286929078400135 :0.821832338348031 -the:0.08840898424386978 .:0.0554930716753006 which:0.027469385415315628 it:0.02682735212147236 him:0.024028168991208076 :0.7777730375528336 -Ho:0.5499516129493713 He:0.39726385474205017 ho:0.006676185876131058 lie:0.0019294790690764785 he:0.0018881037831306458 :0.04229076358024031 -to:0.7312674522399902 or:0.10347728431224823 and:0.07176294177770615 who:0.03711165115237236 aud:0.012251213192939758 :0.04412945732474327 -the:0.5158244371414185 tho:0.442391961812973 that:0.00646776519715786 tha:0.002846556482836604 its:0.0016578041249886155 :0.03081147524062544 -the:0.9 :0.1 -public:0.16469697654247284 civil:0.12525853514671326 's:0.12308229506015778 postal:0.07367910444736481 debt:0.05518883839249611 :0.4580942504107952 -even:0.34943506121635437 together:0.1895321160554886 as:0.06564944982528687 and:0.046249665319919586 ,:0.02414051443338394 :0.32499319314956665 -the:0.9 :0.1 -of:0.9390753507614136 ,:0.028721977025270462 .:0.010544883087277412 Of:0.003566908650100231 on:0.003227311186492443 :0.014863569289445877 -the:0.8792904615402222 tho:0.05376868322491646 an:0.026662448421120644 his:0.015369035303592682 its:0.006441331934183836 :0.018468039575964212 -it:0.8283594250679016 this:0.08625128120183945 It:0.06784702837467194 that:0.013014248572289944 This:0.0009101093164645135 :0.0036179074668325484 -dent:0.031835488975048065 cess:0.020394502207636833 par:0.019624024629592896 est:0.013131476007401943 press:0.012534947134554386 :0.9024795610457659 -grave:0.15612173080444336 feet:0.12425310164690018 head:0.08080154657363892 home:0.05460907146334648 place:0.050725825130939484 :0.5334887243807316 -the:0.5349429845809937 a:0.13723085820674896 this:0.12882256507873535 my:0.038266997784376144 that:0.02304130606353283 :0.13769528828561306 --:0.04658591002225876 y:0.03362761437892914 ten:0.03006645105779171 f:0.024993136525154114 five:0.024041784927248955 :0.8406851030886173 -Grove:0.4587492346763611 Richmond:0.06712517142295837 Columbia:0.03820328041911125 Riverside:0.0205626729875803 Henry:0.006738355383276939 :0.40862128511071205 -some:0.1634925752878189 several:0.08433270454406738 his:0.07422687113285065 many:0.051600441336631775 two:0.04364621266722679 :0.5827011950314045 -the:0.49997884035110474 The:0.08810535818338394 our:0.08040342479944229 a:0.07703381776809692 tho:0.028327133506536484 :0.22615142539143562 -ing:0.5132231116294861 ed:0.30149948596954346 ly:0.02662958763539791 ment:0.021473867818713188 ful:0.008376790210604668 :0.1287971567362547 -a:0.744554877281189 no:0.19822944700717926 the:0.026587028056383133 any:0.006258602719753981 an:0.0037278314121067524 :0.02064221352338791 -and:0.8997321128845215 or:0.05774527043104172 of:0.007973898202180862 &:0.005279454868286848 ,:0.004207125864923 :0.025062137749046087 -a:0.9887583255767822 an:0.004198725335299969 the:0.0032222692389041185 a:0.00043323644786141813 A:0.0003252151655033231 :0.003062228235648945 -leased:0.1713968962430954 conveyed:0.11231128126382828 returned:0.10880570858716965 sold:0.10169729590415955 transferred:0.10129617154598236 :0.40449264645576477 -by:0.2985144257545471 between:0.10990019142627716 in:0.10234332829713821 ,:0.049307309091091156 with:0.04700738191604614 :0.3929273635149002 -and:0.23647545278072357 to:0.1644858419895172 ,:0.15345823764801025 of:0.047808386385440826 or:0.03954676166176796 :0.3582253195345402 -less:0.5550637245178223 more:0.19054749608039856 greater:0.02118523232638836 ter:0.014349608682096004 ne:0.007683928124606609 :0.2111700102686882 -be:0.9053861498832703 have:0.03608271852135658 lie:0.019529743120074272 bo:0.012255657464265823 he:0.004645675420761108 :0.02210005559027195 -ment:0.1125582605600357 ty:0.06413859874010086 tion:0.03491760417819023 ter:0.03237050026655197 ton:0.030962586402893066 :0.7250524498522282 -safely:0.14569725096225739 all:0.09427902102470398 together:0.09377756714820862 back:0.08036227524280548 aft:0.03657206892967224 :0.5493118166923523 -to:0.3993660509586334 at:0.2967601716518402 in:0.09568281471729279 from:0.07096073776483536 on:0.058013200759887695 :0.07921702414751053 -age:0.5806894302368164 life:0.04228456690907478 old:0.024247759953141212 who:0.014331960119307041 which:0.014322641305625439 :0.3241236414760351 -side:0.09092126041650772 west:0.02573627047240734 county:0.025014270097017288 rail:0.021648231893777847 creek:0.020486734807491302 :0.8161932323127985 -pay:0.3197426497936249 secure:0.0805041566491127 satisfy:0.05375959724187851 recover:0.04809864982962608 prove:0.04453309252858162 :0.4533618539571762 -race:0.014261851087212563 a:0.012568994425237179 b:0.00951624196022749 tun:0.009318947792053223 ab:0.008991560898721218 :0.9453424038365483 -provided:0.9644771218299866 ,:0.007948074489831924 called:0.002715116599574685 providing:0.0025616001803427935 accounted:0.002011119620874524 :0.0202869672793895 -No:0.9825382232666016 no:0.006307385396212339 Not:0.0027723407838493586 No:0.0017547612078487873 It:0.0006140623590908945 :0.006013226986397058 -the:0.5199527144432068 every:0.0544537715613842 employ:0.0358467735350132 whom:0.019709719344973564 which:0.01936870813369751 :0.35066831298172474 -knew:0.6189507246017456 thought:0.07263754308223724 doubted:0.055076003074645996 hoped:0.04614657908678055 believed:0.03076617419719696 :0.17642297595739365 -Main:0.1880379468202591 Second:0.060898296535015106 South:0.04713055491447449 Bristol:0.025682369247078896 Broadway:0.01972765289247036 :0.6585231795907021 -Police:0.05292930081486702 the:0.04009313881397247 Officer:0.030341768637299538 Jail:0.023361733183264732 Be:0.022223295643925667 :0.8310507629066706 -States:0.9430371522903442 State:0.018712226301431656 Treasury:0.007577183656394482 treasury:0.006546983029693365 states:0.0011661596363410354 :0.022960295085795224 -,:0.11362344771623611 is:0.07707895338535309 in:0.03692745044827461 know:0.02986149862408638 knows:0.029312284663319588 :0.7131963651627302 -small:0.12924648821353912 distant:0.07622147351503372 neighboring:0.06575065106153488 particular:0.03653130680322647 tall:0.034399643540382385 :0.6578504368662834 -to:0.9275143146514893 regards:0.01755673438310623 of:0.005124072078615427 per:0.004794423934072256 for:0.004260716028511524 :0.0407497389242053 -at:0.6707141399383545 to:0.127857968211174 into:0.03002977930009365 over:0.02226163074374199 upon:0.021167393773794174 :0.12796908803284168 -.:0.45315027236938477 times:0.2901923656463623 time:0.06432544440031052 distances:0.02303706668317318 costs:0.0180108193308115 :0.15128403156995773 -tho:0.6617369651794434 the:0.2924897074699402 a:0.012098285369575024 this:0.011297575198113918 that:0.00611501932144165 :0.016262447461485863 -ing:0.3025706112384796 ment:0.18232131004333496 ed:0.10058815032243729 ent:0.05036143958568573 ful:0.0329219251871109 :0.3312365636229515 -the:0.9 :0.1 -the:0.3580839931964874 tho:0.19519107043743134 his:0.18886370956897736 her:0.0586940236389637 an:0.020704783499240875 :0.1784624196588993 -we:0.772822916507721 were:0.06087465584278107 ,:0.022256141528487206 are:0.018792934715747833 was:0.00928717665374279 :0.11596617475152016 -con:0.06984235346317291 per:0.045680977404117584 and:0.03436726704239845 in:0.023402826860547066 aud:0.020596079528331757 :0.8061104957014322 -exceed:0.6391468644142151 increase:0.07604058086872101 raise:0.05728890001773834 reduce:0.03876043111085892 alter:0.029149681329727173 :0.15961354225873947 -­:0.5340913534164429 i:0.07225080579519272 -:0.040379300713539124 u:0.02807840332388878 ol:0.015348091721534729 :0.3098520450294018 -with:0.8199639320373535 to:0.10561142861843109 by:0.026917237788438797 in:0.015261838212609291 a:0.003899740055203438 :0.028345823287963867 -who:0.6946097016334534 which:0.20955172181129456 that:0.027324611321091652 and:0.010817151516675949 wh:0.009000960737466812 :0.04869585298001766 -,:0.8953870534896851 session:0.013518624939024448 that:0.0065469504334032536 hearing:0.004596183076500893 time:0.004022146575152874 :0.07592904148623347 -to:0.32101738452911377 of:0.14088623225688934 from:0.07766665518283844 the:0.0518372543156147 in:0.028100039809942245 :0.3804924339056015 -by:0.27659597992897034 with:0.1300727277994156 or:0.10749535262584686 and:0.08901280164718628 in:0.0552079901099205 :0.34161514788866043 -me:0.5133813619613647 .:0.09626832604408264 you:0.07197090238332748 us:0.04447602108120918 him:0.03192301094532013 :0.24198037758469582 -road:0.3773025572299957 ,:0.24881494045257568 bridge:0.026591284200549126 plain:0.014810670167207718 stream:0.013846504501998425 :0.3186340434476733 -city:0.37548619508743286 and:0.09883562475442886 ,:0.06659124791622162 town:0.04439052194356918 place:0.01829250156879425 :0.3964039087295532 -s:0.18013086915016174 ,:0.12271493673324585 ed:0.08893387019634247 ing:0.08534403890371323 and:0.04636942967772484 :0.4765068553388119 -referred:0.08066190034151077 went:0.07511699944734573 spoke:0.049783721566200256 held:0.04719986394047737 came:0.042611848562955856 :0.70462566614151 -engineers:0.2786685824394226 men:0.19433212280273438 officers:0.10534313321113586 members:0.0682167261838913 officials:0.029505791142582893 :0.32393364422023296 -was:0.4169081449508667 were:0.12118598818778992 lie:0.11277326941490173 bo:0.05008074268698692 is:0.03620929270982742 :0.2628425620496273 -as:0.8379310965538025 like:0.04805200174450874 at:0.03250455856323242 of:0.013867935165762901 than:0.010109180584549904 :0.05753522738814354 -pictures:0.09664380550384521 men:0.05447963997721672 places:0.042190324515104294 prisoners:0.026969997212290764 newspapers:0.023481935262680054 :0.756234297528863 -until:0.6860714554786682 long:0.10633254051208496 till:0.03270626813173294 ,:0.019765611737966537 immediately:0.01886148564517498 :0.13626263849437237 -Iron:0.687950611114502 Goods:0.02738064154982567 Is:0.023599786683917046 iron:0.023459628224372864 Steel:0.02160307765007019 :0.21600625477731228 -law:0.33242374658584595 ,:0.1961466670036316 question:0.05293215811252594 subject:0.030013754963874817 bill:0.023822128772735596 :0.3646615445613861 -s:0.19308757781982422 es:0.06841473281383514 ts:0.037860650569200516 in:0.03035164624452591 ers:0.028018180280923843 :0.6422672122716904 -the:0.1475815623998642 its:0.08152218163013458 these:0.029488878324627876 such:0.024198133498430252 the:0.020886700600385666 :0.6963225435465574 -and:0.12686960399150848 stre:0.05066705867648125 lying:0.04953741282224655 scattered:0.04599709063768387 all:0.03057064488530159 :0.6963581889867783 -at:0.37645164132118225 with:0.3383687734603882 among:0.0444633811712265 to:0.026589825749397278 about:0.015623125247657299 :0.1985032530501485 -on:0.4802001118659973 from:0.09016929566860199 ol:0.06971386075019836 ,:0.03011026605963707 ot:0.028943534940481186 :0.3008629307150841 -bore:0.8168824911117554 bears:0.05861948803067207 had:0.02585420571267605 was:0.014759687706828117 wore:0.008526356890797615 :0.07535777054727077 -to:0.4081262946128845 then:0.08467915654182434 will:0.05457228049635887 would:0.022570526227355003 also:0.02188570238649845 :0.4081660397350788 -at:0.3518673777580261 in:0.1785985231399536 for:0.1254579871892929 to:0.06576874107122421 on:0.06325321644544601 :0.21505415439605713 -This:0.4965924322605133 It:0.20345234870910645 That:0.07813393324613571 She:0.03572414815425873 which:0.032659903168678284 :0.15343723446130753 -probably:0.15339608490467072 actually:0.07495181262493134 really:0.04328324273228645 never:0.02771046757698059 had:0.024241706356406212 :0.6764166858047247 -not:0.2072628289461136 all:0.16093719005584717 entirely:0.09229918569326401 largely:0.0764223039150238 purely:0.04595658928155899 :0.41712190210819244 -other:0.5605810880661011 real:0.01449767779558897 more:0.009707129560410976 good:0.009224886074662209 ordinary:0.008486028760671616 :0.39750318974256516 -,:0.3232768177986145 against:0.2897367775440216 and:0.1497291475534439 by:0.07639683037996292 to:0.025143170729279518 :0.13571725599467754 -it:0.4018216133117676 It:0.20157992839813232 ho:0.12718458473682404 he:0.09530038386583328 He:0.022505534812808037 :0.15160795487463474 -strength:0.2694595456123352 condition:0.0721040666103363 properties:0.048348721116781235 characteristics:0.04545833542943001 nature:0.04463690519332886 :0.5199924260377884 -game:0.32764318585395813 inning:0.24061952531337738 seventh:0.060221295803785324 second:0.05304485186934471 eighth:0.048451002687215805 :0.27002013847231865 -been:0.9875323176383972 be:0.003895942820236087 bene:0.002795969834551215 been:0.00144050526432693 bo:0.0009758144151419401 :0.003359450027346611 -to:0.9627679586410522 ,:0.0047787767834961414 we:0.00312221166677773 that:0.0024738898500800133 not:0.00201616482809186 :0.02484099823050201 -harvesting:0.11943576484918594 growing:0.051742102950811386 planting:0.03569379448890686 watering:0.03478020429611206 cutting:0.033530768007040024 :0.7248173654079437 -to:0.9986128807067871 and:0.00025744186132214963 t:0.00012420068378560245 ,:9.726086136652157e-05 ti:8.085963781923056e-05 :0.0008273562489193864 -in:0.39087116718292236 on:0.24204790592193604 into:0.12202126532793045 over:0.0762024074792862 In:0.03577132150530815 :0.1330859325826168 -would:0.649320662021637 should:0.11837238818407059 might:0.08602966368198395 could:0.04126366600394249 did:0.018926743417978287 :0.08608687669038773 -be:0.326315701007843 will:0.05636366456747055 very:0.052669450640678406 is:0.04068528488278389 come:0.04040510579943657 :0.48356079310178757 -The:0.9804435968399048 A:0.006749345920979977 This:0.004194539040327072 The:0.0031271029729396105 the:0.0008253568084910512 :0.004660058417357504 -one:0.9425826668739319 tho:0.018326856195926666 the:0.009520042687654495 each:0.007944255135953426 either:0.00711800716817379 :0.014508171938359737 -equal:0.18070584535598755 great:0.12509454786777496 an:0.05328293889760971 no:0.0400473028421402 general:0.02542361244559288 :0.5754457525908947 -form:0.05770140886306763 piece:0.0560462549328804 source:0.04335464909672737 kind:0.034782525151968 object:0.02918172813951969 :0.7789334338158369 -the:0.1370711475610733 -:0.048350077122449875 last:0.023639418184757233 a:0.02325650490820408 this:0.018658597022294998 :0.7490242552012205 -cess:0.018611997365951538 able:0.01676334999501705 est:0.014426621608436108 :0.012623303569853306 ce:0.011257322505116463 :0.9263174049556255 -crops:0.5156838893890381 crop:0.20493833720684052 wheat:0.04890334978699684 yields:0.02322019822895527 exports:0.01936594769358635 :0.18788827769458294 -of:0.8571680188179016 for:0.0278264582157135 to:0.017902009189128876 ,:0.013981244526803493 at:0.007435224950313568 :0.07568704430013895 -any:0.9701695442199707 every:0.018562287092208862 no:0.0049761813133955 the:0.0036857665982097387 some:0.0006270593730732799 :0.001979161403141916 -I:0.16203512251377106 they:0.13645637035369873 we:0.10817691683769226 one:0.045836541801691055 1:0.04165543615818024 :0.5058396123349667 -the:0.9 :0.1 -to:0.8161097764968872 I:0.11269324272871017 not:0.007143492344766855 could:0.006397019140422344 to:0.0036861817352473736 :0.053970287553966045 -when:0.33487606048583984 while:0.33133846521377563 now:0.04887755215167999 once:0.035546526312828064 still:0.02955024130642414 :0.21981115452945232 -the:0.9353494644165039 tho:0.03040562942624092 bis:0.009971491061151028 this:0.008430521935224533 that:0.003969510551542044 :0.011873382609337568 -reached:0.2513048052787781 found:0.10130225867033005 saw:0.0975751280784607 entered:0.03893352299928665 made:0.026395292952656746 :0.4844889920204878 -.:0.18095077574253082 80:0.1532265543937683 30:0.13831160962581635 ,:0.08538994938135147 40:0.02387501299381256 :0.4182460978627205 -will:0.5782183408737183 cannot:0.10838188230991364 must:0.10498792678117752 can:0.05241969972848892 should:0.050433509051799774 :0.10555864125490189 -sen:0.1766049563884735 -:0.14544996619224548 coun:0.029926862567663193 democr:0.015788918361067772 party:0.01510564237833023 :0.6171236541122198 -her:0.32184019684791565 the:0.23825547099113464 his:0.03949732705950737 our:0.02932421863079071 tho:0.015958240255713463 :0.35512454621493816 -the:0.9 :0.1 -.:0.10910622030496597 ts:0.02746669389307499 cs:0.019052784889936447 rs:0.015292489901185036 c:0.014673762023448944 :0.8144080489873886 -east:0.1421555131673813 west:0.1289651095867157 north:0.12163577973842621 south:0.08332094550132751 right:0.07404458522796631 :0.449878066778183 -are:0.8830983638763428 were:0.033052120357751846 is:0.024061506614089012 ::0.014452381059527397 include:0.010586249642074108 :0.03474937845021486 -the:0.9740947484970093 a:0.011861669830977917 its:0.0032331254333257675 tho:0.001469427952542901 The:0.0014675036072731018 :0.007873524678871036 -ak:0.05492806434631348 l:0.0458148755133152 n:0.02281646616756916 make:0.018884044140577316 ie:0.01601230539381504 :0.8415442444384098 -know:0.24653732776641846 do:0.23596949875354767 enjoy:0.1131691038608551 have:0.049901291728019714 get:0.044490303844213486 :0.30993247404694557 -the:0.9 :0.1 -days:0.30130916833877563 day:0.13991893827915192 winter:0.0476527139544487 morning:0.03900463134050369 weeks:0.028641311451792717 :0.44347323663532734 -dispatch:0.1383141428232193 shot:0.04492557421326637 rush:0.038351792842149734 messenger:0.03395836800336838 detachment:0.02458232082426548 :0.7198678012937307 -this:0.6549899578094482 yesterday:0.07355767488479614 the:0.04772891849279404 next:0.045641690492630005 last:0.0404043011367321 :0.13767745718359947 -and:0.9574233293533325 or:0.029322251677513123 and:0.0036203365307301283 the:0.0016103400848805904 in:0.0006176088354550302 :0.007406133518088609 -it:0.5780264735221863 him:0.22501516342163086 them:0.05553630366921425 this:0.04888160154223442 himself:0.015521826222538948 :0.07701863162219524 -a:0.6985753178596497 careful:0.0759100541472435 some:0.05221647024154663 the:0.025750460103154182 further:0.024548588320612907 :0.12299910932779312 -,:0.32929396629333496 that:0.29975464940071106 far:0.07235021889209747 much:0.06063922122120857 .:0.0323651060461998 :0.20559683814644814 -proved:0.0695270225405693 shown:0.0526869036257267 seemed:0.03598109260201454 seem:0.03578343614935875 appear:0.02685379795730114 :0.7791677471250296 -the:0.9 :0.1 -give:0.18985843658447266 offer:0.14084492623806 make:0.12726862728595734 pay:0.06677242368459702 receive:0.05568832531571388 :0.4195672608911991 -is:0.6610076427459717 was:0.16274236142635345 Is:0.14478692412376404 be:0.00248811487108469 bo:0.0021512270905077457 :0.026823729742318392 -story:0.057860348373651505 motive:0.05408036336302757 death:0.04318881034851074 fate:0.03855903819203377 character:0.03052636794745922 :0.7757850717753172 -will:0.4417588710784912 do:0.16077667474746704 and:0.10094631463289261 does:0.08059033006429672 would:0.03849785402417183 :0.1774299554526806 -:0.0358453243970871 delicate:0.018494967371225357 bow:0.01836138218641281 iron:0.012496442534029484 g:0.01224906649440527 :0.90255281701684 -verdict:0.530805766582489 trial:0.11050398647785187 jury:0.03812092915177345 case:0.029880227521061897 sentence:0.028213297948241234 :0.26247579231858253 -not:0.8786538243293762 ,:0.0535467267036438 was:0.024096716195344925 never:0.009714982472360134 seemed:0.00377360126003623 :0.03021414903923869 -'s:0.23828329145908356 under:0.126956507563591 ':0.07598398625850677 -:0.05254319682717323 on:0.042051274329423904 :0.4641817435622215 -tho:0.7781339883804321 the:0.19504043459892273 this:0.01759473606944084 all:0.0009023279417306185 The:0.0008609104552306235 :0.007467602554243058 -large:0.13893887400627136 separate:0.1367482990026474 larger:0.12692509591579437 contiguous:0.04646516591310501 distinct:0.03774375468492508 :0.5131788104772568 -his:0.3833722770214081 permanent:0.10336930304765701 a:0.07043448835611343 his:0.04725699871778488 no:0.03509344533085823 :0.36047348752617836 -and:0.0427958220243454 &:0.02914999984204769 .:0.01766825094819069 Jones:0.01733572967350483 Smith:0.014050408266484737 :0.8789997892454267 -I:0.36629441380500793 he:0.33684560656547546 we:0.21903957426548004 they:0.030376821756362915 she:0.00554701266810298 :0.041896570939570665 -the:0.5329732894897461 tho:0.09256336092948914 this:0.05355077236890793 my:0.04446909576654434 that:0.03493596240878105 :0.24150751903653145 -naval:0.09481306374073029 sea:0.02746267430484295 own:0.02581934630870819 coast:0.02398347482085228 national:0.018988126888871193 :0.8089333139359951 --:0.16706205904483795 inspect:0.04561084881424904 depart:0.03268195688724518 work:0.031115736812353134 const:0.023216145113110542 :0.7003132533282042 -heir:0.045639295130968094 testament:0.02867433801293373 trustee:0.022677471861243248 est:0.01708015240728855 ce:0.016397735103964806 :0.8695310074836016 -111:0.05172888562083244 1:0.01592227816581726 \\:0.01418033242225647 2:0.01118683535605669 112:0.009620768949389458 :0.8973608994856477 -will:0.7545353174209595 would:0.08087817579507828 may:0.034189485013484955 shall:0.029839063063263893 can:0.01839401014149189 :0.08216394856572151 -men:0.03799695149064064 ber:0.026484930887818336 ers:0.020998964086174965 bers:0.014259861782193184 rods:0.012558985501527786 :0.8877003062516451 -of:0.3306350111961365 and:0.22385330498218536 in:0.19459138810634613 or:0.06771504133939743 ,:0.026504293084144592 :0.15670096129179 -,:0.721503734588623 ink:0.04930150508880615 gold:0.02455669827759266 ;:0.0170433446764946 velvet:0.013346509076654911 :0.17424820829182863 -to:0.9556127786636353 by:0.02140216901898384 in:0.0031143222004175186 for:0.0028792116791009903 ot:0.002773765940219164 :0.014217752497643232 -and:0.11605104804039001 or:0.11343128979206085 to:0.05242891609668732 nor:0.05149046331644058 lo:0.02588372491300106 :0.6407145578414202 -Pacific:0.19566963613033295 new:0.05719706416130066 Federal:0.04457707330584526 Western:0.042027682065963745 free:0.04076645150780678 :0.6197620928287506 -be:0.2931276559829712 bo:0.18695639073848724 ne:0.08835171163082123 lio:0.08702708035707474 lie:0.05851856246590614 :0.28601859882473946 -twenty:0.051690638065338135 ten:0.04571390151977539 thirty:0.03614846616983414 six:0.03550717979669571 three:0.03412846475839615 :0.7968113496899605 -.:0.7709674835205078 *.:0.043008655309677124 ,:0.016785716637969017 a:0.011206123046576977 *:0.0072126127779483795 :0.1508194087073207 -a:0.13784609735012054 Republican:0.10543426126241684 the:0.100081667304039 Democratic:0.0788387656211853 republican:0.07574182003736496 :0.5020573884248734 -preparing:0.24672646820545197 putting:0.23734150826931 placing:0.16309131681919098 showing:0.024625808000564575 keeping:0.020656084641814232 :0.30755881406366825 -with:0.6332870721817017 to:0.22117121517658234 for:0.039617300033569336 by:0.029345180839300156 against:0.014762314967811108 :0.061816916801035404 -and:0.29982346296310425 ,:0.16293534636497498 is:0.09674455970525742 but:0.045148786157369614 as:0.03804919868707657 :0.3572986461222172 -there:0.5635321736335754 it:0.1647224724292755 ,:0.09228512644767761 and:0.0703592374920845 she:0.025892680510878563 :0.08320830948650837 -had:0.1873454600572586 have:0.13444559276103973 ,:0.0525069385766983 then:0.049476560205221176 were:0.049289122223854065 :0.5269363261759281 -y:0.025771787390112877 tion:0.021261846646666527 e:0.02073119394481182 t:0.020394474267959595 ed:0.01909293420612812 :0.8927477635443211 -our:0.2514996826648712 the:0.13249121606349945 these:0.0791575163602829 such:0.07228471338748932 both:0.055829018354415894 :0.4087378531694412 -cost:0.05513966456055641 %:0.02823285385966301 increase:0.020641082897782326 failure:0.018065912649035454 expenditure:0.012965844944119453 :0.8649546410888433 -by:0.36872240900993347 in:0.15997236967086792 from:0.11682450771331787 with:0.05891771242022514 under:0.05283651873469353 :0.24272648245096207 -that:0.2510831654071808 when:0.22413218021392822 before:0.14304035902023315 whence:0.05349148064851761 until:0.050094325095415115 :0.2781584896147251 -upon:0.35042867064476013 on:0.18866045773029327 in:0.17405609786510468 within:0.03724281117320061 as:0.029717260971665382 :0.21989470161497593 -;:0.6457926034927368 .:0.18662363290786743 ;:0.07386152446269989 ,:0.04294972121715546 and:0.02976493164896965 :0.021007586270570755 -any:0.3166102170944214 a:0.24008828401565552 that:0.11824385076761246 this:0.08517475426197052 the:0.04779953509569168 :0.19208335876464844 -much:0.15053243935108185 great:0.051505956798791885 varied:0.02207891084253788 eminent:0.018998103216290474 peculiar:0.016926858574151993 :0.7399577312171459 -as:0.9250842928886414 how:0.04485742375254631 the:0.0051831635646522045 so:0.004172167740762234 too:0.0040877689607441425 :0.01661518309265375 -the:0.7070414423942566 their:0.039375174790620804 a:0.03682412579655647 his:0.028752407059073448 tho:0.027102762833237648 :0.16090408712625504 -the:0.9 :0.1 -carried:0.24419769644737244 hid:0.0422770120203495 kept:0.03876180574297905 took:0.026794444769620895 put:0.025863146409392357 :0.6221058946102858 -er:0.5940448045730591 ly:0.14328908920288086 east:0.020962988957762718 ed:0.01834222674369812 east:0.017949875444173813 :0.2054110150784254 -the:0.9 :0.1 -the:0.22198887169361115 tho:0.13601183891296387 which:0.058181725442409515 our:0.042292069643735886 ol:0.03259384632110596 :0.5089316479861736 -about:0.8096960186958313 only:0.054553791880607605 nearly:0.023297647014260292 over:0.019697532057762146 at:0.012382259592413902 :0.08037275075912476 -and:0.35024356842041016 with:0.16926240921020508 by:0.0801323726773262 all:0.06579037010669708 in:0.037929218262434006 :0.2966420613229275 -the:0.9 :0.1 -a:0.6416658759117126 the:0.3322882652282715 another:0.002506344811990857 an:0.0022309119813144207 any:0.002036367543041706 :0.019272234523668885 -if:0.39977791905403137 when:0.2072557508945465 as:0.13065434992313385 while:0.030353186652064323 whenever:0.026465481147170067 :0.20549331232905388 -payable:0.4215637743473053 due:0.3389156758785248 owing:0.1177273765206337 paid:0.033406004309654236 interest:0.020420778542757034 :0.06796639040112495 -to:0.4974699020385742 upon:0.08167388290166855 for:0.03470858186483383 with:0.02584967017173767 on:0.01428209338337183 :0.3460158696398139 -handle:0.12230048328638077 express:0.035796016454696655 manage:0.02689676731824875 do:0.025750761851668358 convey:0.021196287125349045 :0.7680596839636564 -the:0.1165706142783165 sec:0.0581054612994194 -:0.02250743843615055 con:0.019143102690577507 adv:0.014285601675510406 :0.7693877816200256 -his:0.7380931377410889 the:0.10354303568601608 a:0.04455433040857315 her:0.011110934428870678 good:0.004205014556646347 :0.09849354717880487 -at:0.2148234248161316 ,:0.2042444348335266 .:0.0337095744907856 low:0.01523540448397398 ;:0.01399913802742958 :0.5179880233481526 -the:0.11316876113414764 twenty:0.09981299191713333 thirty:0.05546785145998001 fifty:0.053640373051166534 fifteen:0.0336117148399353 :0.6442983075976372 -the:0.08861154317855835 be:0.038245152682065964 make:0.030492132529616356 work:0.025395428761839867 go:0.01852072961628437 :0.7987350132316351 -,:0.9151246547698975 .:0.044674597680568695 ;:0.01619681715965271 ,:0.006522560492157936 ;:0.006295104045420885 :0.011186265852302313 -been:0.9833558797836304 Been:0.0014892766484990716 spent:0.0011857242789119482 begun:0.0010673926444724202 be:0.0009067088831216097 :0.01199501776136458 -avert:0.45072758197784424 prevent:0.3305080533027649 avoid:0.16203321516513824 aver:0.011427602730691433 remedy:0.006314967758953571 :0.03898857906460762 -hospital:0.9172828793525696 Hospital:0.01968354545533657 camp:0.00362242478877306 prison:0.003452200209721923 regiment:0.002851382363587618 :0.05310756783001125 -strikers:0.24975547194480896 company:0.09539322555065155 men:0.09345844388008118 miners:0.06198138743638992 guards:0.061664313077926636 :0.43774715811014175 -to:0.9492649435997009 in:0.010685357265174389 tho:0.005984049756079912 To:0.0052044750191271305 In:0.004546884447336197 :0.024314289912581444 -years:0.43478116393089294 months:0.28731197118759155 year:0.03700774535536766 or:0.03652859106659889 days:0.03138677775859833 :0.17298375070095062 -the:0.2909243106842041 tho:0.06751338392496109 a:0.03345806524157524 this:0.023348096758127213 by:0.014124447479844093 :0.5706316959112883 -of:0.9646667242050171 ot:0.01460241712629795 in:0.006808983627706766 ol:0.005527229513972998 ,:0.0007964323740452528 :0.007598213152959943 -drilled:0.4988767206668854 completed:0.030636180192232132 since:0.029604170471429825 in:0.02734389156103134 for:0.01771063171327114 :0.3958284053951502 -now:0.3109988868236542 should:0.10850699990987778 must:0.10640370845794678 will:0.07712238281965256 still:0.04571180418133736 :0.35125621780753136 -upon:0.8397735357284546 on:0.06813972443342209 after:0.02813086286187172 by:0.009258296340703964 in:0.006775632966309786 :0.04792194766923785 -in:0.7639208436012268 In:0.1198083758354187 by:0.054041024297475815 on:0.03355979546904564 as:0.006857073865830898 :0.02181288693100214 -body:0.42592528462409973 party:0.31787630915641785 candidate:0.03527428209781647 system:0.015780899673700333 man:0.0156391691416502 :0.18950405530631542 -on:0.721173107624054 until:0.05345141515135765 every:0.034838031977415085 during:0.029530614614486694 at:0.019586604088544846 :0.14142022654414177 -came:0.2464035600423813 settled:0.06327937543392181 grew:0.04770836979150772 accumulated:0.031411536037921906 was:0.02823925018310547 :0.5829579085111618 -long:0.6999878287315369 hard:0.07008959352970123 short:0.025090055540204048 good:0.016489302739501 strange:0.008783364668488503 :0.17955985479056835 -entrance:0.7250639200210571 door:0.0346139632165432 entrances:0.01717052049934864 gate:0.009769696742296219 end:0.007945609278976917 :0.2054362902417779 -ut:0.13528434932231903 t:0.05369464308023453 f:0.033955272287130356 i:0.03306413069367409 that:0.03177575767040253 :0.7122258469462395 -thence:0.7393609285354614 and:0.14634928107261658 then:0.026072928681969643 by:0.023368902504444122 while:0.010055211372673512 :0.05479274783283472 -was:0.9173068404197693 is:0.02595853991806507 bo:0.0069476766511797905 be:0.004181843250989914 were:0.003833137219771743 :0.041771962540224195 -no:0.3610738217830658 few:0.223866805434227 many:0.08704601228237152 good:0.03587745502591133 my:0.0358145572245121 :0.25632134824991226 -regulation:0.2306404709815979 organization:0.06757602840662003 control:0.06576594710350037 law:0.06122623011469841 taxation:0.058129530400037766 :0.5166617929935455 -men:0.27316153049468994 persons:0.09418726712465286 defendants:0.0754145085811615 women:0.07111092656850815 witnesses:0.055845845490694046 :0.4302799217402935 -circulation:0.13736417889595032 sales:0.1228727400302887 books:0.10408192873001099 collections:0.09806027263402939 works:0.06380879133939743 :0.4738120883703232 -it:0.5391147136688232 he:0.362273246049881 being:0.013839333318173885 having:0.013253135606646538 It:0.011613834649324417 :0.059905736707150936 -The:0.9587106704711914 A:0.0095833670347929 This:0.0056184739805758 the:0.005602695047855377 tho:0.001708181225694716 :0.0187766122398898 -the:0.9 :0.1 -said:0.9458522200584412 the:0.013963239267468452 Said:0.008245551027357578 that:0.008199239149689674 such:0.005295997951179743 :0.01844375254586339 -the:0.39866822957992554 tho:0.19535647332668304 their:0.0352567620575428 those:0.034170981496572495 old:0.0248298030346632 :0.3117177505046129 -exposed:0.42779019474983215 subjected:0.08961822837591171 opened:0.05002058297395706 added:0.026169337332248688 lost:0.022222423925995827 :0.38417923264205456 -at:0.946182906627655 and:0.0026525130961090326 in:0.00217981799505651 At:0.0014928485034033656 at:0.001438635285012424 :0.04605327849276364 -of:0.8686798214912415 ot:0.028874313458800316 to:0.00955415703356266 ,:0.009378776885569096 on:0.008552186191082 :0.07496074493974447 -Has:0.957001805305481 has:0.018057581037282944 Is:0.014362996444106102 Had:0.004909643437713385 Have:0.0024240908678621054 :0.0032438829075545073 -the:0.9 :0.1 -than:0.9838369488716125 then:0.00701558543369174 ,:0.0024648942053318024 and:0.0013228325406089425 that:0.0006217613117769361 :0.00473797763697803 -the:0.49363964796066284 a:0.34353941679000854 any:0.0453965924680233 their:0.02665698528289795 some:0.019889257848262787 :0.07087809965014458 -.:0.9849817752838135 .:0.008086259476840496 ,:0.002569397445768118 ..:0.0009532745461910963 *.:0.000395564129576087 :0.003013729117810726 -few:0.7727177143096924 couple:0.020329123362898827 hundred:0.01800110749900341 few:0.0137743279337883 thousand:0.011887616477906704 :0.16329011041671038 -this:0.5962955951690674 the:0.3033278286457062 that:0.07174279540777206 every:0.007374996785074472 any:0.0036509335041046143 :0.01760785048827529 -the:0.9 :0.1 -had:0.5805113315582275 once:0.11598318815231323 ever:0.0576179139316082 was:0.03268112987279892 has:0.027424093335866928 :0.18578234314918518 -day:0.27941370010375977 night:0.051336176693439484 year:0.038499616086483 boys:0.034371502697467804 week:0.027129925787448883 :0.5692490786314011 -south:0.377160906791687 north:0.22344766557216644 west:0.061389707028865814 east:0.04759930446743965 i:0.029198970645666122 :0.26120344549417496 -sell:0.12479586154222488 buy:0.0859224796295166 purchase:0.07880059629678726 pay:0.02508574351668358 acquire:0.02375330775976181 :0.6616420112550259 -possession:0.8018264174461365 action:0.058690935373306274 ownership:0.01396352332085371 control:0.012541700154542923 part:0.00717566953971982 :0.1058017541654408 -and:0.457633912563324 ,:0.29648682475090027 .:0.059741754084825516 ;:0.04248595982789993 but:0.026529259979724884 :0.11712228879332542 -great:0.27710282802581787 certain:0.033943429589271545 high:0.024275634437799454 general:0.02319752797484398 considerable:0.022646959871053696 :0.6188336201012135 -We:0.2975269556045532 He:0.22321194410324097 Jack:0.1929236501455307 They:0.043971989303827286 It:0.03491072729229927 :0.20745473355054855 -The:0.9503546953201294 Many:0.008984948508441448 The:0.008176224306225777 Our:0.0050666918978095055 the:0.0033220448531210423 :0.024095395114272833 -which:0.4143608510494232 and:0.2522867023944855 as:0.13580183684825897 but:0.03444040194153786 so:0.032143738120794296 :0.13096646964550018 -the:0.9 :0.1 -were:0.28385284543037415 men:0.1293429285287857 persons:0.08346977084875107 people:0.05918746814131737 others:0.05333070829510689 :0.3908162787556648 -time:0.7874849438667297 day:0.10945909470319748 date:0.051439180970191956 moment:0.014975938014686108 year:0.008102244697511196 :0.028538597747683525 -had:0.16823264956474304 occupied:0.10869584232568741 worn:0.05509151890873909 taken:0.053720053285360336 left:0.03225286304950714 :0.582007072865963 -the:0.9 :0.1 -and:0.9261484146118164 aud:0.010292240418493748 ,:0.004889701958745718 of:0.004765453282743692 -:0.0030799461528658867 :0.05082424357533455 -eyes:0.10449235886335373 fingers:0.06485962122678757 hands:0.05653209239244461 hand:0.055309489369392395 steps:0.045696284621953964 :0.6731101535260677 -Baltimore:0.14743635058403015 Montgomery:0.020619167014956474 Worcester:0.01973075419664383 Fairfax:0.019524086266756058 Howard:0.017330754548311234 :0.7753588873893023 -ing:0.13157027959823608 touching:0.022504106163978577 to:0.014250104315578938 bearing:0.010337410494685173 fitting:0.010007333941757679 :0.8113307654857635 -he:0.6711854934692383 was:0.09318225830793381 being:0.05769667401909828 which:0.032954711467027664 had:0.015857737511396408 :0.12912312522530556 -a:0.7539763450622559 the:0.09729956835508347 his:0.04211735725402832 tho:0.022282492369413376 that:0.015254274941980839 :0.06906996201723814 -broke:0.18025411665439606 cut:0.14605861902236938 injured:0.06585632264614105 with:0.06369835883378983 lost:0.05768244341015816 :0.4864501394331455 -the:0.38927197456359863 June:0.07233135402202606 May:0.05823744088411331 October:0.057072099298238754 July:0.05545245110988617 :0.36763468012213707 -of:0.9605439305305481 ,:0.011235840618610382 ot:0.006593912374228239 at:0.002598877064883709 from:0.0024985172785818577 :0.016528922133147717 -Protestant:0.0416736826300621 English:0.04140469804406166 great:0.039257969707250595 chief:0.028308942914009094 Methodist:0.02723838947713375 :0.8221163172274828 -had:0.08012983202934265 was:0.03525690734386444 o:0.020160779356956482 .:0.01840667426586151 ho:0.015397081151604652 :0.8306487258523703 -the:0.611680269241333 these:0.06177674978971481 his:0.018185503780841827 twenty:0.01583004929125309 their:0.012739833444356918 :0.27978759445250034 -great:0.08960314840078354 naval:0.08233173936605453 splendid:0.06743209809064865 large:0.03344621881842613 small:0.022220592945814133 :0.704966202378273 -the:0.41480687260627747 and:0.26586759090423584 or:0.023197798058390617 to:0.015729757025837898 .:0.008491352200508118 :0.27190662920475006 -,:0.6948878169059753 .:0.027147123590111732 ;:0.009639734402298927 and:0.00900318194180727 !:0.008080466650426388 :0.25124167650938034 -the:0.3157006502151489 no:0.14066335558891296 this:0.09329094737768173 a:0.068769671022892 never:0.026538239791989326 :0.35503713600337505 -object:0.13293470442295074 objects:0.12227007001638412 enemy:0.030811581760644913 subject:0.029117895290255547 cause:0.0219486765563488 :0.6629170719534159 -hands:0.7054905295372009 possession:0.09820370376110077 trust:0.05571266636252403 hand:0.04917995259165764 trusts:0.013196131214499474 :0.07821701653301716 -that:0.9981430768966675 ,:0.0003680111840367317 ::0.00028271021437831223 how:0.00011856768833240494 that:0.00011245917994529009 :0.0009751748366397806 -butter:0.32004106044769287 potatoes:0.09240470081567764 toast:0.07996053248643875 bread:0.055250875651836395 .:0.035478681325912476 :0.41686414927244186 -in:0.41197600960731506 by:0.25886887311935425 at:0.13504546880722046 In:0.0667947456240654 from:0.04747147113084793 :0.0798434317111969 -as:0.7936710715293884 so:0.1971255987882614 ,:0.0016754132229834795 As:0.0008708175155334175 very:0.0006375322118401527 :0.006019566731993109 -the:0.273132860660553 tho:0.14031465351581573 a:0.08973135054111481 every:0.04923586547374725 each:0.039607807993888855 :0.40797746181488037 -rights:0.28583696484565735 right:0.12247657775878906 authority:0.11566603183746338 duties:0.05255889892578125 power:0.04443992301821709 :0.3790216036140919 -being:0.18363453447818756 all:0.02846096083521843 getting:0.02389293536543846 very:0.02261609025299549 feeling:0.022158751264214516 :0.7192367278039455 -of:0.7886271476745605 but:0.03725319355726242 in:0.02995779737830162 ot:0.014037790708243847 except:0.013660304248332977 :0.11646376643329859 -the:0.9 :0.1 -the:0.5901537537574768 a:0.13925789296627045 each:0.12017953395843506 one:0.03395837917923927 this:0.027358917519450188 :0.08909152261912823 -when:0.19355925917625427 as:0.1923673301935196 that:0.10019366443157196 and:0.052833255380392075 while:0.04924647882580757 :0.41180001199245453 -ave:0.07677335292100906 n:0.032135188579559326 v:0.02808029018342495 arge:0.020952368155121803 on:0.01770847849547863 :0.8243503216654062 -pose:0.05038558319211006 send:0.030187228694558144 sent:0.025509588420391083 serve:0.01791577786207199 port:0.0177554152905941 :0.8582464065402746 -and:0.35568666458129883 which:0.07872690260410309 until:0.07404974848031998 where:0.0690193921327591 till:0.05432936176657677 :0.36818793043494225 --:0.3503071069717407 self:0.010789785534143448 n:0.010308482684195042 ­:0.00997233297675848 -:0.009937082417309284 :0.608685209415853 -New:0.9955412745475769 New:0.003117538057267666 United:0.00015013525262475014 new:0.00013617106014862657 North:6.309110904112458e-05 :0.0009917899733409286 -old:0.11805760860443115 Old:0.03569193184375763 Hartford:0.020768074318766594 New:0.017384327948093414 famous:0.01431672740727663 :0.7937813298776746 -and:0.6728971004486084 but:0.07401341944932938 except:0.05169207230210304 so:0.020715879276394844 in:0.01205094251781702 :0.16863058600574732 -color:0.08254256844520569 colors:0.08134102076292038 est:0.06949150562286377 ,:0.05010084807872772 best:0.02580656297504902 :0.6907174941152334 -come:0.7838910818099976 go:0.08582442253828049 meet:0.03233012557029724 sit:0.016340387985110283 get:0.01463394146412611 :0.06698004063218832 -securing:0.21662716567516327 saving:0.03635193780064583 making:0.03186669200658798 obtaining:0.029639383777976036 protecting:0.02017069049179554 :0.6653441302478313 -home:0.2935391366481781 office:0.12591665983200073 house:0.10096540302038193 room:0.05496559664607048 station:0.0517178513109684 :0.37289535254240036 -afford:0.2633557617664337 have:0.15319082140922546 continue:0.09680909663438797 go:0.02883191779255867 agree:0.022062137722969055 :0.4357502646744251 -.:0.15116792917251587 to:0.08645681291818619 and:0.05929115414619446 ,:0.030629713088274002 States:0.028322655707597733 :0.6441317349672318 -Eighth:0.3001125454902649 Seventh:0.23559653759002686 Sixth:0.11029621213674545 Ninth:0.1089591458439827 Fourth:0.07097216695547104 :0.17406339198350906 -on:0.3976723849773407 to:0.25781363248825073 in:0.02704739384353161 down:0.018797175958752632 out:0.018668904900550842 :0.2800005078315735 -firm:0.08009111136198044 company:0.03677726536989212 persons:0.03276091814041138 men:0.030835941433906555 gentlemen:0.023001328110694885 :0.7965334355831146 -woman:0.986851155757904 women:0.0067445747554302216 wife:0.0018988493829965591 man:0.0013609552988782525 lady:0.0006437943666242063 :0.0025006704381667078 -tion:0.3278665840625763 ment:0.13797111809253693 ty:0.03605812042951584 ing:0.032297730445861816 ter:0.02030477486550808 :0.44550167210400105 -of:0.9401189684867859 in:0.037759929895401 In:0.004857219755649567 Of:0.003274068236351013 ot:0.0018459662096574903 :0.01214384741615504 -the:0.7547432780265808 these:0.09280627965927124 our:0.0655105710029602 those:0.009084037505090237 many:0.00787851121276617 :0.06997732259333134 -the:0.9 :0.1 -the:0.47315412759780884 their:0.19780057668685913 a:0.06906048208475113 this:0.05308287590742111 every:0.042912133038043976 :0.16398980468511581 -we:0.3877304792404175 they:0.27500659227371216 he:0.22177161276340485 she:0.04218090698122978 I:0.027332628145813942 :0.04597778059542179 -is:0.9004088640213013 was:0.03676028177142143 consists:0.021153243258595467 Is:0.01232981402426958 remains:0.005732255522161722 :0.02361554140225053 -Southern:0.16835379600524902 Ohio:0.12174469232559204 Erie:0.08337686955928802 Western:0.03256520628929138 Northern:0.022322628647089005 :0.5716368071734905 -«:0.07509826123714447 to:0.0495757982134819 t:0.03783087804913521 a:0.03557625785470009 t:0.02969546616077423 :0.7722233384847641 -a:0.5124338269233704 the:0.4417017698287964 another:0.008179895579814911 an:0.005266173742711544 any:0.0048998580314219 :0.027518475893884897 -interested:0.06575936079025269 competent:0.026909150183200836 prominent:0.019906364381313324 active:0.014628452248871326 moderate:0.013934665359556675 :0.8588620070368052 -would:0.5061484575271606 could:0.14940759539604187 can:0.0516323558986187 might:0.030226055532693863 will:0.025303922593593597 :0.23728161305189133 -nd:0.168437197804451 ectar:0.14507196843624115 ess:0.03736737370491028 th:0.019616438075900078 mn:0.012481160461902618 :0.6170258615165949 -Spanish:0.38027459383010864 American:0.24202494323253632 British:0.03407502919435501 Mexican:0.030014866963028908 Confederate:0.019041819497942924 :0.2945687472820282 -the:0.5713454484939575 a:0.07330020517110825 tho:0.06451747566461563 this:0.04155835881829262 The:0.020889639854431152 :0.22838887199759483 -yard:0.06579466164112091 end:0.03312388435006142 up:0.02668059431016445 load:0.02467207983136177 hoe:0.023579224944114685 :0.8261495549231768 -.:0.10007474571466446 cases:0.07619175314903259 per:0.05439833179116249 ,:0.04817141592502594 000:0.01794678531587124 :0.7032169681042433 -was:0.6967504024505615 being:0.0932144820690155 is:0.06564057618379593 in:0.030062394216656685 as:0.022265009582042694 :0.09206713549792767 -%:0.10414857417345047 c:0.06561237573623657 ;:0.052776359021663666 *:0.0333477146923542 ,:0.023496590554714203 :0.7206183858215809 -a:0.6244335770606995 the:0.2250944823026657 tho:0.03297615796327591 in:0.016854673624038696 any:0.016475733369588852 :0.08416537567973137 -ment:0.1454525738954544 ing:0.07498060911893845 tion:0.0735342800617218 ter:0.057774826884269714 ber:0.029819509014487267 :0.6184382010251284 -silence:0.7726011276245117 applause:0.09131302684545517 pause:0.009765931405127048 line:0.008562752045691013 laughter:0.007858103141188622 :0.10989905893802643 -have:0.8093360662460327 ,:0.022785751149058342 not:0.02032354846596718 be:0.013280067592859268 I:0.01051616296172142 :0.12375840358436108 -early:0.2586250901222229 first:0.0905594751238823 home:0.08222361654043198 late:0.061639752238988876 last:0.04568174481391907 :0.4612703211605549 -in:0.6178485751152039 In:0.16035671532154083 within:0.0715079978108406 of:0.05059387907385826 ol:0.008904148824512959 :0.09078868385404348 -ed:0.11882112920284271 ing:0.06021269038319588 ted:0.033778898417949677 tried:0.028863567858934402 t:0.02689092606306076 :0.7314327880740166 -the:0.7808811068534851 this:0.11764518171548843 his:0.056139908730983734 our:0.022631105035543442 that:0.006435474380850792 :0.01626722328364849 -at:0.4466571807861328 to:0.1747807264328003 from:0.08352787792682648 on:0.08286631852388382 below:0.035951077938079834 :0.17621681839227676 -be:0.9260643720626831 bo:0.0401737242937088 lie:0.005360303446650505 he:0.004654102027416229 be:0.001415966427884996 :0.022331531741656363 -tion:0.08757851272821426 ment:0.06546685099601746 ect:0.020826304331421852 power:0.015857096761465073 ing:0.015135291032493114 :0.7951359441503882 -ed:0.06256411969661713 pose:0.022515177726745605 ty:0.016484275460243225 ly:0.016166796907782555 dent:0.015722520649433136 :0.8665471095591784 -,:0.48799869418144226 and:0.32957884669303894 or:0.0671338364481926 ly:0.005577267147600651 but:0.004173886496573687 :0.10553746903315187 -it:0.912746012210846 It:0.03680984303355217 that:0.01042667031288147 he:0.0046966709196567535 it:0.004456792958080769 :0.03086401056498289 -is:0.7870259881019592 Is:0.08482373505830765 ,:0.053566884249448776 was:0.017226742580533028 of:0.00888061709702015 :0.04847603291273117 -of:0.22347357869148254 containing:0.1321329027414322 being:0.06110400706529617 with:0.06089586019515991 having:0.05366594344377518 :0.468727707862854 -the:0.9 :0.1 -was:0.794536828994751 is:0.1038314625620842 Is:0.0473620668053627 's:0.004744549747556448 involved:0.004126588813960552 :0.045398503076285124 -which:0.33024850487709045 to:0.18079961836338043 and:0.15688082575798035 that:0.05766762048006058 or:0.021226773038506508 :0.2531766574829817 -develop:0.1284659504890442 organize:0.05286359414458275 build:0.04664244130253792 maintain:0.03475605323910713 design:0.032470934092998505 :0.7048010267317295 -on:0.22052665054798126 in:0.19745704531669617 upon:0.11081736534833908 and:0.07065462321043015 ,:0.06326165050268173 :0.3372826650738716 -the:0.49508434534072876 an:0.2731683552265167 their:0.09471431374549866 this:0.04116154834628105 tho:0.04021789878606796 :0.055653538554906845 -to:0.1733011156320572 on:0.09300605952739716 with:0.08055216073989868 at:0.06952644884586334 for:0.03485679253935814 :0.5487574227154255 -it:0.24951216578483582 they:0.14851626753807068 corporations:0.08050023764371872 we:0.028867682442069054 Congress:0.027435988187789917 :0.4651676584035158 -editor:0.40883538126945496 editors:0.12615199387073517 publisher:0.0499812550842762 Editor:0.03841588646173477 writer:0.03743722662329674 :0.33917825669050217 -the:0.967348575592041 a:0.013652941212058067 tho:0.008172877132892609 said:0.0037550211418420076 that:0.0009053027024492621 :0.006165282218717039 -considers:0.16442881524562836 finds:0.14918537437915802 declares:0.06709782779216766 regards:0.057860035449266434 deems:0.03722307085990906 :0.5242048762738705 -from:0.1978527456521988 to:0.1516188383102417 at:0.08138598501682281 through:0.05988780036568642 in:0.05873400345444679 :0.4505206272006035 -tion:0.21656054258346558 ing:0.07833532989025116 is:0.05676662549376488 ment:0.035781409591436386 er:0.022816935554146767 :0.5897391568869352 -mouth:0.3144078254699707 bottom:0.12486007809638977 end:0.09292397648096085 foot:0.05639231950044632 time:0.042382724583148956 :0.3690330758690834 -would:0.7174929976463318 will:0.14358031749725342 should:0.0274115651845932 might:0.015241884626448154 may:0.009661518037319183 :0.08661171700805426 -trouble:0.49206510186195374 to:0.286735862493515 troubles:0.026148423552513123 havoc:0.010333457961678505 friction:0.00727289542555809 :0.17744425870478153 -hands:0.9935522079467773 hand:0.0019860377069562674 possession:0.0013670445187017322 arms:0.0011709745740517974 custody:0.0003155969607178122 :0.0016081382927950472 -The:0.9707193374633789 This:0.012200269848108292 The:0.006383738946169615 the:0.0035386295057833195 That:0.0016965355025604367 :0.005461488733999431 -be:0.4563082158565521 resemble:0.12875625491142273 rival:0.04282693937420845 exceed:0.04255067557096481 equal:0.026160016655921936 :0.30339789763092995 -the:0.9740240573883057 a:0.009733693674206734 this:0.008690380491316319 tho:0.002865299815312028 its:0.0006463918834924698 :0.004040176747366786 -creek:0.11474740505218506 river:0.08712198585271835 stream:0.07380159944295883 water:0.051422663033008575 shore:0.04700680822134018 :0.625899538397789 -John:0.1445314884185791 William:0.07556621730327606 James:0.0522858165204525 George:0.0485755130648613 Henry:0.03263498842716217 :0.6464059762656689 -Thinking:0.14055854082107544 So:0.1368546336889267 Knowing:0.13125933706760406 so:0.08495107293128967 Now:0.06799677014350891 :0.4383796453475952 -be:0.6237741112709045 bo:0.31323903799057007 ho:0.00919516384601593 lie:0.008686606772243977 he:0.006737367250025272 :0.03836771287024021 -N:0.9436700940132141 n:0.044175032526254654 N:0.0023824311792850494 North:0.0016990231815725565 ,:0.0005191150703467429 :0.007554304029326886 -at:0.22230669856071472 to:0.21508803963661194 with:0.1768699288368225 in:0.06755677610635757 from:0.037862032651901245 :0.280316524207592 -*:0.03518538177013397 the:0.021004391834139824 said:0.01566634513437748 his:0.012992830947041512 Coal:0.01259665098041296 :0.9025543993338943 -even:0.386179119348526 under:0.20284484326839447 over:0.1303013414144516 above:0.0869363471865654 below:0.03304915502667427 :0.16068919375538826 -is:0.34319204092025757 has:0.3068278729915619 needs:0.11409613490104675 was:0.026945969089865685 had:0.025157732889056206 :0.1837802492082119 -that:0.3934635818004608 so:0.15400469303131104 how:0.1533033698797226 too:0.0401119701564312 as:0.03437807038426399 :0.22473831474781036 -to:0.9808695316314697 ,:0.010607750155031681 as:0.0016490566777065396 will:0.0015134052373468876 ot:0.0005817300407215953 :0.00477852625772357 -runs:0.4139152765274048 errors:0.15673188865184784 hits:0.08277460932731628 two:0.03779440000653267 outs:0.03708842396736145 :0.27169540151953697 -Steel:0.4465366005897522 These:0.12751366198062897 The:0.07646965235471725 Those:0.03160425275564194 Wooden:0.021240485832095146 :0.2966353464871645 -in:0.6598868370056152 with:0.11058873683214188 by:0.050112880766391754 at:0.04061664268374443 In:0.03279644995927811 :0.1059984527528286 -as:0.5965894460678101 into:0.12619148194789886 to:0.11011257767677307 in:0.05321807786822319 with:0.023655613884329796 :0.09023280255496502 -ns:0.037288349121809006 es:0.02463299222290516 ers:0.021113011986017227 ,:0.0187749695032835 s:0.01752190664410591 :0.8806687705218792 -was:0.055910367518663406 went:0.04660632833838463 a:0.039306581020355225 he:0.023435333743691444 the:0.018228668719530106 :0.8165127206593752 -feet:0.9128863215446472 ft:0.0077491020783782005 miles:0.004420124925673008 inches:0.0033795933704823256 ,:0.0030782290268689394 :0.06848662905395031 -will:0.9930723309516907 shall:0.00257814466021955 wil:0.0008896864019334316 to:0.0006581084453500807 may:0.0005603593890555203 :0.0022413701517507434 -work:0.6341274380683899 labor:0.13271299004554749 employment:0.008813269436359406 pay:0.008345206268131733 wages:0.007538345642387867 :0.20846275053918362 -which:0.9933648109436035 whom:0.005075246095657349 which:0.0009465685579925776 where:9.119669994106516e-05 when:7.656650268472731e-05 :0.0004456112001207657 -Dr:0.5314199328422546 Mr:0.08889663219451904 Doctor:0.08202359825372696 .:0.033872220665216446 the:0.03295863792300224 :0.23082897812128067 -Melbourne:0.03958412632346153 Victoria:0.03520631417632103 London:0.0326203778386116 Paris:0.027332445606589317 Sydney:0.02294701151549816 :0.8423097245395184 -in:0.14232638478279114 -:0.07735207676887512 .:0.05644408240914345 in:0.030661992728710175 In:0.030419113114476204 :0.6627963501960039 -time:0.08721725642681122 day:0.06557124108076096 way:0.0641588419675827 moment:0.06030287966132164 fact:0.03927315026521683 :0.6834766305983067 -last:0.06932239234447479 first:0.038800839334726334 found:0.03685443103313446 killed:0.031227611005306244 ,:0.026262875646352768 :0.7975318506360054 -ness:0.6974099278450012 ing:0.016329310834407806 assertion:0.0072554643265903 s:0.007024080026894808 use:0.0052443877793848515 :0.266736829187721 -Captain:0.044643696397542953 name:0.025484463199973106 son:0.021504485979676247 Secretary:0.018409080803394318 captain:0.018079688772559166 :0.8718785848468542 -Others:0.7528946995735168 others:0.07629506289958954 Some:0.041910793632268906 and:0.023324668407440186 Other:0.011535200290381908 :0.09403957519680262 -the:0.5251612067222595 tho:0.026046810671687126 these:0.014556764625012875 their:0.01454075239598751 its:0.012272961437702179 :0.4074215041473508 -Given:0.33608177304267883 With:0.2571432590484619 Considering:0.10668781399726868 From:0.03835724666714668 Notwithstanding:0.026845047250390053 :0.23488485999405384 -the:0.9 :0.1 -,:0.5846872329711914 and:0.01053723506629467 .:0.005804731044918299 was:0.004156157840043306 rifle:0.004067361820489168 :0.39074728125706315 -in:0.5726003050804138 at:0.10963927954435349 In:0.08050932735204697 for:0.0345209538936615 of:0.03371603414416313 :0.1690140999853611 -person:0.8037163019180298 persons:0.0801977887749672 man:0.028736134991049767 one:0.010635565035045147 people:0.0048499079421162605 :0.07186430133879185 -from:0.35277414321899414 by:0.22020742297172546 to:0.10857253521680832 for:0.08872069418430328 in:0.038533128798007965 :0.19119207561016083 -will:0.5804836750030518 shall:0.15878456830978394 should:0.08961768448352814 would:0.051912907510995865 may:0.044526223093271255 :0.07467494159936905 -to:0.32367125153541565 in:0.14166578650474548 about:0.10375932604074478 from:0.0636715292930603 with:0.05329344421625137 :0.3139386624097824 -W:0.7275477647781372 .:0.04439699649810791 W:0.03576408699154854 w:0.024893036112189293 w:0.008568823337554932 :0.15882929228246212 -wh:0.20605014264583588 th:0.05422155559062958 the:0.03577716648578644 l:0.030900727957487106 :0.020790867507457733 :0.6522595398128033 -the:0.9 :0.1 -the:0.7048049569129944 our:0.07754410803318024 a:0.056401681154966354 tho:0.03536194935441017 my:0.03482702746987343 :0.09106027707457542 -A:0.4090275466442108 The:0.2966051697731018 This:0.08677833527326584 a:0.04524959996342659 That:0.04191002622246742 :0.12042932212352753 -life:0.1768970489501953 kind:0.04854283109307289 state:0.04391996189951897 experience:0.03945939987897873 chance:0.032852429896593094 :0.658328328281641 -thence:0.41127654910087585 east:0.06817695498466492 north:0.06736333668231964 south:0.03828570246696472 west:0.025332152843475342 :0.3895653039216995 -was:0.8598659634590149 he:0.03255192190408707 had:0.008981871418654919 be:0.007549607194960117 ,:0.005150358658283949 :0.08590027736499906 -of:0.8597404360771179 for:0.0424625501036644 ot:0.020438987761735916 in:0.01365248765796423 to:0.009476094506680965 :0.05422944389283657 -anything:0.437581330537796 something:0.10827571898698807 tho:0.05595477297902107 more:0.03992433100938797 any:0.03182028606534004 :0.3264435604214668 -the:0.7386578917503357 all:0.05305458977818489 -:0.013760204426944256 said:0.012532275170087814 other:0.009344146586954594 :0.17265089228749275 -at:0.4262913167476654 in:0.4044012725353241 In:0.02807200327515602 on:0.018854433670639992 as:0.014802967198193073 :0.10757800657302141 -Uni:0.6801539659500122 com:0.013178855180740356 un:0.008024167269468307 colleg:0.0075814733281731606 Un:0.007004839833825827 :0.28405669843778014 -know:0.05782902613282204 believe:0.03012946806848049 realize:0.02994350716471672 think:0.028626078739762306 find:0.02238374575972557 :0.8310881741344929 -to:0.7377695441246033 in:0.06248356029391289 with:0.037131909281015396 upon:0.03360653296113014 on:0.02116035297513008 :0.10784810036420822 -tendency:0.15810580551624298 trend:0.0659252181649208 movement:0.04937528446316719 move:0.045777078717947006 drift:0.04059389606118202 :0.64022271707654 -or:0.995919406414032 and:0.00179299246519804 to:0.00038406200474128127 hundred:0.0003607010003179312 thousand:0.00015637556498404592 :0.0013864625507267192 -by:0.8933775424957275 in:0.0445740632712841 under:0.020544497296214104 from:0.005950229242444038 to:0.00529886968433857 :0.030254798009991646 -hut:0.04380124434828758 ,:0.03468736261129379 was:0.03403297811746597 Is:0.03390296548604965 be:0.03196940943598747 :0.8216060400009155 -Speaker:0.050020478665828705 Sherman:0.020796865224838257 Smith:0.020560337230563164 President:0.019143208861351013 .:0.014983434230089188 :0.8744956757873297 -addition:0.4861244857311249 regard:0.18385159969329834 contrast:0.07732926309108734 reference:0.033733781427145004 relation:0.02655249461531639 :0.19240837544202805 -a:0.7620976567268372 some:0.11492640525102615 his:0.05337025970220566 the:0.029204854741692543 this:0.027581309899687767 :0.01281951367855072 -not:0.12564057111740112 ly:0.06088271737098694 that:0.060081034898757935 ,:0.053924184292554855 why:0.04998556524515152 :0.6494859270751476 -obedient:0.4088653326034546 loving:0.09048034995794296 gentle:0.03989643603563309 responsible:0.02439183183014393 loyal:0.018154164776206017 :0.4182118847966194 -I:0.947288990020752 We:0.03423040732741356 1:0.0072863781824707985 I:0.0028059976175427437 You:0.0026410031132400036 :0.005747223738580942 -,:0.1798279732465744 money:0.10239831358194351 what:0.08286650478839874 them:0.07909349352121353 it:0.0503019280731678 :0.505511786788702 -lines:0.39631006121635437 cases:0.052564747631549835 ,:0.03252875432372093 claims:0.02246403694152832 disputes:0.020729584619402885 :0.47540281526744366 -the:0.9 :0.1 -dead:0.42402416467666626 sick:0.2629663944244385 ill:0.08763118833303452 alive:0.04260246828198433 dying:0.038677990436553955 :0.14409779384732246 -to:0.2122483253479004 ,:0.11298469454050064 thereto:0.07261613011360168 upon:0.06936438381671906 up:0.06144271418452263 :0.4713437519967556 -will:0.25858357548713684 to:0.18486270308494568 you:0.06463615596294403 ho:0.04002365097403526 should:0.0374966524541378 :0.4143972620368004 -with:0.8655858635902405 and:0.0663379430770874 having:0.016517560929059982 but:0.005285944323986769 which:0.0030728462152183056 :0.04319984186440706 -cember:0.10531480610370636 w:0.04909579083323479 i:0.047044701874256134 paid:0.03744162246584892 ipt:0.03268376737833023 :0.7284193113446236 -a:0.13505372405052185 great:0.07825230062007904 the:0.06854444742202759 such:0.03954658657312393 its:0.02660415694117546 :0.6519987843930721 -":0.2365335375070572 ,:0.03828752785921097 to:0.03721824660897255 *:0.02988055720925331 o:0.024747343733906746 :0.6333327870815992 -except:0.3112516403198242 besides:0.11934470385313034 under:0.09897496551275253 but:0.08587808907032013 beyond:0.06388573348522186 :0.3206648677587509 -old:0.022670067846775055 man:0.02191545069217682 new:0.01606920175254345 whole:0.015743035823106766 State:0.010118599981069565 :0.9134836439043283 -steam:0.3190669119358063 electric:0.030677005648612976 railroad:0.026568667963147163 fire:0.01702398620545864 new:0.015140002593398094 :0.5915234256535769 -,:0.8916838765144348 ;:0.044989652931690216 ;:0.0159610603004694 .:0.014612077735364437 ,:0.006575209088623524 :0.02617812342941761 -America:0.04274171590805054 Chicago:0.03938174992799759 actors:0.03363741934299469 us:0.021605467423796654 ,:0.021291103214025497 :0.841342544183135 -,:0.12015702575445175 Russia:0.04037242382764816 war:0.03082587569952011 hostilities:0.026586035266518593 Germany:0.023312747478485107 :0.7587458919733763 -very:0.47482606768608093 more:0.12834084033966064 most:0.08476382493972778 perfectly:0.023167219012975693 well:0.022558623924851418 :0.26634342409670353 -Captain:0.12321920692920685 the:0.1197238489985466 Admiral:0.06219584494829178 by:0.03324487432837486 under:0.03194583207368851 :0.6296703927218914 -tho:0.5905746817588806 the:0.2555912137031555 this:0.11202152818441391 his:0.014251776039600372 that:0.009337731637060642 :0.018223068676888943 -in:0.6178492903709412 In:0.18693524599075317 at:0.13422708213329315 near:0.042539082467556 on:0.004125087987631559 :0.014324211049824953 -closely:0.20214970409870148 carefully:0.057686880230903625 -:0.05667106807231903 being:0.03326202556490898 be:0.03186911717057228 :0.6183612048625946 -.:0.5876352787017822 block:0.1482735574245453 ,:0.0344373881816864 blocks:0.018650909885764122 *.:0.015114025212824345 :0.19588884059339762 -:0.0632338672876358 ing:0.043831951916217804 pose:0.027956515550613403 dent:0.02384568192064762 pri:0.023040877655148506 :0.8180911056697369 -no:0.9756100177764893 No:0.007653569336980581 not:0.005724146496504545 no:0.001883979421108961 any:0.0016163227846845984 :0.007511964184232056 -county:0.018240230157971382 tho:0.015220703557133675 nearest:0.0147065045312047 u:0.013278359547257423 public:0.012292967177927494 :0.9262612350285053 -of:0.7161930799484253 in:0.07990812510251999 In:0.05312236770987511 ot:0.0338774248957634 on:0.020221054553985596 :0.09667794778943062 -to:0.9427462816238403 ot:0.010396290570497513 and:0.006392642389982939 ,:0.005559996701776981 of:0.004689458291977644 :0.03021533042192459 -can:0.23193703591823578 could:0.16457483172416687 should:0.1207282766699791 cannot:0.09472962468862534 will:0.08818428218364716 :0.29984594881534576 -about:0.20056088268756866 two:0.20040582120418549 three:0.05195898562669754 a:0.03651035949587822 four:0.03392576426267624 :0.47663818672299385 -time:0.9553494453430176 date:0.017392689362168312 day:0.008885502815246582 moment:0.002500846516340971 hour:0.001487205270677805 :0.014384310692548752 -W:0.04374409094452858 J:0.03600195795297623 M:0.03468732535839081 H:0.027173785492777824 .:0.021963169798254967 :0.8364296704530716 -floor:0.11227632313966751 sofa:0.07604831457138062 couch:0.06850326806306839 desk:0.04734049364924431 porch:0.04188914969563484 :0.6539424508810043 -Many:0.625359296798706 Some:0.15310509502887726 Most:0.044543247669935226 All:0.04331140220165253 Several:0.025964731350541115 :0.10771622695028782 -words:0.10119380801916122 remarks:0.08729144185781479 votes:0.04648985713720322 views:0.038412537425756454 thoughts:0.03735347464680672 :0.6892588809132576 -able:0.04421115294098854 ing:0.020243560895323753 obliged:0.018542561680078506 willing:0.014887172728776932 inclined:0.013625996187329292 :0.888489555567503 -human:0.14901846647262573 good:0.14264805614948273 improved:0.07737194001674652 poor:0.04581255465745926 digestive:0.03764573112130165 :0.5475032515823841 -and:0.6445547342300415 or:0.18002481758594513 for:0.051265884190797806 of:0.021788187325000763 ,:0.017015814781188965 :0.08535056188702583 -by:0.23364421725273132 in:0.14534427225589752 for:0.09176177531480789 from:0.07587292790412903 when:0.054722752422094345 :0.3986540548503399 -was:0.9450523853302002 is:0.036209769546985626 Is:0.00410053227096796 were:0.004032849799841642 was:0.0021528478246182203 :0.008451615227386355 -the:0.5669354796409607 tho:0.3239154517650604 the:0.006760274060070515 President:0.006185929756611586 th:0.0058611067943274975 :0.09034175798296928 -.:0.8575186729431152 far:0.016331221908330917 much:0.014919093810021877 many:0.007368623279035091 .:0.005863656755536795 :0.09799873130396008 -small:0.44109171628952026 large:0.2122720181941986 wide:0.05852140486240387 narrow:0.051179755479097366 little:0.03726290911436081 :0.19967219606041908 -was:0.39712628722190857 were:0.38833773136138916 is:0.10192687809467316 be:0.04685084894299507 are:0.02640431746840477 :0.03935393691062927 -gen:0.04965943098068237 the:0.03251069411635399 medi:0.0318002849817276 spont:0.02765616774559021 pure:0.024317150935530663 :0.8340562712401152 -his:0.23775586485862732 a:0.177373468875885 the:0.15997149050235748 bis:0.09138200432062149 tho:0.03011573851108551 :0.3034014329314232 -­:0.20443089306354523 -:0.06544537097215652 ,:0.02675609104335308 and:0.01595296524465084 *:0.015253175981342793 :0.6721615036949515 -attacked:0.08878318965435028 reached:0.06756137311458588 entered:0.04925611615180969 overpowered:0.03379352390766144 surrounded:0.022665301337838173 :0.7379404958337545 -wanted:0.5130321383476257 was:0.049563027918338776 asked:0.04536757245659828 told:0.028276730328798294 said:0.024522846564650536 :0.3392376843839884 -not:0.9944302439689636 never:0.0021264529787003994 only:0.0002928152389358729 easily:0.00021207732788752764 well:0.00016756837430875748 :0.0027708421112038195 -watered:0.18492618203163147 kept:0.06996370851993561 done:0.05535661429166794 dry:0.052567970007658005 preserved:0.03689036890864372 :0.6002951562404633 -and:0.1640838384628296 000:0.08592750877141953 which:0.036156635731458664 are:0.03260805830359459 or:0.031802672892808914 :0.6494212858378887 -Representative:0.8268333673477173 Congressman:0.10858681797981262 Senator:0.026125038042664528 Mr:0.01565820723772049 Speaker:0.0018808357417583466 :0.02091573365032673 -the:0.7858243584632874 an:0.09834235161542892 this:0.036910153925418854 such:0.015311363153159618 that:0.01377840805798769 :0.04983336478471756 -the:0.6709946393966675 a:0.055719874799251556 tho:0.03071722202003002 its:0.01899321936070919 of:0.013011093251407146 :0.2105639511719346 -would:0.23229533433914185 could:0.1573420614004135 has:0.09113410115242004 will:0.08854476362466812 was:0.07320023328065872 :0.35748350620269775 -from:0.5410277247428894 to:0.2466430962085724 by:0.13116103410720825 with:0.030335577204823494 of:0.02477264031767845 :0.02605992741882801 -made:0.09096226096153259 conveyed:0.05520423874258995 given:0.03730478510260582 contained:0.033222466707229614 ,:0.032930463552474976 :0.750375784933567 -otherwise:0.061384670436382294 duly:0.03441089764237404 made:0.028843244537711143 deemed:0.02348949946463108 directly:0.02127228118479252 :0.8305994067341089 -to:0.996077835559845 to:0.0009035932598635554 To:0.00019120761135127395 ly:0.00014637150161433965 enough:0.00012170237459940836 :0.002559289692726452 -.:0.42668941617012024 voted:0.06896328926086426 heard:0.06006033346056938 noticed:0.02222556807100773 known:0.021068911999464035 :0.40099248103797436 -the:0.9 :0.1 -,:0.15641020238399506 -:0.15134777128696442 as:0.08902063220739365 so:0.061567772179841995 well:0.04735846444964409 :0.4942951574921608 -poem:0.33621785044670105 story:0.18935389816761017 work:0.07205367088317871 poetry:0.04147578775882721 tale:0.02480456978082657 :0.3360942229628563 -that:0.9800782203674316 of:0.004337501712143421 dat:0.00245841545984149 That:0.0019445591606199741 how:0.0009873867966234684 :0.010193916503340006 -seemed:0.3886115550994873 seems:0.28622984886169434 proved:0.06021370738744736 appears:0.05945597589015961 appeared:0.05524497851729393 :0.15024393424391747 -set:0.46164944767951965 cut:0.0716603472828865 put:0.03111550398170948 keep:0.02703101374208927 lay:0.022877367213368416 :0.3856663201004267 -despised:0.06182863190770149 trusted:0.057181209325790405 fought:0.04585254192352295 supported:0.03147875517606735 deceived:0.029934635385870934 :0.7737242262810469 -in:0.1348877251148224 for:0.08872682601213455 of:0.08527211099863052 on:0.06649681180715561 from:0.06344008445739746 :0.5611764416098595 -an:0.9221622943878174 An:0.05047091469168663 a:0.007470789365470409 the:0.004653508774936199 another:0.0018999717431142926 :0.013342521036975086 -to:0.6091544032096863 at:0.13573236763477325 in:0.049579545855522156 for:0.03532304987311363 on:0.03241381794214249 :0.1377968154847622 -never:0.3579637110233307 not:0.30434152483940125 all:0.09122152626514435 always:0.0547160804271698 still:0.02790605090558529 :0.16385110653936863 -in:0.027710331603884697 two:0.02210269682109356 ,:0.021243512630462646 share:0.019637202844023705 first:0.019478458911180496 :0.8898277971893549 -Since:0.1751995086669922 If:0.1539970338344574 While:0.15234914422035217 As:0.10822052508592606 When:0.05996910482645035 :0.35026468336582184 -wheat:0.18435750901699066 it:0.15778380632400513 corn:0.11312684416770935 cotton:0.1110287457704544 hay:0.033916473388671875 :0.3997866213321686 -day:0.39147818088531494 ton:0.1548732966184616 year:0.06689473986625671 acre:0.0654907375574112 gallon:0.0619107224047184 :0.25935232266783714 -own:0.2598412334918976 old:0.06594792753458023 very:0.03208241984248161 little:0.02509303390979767 for:0.02458343654870987 :0.592451948672533 -and:0.48801881074905396 or:0.1857427954673767 ,:0.08857106417417526 but:0.04400521144270897 simply:0.024154776707291603 :0.1695073414593935 -his:0.35568302869796753 tho:0.21021713316440582 had:0.05270440876483917 the:0.02830733358860016 many:0.02224465273320675 :0.33084344305098057 -made:0.130368173122406 ,:0.12119753658771515 whatsoever:0.09724889695644379 even:0.02649267204105854 necessary:0.017097843810915947 :0.6075948774814606 -and:0.6200391054153442 but:0.18073254823684692 although:0.07503915578126907 yet:0.025925716385245323 though:0.022621329873800278 :0.07564214430749416 -tion:0.3681716322898865 ment:0.08652636408805847 dent:0.02105466090142727 ty:0.01342863216996193 ly:0.009924663230776787 :0.5008940473198891 -are:0.8954887986183167 were:0.028623411431908607 is:0.018801629543304443 Is:0.007990958169102669 be:0.003928573336452246 :0.045166628900915384 -sum:0.20957687497138977 same:0.1539151519536972 proceeds:0.14978726208209991 remainder:0.08718112111091614 amount:0.045338790863752365 :0.3542007990181446 -.:0.13515499234199524 united:0.03012748993933201 made:0.023713281378149986 done:0.017893068492412567 successful:0.0131981885060668 :0.7799129793420434 -on:0.05803230032324791 o:0.055410727858543396 rol:0.05156673118472099 rate:0.04628914222121239 oro:0.042388319969177246 :0.7463127784430981 -their:0.14948152005672455 the:0.12941841781139374 its:0.12881271541118622 this:0.08455134928226471 a:0.034446779638528824 :0.47328921779990196 -that:0.6754410862922668 told:0.07276434451341629 and:0.045568469911813736 glad:0.014494473114609718 ,:0.01074980664998293 :0.18098181951791048 -will:0.7266386151313782 do:0.07397794723510742 shall:0.05146321281790733 may:0.0482466034591198 should:0.018650636076927185 :0.08102298527956009 -in:0.5182912349700928 In:0.40830084681510925 dated:0.01488951500505209 on:0.013542184606194496 last:0.006847978103905916 :0.03812824049964547 -is:0.5975437164306641 was:0.28050896525382996 Is:0.065198615193367 are:0.006534953601658344 it:0.0037510443944483995 :0.04646270512603223 -and:0.5595304369926453 but:0.3955371379852295 while:0.006387351080775261 aud:0.0035555267240852118 whereas:0.0034667530562728643 :0.03152279416099191 -A:0.4159815013408661 a:0.2618865370750427 The:0.028076566755771637 A:0.019672347232699394 ,:0.01734868623316288 :0.2570343613624573 -own:0.08172443509101868 peculiar:0.01993805728852749 true:0.019466442987322807 medical:0.019043833017349243 disease:0.016131538897752762 :0.843695692718029 -tons:0.034417953342199326 ton:0.03394227847456932 lots:0.027156151831150055 day:0.025340721011161804 t:0.02289416640996933 :0.8562487289309502 -little:0.016175473108887672 great:0.01352886762470007 old:0.013157510198652744 occasional:0.010830403305590153 same:0.008617483079433441 :0.9376902626827359 -the:0.954016923904419 tho:0.025033878162503242 this:0.0034027453511953354 its:0.0023402278311550617 a:0.0020483159460127354 :0.01315790880471468 -letter:0.6867364048957825 message:0.049296751618385315 notice:0.03793543949723244 note:0.022012541070580482 invitation:0.013104500249028206 :0.1909143626689911 -tho:0.6778374314308167 the:0.22418223321437836 this:0.024125846102833748 a:0.006592086516320705 his:0.006424536928534508 :0.06083786580711603 -a:0.8621215224266052 tho:0.04674066975712776 some:0.01769646815955639 the:0.013442197814583778 with:0.00549627048894763 :0.054502871353179216 -approve:0.0526483915746212 adopt:0.04962778091430664 consider:0.04347369447350502 the:0.0429251454770565 a:0.04256182536482811 :0.7687631621956825 -through:0.416162371635437 of:0.12114296853542328 into:0.048777587711811066 from:0.04050682112574577 out:0.03575028106570244 :0.33765996992588043 -the:0.9 :0.1 -tho:0.1574665904045105 the:0.07359962165355682 o:0.07280143350362778 The:0.04203169420361519 no:0.025192683562636375 :0.6289079766720533 -make:0.5774545073509216 consider:0.197938933968544 find:0.10985654592514038 deem:0.01884373649954796 learn:0.011375151574611664 :0.08453112468123436 -utsch:0.02388801984488964 vey:0.019348042085766792 Paul:0.018171904608607292 es:0.01762455888092518 Paul:0.012238623574376106 :0.908728851005435 -makes:0.7605443596839905 make:0.1337047517299652 renders:0.04738674312829971 made:0.013700325042009354 gives:0.012012765742838383 :0.03265105467289686 -1862:0.14062894880771637 1861:0.13183631002902985 ,:0.12277355045080185 1863:0.11855015158653259 1865:0.0990164652466774 :0.38719457387924194 -should:0.26187556982040405 than:0.1494394987821579 not:0.0816066786646843 must:0.053738683462142944 to:0.041189044713974 :0.4121505245566368 -of:0.933467447757721 ot:0.04009205102920532 in:0.009050004184246063 for:0.004846872296184301 to:0.00418064882978797 :0.008362975902855396 -carry:0.18491046130657196 start:0.13012979924678802 take:0.04977747052907944 get:0.03920522704720497 go:0.02692616917192936 :0.5690508726984262 -in:0.7010583281517029 ,:0.10342623293399811 In:0.10189696401357651 on:0.020048558712005615 with:0.014260443858802319 :0.05930947232991457 -minded:0.09942364692687988 brow:0.022259222343564034 ed:0.017538391053676605 brow:0.017069341614842415 ful:0.0156850703060627 :0.8280243277549744 -the:0.6365482211112976 a:0.17959050834178925 that:0.07712483406066895 this:0.027390746399760246 our:0.008480759337544441 :0.07086493074893951 -tin:0.04988900199532509 wheel:0.017869848757982254 col:0.016635432839393616 lug:0.014516990631818771 ore:0.013986106961965561 :0.8871026188135147 -to:0.9945144653320312 ta:0.001671917038038373 ot:0.0008017387590371072 would:0.00036102026933804154 t:0.0003071510582230985 :0.0023437075433321297 -of:0.9922533631324768 ot:0.0020506223663687706 to:0.0007245512097142637 ol:0.0005939478287473321 and:0.0004370013193693012 :0.003940514143323526 -were:0.5504347681999207 had:0.19976761937141418 suddenly:0.03050096705555916 gradually:0.013927998021245003 was:0.009311127476394176 :0.19605751987546682 -Public:0.13998593389987946 State:0.05238475278019905 Normal:0.05204866826534271 City:0.0445389524102211 public:0.04304526001214981 :0.6679964326322079 -20:0.5594366192817688 25:0.06835439801216125 10:0.0418495275080204 30:0.03429348021745682 40:0.032155949622392654 :0.2639100253582001 -and:0.9716312885284424 ,:0.010510859079658985 east:0.0030241955537348986 north:0.0025648102164268494 west:0.0012785029830411077 :0.010990343638695776 -hundred:0.5831391215324402 -:0.17478297650814056 thousand:0.02306515909731388 per:0.022059887647628784 or:0.020187268033623695 :0.1767655871808529 -small:0.6464923620223999 mere:0.09038469940423965 tiny:0.05509237200021744 modest:0.0162346288561821 little:0.015691518783569336 :0.17610441893339157 -boat:0.7698971033096313 was:0.07555364072322845 -:0.036913249641656876 boat:0.010435827076435089 had:0.010212793946266174 :0.09698738530278206 -the:0.9 :0.1 -fine:0.8017448782920837 penalty:0.10963042825460434 sum:0.03150756657123566 reward:0.013790705241262913 tax:0.0067777023650705814 :0.03654871927574277 -the:0.6571159362792969 tho:0.2320840209722519 th:0.05850674957036972 The:0.0047370740212500095 a:0.0045315600000321865 :0.043024659156799316 -.:0.5851311087608337 stamps:0.060905516147613525 basis:0.04664437845349312 !:0.011433901265263557 ration:0.010443292558193207 :0.28544180281460285 -two:0.08992217481136322 three:0.08980682492256165 six:0.08956784754991531 ten:0.08448775857686996 four:0.07698224484920502 :0.5692331492900848 -for:0.7558644413948059 with:0.11243367940187454 by:0.047042857855558395 without:0.023839252069592476 ,:0.011227000504732132 :0.049592768773436546 -and:0.9774358868598938 ,:0.008156033232808113 &:0.0026780003681778908 or:0.0021973280236124992 .:0.0018368820892646909 :0.007695869426243007 -i:0.22370561957359314 u:0.16553719341754913 if:0.035677094012498856 o:0.029661104083061218 f:0.028036968782544136 :0.5173820201307535 -tion:0.3413429260253906 ty:0.04613190516829491 ment:0.03943989798426628 ing:0.034189268946647644 ble:0.025440160185098648 :0.5134558416903019 -one:0.9662253260612488 because:0.005368860438466072 composed:0.004374169744551182 One:0.002284606918692589 some:0.0018776863580569625 :0.019869350478984416 -ing:0.2939643859863281 and:0.12607958912849426 ,:0.0716991126537323 ing:0.06958673894405365 ly:0.05869964882731438 :0.3799705244600773 -it:0.1225067675113678 him:0.09607169032096863 himself:0.07907956838607788 taxes:0.07616715878248215 money:0.0717516764998436 :0.55442313849926 -the:0.9 :0.1 -ment:0.10687538236379623 ly:0.08404695987701416 tion:0.03925412893295288 ty:0.030514810234308243 ter:0.02319304458796978 :0.7161156740039587 -hereby:0.27158698439598083 be:0.04702281206846237 are:0.04665553942322731 herein:0.03738852217793465 duly:0.030961135402321815 :0.566385006532073 -their:0.38836511969566345 the:0.3603682518005371 its:0.08653391152620316 any:0.056443266570568085 an:0.03310529887676239 :0.07518415153026581 -the:0.6093266010284424 a:0.22574883699417114 that:0.08344976603984833 some:0.040252428501844406 this:0.016438346356153488 :0.024784021079540253 -more:0.23423177003860474 very:0.1198321133852005 ,:0.09445524215698242 and:0.09289999306201935 that:0.021981311962008476 :0.4365995693951845 -he:0.20326665043830872 the:0.15932945907115936 ,:0.0954805463552475 a:0.0419832244515419 Officer:0.02799452841281891 :0.4719455912709236 -most:0.8044964671134949 very:0.021537674590945244 same:0.017839616164565086 best:0.015583780594170094 more:0.014863908290863037 :0.12567855324596167 -majority:0.12885524332523346 council:0.10135582834482193 congress:0.07606129348278046 convention:0.050626784563064575 party:0.04795140400528908 :0.5951494462788105 -find:0.4122677445411682 get:0.1370919942855835 give:0.11100947111845016 bring:0.08505191653966904 have:0.034019485116004944 :0.22055938839912415 -of:0.3267550766468048 trout:0.2750200033187866 and:0.05292735621333122 in:0.018285291269421577 est:0.017879044637084007 :0.30913322791457176 -been:0.9322451949119568 be:0.018694676458835602 bene:0.005221876315772533 not:0.005019171629101038 bee:0.0038229685742408037 :0.034996112110093236 -the:0.9515341520309448 those:0.005307911895215511 our:0.004987729247659445 all:0.0039349389262497425 tho:0.003297011600807309 :0.030938256299123168 -in:0.45732948184013367 In:0.44931572675704956 with:0.022084353491663933 for:0.013860384933650494 to:0.00934920459985733 :0.048060848377645016 -the:0.18898624181747437 The:0.12450078129768372 his:0.08618622273206711 and:0.06821175664663315 her:0.06208014860749245 :0.4700348488986492 -door:0.20377127826213837 walls:0.12099016457796097 floor:0.05324108153581619 roof:0.04127611964941025 doors:0.0326407365500927 :0.5480806194245815 -bottom:0.3432876765727997 top:0.07555866241455078 end:0.05742430314421654 edge:0.05742134898900986 head:0.0407845601439476 :0.42552344873547554 -:0.05916623771190643 all:0.05556049570441246 finding:0.04458658769726753 tho:0.0245790034532547 of:0.01614939235150814 :0.7999582830816507 -parents:0.3107058107852936 mothers:0.1880674958229065 fathers:0.1580013632774353 mother:0.11749729514122009 father:0.04346981644630432 :0.1822582185268402 -and:0.35515740513801575 about:0.11802039295434952 being:0.11295411735773087 all:0.03696221858263016 or:0.025782238692045212 :0.3511236272752285 -November:0.22377340495586395 October:0.16841359436511993 the:0.11107037216424942 September:0.06913077086210251 May:0.05674910917878151 :0.3708627484738827 -and:0.2838820517063141 among:0.11978096514940262 of:0.11824183911085129 to:0.08863458037376404 even:0.05654303357005119 :0.3329175300896168 -to:0.7331117987632751 they:0.1718398779630661 will:0.025286313146352768 may:0.013150207698345184 can:0.010770558379590511 :0.04584124404937029 -front:0.2860981822013855 spite:0.16916713118553162 fear:0.16562515497207642 view:0.057949248701334 favor:0.03646732494235039 :0.2846929579973221 -the:0.9 :0.1 -the:0.8655185103416443 tho:0.011732351034879684 th:0.008856752887368202 a:0.00697693694382906 May:0.006241656839847565 :0.1006737919524312 -making:0.34092608094215393 preparing:0.05889424681663513 completing:0.056417230516672134 continuing:0.05214269086718559 all:0.03804529458284378 :0.45357445627450943 -ity:0.17243340611457825 s:0.05818931385874748 ty:0.048660457134246826 ence:0.04056999459862709 ies:0.03613428771495819 :0.6440125405788422 -able:0.05873984470963478 ly:0.03711925446987152 ment:0.02515929564833641 worthy:0.021304290741682053 er:0.01810995116829872 :0.8395673632621765 -,:0.787801206111908 ;:0.07314608246088028 .:0.03058364987373352 crop:0.0053412714041769505 a:0.0038905038964003325 :0.09923728625290096 -the:0.47951799631118774 tho:0.195253387093544 a:0.14454050362110138 their:0.02735074795782566 our:0.009103254415094852 :0.14423411060124636 -,:0.17367427051067352 ly:0.0789066031575203 that:0.03138583153486252 of:0.02130834013223648 o:0.01425703801214695 :0.6804679166525602 -got:0.0666021928191185 back:0.04145342856645584 came:0.033414747565984726 straight:0.027503501623868942 went:0.023724200204014778 :0.8073019292205572 -,:0.7856229543685913 *,:0.052312035113573074 and:0.015216166153550148 ,:0.007023880258202553 ie:0.005928174126893282 :0.13389678997918963 -body:0.38074856996536255 corpse:0.3010725677013397 deceased:0.057662058621644974 victim:0.050860729068517685 skeleton:0.023977454751729965 :0.1856786198914051 -,:0.45917531847953796 Bride:0.016881927847862244 and:0.011136363260447979 Daisy:0.008773577399551868 being:0.007847479544579983 :0.49618533346801996 -the:0.12076041847467422 wool:0.03142647072672844 American:0.016019415110349655 paper:0.014927465468645096 iron:0.014196990989148617 :0.802669239230454 -that:0.9592450857162476 when:0.01158268190920353 which:0.004929747898131609 and:0.004460618831217289 where:0.004309860989451408 :0.015472004655748606 -medicine:0.07854199409484863 cure:0.031934600323438644 tuberculosis:0.03189041092991829 disease:0.03157101199030876 Diseases:0.019011804834008217 :0.8070501778274775 -trace:0.13201501965522766 drop:0.1247786283493042 touch:0.04918853938579559 change:0.04436095058917999 shade:0.04248878359794617 :0.6071680784225464 -the:0.9 :0.1 -that:0.7574967741966248 which:0.15443776547908783 who:0.04610319063067436 of:0.007762423250824213 having:0.006650179624557495 :0.027549666818231344 -year:0.8535010814666748 years:0.12182676047086716 month:0.009837377816438675 months:0.006511454936116934 -:0.0031316070817410946 :0.005191718228161335 -a:0.7904227375984192 the:0.15880167484283447 any:0.026594465598464012 an:0.00445465836673975 some:0.0035577197559177876 :0.01616874383762479 -dele:0.0425383597612381 per:0.02809678576886654 impe:0.024581190198659897 ign:0.014609402976930141 no:0.014405378140509129 :0.8757688831537962 -the:0.5986480712890625 his:0.14299970865249634 tho:0.07651813328266144 a:0.019327636808156967 The:0.009588235057890415 :0.15291821490973234 -living:0.11556556075811386 scarce:0.0570206381380558 rare:0.056721579283475876 common:0.052065394818782806 good:0.04358511045575142 :0.6750417165458202 -religion:0.32284876704216003 conscience:0.1980562061071396 faith:0.08683831244707108 will:0.04935009032487869 own:0.024429578334093094 :0.3184770457446575 -natives:0.14267361164093018 north:0.039821118116378784 native:0.03386220708489418 tribe:0.023459667339920998 south:0.0179623831063509 :0.742221012711525 -the:0.37699756026268005 tho:0.1303919106721878 her:0.046815771609544754 two:0.020946156233549118 th:0.018714498728513718 :0.40613410249352455 -ied:0.13320204615592957 ended:0.08079258352518082 ired:0.02107688970863819 ide:0.015890564769506454 ainted:0.014141363091766834 :0.7348965527489781 -the:0.25423479080200195 tho:0.24805833399295807 what:0.1439731866121292 a:0.05059021711349487 great:0.04235493019223213 :0.26078854128718376 -began:0.4406592845916748 started:0.07702091336250305 continued:0.07516565173864365 seemed:0.06144286319613457 proceeded:0.05019561946392059 :0.29551566764712334 -the:0.7853707075119019 these:0.07999520003795624 your:0.061695411801338196 all:0.006132306531071663 this:0.0039612483233213425 :0.0628451257944107 -at:0.4057595431804657 In:0.06260935962200165 the:0.05461776256561279 about:0.04008929058909416 after:0.03722235560417175 :0.39970168843865395 -join:0.3876900374889374 .:0.11404111236333847 -:0.04513346031308174 ;:0.03037121146917343 home:0.023396246135234833 :0.39936793223023415 -to:0.9951173067092896 To:0.0012519481824710965 to:0.0006188816041685641 ,:0.0003889314830303192 and:0.0003774606448132545 :0.002245471376227215 -Territory:0.715075671672821 State:0.11724622547626495 Territories:0.0672617182135582 state:0.009029141627252102 District:0.005608406849205494 :0.08577883616089821 -half:0.05298587679862976 one:0.026558926329016685 two:0.02343805693089962 n:0.022001760080456734 three:0.021786553785204887 :0.8532288260757923 -bedrooms:0.6290020942687988 rooms:0.2345820665359497 nights:0.009381779469549656 years:0.008977334015071392 persons:0.008672417141497135 :0.10938430856913328 -00:0.05708294361829758 45:0.047751884907484055 50:0.029500052332878113 40:0.025002796202898026 30:0.022427095100283623 :0.8182352278381586 -within:0.30072981119155884 in:0.2859669625759125 for:0.17277434468269348 after:0.15721368789672852 In:0.035179316997528076 :0.04813587665557861 -Alexandria:0.15970346331596375 Philadelphia:0.06493277102708817 Baltimore:0.05003223568201065 Portland:0.04009895399212837 Burlington:0.037870220839977264 :0.6473623551428318 -under:0.9861895442008972 in:0.0037325338926166296 Under:0.0017284618224948645 at:0.0013644612627103925 with:0.0010081777581945062 :0.0059768210630863905 -is:0.49768105149269104 tells:0.16151560842990875 was:0.07841476798057556 comes:0.060375675559043884 came:0.05594993755221367 :0.1460629589855671 -the:0.9 :0.1 -it:0.14302735030651093 very:0.13356061279773712 most:0.11457355320453644 this:0.09972023963928223 something:0.07093695551156998 :0.4381812885403633 -tell:0.17985376715660095 showing:0.1655431091785431 reminding:0.1438642144203186 telling:0.12997891008853912 remind:0.09348103404045105 :0.2872789651155472 -And:0.37276262044906616 What:0.13294455409049988 But:0.07107286900281906 How:0.061884187161922455 Or:0.04071776941418648 :0.32061799988150597 -.:0.9944637417793274 .:0.0011772974394261837 ,:0.0007014406728558242 ..:0.0005780489882454276 !:0.0003760539984796196 :0.0027034171216655523 -ly:0.3280145227909088 ed:0.14152440428733826 ing:0.0693642646074295 been:0.04000057280063629 :0.024099044501781464 :0.39699719101190567 -.:0.3312828540802002 .:0.04887848347425461 ?:0.048577819019556046 think:0.024508291855454445 !:0.019579138606786728 :0.527173412963748 -Ernest:0.34087011218070984 Dorothy:0.08769693970680237 Eva:0.02814509905874729 ,:0.019753774628043175 him:0.018340181559324265 :0.5051938928663731 -,:0.5344747304916382 and:0.14883115887641907 ;:0.0768827497959137 .:0.05099514499306679 ;:0.014273660257458687 :0.17454255558550358 -,:0.11302418261766434 as:0.05167005583643913 to:0.04923967644572258 of:0.04185813292860985 *:0.035545479506254196 :0.7086624726653099 -on:0.5971540212631226 from:0.10175708681344986 On:0.050467465072870255 to:0.04072630777955055 .:0.025514325127005577 :0.1843807939440012 -labor:0.15773919224739075 living:0.10794860869646072 production:0.08028718084096909 life:0.05523943901062012 sale:0.047300733625888824 :0.5514848455786705 -that:0.3609948456287384 this:0.23319274187088013 tho:0.17227217555046082 the:0.16447672247886658 which:0.02750270813703537 :0.04156080633401871 -the:0.9529984593391418 their:0.013289788737893105 tho:0.006624131929129362 a:0.0025353243108838797 our:0.002122611738741398 :0.02242968394421041 -some:0.5497106909751892 the:0.15572254359722137 certain:0.05648121237754822 several:0.05224236100912094 all:0.04413817450404167 :0.14170501753687859 -this:0.7277759313583374 that:0.15266335010528564 any:0.03023563325405121 the:0.022504189983010292 such:0.01962187886238098 :0.04719901643693447 -ail:0.12147606164216995 sickness:0.10756179690361023 or:0.04906293377280235 :0.03767666593194008 disease:0.03355835750699043 :0.650664184242487 -John:0.10520727932453156 Judge:0.08876466751098633 Henry:0.050542011857032776 James:0.047265321016311646 William:0.041337981820106506 :0.6668827384710312 -conform:0.2776639461517334 adhere:0.04476083442568779 belong:0.040632762014865875 aspire:0.03410278260707855 go:0.03385153040289879 :0.5689881443977356 -of:0.6119928359985352 ot:0.024426914751529694 in:0.023005466908216476 to:0.017985358834266663 ,:0.01664705201983452 :0.3059423714876175 -not:0.3800714313983917 never:0.122426338493824 soon:0.06770690530538559 all:0.0434846356511116 doubtless:0.03952183574438095 :0.34678885340690613 -an:0.5417571067810059 the:0.2432723194360733 its:0.09284693747758865 their:0.023989655077457428 any:0.023237714543938637 :0.07489626668393612 -on:0.33343368768692017 with:0.1702502816915512 upon:0.09579099714756012 in:0.05571582540869713 under:0.047731272876262665 :0.2970779351890087 -a:0.9179930090904236 the:0.021522315219044685 some:0.008286015130579472 their:0.0055933804251253605 that:0.0052398680709302425 :0.041365412063896656 -and:0.942747950553894 ,:0.04776974022388458 then:0.0024885600432753563 aud:0.0017630670918151736 .:0.0007412012782879174 :0.004489480808842927 -I:0.39991694688796997 you:0.33699193596839905 we:0.05371587350964546 one:0.03468772768974304 1:0.01762133277952671 :0.15706618316471577 -stock:0.12511228024959564 revenue:0.0506608821451664 value:0.05022279545664787 profit:0.04711313545703888 business:0.028685349971055984 :0.6982055567204952 -the:0.5357412695884705 that:0.05389361083507538 common:0.046314626932144165 tho:0.023958973586559296 's:0.018479574471712112 :0.3216119445860386 -be:0.9321222305297852 bo:0.01525252964347601 he:0.012565762735903263 lie:0.007217115256935358 have:0.0043877833522856236 :0.02845457848161459 -is:0.7451841235160828 Is:0.10677726566791534 's:0.06367721408605576 was:0.039279960095882416 keeps:0.0065454114228487015 :0.03853602521121502 -no:0.8694930672645569 not:0.03526366874575615 any:0.020116867497563362 nothing:0.01644064113497734 much:0.00814716424793005 :0.05053859110921621 -and:0.8066419363021851 ,:0.05511518940329552 of:0.03656574338674545 to:0.010859284549951553 having:0.006457640789449215 :0.0843602055683732 -shall:0.744611382484436 may:0.09578901529312134 will:0.05030512064695358 ,:0.012482373975217342 must:0.009762756526470184 :0.08704935107380152 -great:0.034778423607349396 old:0.032994408160448074 late:0.029434826225042343 present:0.024485714733600616 world:0.024415411055088043 :0.8538912162184715 -went:0.41315168142318726 were:0.19808191061019897 came:0.07371637225151062 continued:0.05318926274776459 started:0.019743794575333595 :0.24211697839200497 -to:0.8764784932136536 can:0.058947015553712845 will:0.014132761396467686 ,:0.0049108718521893024 could:0.004824004601687193 :0.04070685338228941 -of:0.7816675901412964 to:0.1448390781879425 ot:0.029185768216848373 ,:0.018708717077970505 and:0.004876296501606703 :0.020722549874335527 -mental:0.20678117871284485 social:0.13396354019641876 spiritual:0.1043936088681221 moral:0.09862414747476578 intellectual:0.061638299375772476 :0.39459922537207603 -has:0.5433114171028137 is:0.2921055853366852 's:0.037822313606739044 Is:0.029744403436779976 was:0.0276773851364851 :0.06933889538049698 -not:0.2433885931968689 of:0.19453954696655273 quite:0.061056703329086304 hardly:0.04743116348981857 such:0.034377291798591614 :0.4192067012190819 -an:0.4940747618675232 the:0.2583359181880951 every:0.0937880203127861 ample:0.04876286908984184 no:0.04331690073013306 :0.06172152981162071 -had:0.398663192987442 ,:0.19067147374153137 and:0.09290760010480881 which:0.0648830309510231 that:0.021124346181750298 :0.2317503560334444 -votes:0.44228821992874146 vote:0.3051798939704895 support:0.10800952464342117 preference:0.012377254664897919 ballots:0.0073408023454248905 :0.12480430444702506 -ing:0.3795202970504761 ed:0.1129361242055893 u:0.05766705796122551 :0.02094987779855728 o:0.019157666712999344 :0.4097689762711525 -An:0.4978480339050293 The:0.38330087065696716 One:0.02349845878779888 Some:0.018641341477632523 Another:0.014678479172289371 :0.062032816000282764 -Did:0.9705610871315002 did:0.01046922616660595 Do:0.006334857549518347 Did:0.006192668806761503 Would:0.0018209017580375075 :0.004621258587576449 -endowed:0.39719200134277344 armed:0.06783538311719894 charged:0.0418776236474514 equipped:0.02997414767742157 regarded:0.028891662135720253 :0.4342291820794344 -have:0.9438304901123047 are:0.035424116998910904 has:0.0076972246170043945 had:0.005245998501777649 were:0.0018829627661034465 :0.005919207003898919 -to:0.8369814157485962 and:0.04530200734734535 or:0.04134688153862953 but:0.008308259770274162 nor:0.006778734270483255 :0.06128270132467151 -.:0.7045944333076477 ;:0.19770292937755585 ;:0.04578004404902458 .:0.017292380332946777 ::0.0063634952530264854 :0.028266717679798603 -either:0.22207283973693848 both:0.061741072684526443 being:0.032202981412410736 all:0.030007923021912575 ,:0.023159924894571304 :0.6308152582496405 -ing:0.8888418674468994 ed:0.02558877132833004 ter:0.00812759343534708 er:0.005815718322992325 ment:0.0024451427161693573 :0.06918090675026178 -u:0.03845014423131943 er:0.03310316428542137 ing:0.02380301244556904 t:0.0230326596647501 ir:0.02093512751162052 :0.8606758918613195 -be:0.8154136538505554 bo:0.08456869423389435 have:0.02071257494390011 remain:0.010775445029139519 he:0.009356353431940079 :0.059173278510570526 -enemies:0.10653652995824814 sons:0.040838710963726044 enemy:0.025877540931105614 dying:0.02213015966117382 men:0.017499620094895363 :0.787117438390851 -sense:0.07497186958789825 -:0.04958874359726906 er:0.030851252377033234 good:0.018955640494823456 and:0.018463395535945892 :0.8071690984070301 -happy:0.17032407224178314 devoted:0.07425099611282349 good:0.065432108938694 faithful:0.06052063778042793 beautiful:0.050906311720609665 :0.5785658732056618 -now:0.4425550401210785 rapidly:0.14055083692073822 being:0.055707041174173355 still:0.013948492705821991 in:0.013545424677431583 :0.33369316440075636 -deem:0.41376522183418274 declare:0.19297386705875397 hold:0.11994332820177078 consider:0.06262321770191193 proclaim:0.029590001329779625 :0.18110436387360096 -to:0.6595028638839722 in:0.12248177081346512 with:0.059778641909360886 for:0.03279224783182144 on:0.020225659012794495 :0.10521881654858589 -of:0.9825054407119751 to:0.005008140113204718 ot:0.002906846348196268 worth:0.0016263517318293452 with:0.0015132311964407563 :0.006439989898353815 -the:0.9 :0.1 -the:0.9 :0.1 -our:0.48631933331489563 the:0.23442524671554565 American:0.059117868542671204 these:0.020258957520127296 their:0.017939269542694092 :0.18193932436406612 -be:0.35896405577659607 lie:0.051534026861190796 was:0.0480601042509079 ,:0.03994020074605942 stand:0.022714653983712196 :0.4787869583815336 -The:0.9702394604682922 A:0.017922131344676018 the:0.0027728904969990253 The:0.0023736320436000824 This:0.0012467348715290427 :0.0054451507749035954 -Island:0.22175034880638123 county:0.10258977115154266 County:0.05185632035136223 town:0.046714793890714645 country:0.03648293763399124 :0.540605828166008 -and:0.565325140953064 having:0.25365960597991943 which:0.04139536991715431 who:0.03519070893526077 he:0.014697255566716194 :0.08973191864788532 -to:0.9909994006156921 and:0.003693187143653631 or:0.0014743311330676079 ot:0.0007878757314756513 for:0.00034781990689225495 :0.002697385469218716 -,:0.5838207006454468 noon:0.04637005925178528 proceeding:0.0384170264005661 arriving:0.02745567262172699 meeting:0.02220294252038002 :0.28173359856009483 -Kansas:0.5146098136901855 new:0.13395419716835022 old:0.04593294486403465 Missouri:0.02146584913134575 own:0.018466094508767128 :0.2655711006373167 -Red:0.2566705346107483 North:0.18749570846557617 Black:0.08924210071563721 Arctic:0.056449588388204575 White:0.03440222144126892 :0.37573984637856483 -just:0.18605029582977295 far:0.08369381725788116 directly:0.06536538153886795 well:0.04670793563127518 way:0.03850449621677399 :0.5796780735254288 -,:0.14813192188739777 made:0.0631478801369667 .:0.017082983627915382 erected:0.013725333847105503 laid:0.012204566039144993 :0.7457073144614697 -1:0.19169975817203522 .:0.058075904846191406 2:0.05217650160193443 ":0.04077877849340439 8:0.03580614924430847 :0.6214629076421261 -along:0.9083243608474731 on:0.023923149332404137 down:0.01501583680510521 across:0.006305997259914875 thence:0.0038023267406970263 :0.04262832901440561 -except:0.5531532764434814 and:0.08026536554098129 save:0.0775473415851593 besides:0.063425712287426 but:0.05873493477702141 :0.16687336936593056 -middle:0.42914891242980957 heat:0.10317298769950867 light:0.08638201653957367 air:0.039801545441150665 midst:0.02024104632437229 :0.32125349156558514 -rect:0.38707852363586426 fort:0.035465873777866364 dent:0.016772285103797913 vert:0.010738869197666645 tor:0.010297002270817757 :0.5396474460139871 -his:0.6733306646347046 the:0.20222258567810059 a:0.04753296449780464 this:0.025457998737692833 that:0.010003037750720978 :0.04145274870097637 -90:0.09497695416212082 80:0.08522029966115952 95:0.08232177048921585 85:0.044582437723875046 75:0.04316411912441254 :0.6497344188392162 -General:0.26213258504867554 Episcopal:0.05165281146764755 Methodist:0.03402163088321686 present:0.028637530282139778 annual:0.023015445098280907 :0.6005399972200394 -and:0.975150465965271 or:0.011448351666331291 aud:0.006489703897386789 ,:0.0028776307590305805 of:0.0012292804894968867 :0.002804567222483456 -the:0.9 :0.1 -and:0.6194632053375244 &:0.05690651014447212 .:0.022111190482974052 ,:0.011202692985534668 or:0.009967492893338203 :0.28034890815615654 -the:0.8053710460662842 a:0.062047190964221954 every:0.05592179670929909 tho:0.029303062707185745 this:0.008671415969729424 :0.03868548758327961 -interest:0.057886768132448196 aid:0.05558375269174576 sickness:0.02372274361550808 use:0.022686388343572617 assistance:0.01960003934800625 :0.8205203078687191 -and:0.5421544909477234 and:0.024200664833188057 And:0.018690714612603188 except:0.010464691556990147 or:0.009346092119812965 :0.39514334592968225 -.:0.9416429400444031 ,:0.005745294038206339 ::0.003877112176269293 ;:0.003856089897453785 !:0.003777310950681567 :0.04110125289298594 -of:0.95306795835495 and:0.007856136187911034 ot:0.004940538667142391 ful:0.004404888488352299 -:0.003420354798436165 :0.02631012350320816 -no:0.6303666234016418 little:0.05565430596470833 the:0.04296216741204262 an:0.039844613522291183 sufficient:0.02187875658273697 :0.20929353311657906 -,:0.4291307330131531 and:0.20495781302452087 .:0.024162061512470245 width:0.01853857934474945 -:0.018035179004073143 :0.3051756341010332 -lent:0.15734855830669403 devoted:0.10616399347782135 used:0.08033934980630875 put:0.07452436536550522 appropriated:0.040454719215631485 :0.5411690138280392 -of:0.35703733563423157 was:0.12065344303846359 in:0.06361701339483261 ol:0.04190120846033096 is:0.028557250276207924 :0.38823374919593334 -deck:0.058657675981521606 Queen:0.0371602363884449 ship:0.03433520346879959 shore:0.03108077682554722 board:0.026513421908020973 :0.8122526854276657 -our:0.2946307361125946 the:0.14293056726455688 these:0.11379454284906387 such:0.07101866602897644 both:0.045197051018476486 :0.3324284367263317 -middle:0.1736668050289154 beginning:0.16371561586856842 end:0.05320342630147934 course:0.04476051777601242 spring:0.04444083198904991 :0.5202128030359745 -hundred:0.39049240946769714 day:0.1560642123222351 year:0.1383894979953766 week:0.13791465759277344 hour:0.06231311708688736 :0.11482610553503036 -claims:0.11541523039340973 applications:0.0792934000492096 licenses:0.04735380411148071 application:0.041109222918748856 fees:0.0407664030790329 :0.6760619394481182 -,:0.1118217259645462 appointed:0.03992297500371933 that:0.03098822571337223 member:0.026175858452916145 one:0.02580973692238331 :0.7652814779430628 -medicine:0.16375485062599182 remedy:0.0920405387878418 ,:0.07619325071573257 medicines:0.06455259770154953 remedies:0.058752331882715225 :0.544706430286169 -the:0.5002492666244507 Mount:0.13094112277030945 Prince:0.06224138289690018 King:0.05299442261457443 both:0.016942251473665237 :0.23663155362010002 -between:0.718514621257782 about:0.12833000719547272 some:0.023152807727456093 over:0.008647068403661251 both:0.007278576027601957 :0.114076919388026 -house:0.2351909875869751 property:0.08932020515203476 building:0.0757545605301857 place:0.07224711775779724 hotel:0.055312175303697586 :0.4721749536693096 -south:0.2296336144208908 north:0.22105225920677185 west:0.19338896870613098 east:0.16610310971736908 left:0.029994729906320572 :0.1598273180425167 -frequent:0.14996680617332458 many:0.0454338900744915 short:0.044394660741090775 long:0.04154867306351662 these:0.040519602596759796 :0.6781363673508167 -mother:0.09140094369649887 tree:0.03348845615983009 child:0.03165408596396446 girl:0.024312909692525864 daughter:0.0206968504935503 :0.7984467539936304 -the:0.8221049904823303 tho:0.09059292078018188 a:0.018849242478609085 the:0.01868217997252941 that:0.0036458251997828484 :0.04612484108656645 -,:0.5936993360519409 nature:0.03463973477482796 severity:0.01575743407011032 origin:0.01423067506402731 character:0.01325487345457077 :0.3284179465845227 -the:0.8860265612602234 a:0.09855081140995026 tho:0.009868450462818146 tha:0.0004557379870675504 an:0.00044194309157319367 :0.004656495788367465 -no:0.3153451383113861 by:0.10894918441772461 the:0.0888967216014862 any:0.0826423317193985 without:0.06391911208629608 :0.3402475118637085 -is:0.8192784786224365 Is:0.03689800947904587 be:0.03615453466773033 will:0.013386419042944908 becomes:0.010369102470576763 :0.0839134557172656 -far:0.5050626993179321 about:0.051024556159973145 much:0.030828801915049553 near:0.0259272251278162 than:0.022848382592201233 :0.36430833488702774 -close:0.042121559381484985 as:0.016507787629961967 or:0.014504177495837212 f:0.012649091891944408 as:0.01213155873119831 :0.9020858248695731 -with:0.5970996022224426 in:0.14117518067359924 their:0.04164102301001549 through:0.03694872930645943 the:0.02205669693648815 :0.16107876785099506 -,:0.08863895386457443 the:0.06316599994897842 !:0.024059055373072624 .:0.021502384915947914 Lord:0.015767769888043404 :0.7868658360093832 -would:0.8305450677871704 could:0.10150893777608871 'd:0.02024160325527191 might:0.019743727520108223 did:0.004218348301947117 :0.023742315359413624 -friendly:0.03586528077721596 ,:0.02704167366027832 pleasant:0.02112939953804016 timid:0.018899856135249138 charming:0.018429391086101532 :0.8786343988031149 -tho:0.3297511637210846 the:0.3127570152282715 a:0.09915675967931747 his:0.019425664097070694 him:0.013107484206557274 :0.22580191306769848 -,:0.06127654388546944 and:0.029582016170024872 ng:0.022395769134163857 .:0.014896734617650509 -:0.014484638348221779 :0.8573642978444695 -had:0.4336862862110138 having:0.1440892368555069 which:0.12459125369787216 was:0.09129715710878372 being:0.046399928629398346 :0.15993613749742508 -two:0.16409176588058472 three:0.10732518881559372 ten:0.07965043187141418 five:0.06827210634946823 six:0.06187489628791809 :0.5187856107950211 -her:0.17794808745384216 the:0.1429598033428192 he:0.06158149242401123 his:0.054557446390390396 tho:0.051709599792957306 :0.5112435705959797 -,:0.8729650378227234 ;:0.06932435929775238 ;:0.020413672551512718 .:0.0058351438492536545 ,:0.002927484456449747 :0.02853430202230811 -States:0.9863328337669373 State:0.0029861361254006624 District:0.0008657369762659073 's:0.0007987897261045873 district:0.000736659683752805 :0.008279843721538782 -a:0.24796311557292938 to:0.0644061416387558 the:0.047732025384902954 an:0.040337204933166504 my:0.029040835797786713 :0.5705206766724586 -more:0.8973791599273682 less:0.06377675384283066 better:0.0219175536185503 not:0.0047147879377007484 as:0.0012512331595644355 :0.010960511513985693 -,:0.22242218255996704 duty:0.17624330520629883 duties:0.0946652889251709 troops:0.0497128963470459 work:0.033935438841581345 :0.423020888119936 -of:0.6034611463546753 ,:0.15955975651741028 or:0.08829880505800247 in:0.02671240270137787 and:0.024875769391655922 :0.09709211997687817 -tion:0.17165139317512512 n:0.07572188228368759 ment:0.057916685938835144 t:0.035250164568424225 o:0.022861763834953308 :0.6365981101989746 -interesting:0.07458098977804184 encouraging:0.05831173062324524 amusing:0.04297513887286186 unusual:0.036539964377880096 elegant:0.036296430975198746 :0.7512957453727722 -an:0.8748401999473572 one:0.041473425924777985 the:0.02675561048090458 1:0.014670123346149921 half:0.010290907695889473 :0.031969732604920864 -or:0.4555129110813141 and:0.43978580832481384 not:0.01229359395802021 while:0.00872598122805357 to:0.007514694705605507 :0.07616701070219278 -ended:0.151490718126297 -:0.06688103824853897 ited:0.05338586866855621 ared:0.03941423073410988 usted:0.03837023302912712 :0.6504579111933708 -of:0.8534330725669861 about:0.10576595366001129 at:0.019745808094739914 for:0.0022146301344037056 upon:0.0010666748275980353 :0.01777386071626097 -to:0.9967028498649597 will:0.0009605232626199722 To:0.0003664880059659481 ,:0.00017867449787445366 to:0.0001712165103526786 :0.0016202478582272306 -u:0.2816683351993561 he:0.05210544168949127 ie:0.023235267028212547 the:0.020619669929146767 ad:0.01667041704058647 :0.6057008691132069 -.:0.5252156853675842 ,:0.020061736926436424 !:0.01888371631503105 life:0.012613070197403431 existence:0.010733231902122498 :0.41249255929142237 -and:0.3915475904941559 wherein:0.16585636138916016 that:0.07483463734388351 whereas:0.06485273689031601 aud:0.026526059955358505 :0.27638261392712593 -of:0.9644683599472046 ot:0.010823599062860012 ol:0.004953458439558744 on:0.003223495092242956 in:0.00174859375692904 :0.014782493701204658 -the:0.9452510476112366 that:0.029063958674669266 a:0.006065671797841787 this:0.005299197975546122 tha:0.001709916046820581 :0.012610207893885672 -hope:0.05008776858448982 opening:0.041139550507068634 prospect:0.03970109671354294 face:0.03053528256714344 mood:0.022278474643826485 :0.8162578269839287 -,:0.8460840582847595 .:0.013991442508995533 ;:0.007369738072156906 boat:0.007234720978885889 wheel:0.001554224407300353 :0.1237658157479018 -we:0.9829517006874084 I:0.002960427198559046 it:0.0025007901713252068 We:0.001860289485193789 he:0.0013860523467883468 :0.008340740110725164 -a:0.7275885939598083 per:0.23841142654418945 each:0.010094882920384407 every:0.00412406912073493 this:0.0036290145944803953 :0.016152012860402465 -will:0.17690710723400116 may:0.08507221192121506 are:0.06939268112182617 can:0.06606464087963104 would:0.03905076906085014 :0.5635125897824764 -exceeding:0.991144597530365 exceed:0.002771182684227824 over:0.002524750540032983 above:0.001233185874298215 under:0.00047678267583251 :0.0018495006952434778 -the:0.7048158645629883 their:0.22904464602470398 this:0.02801707200706005 that:0.006178056821227074 our:0.005989371798932552 :0.025954988785088062 -the:0.960588276386261 tho:0.0034245667047798634 this:0.0032922837417572737 an:0.0030813736375421286 their:0.0023182586301118135 :0.027295240899547935 -are:0.8904282450675964 is:0.043257150799036026 were:0.04210799187421799 will:0.0030559091828763485 be:0.002524184063076973 :0.01862651901319623 -,:0.2043653279542923 house:0.143921360373497 door:0.0414871945977211 room:0.03735502064228058 gate:0.028477778658270836 :0.5443933177739382 -of:0.9856258034706116 in:0.008113747462630272 from:0.0025615666527301073 of:0.0005304670776240528 like:0.0004529979487415403 :0.0027154173876624554 -the:0.9 :0.1 -Some:0.3983982503414154 Many:0.2294599711894989 Most:0.15628543496131897 All:0.09097349643707275 Parts:0.019895553588867188 :0.10498729348182678 -his:0.41552335023880005 the:0.22489698231220245 your:0.03138519823551178 dollar:0.02117917314171791 their:0.014130966737866402 :0.2928843293339014 -known:0.20142444968223572 unknown:0.2009323239326477 mystery:0.0466853603720665 strange:0.019587131217122078 peculiar:0.0186910443007946 :0.5126796904951334 -ty:0.025139551609754562 ks:0.02512960322201252 ts:0.022032858803868294 ns:0.02003614604473114 ors:0.019083630293607712 :0.8885782100260258 -and:0.8815845251083374 to:0.029751064255833626 which:0.027252934873104095 that:0.02713320218026638 ,:0.019768819212913513 :0.014509454369544983 -cannot:0.7797664999961853 will:0.04902460798621178 can:0.03834234178066254 to:0.019629573449492455 must:0.01718539372086525 :0.09605158306658268 -been:0.9084064960479736 be:0.025871921330690384 he:0.011007232591509819 been:0.010056638158857822 bo:0.005778721533715725 :0.03887899033725262 -time:0.3682746887207031 last:0.07997623085975647 moment:0.07422249764204025 end:0.06370614469051361 first:0.03498680889606476 :0.3788336291909218 -i:0.023482507094740868 the:0.022362248972058296 n:0.022342968732118607 .:0.02030479721724987 l:0.019473847001791 :0.8920336309820414 -.:0.6873692870140076 stream:0.018842065706849098 state:0.017125865444540977 condition:0.014254662208259106 heart:0.00844514835625887 :0.2539629712700844 -con:0.375082790851593 -:0.0552433580160141 ac:0.04347715899348259 cons:0.030693011358380318 in:0.02402317151427269 :0.4714805092662573 -by:0.657012403011322 to:0.29797273874282837 on:0.005399614106863737 for:0.004864546936005354 against:0.003773541422560811 :0.030977155780419707 -of:0.9568659067153931 and:0.006175557617098093 in:0.004496611654758453 for:0.002931371796876192 to:0.002518860623240471 :0.027011691592633724 -Then:0.1166374608874321 Thus:0.11361785233020782 But:0.05646699294447899 There:0.05060355365276337 As:0.04910632222890854 :0.6135678179562092 -in:0.6095834374427795 dated:0.18980664014816284 on:0.04825033247470856 In:0.025522440671920776 last:0.0113599244505167 :0.11547722481191158 -acceptance:0.16091793775558472 resignation:0.12843452394008636 rejection:0.10137088596820831 receipt:0.08455940335988998 refusal:0.026081984862685204 :0.4986352641135454 -the:0.0810769721865654 tho:0.040353089570999146 -:0.03651001304388046 ,:0.027925949543714523 ro:0.02031681314110756 :0.7938171625137329 -the:0.4227065443992615 all:0.3068268895149231 their:0.06488921493291855 any:0.020579500123858452 its:0.020244626328349113 :0.16475322470068932 -cars:0.35047000646591187 roads:0.1937723308801651 drivers:0.08745362609624863 signs:0.03711409494280815 owners:0.023241980001330376 :0.3079479616135359 -on:0.23151905834674835 upon:0.170630544424057 into:0.09798628836870193 over:0.0819382518529892 off:0.05401937663555145 :0.36390648037195206 -Argentine:0.11863238364458084 this:0.11288286000490189 the:0.07468798011541367 his:0.06828290224075317 American:0.043464310467243195 :0.5820495635271072 -sent:0.22223597764968872 pressed:0.03254237025976181 ported:0.03216835856437683 posed:0.028485186398029327 ed:0.022838164120912552 :0.6617299430072308 -tried:0.5001238584518433 attempted:0.051327578723430634 sought:0.05018972232937813 struggled:0.041634660214185715 failed:0.033696554601192474 :0.3230276256799698 -unjust:0.7027740478515625 oppressive:0.09264509379863739 arbitrary:0.05020025745034218 corrupt:0.024932878091931343 cruel:0.010025144554674625 :0.11942257825285196 -the:0.9 :0.1 -interesting:0.11831784248352051 broken:0.10679049044847488 wise:0.08996366709470749 -:0.05830835551023483 assuming:0.04866839572787285 :0.5779512487351894 -the:0.41718536615371704 July:0.1095120757818222 September:0.06835702061653137 June:0.049941286444664 October:0.044854942709207535 :0.31014930829405785 -notice:0.729278028011322 copies:0.03596450760960579 notices:0.029430881142616272 publication:0.028610501438379288 reports:0.016882434487342834 :0.1598336473107338 -a:0.5351261496543884 the:0.418308824300766 tho:0.013593215495347977 far:0.005486125126481056 much:0.004375947639346123 :0.023109737783670425 -take:0.872089684009552 make:0.015222819522023201 demand:0.013208672404289246 give:0.007292998488992453 withhold:0.0043221330270171165 :0.08786369254812598 -that:0.9186223745346069 ,:0.05829312652349472 of:0.007145346608012915 That:0.002000104170292616 why:0.001862645847722888 :0.012076402315869927 -which:0.6808814406394958 the:0.02019169181585312 and:0.019085558131337166 when:0.016576873138546944 whom:0.016437474638223648 :0.24682696163654327 -a:0.17306843400001526 tho:0.13836340606212616 the:0.11198162287473679 and:0.03690825775265694 his:0.033312998712062836 :0.506365280598402 -ed:0.11922234296798706 ing:0.05439792573451996 ment:0.027483394369482994 posed:0.017347782850265503 fed:0.014213680289685726 :0.7673348737880588 -A:0.9866430759429932 The:0.0029238101560622454 B:0.0007724692113697529 A:0.0006781476549804211 Another:0.0006544298375956714 :0.008328067196998745 -In:0.8173536658287048 With:0.03894726559519768 in:0.016920091584324837 No:0.016758952289819717 From:0.009510637260973454 :0.10050938744097948 -debt:0.10907629132270813 damages:0.08092205971479416 interest:0.07570748776197433 penalties:0.05858886241912842 fees:0.046079427003860474 :0.6296258717775345 -work:0.22827816009521484 ,:0.22480227053165436 ings:0.16941671073436737 work:0.07207237929105759 keeping:0.035679299384355545 :0.2697511799633503 -when:0.13399526476860046 the:0.09238652884960175 tho:0.09121192991733551 and:0.0677826926112175 ,:0.05502280965447426 :0.5596007741987705 -,:0.5038518309593201 and:0.3635479211807251 which:0.037800710648298264 .:0.011709555052220821 ;:0.0074219233356416225 :0.07566805882379413 -.:0.13892754912376404 and:0.07181805372238159 &:0.04192043095827103 ,:0.02879086323082447 Van:0.022669028490781784 :0.6958740744739771 -effort:0.35966044664382935 attempt:0.11179055273532867 act:0.07119148224592209 action:0.0503106452524662 vote:0.042730674147605896 :0.3643161989748478 -acre:0.9443892240524292 ton:0.006898310035467148 year:0.005610030610114336 day:0.00357501651160419 acres:0.0032142777927219868 :0.03631314099766314 -it:0.12266305088996887 the:0.08058997988700867 he:0.0739930272102356 and:0.07003321498632431 which:0.02989702671766281 :0.6228237003087997 -the:0.9 :0.1 -the:0.8304451704025269 them:0.0669349953532219 their:0.0401805154979229 a:0.015466656535863876 this:0.007404730189591646 :0.03956793202087283 -complaint:0.265410453081131 testimony:0.13163164258003235 report:0.09904762357473373 statement:0.05941777676343918 remark:0.03226999565958977 :0.412222508341074 -mail:0.1869424730539322 of:0.1827804446220398 and:0.06938773393630981 the:0.05378113314509392 000:0.03574169799685478 :0.4713665172457695 -the:0.6030272841453552 tho:0.12277066707611084 a:0.0682024136185646 said:0.02265188843011856 this:0.02241699956357479 :0.16093074716627598 -4:0.12807615101337433 2:0.08549230545759201 8:0.07332209497690201 5:0.06991466879844666 3:0.06884203106164932 :0.5743527486920357 -take:0.09273811429738998 remove:0.08182907849550247 read:0.06517067551612854 see:0.0589277558028698 keep:0.05245008319616318 :0.648884292691946 -a:0.18845272064208984 the:0.1044449433684349 any:0.07311904430389404 unconstitutional:0.04453589767217636 sudden:0.035287726670503616 :0.5541596673429012 -that:0.8227962255477905 ,:0.13654232025146484 if:0.003489681053906679 as:0.002963173668831587 .:0.0029028223361819983 :0.031305777141824365 -that:0.44370514154434204 said:0.05159628763794899 known:0.03392268344759941 tho:0.032911743968725204 ,:0.027530303224921227 :0.4103338401764631 -and:0.8822559714317322 which:0.0981680229306221 It:0.006335124373435974 it:0.0036562371533364058 and:0.001719450345262885 :0.007865193765610456 -It:0.46452951431274414 He:0.07311006635427475 That:0.05658091604709625 This:0.030552905052900314 You:0.02645255997776985 :0.3487740382552147 -will:0.5211418271064758 can:0.10146090388298035 may:0.09646205604076385 must:0.06272770464420319 should:0.05458678677678108 :0.1636207215487957 -gave:0.7677334547042847 told:0.04297848790884018 granted:0.01824888028204441 assured:0.015613308176398277 showed:0.013915094546973705 :0.14151077438145876 -,:0.395381897687912 so:0.33730870485305786 ;:0.03708735108375549 it:0.030835025012493134 this:0.02928760088980198 :0.17009942047297955 -rough:0.23294416069984436 fair:0.05364960432052612 general:0.0455157645046711 careful:0.04078283533453941 detailed:0.039155513048172 :0.587952122092247 -,:0.09977632761001587 in:0.08468391746282578 by:0.06942279636859894 with:0.06789609044790268 .:0.030453749001026154 :0.6477671191096306 -representatives:0.13885663449764252 leaders:0.08357750624418259 majority:0.030076226219534874 part:0.022271834313869476 heads:0.02183341607451439 :0.7033843826502562 -condition:0.28810834884643555 style:0.13739368319511414 way:0.1175113171339035 shape:0.08349314332008362 light:0.03402364253997803 :0.33946986496448517 -is:0.6865254640579224 seems:0.024736762046813965 Is:0.0232820026576519 ,:0.02291232906281948 be:0.01873941719532013 :0.22380402497947216 -the:0.4269470274448395 his:0.032742954790592194 all:0.02371331863105297 a:0.011034060269594193 English:0.00835439097136259 :0.4972082478925586 -be:0.8618188500404358 prove:0.03404264897108078 bo:0.014740164391696453 net:0.008045746013522148 b:0.006334015633910894 :0.07501857494935393 -a:0.7485082745552063 the:0.09499693661928177 its:0.009985026903450489 tho:0.006111995782703161 all:0.005957421381026506 :0.13444034475833178 -man:0.042224179953336716 him:0.033032551407814026 Napoleon:0.02864503674209118 himself:0.028291581198573112 me:0.0207674503326416 :0.8470392003655434 -affidavit:0.6247932314872742 account:0.04729868099093437 attorney:0.03664899244904518 opportunity:0.020318325608968735 auditor:0.01773245632648468 :0.25320831313729286 -ment:0.025329511612653732 grace:0.01856822706758976 cess:0.014143183827400208 standing:0.01270228996872902 tion:0.009455496445298195 :0.9198012910783291 -Good:0.24765685200691223 good:0.05219554901123047 I:0.04994184896349907 Great:0.04075120761990547 My:0.037813812494277954 :0.5716407299041748 -made:0.15448643267154694 worn:0.0995691567659378 painted:0.07304294407367706 taken:0.04986295849084854 owned:0.028529871255159378 :0.5945086367428303 -day:0.23447491228580475 reason:0.22830095887184143 extent:0.10396945476531982 effect:0.07201636582612991 knowledge:0.061354029923677444 :0.29988427832722664 -the:0.5088835954666138 a:0.2583447992801666 tho:0.14223600924015045 its:0.05821043252944946 his:0.004380132537335157 :0.027945030946284533 -the:0.29658570885658264 an:0.29343748092651367 a:0.11989112943410873 no:0.016829490661621094 so:0.011670760810375214 :0.26158542931079865 -further:0.09973922371864319 complete:0.09710882604122162 slight:0.048273853957653046 large:0.046593278646469116 great:0.04420818015933037 :0.6640766374766827 -go:0.5366919636726379 keep:0.07308939099311829 carry:0.06856612116098404 live:0.055614031851291656 hold:0.03191559761762619 :0.2341228947043419 -see:0.44583219289779663 know:0.4397841989994049 hear:0.01616588421165943 tell:0.013508030213415623 say:0.0062270257622003555 :0.07848266791552305 -affairs:0.3367840647697449 people:0.09101693332195282 .:0.05323592945933342 destiny:0.025775296613574028 life:0.024883024394512177 :0.4683047514408827 -other:0.8556806445121765 political:0.012713469564914703 democratic:0.011881240643560886 republican:0.010850446298718452 Democratic:0.010383162647485733 :0.09849103633314371 -which:0.836728572845459 as:0.07366017252206802 and:0.06849043071269989 this:0.011514216661453247 that:0.0018257825868204236 :0.007780824671499431 -of:0.9181516170501709 for:0.019778281450271606 on:0.012378053739666939 ol:0.010333840735256672 ot:0.005746971815824509 :0.033611235208809376 -is:0.8385477662086487 seems:0.09296117722988129 Is:0.02772531472146511 becomes:0.010198435746133327 was:0.007478546351194382 :0.023088759742677212 -the:0.9 :0.1 -illness:0.2872086763381958 suffering:0.14445506036281586 sickness:0.12476769089698792 ,:0.05682489648461342 pain:0.04678306728601456 :0.33996060863137245 -ever:0.19640536606311798 else:0.1284162402153015 tho:0.06280708312988281 ho:0.019283214583992958 never:0.01908203586935997 :0.5740060601383448 -to:0.9913470149040222 to:0.0015338000375777483 ot:0.0013340342557057738 and:0.0009485085611231625 To:0.0007479608175344765 :0.004088681424036622 -that:0.31717243790626526 the:0.238932803273201 tho:0.08860442042350769 which:0.05978591740131378 in:0.03707797825336456 :0.2584264427423477 -good:0.07186592370271683 a:0.02883930318057537 accompan:0.02582467533648014 pleasant:0.02546052634716034 -:0.017449909821152687 :0.8305596616119146 -Investment:0.18004335463047028 Loan:0.1383243352174759 Exchange:0.10480045527219772 Insurance:0.07143676280975342 Banking:0.05872424319386482 :0.44667084887623787 -knowingly:0.26715779304504395 falsely:0.20230677723884583 false:0.09557097405195236 deliberately:0.07585708051919937 willfully:0.03592278063297272 :0.3231845945119858 -line:0.16646946966648102 way:0.09228207916021347 ground:0.05787314102053642 run:0.054800812155008316 road:0.02914782427251339 :0.5994266737252474 -Germany:0.5192543864250183 Europe:0.107078917324543 ,:0.02946254424750805 life:0.028010642156004906 England:0.02613896131515503 :0.2900545485317707 -.:0.7043364644050598 States:0.11584731191396713 states:0.03109305538237095 regions:0.020761841908097267 .:0.015347647480666637 :0.1126136789098382 -could:0.5572416186332703 did:0.39352864027023315 would:0.032467909157276154 had:0.0032793893478810787 dared:0.0027034885715693235 :0.010778954019770026 -*:0.1913144439458847 ,:0.0394376702606678 .:0.03747693449258804 d:0.027758466079831123 ):0.015034962445497513 :0.6889775227755308 -had:0.9682982563972473 has:0.01536120567470789 had:0.0019378138240426779 was:0.0019360275473445654 having:0.0017416980117559433 :0.01072499854490161 -,:0.3298160135746002 the:0.10762935131788254 .:0.08979751169681549 a:0.03136242926120758 I:0.023957274854183197 :0.417437419295311 -permitted:0.4069450795650482 allowed:0.22508947551250458 able:0.09531815350055695 required:0.04596852511167526 entitled:0.04392073675990105 :0.18275802955031395 -large:0.04364480823278427 :0.0359833687543869 small:0.029240770265460014 heavy:0.0272027850151062 very:0.026356291025877 :0.8375719767063856 -Faster:0.8356806039810181 More:0.06273572891950607 Slowly:0.03771694749593735 Further:0.013127179816365242 Still:0.005523616448044777 :0.045215923339128494 -to:0.9953022003173828 ,:0.002707856707274914 To:0.0002642835897859186 or:0.0002205968339694664 and:0.00020499739912338555 :0.0013000651524635032 -States:0.9800989627838135 Nations:0.008044900372624397 State:0.006640383042395115 states:0.0006648629787378013 people:0.000655945623293519 :0.003894945199135691 -woods:0.4627208113670349 snow:0.17567875981330872 ditch:0.021104533225297928 water:0.020758086815476418 yard:0.020149247720837593 :0.29958856105804443 -!):0.10725373774766922 .:0.10141311585903168 !:0.06175367906689644 ?):0.046645425260066986 ):0.039366841316223145 :0.6435672007501125 -thing:0.391623854637146 writing:0.021295499056577682 nonsense:0.020532775670289993 humor:0.01594507321715355 man:0.0156723503023386 :0.5349304471164942 -,:0.33658596873283386 safety:0.15494512021541595 health:0.06489847600460052 ;:0.03984184190630913 sake:0.029441816732287407 :0.3742867764085531 -and:0.26757416129112244 but:0.19192124903202057 when:0.14884524047374725 as:0.10592249035835266 until:0.07666289061307907 :0.209073968231678 -that:0.781804084777832 to:0.009018242359161377 what:0.008903254754841328 but:0.007004417944699526 itself:0.006186147686094046 :0.1870838524773717 -to:0.8213472366333008 not:0.06931052356958389 ot:0.020722484216094017 bo:0.017887884750962257 ta:0.005750975571572781 :0.06498089525848627 -by:0.5450439453125 with:0.1901569366455078 for:0.1530507653951645 to:0.01871567964553833 in:0.018561020493507385 :0.07447165250778198 -After:0.7477323412895203 For:0.07117924094200134 With:0.04498926177620888 Without:0.04443854093551636 At:0.024738559499382973 :0.06692205555737019 -About:0.41545385122299194 Some:0.2006973773241043 Nearly:0.12504391372203827 Almost:0.04239771142601967 Just:0.03381294757127762 :0.1825941987335682 -break:0.48209282755851746 lull:0.13394130766391754 rush:0.0692647323012352 departure:0.02572644129395485 return:0.02265443094074726 :0.2663202602416277 -members:0.7240587472915649 citizens:0.034453585743904114 adherents:0.02278880961239338 people:0.020982906222343445 men:0.01798676699399948 :0.17972918413579464 -on:0.13537119328975677 ing:0.06348945200443268 upon:0.062120888382196426 to:0.054013993591070175 til:0.030569756403565407 :0.6544347163289785 -gives:0.056747157126665115 causes:0.040074240416288376 regards:0.027149122208356857 poses:0.023817293345928192 assigns:0.018970880657434464 :0.833241306245327 -apparent:0.690930962562561 evident:0.14080634713172913 obvious:0.07624571770429611 clear:0.021686363965272903 known:0.012416324578225613 :0.05791428405791521 -control:0.21983103454113007 hold:0.0343027226626873 be:0.03130267187952995 have:0.023632844910025597 deny:0.020693058148026466 :0.6702376678586006 -position:0.12992431223392487 appointment:0.07684389501810074 time:0.057405851781368256 duties:0.05112427845597267 record:0.03529427945613861 :0.6494073830544949 -of:0.8474130630493164 in:0.08541795611381531 to:0.0164105873554945 for:0.011770135723054409 ol:0.005176146514713764 :0.033812111243605614 -the:0.6692649126052856 these:0.052306123077869415 tho:0.05059351772069931 their:0.04635259136557579 his:0.042581066489219666 :0.13890178874135017 -place:0.4324263334274292 field:0.04595550522208214 farm:0.023502729833126068 road:0.021726379171013832 spot:0.02069287933409214 :0.4556961730122566 -day:0.13863277435302734 night:0.11751929670572281 sky:0.0939277857542038 horizon:0.09162209928035736 earth:0.0770818367600441 :0.4812162071466446 -,:0.7176665663719177 and:0.21744370460510254 .:0.02303984761238098 ;:0.012752700597047806 or:0.003404284594580531 :0.025692896218970418 -without:0.5836049318313599 of:0.1551961600780487 for:0.13203661143779755 from:0.0372081995010376 with:0.01840727962553501 :0.07354681752622128 -quarters:0.7052659392356873 ths:0.052781715989112854 feet:0.021488593891263008 quarter:0.020456336438655853 inches:0.01754102110862732 :0.1824663933366537 -,:0.6983305215835571 and:0.08760777115821838 not:0.053658973425626755 being:0.01430967915803194 ;:0.0121015515178442 :0.1339915031567216 -a:0.5509635210037231 a:0.2353038489818573 A:0.016666479408740997 o:0.016621559858322144 so:0.013813492842018604 :0.1666310979053378 -great:0.09582646936178207 very:0.058460623025894165 icy:0.054398614913225174 mighty:0.017250778153538704 frozen:0.015188070945441723 :0.7588754436001182 -from:0.9512237310409546 of:0.01139004249125719 in:0.010166285559535027 on:0.0036354009062051773 From:0.00282038701698184 :0.020764152985066175 -pray:0.09568539261817932 hum:0.06480339914560318 speak:0.050052985548973083 stand:0.034471943974494934 live:0.03208092972636223 :0.7229053489863873 -to:0.9840064644813538 from:0.004315486643463373 To:0.0012992805568501353 ta:0.0009816092206165195 to:0.0009102997137233615 :0.00848685938399285 -for:0.883688747882843 to:0.045306671410799026 on:0.014535699971020222 with:0.011495362967252731 from:0.007751678116619587 :0.037221839651465416 -the:0.9 :0.1 -.:0.3116638958454132 ,:0.14875680208206177 John:0.0624258816242218 William:0.03931593894958496 General:0.035907529294490814 :0.40192995220422745 -and:0.8365312218666077 but:0.033047258853912354 or:0.024705763906240463 aud:0.01613079011440277 which:0.01068979874253273 :0.07889516651630402 -is:0.49312716722488403 are:0.07471409440040588 and:0.05470074713230133 Is:0.03223729506134987 was:0.021147845312952995 :0.3240728508681059 -to:0.9914211630821228 which:0.0022176112979650497 that:0.001131806056946516 will:0.0006532779661938548 ,:0.0005957336979918182 :0.0039804078987799585 -put:0.12090284377336502 caught:0.10007896274328232 broke:0.04228123649954796 kept:0.038806769996881485 forced:0.03856901451945305 :0.6593611724674702 -it:0.7875984311103821 them:0.06127621978521347 this:0.04032082110643387 him:0.019265959039330482 which:0.01634271815419197 :0.07519585080444813 -1908:0.04698561877012253 1898:0.042770612984895706 1907:0.03758304566144943 1893:0.0313483402132988 1915:0.02953699231147766 :0.8117753900587559 -no:0.33631324768066406 any:0.21692241728305817 tho:0.2116425335407257 the:0.06275789439678192 an:0.019858771935105324 :0.15250513516366482 -on:0.5902110934257507 of:0.21264931559562683 about:0.03284410014748573 upon:0.02135855332016945 concerning:0.021110063418745995 :0.12182687409222126 -be:0.5943223834037781 bo:0.38969847559928894 lie:0.0022926456294953823 ho:0.001997601706534624 he:0.0014638256980106235 :0.010225067962892354 -;:0.1495753675699234 of:0.12769334018230438 ,:0.08142561465501785 ;:0.056619711220264435 .:0.04544916749000549 :0.5392367988824844 -cannot:0.22277505695819855 will:0.14594459533691406 shall:0.1415836364030838 must:0.11037487536668777 may:0.08621454238891602 :0.2931072935461998 -medical:0.20647405087947845 of:0.10824230313301086 medicinal:0.023019712418317795 ana:0.020334964618086815 medicine:0.014927716925740242 :0.6270012520253658 -tion:0.05139079689979553 lie:0.04860043153166771 n:0.017348239198327065 o:0.016766557469964027 south:0.011043719947338104 :0.8548502549529076 -the:0.9 :0.1 -on:0.9932204484939575 on:0.0023939257953315973 On:0.0019120237557217479 last:0.0004652114294003695 On:0.0002882501285057515 :0.0017201403970830142 -Beginning:0.9037980437278748 beginning:0.016642708331346512 Starting:0.013002223335206509 Looking:0.011378581635653973 starting:0.004524913150817156 :0.050653529819101095 -first:0.6797235608100891 last:0.05565852299332619 second:0.03635663539171219 only:0.031242750585079193 next:0.029276633635163307 :0.16774189658463 -":0.1316508799791336 General:0.0451904721558094 first:0.023790393024683 old:0.02315937727689743 Commercial:0.016948334872722626 :0.7592605426907539 -four:0.653251051902771 more:0.15331809222698212 five:0.058714091777801514 six:0.03232860565185547 two:0.029321666806936264 :0.07306649163365364 -case:0.16514717042446136 testimony:0.07079971581697464 crime:0.05377453565597534 matter:0.03798928111791611 story:0.03465219959616661 :0.6376370973885059 -ing:0.7737549543380737 ed:0.20193634927272797 sent:0.0019582011736929417 fed:0.001379756024107337 ted:0.0009344723075628281 :0.020036266883835196 -marriage:0.031061945483088493 Duke:0.024723611772060394 reign:0.020737310871481895 Duchess:0.020346224308013916 decree:0.018805036321282387 :0.8843258712440729 --:0.034539222717285156 icious:0.019341886043548584 itable:0.015445636585354805 ical:0.01426220778375864 ant:0.012244920246303082 :0.9041661266237497 -,:0.7545556426048279 and:0.07414315640926361 he:0.040474455803632736 who:0.03928343579173088 He:0.00968123134225607 :0.08186207804828882 -.:0.9782403707504272 .":0.008655618876218796 ?:0.002685400890186429 !:0.001892594969831407 ..:0.0007866429514251649 :0.007739371561910957 -would:0.7544848322868347 might:0.13411150872707367 'd:0.08943931013345718 should:0.008792626671493053 felt:0.0025649545714259148 :0.010606767609715462 -the:0.9 :0.1 -in:0.717736542224884 In:0.08273676037788391 for:0.07951407134532928 any:0.016583101823925972 with:0.014543572440743446 :0.08888595178723335 -the:0.3610127568244934 this:0.060233552008867264 San:0.03459436446428299 New:0.03455838933587074 tho:0.032018031924963 :0.4775829054415226 -Bishop:0.3550370931625366 the:0.28794917464256287 St:0.12314991652965546 Saint:0.030726322904229164 Father:0.018943844363093376 :0.18419364839792252 -.:0.09744376689195633 ;:0.08144737035036087 ,:0.03937932476401329 c:0.03494292497634888 -:0.015633458271622658 :0.731153154745698 -,:0.48259827494621277 height:0.05966386944055557 length:0.03379496932029724 ;:0.02582808956503868 appearance:0.022696055471897125 :0.3754187412559986 -he:0.739064633846283 it:0.05413791164755821 lie:0.035901930183172226 you:0.02947927825152874 ho:0.019985444843769073 :0.12143080122768879 -it:0.32925963401794434 trespass:0.20491667091846466 .:0.11302068084478378 this:0.06704495847225189 the:0.03184594586491585 :0.2539121098816395 -my:0.2596604824066162 tho:0.18426598608493805 the:0.1229294165968895 her:0.07405222952365875 ,:0.04759320989251137 :0.3114986754953861 -,:0.47525638341903687 authorities:0.04208970442414284 prisoners:0.038198575377464294 ;:0.03125255927443504 prison:0.021823713555932045 :0.3913790639489889 -the:0.7691847681999207 this:0.1365441083908081 his:0.034368377178907394 that:0.02882799692451954 tho:0.012363921850919724 :0.018710827454924583 -weak:0.3108097314834595 unfit:0.2882288694381714 incapable:0.03340773656964302 poor:0.02308366633951664 feeble:0.018830224871635437 :0.32563977129757404 -breed:0.2590324282646179 lay:0.17394329607486725 nest:0.16814331710338593 hatch:0.13215970993041992 mate:0.030711278319358826 :0.23600997030735016 -taken:0.08146066218614578 given:0.061578698456287384 raised:0.044910505414009094 are:0.042214468121528625 high:0.03189561516046524 :0.7379400506615639 -less:0.3005242943763733 ing:0.19841840863227844 ed:0.10823600739240646 ly:0.040715862065553665 like:0.03819834068417549 :0.31390708684921265 -addition:0.2299160361289978 and:0.13892494142055511 relation:0.12017036974430084 respect:0.10731080919504166 reference:0.09422903507947922 :0.30944880843162537 -in:0.4093976318836212 during:0.2939366400241852 of:0.11337379366159439 In:0.03920960798859596 after:0.01968766376376152 :0.12439466267824173 -for:0.4943022131919861 without:0.0579708069562912 awaiting:0.05793510377407074 upon:0.04701554775238037 under:0.043183617293834686 :0.2995927110314369 -home:0.14017373323440552 out:0.0918620154261589 property:0.08800529688596725 place:0.07937055826187134 room:0.07509158551692963 :0.5254968106746674 -per:0.9949087500572205 per:0.0005314603913575411 p:0.0005072415224276483 a:0.000493623549118638 .:0.00041033976594917476 :0.003148584713926539 -worth:0.09352120757102966 not:0.09089654684066772 quite:0.038682419806718826 very:0.01621926762163639 of:0.013316982425749302 :0.7473635757341981 -put:0.05018379166722298 carry:0.047776732593774796 lay:0.04121661186218262 laid:0.024684855714440346 carried:0.023749791085720062 :0.8123882170766592 -school:0.0310691948980093 county:0.02235986851155758 coun:0.011578584089875221 meeting:0.010960511863231659 general:0.009064261801540852 :0.9149675788357854 -,:0.2860521972179413 believe:0.11990833282470703 think:0.09852363169193268 say:0.05661870539188385 pity:0.050855640321969986 :0.38804149255156517 -totalitarian:0.14841242134571075 democratic:0.05045025795698166 repressive:0.0397728830575943 corrupt:0.03950878605246544 oppressive:0.036013662815093994 :0.6858419887721539 -but:0.14455530047416687 ,:0.06466047465801239 of:0.061247922480106354 almost:0.0519954077899456 for:0.05160519480705261 :0.6259356997907162 -It:0.43147289752960205 it:0.16916939616203308 out:0.05304962769150734 In:0.04023313522338867 up:0.03150685504078865 :0.2745680883526802 -personal:0.14740028977394104 great:0.06439491361379623 earnest:0.04198689013719559 warm:0.03940806910395622 fond:0.039061807096004486 :0.6677480302751064 -hole:0.644180178642273 wound:0.07323437184095383 ,:0.04090659320354462 holes:0.033980388194322586 pit:0.02431495487689972 :0.1833835132420063 -full:0.5001683235168457 large:0.10600601881742477 heavy:0.07257068157196045 big:0.0258464515209198 great:0.022264041006565094 :0.2731444835662842 -honor:0.25994619727134705 view:0.1388392150402069 recognition:0.08982137590646744 respect:0.08081238716840744 memory:0.06009579822421074 :0.37048502638936043 -the:0.429820716381073 this:0.16838330030441284 every:0.12447438389062881 that:0.11377955228090286 any:0.060840100049972534 :0.10270194709300995 -not:0.41327565908432007 no:0.051806651055812836 all:0.039533261209726334 ignorant:0.03315315768122673 utter:0.020372269675135612 :0.4418590012937784 -white:0.1345961093902588 black:0.09537796676158905 pink:0.08238263428211212 gray:0.060090139508247375 green:0.04547805339097977 :0.5820750966668129 -in:0.04327106103301048 ex:0.0429069809615612 unex:0.03541154786944389 un:0.03524433821439743 inex:0.026600928977131844 :0.8165651429444551 -sales:0.11993696540594101 cures:0.028633736073970795 success:0.027147287502884865 cases:0.02122511900961399 and:0.017047982662916183 :0.7860089093446732 -only:0.08719231188297272 out:0.041204098612070084 off:0.03651239722967148 ,:0.035397060215473175 away:0.033152591437101364 :0.7665415406227112 -experience:0.28405052423477173 practice:0.08018983900547028 study:0.07706165313720703 observation:0.06688358634710312 education:0.04355030134320259 :0.44826409593224525 -law:0.1949448138475418 trial:0.18725840747356415 justice:0.039290521293878555 evidence:0.03246515616774559 suit:0.025723354890942574 :0.5203177463263273 -upon:0.24252162873744965 from:0.14159131050109863 in:0.12290878593921661 into:0.10866106301546097 on:0.0512886568903923 :0.33302855491638184 -of:0.8550422787666321 ot:0.03288344666361809 in:0.02678488940000534 ol:0.02662581205368042 at:0.010249631479382515 :0.04841394163668156 -damages:0.0422784686088562 fees:0.03389652818441391 taxes:0.01854790188372135 duties:0.018197134137153625 sum:0.01148634310811758 :0.8755936240777373 -of:0.45718714594841003 for:0.11722728610038757 ,:0.09295560419559479 and:0.046977367252111435 now:0.033791929483413696 :0.2518606670200825 -censorship:0.1425326019525528 publication:0.10054410994052887 speech:0.0524914525449276 publishing:0.034364476799964905 advertising:0.03243172913789749 :0.6376356296241283 -earnings:0.17669329047203064 the:0.12262564897537231 their:0.06996500492095947 taxable:0.06167316436767578 its:0.039287667721509933 :0.5297552235424519 -his:0.48903951048851013 the:0.17330096662044525 this:0.14605851471424103 a:0.04899163916707039 its:0.02605382539331913 :0.11655554361641407 -permission:0.5046869516372681 him:0.13360418379306793 consent:0.031102603301405907 it:0.027379505336284637 approval:0.024235855787992477 :0.278990900143981 -are:0.28282421827316284 exist:0.26256561279296875 lie:0.11782775074243546 remain:0.05377473682165146 occur:0.04644114896655083 :0.23656653240323067 -of:0.9665984511375427 ot:0.012458591721951962 to:0.010605614632368088 all:0.002538830740377307 at:0.00172744644805789 :0.006071065319702029 -the:0.8405189514160156 this:0.11491309851408005 that:0.023766567930579185 tho:0.007714653387665749 his:0.003864025929942727 :0.009222702821716666 -Nevada:0.8987681865692139 California:0.026904750615358353 Idaho:0.009804210625588894 Washington:0.0049027614295482635 Oregon:0.003594460664317012 :0.05602563009597361 -way:0.9509844183921814 path:0.004069049376994371 distance:0.003416589694097638 trail:0.0020998434629291296 tracks:0.0018024281598627567 :0.03762767091393471 -the:0.8437660336494446 this:0.06590897589921951 that:0.04858914762735367 such:0.00891445204615593 a:0.005643267650157213 :0.027178123127669096 -,:0.31753775477409363 say:0.12332763522863388 know:0.10540173947811127 .:0.08395332843065262 see:0.07393334805965424 :0.29584619402885437 -And:0.13037030398845673 Why:0.0878228098154068 What:0.06630560010671616 But:0.04318568482995033 :0.040327414870262146 :0.6319881863892078 -was:0.13976718485355377 met:0.1320715844631195 found:0.08611743152141571 saw:0.07136192917823792 knew:0.07054365426301956 :0.5001382157206535 -the:0.9 :0.1 -of:0.9455987811088562 in:0.023517966270446777 for:0.011203237809240818 to:0.005210367031395435 ot:0.0024853702634572983 :0.01198427751660347 -at:0.6012784242630005 near:0.1678837388753891 in:0.1448984146118164 on:0.034782152622938156 In:0.009067092090845108 :0.04209017753601074 -this:0.743894636631012 that:0.13849785923957825 every:0.044933706521987915 a:0.009013048373162746 one:0.008855433203279972 :0.054805316030979156 -tion:0.4585755169391632 ing:0.0765310749411583 ble:0.06802771985530853 ly:0.06005566567182541 ment:0.04076339304447174 :0.2960466295480728 -that:0.8048951029777527 and:0.08120481669902802 ,:0.03089034929871559 That:0.006716625299304724 as:0.006205657497048378 :0.0700874482281506 -ing:0.2653926610946655 ed:0.07583755254745483 ter:0.04857863485813141 er:0.03027772158384323 ly:0.024526359513401985 :0.555387070402503 -the:0.9 :0.1 -two:0.09897378832101822 more:0.09589557349681854 three:0.05180949345231056 persons:0.046568214893341064 men:0.03533157706260681 :0.6714213527739048 -the:0.9 :0.1 -per:0.22378692030906677 the:0.08260627090930939 1:0.07396746426820755 a:0.06556210666894913 10:0.05824956297874451 :0.49582767486572266 -better:0.32516244053840637 best:0.25222495198249817 worst:0.1963026523590088 hang:0.07789450883865356 benefit:0.01304816734045744 :0.13536727894097567 -the:0.9781906604766846 what:0.0066461567766964436 a:0.003377046436071396 tho:0.0028817530255764723 their:0.0022346004843711853 :0.006669782800599933 -a:0.6150922775268555 the:0.2784069776535034 its:0.01636313460767269 any:0.012765541672706604 this:0.010173947550356388 :0.06719812098890543 -at:0.32849419116973877 .:0.22418861091136932 ,:0.2000826597213745 of:0.07462239265441895 on:0.03551914542913437 :0.13709300011396408 -.:0.9815943241119385 ,:0.005077808164060116 .:0.002659410471096635 *.:0.001329844119027257 !:0.0012018231209367514 :0.008136790012940764 -to:0.9140226244926453 of:0.023202452808618546 ot:0.015123357065021992 any:0.0035786298103630543 t:0.002900858409702778 :0.04117207741364837 -The:0.6622298359870911 Its:0.15788190066814423 A:0.15009553730487823 This:0.007064878940582275 the:0.0024975338019430637 :0.020230313297361135 -who:0.9515613317489624 that:0.02359149418771267 which:0.011172841303050518 whom:0.0062704565934836864 ,:0.003744735848158598 :0.003659140318632126 -the:0.9922512173652649 a:0.0011414767941460013 the:0.0008250268292613328 The:0.0006778464885428548 their:0.0006299981032498181 :0.0044744344195351005 -to:0.9619160294532776 ot:0.006244996562600136 of:0.004186475649476051 ta:0.0036656009033322334 ti:0.0035622608847916126 :0.02042463654652238 -the:0.9744237065315247 tho:0.009233420714735985 The:0.0076203737407922745 and:0.002125637838616967 the:0.001733371987938881 :0.004863489186391234 -in:0.7450259923934937 In:0.05092629790306091 with:0.03555859252810478 and:0.017184732481837273 of:0.01201287005096674 :0.13929151464253664 -were:0.5103340744972229 began:0.1931341290473938 started:0.11506517976522446 came:0.08976168185472488 went:0.0234855767339468 :0.06821935810148716 -Mc:0.09881051629781723 De:0.059179797768592834 de:0.030862361192703247 L:0.023277321830391884 Van:0.022956643253564835 :0.76491335965693 -amount:0.33891618251800537 sum:0.26747551560401917 volume:0.0748797282576561 quantity:0.06975047290325165 ,:0.05975800007581711 :0.1892201006412506 -disease:0.16046328842639923 fever:0.04938501492142677 patient:0.04525984078645706 outbreak:0.036605414003133774 case:0.03628883510828018 :0.671997606754303 -Germany:0.08572985976934433 the:0.040000926703214645 France:0.035674866288900375 .:0.03496774286031723 them:0.017889417707920074 :0.7857371866703033 -that:0.9455227851867676 That:0.00570632005110383 but:0.0056863934732973576 that:0.004337584134191275 and:0.002291246084496379 :0.03645567107014358 -,:0.28097325563430786 in:0.13074633479118347 and:0.10252449661493301 by:0.08300691843032837 In:0.06873401999473572 :0.33401497453451157 -little:0.08892258256673813 poor:0.03563685342669487 young:0.03458462655544281 bad:0.027849752455949783 old:0.023447973653674126 :0.7895582113415003 -the:0.9 :0.1 -gas:0.09433416277170181 lines:0.03787081688642502 samples:0.03583182021975517 line:0.02543894574046135 energies:0.025074854493141174 :0.7814493998885155 -of:0.3484325706958771 ,:0.18105186522006989 or:0.14741158485412598 in:0.0760539174079895 by:0.04035639017820358 :0.20669367164373398 -the:0.9 :0.1 -motor:0.850997805595398 the:0.020459026098251343 electric:0.014442561194300652 paddle:0.010658258572220802 power:0.010578502900898457 :0.0928638456389308 -to:0.7499290108680725 and:0.12397954612970352 to:0.009228885173797607 ,:0.005086987279355526 l:0.004770467523485422 :0.10700510302558541 -any:0.4654499888420105 anything:0.0563163086771965 held:0.017418531700968742 treated:0.01604621298611164 the:0.014047465287148952 :0.43072149250656366 -lots:0.3254927396774292 sections:0.18441711366176605 lot:0.10906405746936798 section:0.059849150478839874 township:0.016573593020439148 :0.30460334569215775 -his:0.24259300529956818 the:0.11255959421396255 with:0.07815922796726227 a:0.040490202605724335 an:0.03884413093328476 :0.4873538389801979 -south:0.9195364117622375 north:0.03741009533405304 west:0.009322531521320343 east:0.007172462996095419 South:0.006705245468765497 :0.019853252917528152 -Maine:0.581031084060669 New:0.0222790390253067 Boston:0.012008254416286945 Massachusetts:0.0072428882122039795 English:0.006602042820304632 :0.3708366914652288 -agreed:0.5014421343803406 decided:0.08622800558805466 offered:0.06142159551382065 promised:0.05204636603593826 voted:0.03928636014461517 :0.2595755383372307 -neither:0.9771904945373535 not:0.005482765380293131 no:0.00543702207505703 Neither:0.004192063584923744 both:0.0015132965054363012 :0.006184357916936278 -up:0.26422950625419617 with:0.08896929025650024 out:0.07686884701251984 on:0.04533657804131508 down:0.035113535821437836 :0.48948224261403084 -that:0.9333752393722534 how:0.009874393232166767 if:0.006435594521462917 ,:0.00555401248857379 when:0.0038257050327956676 :0.04093505535274744 -those:0.5456817746162415 men:0.09866909682750702 others:0.0946379080414772 you:0.03548372909426689 all:0.02817101776599884 :0.1973564736545086 -with:0.16960085928440094 knowing:0.08071878552436829 finding:0.062028687447309494 getting:0.0601448118686676 having:0.045280300080776215 :0.5822265557944775 -the:0.3635430634021759 a:0.32851964235305786 his:0.24253475666046143 her:0.004778787959367037 every:0.004233077168464661 :0.05639067245647311 -have:0.327056348323822 require:0.09505808353424072 get:0.07449754327535629 receive:0.07121613621711731 take:0.05372821167111397 :0.3784436769783497 -has:0.37738463282585144 is:0.21102137863636017 was:0.1844426840543747 have:0.06631115078926086 are:0.03684500977396965 :0.12399514392018318 -suggestion:0.2979792654514313 argument:0.21587778627872467 case:0.04580952599644661 assertion:0.02911047451198101 observation:0.023343702778220177 :0.38787924498319626 -for:0.937093198299408 in:0.03161245211958885 of:0.006003095302730799 at:0.004192774649709463 to:0.0033681602217257023 :0.017730319406837225 -knowing:0.3043082356452942 seeing:0.1835014820098877 ,:0.08949026465415955 now:0.04072868824005127 considering:0.03639094531536102 :0.3455803841352463 -was:0.6604301929473877 were:0.19133350253105164 came:0.05821329727768898 ,:0.013792509213089943 sat:0.013783751055598259 :0.06244674697518349 -the:0.9 :0.1 -posed:0.08811428397893906 proved:0.04324500635266304 ed:0.025448843836784363 tested:0.02295663021504879 figured:0.02027326263487339 :0.7999619729816914 -governor:0.30605071783065796 president:0.13833795487880707 President:0.1183651015162468 elected:0.06506570428609848 Governor:0.045300714671611786 :0.3268798068165779 -was:0.9208433032035828 is:0.04708724841475487 ,:0.013681220822036266 were:0.007591058500111103 Is:0.002616638084873557 :0.008180530974641442 -in:0.41315701603889465 on:0.17340755462646484 In:0.061411600559949875 from:0.04514293000102043 upon:0.03007855825126171 :0.2768023405224085 -,:0.4795225262641907 in:0.17589209973812103 of:0.1289367526769638 at:0.06756005436182022 ;:0.02895914576947689 :0.11912942118942738 --:0.8629947900772095 ­:0.04631945118308067 ':0.0033293534070253372 carry:0.0022124405950307846 -':0.0021744724363088608 :0.08296949230134487 -The:0.7460892200469971 This:0.06428076326847076 the:0.049129921942949295 Mr:0.009649229235947132 tho:0.007598596625030041 :0.1232522688806057 -of:0.9074886441230774 in:0.0385209396481514 about:0.012331513687968254 In:0.0083842808380723 behind:0.005348212085664272 :0.027926409617066383 -that:0.16147449612617493 ,:0.1145171970129013 case:0.035639628767967224 .:0.025628311559557915 way:0.009532157331705093 :0.6532082092016935 -answer:0.4737798273563385 reply:0.13217473030090332 response:0.013527528382837772 opinion:0.01244602631777525 message:0.008688188157975674 :0.3593836994841695 -the:0.9304978251457214 all:0.01059825997799635 tho:0.009165148250758648 two:0.005251344759017229 some:0.003685516072437167 :0.04080190579406917 -low:0.704151451587677 high:0.06502731889486313 lower:0.03898791968822479 cheap:0.035878945142030716 good:0.013690941967070103 :0.14226342272013426 -tree:0.9742053151130676 forest:0.004362266510725021 bush:0.0017331851413473487 branch:0.0014546344755217433 hill:0.001248003332875669 :0.01699659542646259 -she:0.23017838597297668 Lily:0.14506345987319946 then:0.11838425695896149 he:0.075579434633255 soon:0.03090868890285492 :0.39988577365875244 -of:0.9018616080284119 ot:0.03636585921049118 in:0.0158790685236454 ol:0.01563066616654396 of:0.004513078834861517 :0.025749719236046076 -be:0.9481785893440247 bo:0.026214726269245148 lie:0.004414821043610573 he:0.0036000607069581747 Be:0.0011066502192988992 :0.016485152416862547 -st:0.6678574681282043 t:0.015995312482118607 -:0.011922081932425499 v:0.007993229664862156 ter:0.006656281184405088 :0.2895756266079843 -or:0.45069876313209534 by:0.23749294877052307 to:0.2129063904285431 and:0.03258185088634491 feet:0.031596194952726364 :0.03472385182976723 -and:0.3724226951599121 which:0.17943935096263885 to:0.07019993662834167 that:0.0696570873260498 as:0.022735442966222763 :0.2855454869568348 -tax:0.20211587846279144 price:0.10754110664129257 amount:0.07912978529930115 valuation:0.057497259229421616 debt:0.04004133492708206 :0.5136746354401112 -cleaning:0.12794876098632812 plumbing:0.05470278859138489 good:0.03350614756345749 sewing:0.03239694610238075 repair:0.028305720537900925 :0.7231396362185478 -way:0.10655149072408676 direction:0.08921153098344803 well:0.040396783500909805 ess:0.023790478706359863 ly:0.022532301023602486 :0.7175174150615931 -the:0.12988924980163574 4:0.07202401012182236 tho:0.06844225525856018 8:0.039369966834783554 5:0.03343810513615608 :0.6568364128470421 -tho:0.3780079185962677 the:0.041534680873155594 that:0.030926356092095375 wo:0.028760766610503197 then:0.01886204071342945 :0.5019082371145487 -,:0.24134056270122528 a:0.1252206414937973 of:0.07078637927770615 dressed:0.06015978381037712 which:0.04815932363271713 :0.454333309084177 -John:0.07222190499305725 George:0.03667327016592026 Frank:0.02864876575767994 William:0.025491338223218918 Henry:0.020389724522829056 :0.8165749963372946 -to:0.23113368451595306 in:0.15561862289905548 the:0.10502805560827255 for:0.060377225279808044 not:0.04184310510754585 :0.405999306589365 -men:0.33985522389411926 boys:0.23881514370441437 children:0.041597798466682434 fellows:0.031392332166433334 scouts:0.02489498071372509 :0.3234445210546255 -local:0.09106709808111191 old:0.07046931982040405 marching:0.06670316308736801 republican:0.04032304510474205 county:0.020469989627599716 :0.7109673842787743 -cause:0.18761414289474487 even:0.08705294877290726 induce:0.06110348552465439 sometimes:0.05335637927055359 often:0.04554804041981697 :0.5653250031173229 -ty:0.05105823278427124 er:0.023523380979895592 tion:0.022494081407785416 ed:0.020839644595980644 ing:0.014658767729997635 :0.8674258925020695 -use:0.7058157920837402 right:0.024821151047945023 Use:0.01169707253575325 opening:0.010180072858929634 membership:0.009386178106069565 :0.2380997333675623 -and:0.7827817797660828 ,:0.12723608314990997 to:0.03065796196460724 ;:0.024379543960094452 or:0.015446105040609837 :0.019498526118695736 -military:0.19819724559783936 war:0.13989073038101196 public:0.08732467144727707 personal:0.04596555233001709 service:0.04045204073190689 :0.48816975951194763 -shoes:0.12627097964286804 clothes:0.09937680512666702 diamonds:0.047424063086509705 bills:0.03779025748372078 receipts:0.0370752327144146 :0.6520626619458199 -the:0.03512578457593918 a:0.017253411933779716 -:0.017137128859758377 .:0.015091910026967525 two:0.014211264438927174 :0.901180500164628 -financial:0.10434219986200333 various:0.097813680768013 health:0.04820238798856735 labor:0.04784921556711197 many:0.04769640788435936 :0.654096107929945 -as:0.9748440384864807 that:0.012923837639391422 ,:0.007757242769002914 and:0.0005555057432502508 .:0.00034522611531428993 :0.0035741492465604097 -.:0.4964832663536072 a:0.04065627604722977 *.:0.019432859495282173 o:0.015939123928546906 c:0.015363276936113834 :0.41212519723922014 -s:0.7257087230682373 a:0.022406715899705887 el:0.01503466721624136 in:0.01129959151148796 l:0.010201518423855305 :0.21534878388047218 -gained:0.42237159609794617 acquired:0.351169615983963 obtained:0.05651107430458069 attained:0.03946851193904877 developed:0.0321773998439312 :0.09830180183053017 -court:0.5013049840927124 reservation:0.1351720690727234 district:0.04056883603334427 county:0.037600599229335785 state:0.023064667358994484 :0.26228884421288967 -ment:0.10897815227508545 ple:0.025554168969392776 pose:0.023945007473230362 tion:0.022984949871897697 ter:0.01770448498427868 :0.800833236426115 -of:0.05909578502178192 and:0.02696446143090725 *:0.02537345327436924 fine:0.022784138098359108 cellaneous:0.017519447952508926 :0.8482627142220736 -able:0.016479963436722755 posed:0.008987574838101864 rash:0.007469573058187962 led:0.00725248409435153 sided:0.0071930913254618645 :0.952617313247174 -a:0.6672632694244385 the:0.28471553325653076 no:0.005614189896732569 an:0.0039811101742088795 tho:0.0033397621009498835 :0.03508613514713943 -most:0.3577076494693756 tariff:0.0861072987318039 government:0.05865856632590294 country:0.05784323439002037 matter:0.051154617220163345 :0.38852863386273384 -I:0.792430579662323 ":0.07849545776844025 It:0.027691639959812164 He:0.01530627254396677 I:0.013558795675635338 :0.07251725438982248 -on:0.3443223237991333 In:0.08818219602108002 On:0.06848786771297455 of:0.05947475507855415 at:0.048211872577667236 :0.39132098481059074 -,:0.480827659368515 government:0.0857575535774231 of:0.07574272900819778 army:0.04136938974261284 country:0.038019243627786636 :0.27828342467546463 -the:0.9 :0.1 -have:0.9168214201927185 has:0.05433124303817749 had:0.01731523498892784 ha:0.0018416708335280418 having:0.00136771600227803 :0.008322714944370091 -,:0.5076336860656738 inning:0.4220247268676758 innings:0.022602619603276253 .:0.010529212653636932 game:0.005110469646751881 :0.032099285162985325 -the:0.22010187804698944 a:0.04058445990085602 being:0.018137602135539055 an:0.01282262522727251 bad:0.01027449406683445 :0.6980789406225085 -tho:0.5832148790359497 the:0.12697823345661163 a:0.042075689882040024 this:0.020387303084135056 such:0.015447399578988552 :0.21189649496227503 -and:0.529280960559845 of:0.07102593779563904 all:0.05715220421552658 were:0.04532698914408684 especially:0.028831761330366135 :0.26838214695453644 -the:0.8236607313156128 ,:0.03342998027801514 this:0.011428864672780037 market:0.011078567244112492 heavy:0.006925877649337053 :0.11347597884014249 -of:0.3027817904949188 ,:0.17197974026203156 .:0.10534297674894333 the:0.04075188562273979 The:0.0283032413572073 :0.3508403655141592 -sen:0.038565102964639664 pres:0.03453556075692177 prop:0.03037611022591591 pro:0.029475444927811623 con:0.023208599537611008 :0.8438391815871 -later:0.778908908367157 ago:0.06050828471779823 after:0.032869528979063034 afterwards:0.015629271045327187 before:0.014360059052705765 :0.0977239478379488 -tion:0.21946336328983307 ment:0.04723893478512764 ter:0.02075915038585663 ing:0.0173916295170784 ty:0.010034478269517422 :0.6851124437525868 -,:0.105466328561306 -:0.0928940549492836 to:0.056615203619003296 *:0.048141900449991226 you:0.025811348110437393 :0.6710711643099785 -as:0.1113215759396553 in:0.086757130920887 such:0.08469835668802261 been:0.049777351319789886 with:0.02888171188533306 :0.6385638732463121 -the:0.2592220604419708 these:0.25253134965896606 our:0.24475382268428802 such:0.023776700720191002 certain:0.009519848972558975 :0.2101962175220251 -1908:0.0424334742128849 last:0.03643694892525673 1915:0.03219332545995712 1907:0.02815997041761875 1909:0.024716787040233612 :0.8360594939440489 -tho:0.4845120310783386 this:0.20114830136299133 the:0.15416882932186127 that:0.06294906884431839 th:0.01186430361121893 :0.08535746578127146 -to:0.14899468421936035 have:0.09005015343427658 had:0.07503406703472137 and:0.07271184772253036 ,:0.02684095688164234 :0.586368290707469 -or:0.48528510332107544 and:0.25299540162086487 ,:0.24333253502845764 -:0.002861080225557089 to:0.002793210092931986 :0.012732669711112976 -a:0.2905579209327698 by:0.19778023660182953 in:0.09136901050806046 with:0.05845068395137787 the:0.05594924837350845 :0.3058928996324539 -go:0.41804349422454834 come:0.09993480145931244 get:0.0504317544400692 be:0.03289022669196129 rise:0.02907051146030426 :0.3696292117238045 -let:0.9660059213638306 Let:0.004743196535855532 allow:0.00472859013825655 lets:0.0030132632236927748 have:0.0030009460169821978 :0.01850808272138238 -tho:0.9556513428688049 the:0.03767211735248566 th:0.0010845602955669165 a:0.0004498128255363554 our:0.0003224175889045 :0.00481974906870164 -the:0.9 :0.1 -man:0.18115267157554626 one:0.1078217476606369 citizen:0.025231746956706047 day:0.023099014535546303 State:0.022124607115983963 :0.6405702121555805 -should:0.42717185616493225 could:0.352015882730484 might:0.12154362350702286 would:0.0389610193669796 may:0.017990799620747566 :0.04231681860983372 -,:0.7698424458503723 ;:0.1405741274356842 and:0.04160185158252716 ;:0.027495650574564934 .:0.004460038151592016 :0.01602588640525937 -the:0.9 :0.1 -at:0.2503887116909027 for:0.1441645473241806 in:0.09085539728403091 during:0.052708838135004044 until:0.04812595993280411 :0.4137565456330776 -the:0.5909227132797241 this:0.26031550765037537 tho:0.05584852024912834 his:0.020398665219545364 our:0.01976531557738781 :0.052749278023839 -,:0.05320166423916817 .:0.0490117147564888 of:0.022342436015605927 *:0.014967065304517746 ;:0.014195303432643414 :0.846281816251576 -be:0.8844603896141052 bo:0.08530748635530472 have:0.004870940465480089 been:0.003400088520720601 lie:0.0017960882978513837 :0.020165006746537983 -way:0.18856224417686462 sense:0.06570816785097122 fact:0.033811796456575394 event:0.029778623953461647 past:0.024071693420410156 :0.658067474141717 -in:0.7070396542549133 on:0.07247960567474365 In:0.05466333031654358 upon:0.036037277430295944 ,:0.017938250675797462 :0.11184188164770603 -the:0.8767188191413879 a:0.059819966554641724 in:0.025921331718564034 In:0.009697573259472847 tho:0.0020934008061885834 :0.025748908519744873 -by:0.8126404881477356 ,:0.04485240578651428 with:0.036812230944633484 in:0.027246655896306038 and:0.021049421280622482 :0.05739879794418812 -room:0.16829362511634827 of:0.16216574609279633 held:0.10535635054111481 yard:0.029922446236014366 made:0.02709617093205452 :0.5071656610816717 -in:0.05132104456424713 with:0.05002392828464508 upon:0.04486934840679169 to:0.04367697983980179 employs:0.035211168229579926 :0.7748975306749344 -months:0.21895265579223633 years:0.2169870287179947 days:0.193619042634964 part:0.12686239182949066 stages:0.029385104775428772 :0.21419377624988556 -supply:0.037148021161556244 demand:0.03075757622718811 other:0.029064977541565895 latter:0.02629450336098671 Government:0.02472236379981041 :0.8520125579088926 -in:0.2735237181186676 for:0.216058149933815 ,:0.056656815111637115 on:0.0551452599465847 In:0.053368907421827316 :0.34524714946746826 -Omaha:0.06191011145710945 Burlington:0.03327528014779091 Iowa:0.030668018385767937 Plymouth:0.02908375672996044 .:0.02866542339324951 :0.8163974098861217 -The:0.1660841852426529 and:0.1355752944946289 A:0.10826708376407623 An:0.02375759743154049 And:0.0215168334543705 :0.544799005612731 -enjoying:0.9734823107719421 having:0.0033102277666330338 receiving:0.003309637540951371 possessing:0.001996289473026991 distributing:0.00135140772908926 :0.016550126718357205 -the:0.36585187911987305 all:0.1155444085597992 ,:0.04543295130133629 most:0.03740239888429642 an:0.034601397812366486 :0.40116696432232857 -y:0.07261492311954498 es:0.05353272706270218 e:0.044743433594703674 s:0.038786113262176514 o:0.03549986705183983 :0.7548229359090328 -was:0.8597933053970337 came:0.04646371677517891 is:0.012080556713044643 's:0.005222081206738949 Was:0.005180434789508581 :0.07125990511849523 -who:0.2390345335006714 there:0.138519749045372 we:0.12132617831230164 wo:0.11028127372264862 it:0.05650624260306358 :0.33433202281594276 -words:0.18383602797985077 means:0.11336572468280792 act:0.09945566207170486 law:0.057596053928136826 phrase:0.03679968789219856 :0.5089468434453011 -the:0.9 :0.1 -,:0.4219273626804352 being:0.16983243823051453 and:0.11961553245782852 when:0.03620513528585434 was:0.02279151976108551 :0.22962801158428192 -well:0.07906252890825272 greatly:0.03826051577925682 easily:0.032695259898900986 readily:0.027181297540664673 eagerly:0.02629922889173031 :0.7965011689811945 -pleased:0.3441610038280487 impressed:0.2881024479866028 satisfied:0.07262437045574188 engaged:0.07164238393306732 acquainted:0.04262962564826012 :0.1808401681482792 -and:0.8330188989639282 ,:0.06280479580163956 in:0.025061151012778282 or:0.013783219270408154 under:0.0065363445319235325 :0.05879559041932225 -taxed:0.9916788935661316 tax:0.001680720946751535 taxing:0.0012166970409452915 taxable:0.0008492667111568153 levied:0.0006246943376027048 :0.003949727397412062 -hands:0.1553347259759903 case:0.13902698457241058 absence:0.041562728583812714 eyes:0.03363189473748207 name:0.032926835119724274 :0.5975168310105801 -the:0.9 :0.1 -among:0.6257038116455078 between:0.12475159019231796 of:0.062361788004636765 in:0.02926880121231079 upon:0.02724441885948181 :0.13066959008574486 -time:0.7491152286529541 cost:0.06549817323684692 moment:0.03404685854911804 point:0.015750503167510033 end:0.012971055693924427 :0.12261818069964647 -smooth:0.028866147622466087 gloss:0.027494588866829872 filled:0.020371228456497192 covered:0.018917527049779892 goes:0.01759418658912182 :0.8867563214153051 -the:0.9 :0.1 -to:0.9913412928581238 ta:0.0012586901430040598 ot:0.001085086609236896 with:0.0008861888200044632 To:0.000595556222833693 :0.004833185346797109 -time:0.576187252998352 date:0.28472134470939636 end:0.011828040704131126 day:0.009574356488883495 rate:0.007865195162594318 :0.10982380993664265 -,:0.23622429370880127 of:0.07728912681341171 with:0.07446913421154022 for:0.06928733736276627 in:0.0668754056096077 :0.47585470229387283 -train:0.9325684309005737 car:0.02110845223069191 wagon:0.005367555655539036 freight:0.004460371099412441 rail:0.0029410123825073242 :0.03355417773127556 -should:0.3886604607105255 must:0.3211175203323364 will:0.08808216452598572 ,:0.07161466032266617 can:0.031168675050139427 :0.09935651905834675 -of:0.6966725587844849 ,:0.14713513851165771 from:0.03219688683748245 and:0.018947403877973557 at:0.017001844942569733 :0.08804616704583168 -to:0.7801423668861389 ,:0.05969611182808876 -:0.04624159261584282 hereby:0.021004246547818184 I:0.009660869836807251 :0.08325481228530407 -ed:0.290040522813797 ing:0.27695584297180176 ment:0.09697913378477097 :0.019090259447693825 ly:0.014811001718044281 :0.3021232392638922 -able:0.7326216101646423 willing:0.026650795713067055 unable:0.018529856577515602 allowed:0.017560889944434166 ready:0.015909729525446892 :0.18872711807489395 -evening:0.1480196863412857 entertainment:0.12583263218402863 service:0.0954357162117958 music:0.04314287006855011 party:0.04253898561000824 :0.5450301095843315 -to:0.5768101811408997 and:0.2296769917011261 ,:0.0803389921784401 or:0.04678121581673622 ot:0.01277491170912981 :0.05361770745366812 -trunk:0.07847516238689423 surface:0.0550287663936615 base:0.03649228438735008 pulp:0.02448759414255619 bottom:0.022058503702282906 :0.7834576889872551 -to:0.9601112604141235 to:0.012079818174242973 and:0.006945818662643433 who:0.006543376017361879 ,:0.00162526685744524 :0.01269445987418294 -planted:0.14864453673362732 grown:0.12431660294532776 age:0.0736660435795784 found:0.07359856367111206 cultivated:0.028415797278285027 :0.5513584557920694 -in:0.8651189804077148 In:0.12413446605205536 with:0.00290663936175406 on:0.0027186942752450705 by:0.001216961070895195 :0.003904258832335472 -by:0.40252217650413513 at:0.21462874114513397 in:0.10050547868013382 from:0.057748693972826004 In:0.027957580983638763 :0.1966373287141323 -depend:0.2515999674797058 act:0.07159855961799622 pass:0.06489807367324829 rely:0.05136778950691223 insist:0.03523363173007965 :0.5253019779920578 -are:0.3037467896938324 have:0.14763480424880981 do:0.08682844042778015 make:0.03561709448695183 of:0.033649370074272156 :0.39252350106835365 -the:0.9 :0.1 -time:0.20042257010936737 angle:0.13254566490650177 distance:0.1236238107085228 rate:0.08727677166461945 point:0.06259980797767639 :0.3935313746333122 -ter:0.415208637714386 ing:0.1739574521780014 ful:0.13519516587257385 ly:0.016825510188937187 tor:0.016356252133846283 :0.2424569819122553 -is:0.7284467220306396 be:0.11358866840600967 Is:0.053448546677827835 has:0.012755603529512882 are:0.012391590513288975 :0.07936886884272099 -fact:0.21151360869407654 situation:0.0822940319776535 policy:0.027692366391420364 statement:0.022959792986512184 ,:0.022552823647856712 :0.6329873763024807 -Mary:0.05920557677745819 John:0.02471107989549637 Elizabeth:0.02420603111386299 Louise:0.021440671756863594 Margaret:0.020990148186683655 :0.8494464922696352 -o:0.10536732524633408 tho:0.04685507342219353 of:0.023435166105628014 i:0.019436459988355637 il:0.01665034517645836 :0.7882556300610304 -,:0.49309390783309937 and:0.136165052652359 to:0.10920039564371109 .:0.028566798195242882 of:0.019448434934020042 :0.2135254107415676 -arrived:0.6889801025390625 were:0.1366298347711563 looked:0.02504006214439869 stopped:0.018300805240869522 landed:0.016834765672683716 :0.11421442963182926 -To:0.9754063487052917 to:0.014015275985002518 What:0.004830964840948582 To:0.0027880717534571886 to:0.00029940655804239213 :0.002659932157257572 -the:0.3725932240486145 tho:0.3177187144756317 said:0.02398400381207466 New:0.01766015775501728 tha:0.013392679393291473 :0.25465122051537037 -alleges:0.3810659646987915 states:0.2572200298309326 says:0.07627550512552261 declares:0.05961732938885689 stated:0.026269864290952682 :0.1995513066649437 -of:0.9145269393920898 ot:0.03585821017622948 ol:0.008101972751319408 and:0.007003293372690678 for:0.005773093085736036 :0.028736491221934557 -was:0.9187359809875488 felt:0.013396894559264183 looked:0.011023138649761677 became:0.0073112971149384975 Was:0.006880948320031166 :0.04265174036845565 -be:0.7552144527435303 bo:0.19193491339683533 lie:0.01892087236046791 be:0.01561544556170702 he:0.0017665050690993667 :0.016547810868360102 -1:0.31538304686546326 2:0.3103460669517517 4:0.09057392179965973 3:0.062218792736530304 5:0.04006132856011391 :0.1814168430864811 -are:0.9044813513755798 were:0.07236819714307785 be:0.009131361730396748 is:0.002842455403879285 have:0.0015166515950113535 :0.00965998275205493 -or:0.9039100408554077 either:0.028753992170095444 and:0.01820499077439308 as:0.002887304173782468 but:0.002844360424205661 :0.04339931160211563 -said:0.5780566334724426 county:0.2655448019504547 township:0.012296654284000397 city:0.011875858530402184 court:0.006754976697266102 :0.12547107506543398 -flowers:0.12320622056722641 decorations:0.0884392261505127 roses:0.049296941608190536 decoration:0.04589151218533516 foliage:0.03366497904062271 :0.6595011204481125 -him:0.8504221439361572 George:0.059331249445676804 them:0.01088644564151764 her:0.006740621756762266 himself:0.00514870835468173 :0.06747083086520433 -,:0.3150557279586792 not:0.10983072966337204 now:0.09276597946882248 of:0.03793947771191597 thereof:0.022600574418902397 :0.4218075107783079 -be:0.6568096280097961 bo:0.25599974393844604 seem:0.02080952376127243 prove:0.006888099480420351 become:0.004138450138270855 :0.055354554671794176 -the:0.9 :0.1 -and:0.4348337650299072 but:0.066001757979393 so:0.05942976474761963 if:0.04861927777528763 as:0.029348187148571014 :0.3617672473192215 -of:0.960370659828186 ot:0.026149382814764977 ol:0.002062486717477441 of:0.0009856033138930798 for:0.0007450893172062933 :0.009686778008472174 -only:0.7234837412834167 brightest:0.1033896878361702 best:0.05625661462545395 largest:0.012436502613127232 first:0.011423035524785519 :0.09301041811704636 -very:0.3004877269268036 too:0.13784870505332947 more:0.08330971747636795 less:0.08320768922567368 only:0.050824131816625595 :0.3443220295011997 -and:0.6279169917106628 to:0.3081763684749603 ,:0.04736727103590965 or:0.0032392595894634724 ;:0.0029463826213032007 :0.010353726567700505 -the:0.9 :0.1 -found:0.6989421248435974 discovered:0.17323936522006989 deposited:0.031116409227252007 seen:0.007363434415310621 located:0.0056938971392810345 :0.08364476915448904 -the:0.4500730037689209 tho:0.27257490158081055 their:0.14637379348278046 these:0.02453302964568138 its:0.01014888845384121 :0.09629638306796551 -of:0.9845027327537537 for:0.003961218520998955 in:0.003741207765415311 ot:0.002349811140447855 In:0.0010909268166869879 :0.004354103002697229 --:0.5938544273376465 forming:0.03232564777135849 umatic:0.019180094823241234 ving:0.019166124984622 qu:0.01359619852155447 :0.3218775065615773 -At:0.2730472683906555 Before:0.2398301362991333 After:0.1697327196598053 In:0.04912584647536278 By:0.02533303014934063 :0.24293099902570248 -front:0.12324707210063934 breast:0.10515081882476807 back:0.05693163722753525 bed:0.0460563488304615 glove:0.04312797263264656 :0.6254861503839493 -fire:0.3473852872848511 .:0.10933861136436462 flames:0.047752656042575836 .:0.042822763323783875 smoke:0.03223870322108269 :0.4204619787633419 -the:0.9 :0.1 -be:0.1787182241678238 make:0.11977160722017288 ,:0.07282661646604538 improve:0.05543152242898941 become:0.02182907424867153 :0.551422955468297 -and:0.07935796678066254 is:0.05216984823346138 as:0.022567441686987877 not:0.02241964265704155 but:0.02013249881565571 :0.803352601826191 -two:0.3692430853843689 many:0.1400919407606125 several:0.10945941507816315 three:0.05905810371041298 other:0.02821218967437744 :0.29393526539206505 -ld:0.9887189269065857 nd:0.0019386877538636327 ald:0.001005953410640359 d:0.0006283100228756666 rd:0.0003075340064242482 :0.0074005878996104 -she:0.9084740877151489 they:0.009307391941547394 She:0.007911045104265213 he:0.006253122817724943 h:0.006006353534758091 :0.06204799888655543 -gave:0.7512025833129883 delivered:0.07881485670804977 made:0.07205662876367569 did:0.013380896300077438 rendered:0.012212062254548073 :0.07233297266066074 -companies:0.791071891784668 company:0.11677327752113342 manufacturers:0.010222449898719788 industries:0.009801317937672138 firms:0.009736930951476097 :0.062394131906330585 -,:0.2278275340795517 found:0.04667574167251587 built:0.046071019023656845 destroyed:0.038059208542108536 erected:0.019236896187067032 :0.6221296004951 -they:0.9765734672546387 it:0.002505740849301219 sheep:0.0023738339077681303 them:0.0016279281117022038 we:0.0013492844300344586 :0.015569745446555316 -President:0.24184955656528473 Senator:0.1772572547197342 Senators:0.16738711297512054 Senate:0.09564875066280365 senators:0.0347413644194603 :0.2831159606575966 -much:0.11722618341445923 far:0.05370594933629036 large:0.036498021334409714 low:0.030015725642442703 ,:0.02758217230439186 :0.7349719479680061 -grounds:0.17492999136447906 enough:0.12300856411457062 ,:0.04200650751590729 ly:0.034692585468292236 o:0.02816675789654255 :0.5971955936402082 -which:0.8914408087730408 that:0.08833196014165878 as:0.006213699467480183 who:0.004588056355714798 and:0.004303754772990942 :0.005121720489114523 -feet:0.989622950553894 yards:0.0018814742797985673 ft:0.0011107539758086205 foot:0.0009810046758502722 degrees:0.0009089387021958828 :0.005494877812452614 -ber:0.09079456329345703 pose:0.06159248203039169 nom:0.05406065657734871 ent:0.05399218201637268 ment:0.03261059895157814 :0.7069495171308517 -to:0.7473125457763672 before:0.0836716890335083 by:0.05928657948970795 in:0.028830688446760178 at:0.01612767018377781 :0.06477082706987858 -.:0.9640922546386719 ,:0.004504960495978594 .:0.003961402457207441 !:0.002828913973644376 ::0.002385512925684452 :0.022226955508813262 -twenty:0.3890346884727478 fifteen:0.26378992199897766 thirteen:0.057079918682575226 sixteen:0.053014904260635376 thirty:0.042680203914642334 :0.1944003626704216 -the:0.9 :0.1 -the:0.9 :0.1 -to:0.9745602011680603 as:0.020431194454431534 in:0.0008420094382017851 than:0.0004994658520445228 of:0.00044668064219877124 :0.0032204484450630844 -avenue:0.8357999324798584 street:0.05461869388818741 alley:0.014010488986968994 road:0.007186003029346466 intersection:0.006858338136225939 :0.0815265434794128 -worn:0.15461955964565277 put:0.10023313760757446 wiped:0.09295137971639633 washed:0.06106891855597496 cut:0.05328451097011566 :0.5378424935042858 -and:0.7354589104652405 or:0.06869678199291229 but:0.0519925095140934 ,:0.029551131650805473 ;:0.01028524897992611 :0.10401541739702225 -the:0.6042409539222717 tho:0.36251014471054077 not:0.014074086211621761 The:0.0023455601185560226 th:0.0013746912591159344 :0.015454563777893782 -be:0.10702230036258698 been:0.09822660684585571 not:0.04261147230863571 *:0.034408051520586014 -:0.022741228342056274 :0.6949903406202793 -of:0.8214895129203796 about:0.052314870059490204 in:0.035305432975292206 for:0.01738784834742546 upon:0.010977145284414291 :0.0625251904129982 -other:0.3827197551727295 of:0.07121771574020386 the:0.022834492847323418 more:0.015925182029604912 old:0.01017671637237072 :0.4971261378377676 -who:0.4913536608219147 and:0.26870477199554443 that:0.07974844425916672 or:0.056566134095191956 ,:0.024013247340917587 :0.07961374148726463 -effort:0.12213319540023804 work:0.11752068251371384 consideration:0.06934156268835068 time:0.06104490906000137 preparation:0.04796453192830086 :0.5819951184093952 -aults:0.224288672208786 ials:0.04107161611318588 andals:0.04045696556568146 ats:0.023749878630042076 ids:0.018518874421715736 :0.6519139930605888 -every:0.30397653579711914 the:0.23034872114658356 tho:0.18851684033870697 and:0.09267110377550125 a:0.016503725200891495 :0.16798307374119759 -defy:0.24584726989269257 sue:0.07543951272964478 oppose:0.03322672098875046 attack:0.032360222190618515 overthrow:0.02963048592209816 :0.5834957882761955 -i:0.043247416615486145 l:0.03231673687696457 a:0.01727539859712124 ,:0.0164417065680027 o:0.01585402339696884 :0.8748647179454565 -and:0.9284155964851379 or:0.06047745794057846 ,:0.0016887784004211426 election:0.0010695912642404437 and:0.0007050781277939677 :0.007643497781828046 -the:0.2427939623594284 to:0.0756567120552063 a:0.05068309232592583 an:0.04518534615635872 that:0.033704280853271484 :0.5519766062498093 -able:0.01493458915501833 posed:0.010352112352848053 sided:0.007997283712029457 rash:0.007620788644999266 led:0.006980905309319496 :0.9521143208257854 -to:0.11062279343605042 of:0.10216544568538666 before:0.07009103894233704 for:0.0664733499288559 on:0.06502211093902588 :0.5856252610683441 -Berkeley:0.15498694777488708 Second:0.056795090436935425 Park:0.038884591311216354 Third:0.022527392953634262 Sixth:0.01886642538011074 :0.7079395521432161 -no:0.7771288156509399 a:0.08965394645929337 any:0.02715756557881832 some:0.01137863751500845 more:0.007533418480306864 :0.08714761631563306 -be:0.7577692866325378 have:0.16612344980239868 bo:0.018177418038249016 he:0.006173312198370695 lie:0.004736592993140221 :0.047019940335303545 -opinion:0.0793399065732956 character:0.06315986812114716 principles:0.05798622965812683 party:0.05503193661570549 policy:0.05285479873418808 :0.6916272602975368 -said:0.27203235030174255 believed:0.16790413856506348 considered:0.10045462846755981 supposed:0.07167831808328629 likely:0.037874191999435425 :0.35005637258291245 -which:0.4444458484649658 that:0.23600785434246063 cases:0.029805023223161697 reports:0.018798096105456352 who:0.014568189159035683 :0.2563749887049198 -or:0.5919627547264099 and:0.16618995368480682 the:0.03625122085213661 a:0.019764352589845657 aud:0.016178647056221962 :0.16965307109057903 -.:0.9105435013771057 ,:0.005962265655398369 ;:0.003741063177585602 .:0.0032116039656102657 *.:0.003202663967385888 :0.07333890185691416 -raised:0.8463805317878723 increased:0.056822728365659714 raise:0.03023294173181057 lowered:0.013866382651031017 raising:0.007613447494804859 :0.045083967968821526 -The:0.9402478337287903 This:0.011394328437745571 Both:0.007808350492268801 the:0.0063932607881724834 They:0.004362070932984352 :0.02979415562003851 -General:0.2458096444606781 Colonel:0.12928453087806702 Captain:0.10197541862726212 Governor:0.06439199298620224 Lieutenant:0.06299153715372086 :0.39554687589406967 -in:0.21521806716918945 for:0.08739975839853287 planted:0.05532625690102577 made:0.05103839561343193 until:0.04948188737034798 :0.541535634547472 -,:0.06978891044855118 of:0.05894777551293373 which:0.035803381353616714 that:0.028555290773510933 to:0.027684563770890236 :0.7792200781404972 -ed:0.09843048453330994 red:0.06217086687684059 caused:0.04925273358821869 ated:0.03467322885990143 ced:0.031857751309871674 :0.7236149348318577 -with:0.12783250212669373 and:0.12557657063007355 of:0.11401722580194473 ,:0.10800051689147949 .:0.07301202416419983 :0.4515611603856087 -,:0.5447011590003967 ?:0.06927595287561417 .:0.045569922775030136 ;:0.03819660469889641 and:0.022438568994402885 :0.2798177916556597 -Porter:0.058119747787714005 Brown:0.03395514562726021 Smith:0.027591809630393982 Thompson:0.01654781587421894 Jones:0.014808970503509045 :0.8489765105769038 -brought:0.41618895530700684 carried:0.22214150428771973 touched:0.026821419596672058 driven:0.01839250884950161 put:0.015582449734210968 :0.3008731622248888 -east:0.6465203166007996 north:0.2081236094236374 south:0.04772038385272026 ,:0.015635283663868904 west:0.012898340821266174 :0.06910206563770771 -General:0.40575507283210754 Colonel:0.10932076722383499 Mr:0.07275821268558502 Captain:0.0466155968606472 Secretary:0.04064926877617836 :0.3249010816216469 -to:0.7660014033317566 of:0.08326336741447449 ta:0.013900022022426128 unto:0.013304464519023895 that:0.012858239002525806 :0.11067250370979309 -a:0.5425198674201965 it:0.086641326546669 the:0.07800869643688202 them:0.03487729653716087 us:0.03336983919143677 :0.2245829738676548 -and:0.3649830222129822 but:0.2218250185251236 with:0.09876760095357895 leaving:0.03316225856542587 putting:0.01941184140741825 :0.26185025833547115 -the:0.3506755828857422 tho:0.08155391365289688 an:0.07878992706537247 their:0.034706056118011475 this:0.028908617794513702 :0.4253659024834633 -,:0.14957495033740997 adopted:0.0643526166677475 made:0.038397468626499176 accepted:0.0286292415112257 not:0.024141531437635422 :0.6949041914194822 -,:0.39230695366859436 and:0.20444399118423462 county:0.04903736338019371 or:0.028843088075518608 farm:0.014742149040102959 :0.31062645465135574 -the:0.8248898983001709 a:0.12353686988353729 The:0.008055515587329865 Newark:0.007781307213008404 tho:0.006848843302577734 :0.028887565713375807 -kinds:0.1452351063489914 kind:0.05063117668032646 places:0.045569952577352524 forms:0.038745373487472534 modes:0.023764122277498245 :0.6960542686283588 -first:0.8717566132545471 last:0.04895036295056343 one:0.007885261438786983 second:0.006821125280112028 only:0.0035751950927078724 :0.061011441983282566 -his:0.6122770309448242 the:0.11897274106740952 bis:0.054250817745923996 her:0.05381380021572113 he:0.017867308109998703 :0.14281830191612244 -which:0.3652355670928955 and:0.33213427662849426 that:0.11772437393665314 what:0.03614839166402817 but:0.02889668568968773 :0.1198607049882412 -of:0.9792224764823914 ot:0.014668612740933895 of:0.0011614483082666993 o:0.000645063875708729 Of:0.00043816532706841826 :0.003864233265630901 -::0.3425882160663605 said:0.23016588389873505 .:0.22992651164531708 ,:0.05617111921310425 says:0.03363599628210068 :0.10751227289438248 -could:0.5121849775314331 would:0.38061919808387756 should:0.04518669471144676 did:0.02851463109254837 might:0.007698132190853357 :0.02579636638984084 -at:0.46608561277389526 of:0.389547199010849 in:0.06385935842990875 from:0.02701094001531601 visiting:0.010728605091571808 :0.04276828467845917 -The:0.21999220550060272 the:0.06421804428100586 i:0.01821272261440754 t:0.0171456690877676 f:0.016867851838469505 :0.6635635066777468 -second:0.16118794679641724 third:0.11507383733987808 lower:0.04928582161664963 first:0.045461852103471756 upper:0.03710831701755524 :0.5918822251260281 -of:0.865233838558197 in:0.042467150837183 for:0.029069161042571068 after:0.009046859107911587 before:0.005957017652690411 :0.048225972801446915 -advance:0.5740069150924683 sight:0.028002236038446426 detail:0.02462822198867798 this:0.021560873836278915 secret:0.012911584228277206 :0.3388901688158512 -our:0.28076595067977905 their:0.24180743098258972 political:0.06445815414190292 the:0.058920253068208694 his:0.023867085576057434 :0.3301811255514622 -attention:0.5995994210243225 ire:0.11779539287090302 sympathy:0.05413198098540306 support:0.016586745157837868 scorn:0.015090913511812687 :0.19679554644972086 -Arctic:0.3992365002632141 Alaska:0.04472808167338371 Norwegian:0.017451392486691475 old:0.016904985532164574 Polar:0.011386505328118801 :0.5102925347164273 -forces:0.613817572593689 service:0.2539673447608948 services:0.022382644936442375 wing:0.012299853377044201 struggle:0.00782828964293003 :0.08970429468899965 -stead:0.05857173353433609 ing:0.04298481345176697 haste:0.029355142265558243 condition:0.027842659503221512 order:0.026092998683452606 :0.8151526525616646 -iron:0.08525387942790985 political:0.07214649021625519 pig:0.041871145367622375 coal:0.03643341735005379 gold:0.031109226867556572 :0.7331858407706022 -tion:0.8397731184959412 ment:0.023567477241158485 ing:0.021351423114538193 ed:0.013566266745328903 ted:0.006232907064259052 :0.0955088073387742 -ed:0.3617802858352661 ing:0.16367509961128235 ly:0.08294633775949478 er:0.027643099427223206 ment:0.02068195678293705 :0.3432732205837965 -township:0.9929574728012085 Township:0.005311497952789068 town:0.0004107361601199955 county:0.00019878124294336885 section:0.00012120178871555254 :0.0010003100542235188 -of:0.8489300608634949 in:0.08099044114351273 throughout:0.026561453938484192 within:0.007938181050121784 for:0.005336420144885778 :0.030243442859500647 -the:0.9 :0.1 -in:0.5954139828681946 through:0.05049318075180054 In:0.05042446404695511 during:0.029779529199004173 for:0.025722531601786613 :0.248166311532259 -In:0.47505271434783936 in:0.45508870482444763 in:0.014986586757004261 s:0.003795198630541563 en:0.003294433932751417 :0.04778236150741577 -hundred:0.5643285512924194 thousand:0.2676944434642792 dozen:0.07227959483861923 few:0.05435887351632118 million:0.021943792700767517 :0.01939474418759346 -tide:0.1209564134478569 direction:0.09806659072637558 wind:0.0768311396241188 water:0.05576268211007118 temperature:0.03130130469799042 :0.6170818693935871 -there:0.9868952631950378 There:0.004479036666452885 there:0.003461679210886359 we:0.0014313950669020414 they:0.0012502853060141206 :0.0024823405547067523 -in:0.7782756090164185 In:0.1984228938817978 of:0.01317506842315197 under:0.0028368469793349504 on:0.0014858182985335588 :0.005803763400763273 -charter:0.22745560109615326 bonds:0.21189430356025696 laws:0.05201832577586174 constitution:0.03937483951449394 statutes:0.022268010303378105 :0.446988919749856 -she:0.5379669070243835 and:0.14053164422512054 he:0.07450835406780243 but:0.04580413177609444 ho:0.04217936098575592 :0.15900960192084312 -against:0.6749657988548279 at:0.056416239589452744 protesting:0.04674573242664337 for:0.04080351069569588 over:0.0322447270154953 :0.14882399141788483 -a:0.7265009880065918 the:0.02027004212141037 characteristic:0.012678173370659351 great:0.012258633971214294 an:0.012138531543314457 :0.21615363098680973 -to:0.9938767552375793 must:0.0011136798420920968 not:0.0006179232732392848 To:0.0006131969857960939 to:0.00047718817950226367 :0.003301256481790915 -used:0.30665120482444763 had:0.1856258511543274 raised:0.1507086604833603 held:0.06997496634721756 took:0.044892676174640656 :0.24214664101600647 -the:0.9 :0.1 -of:0.14872370660305023 -:0.0438394695520401 ial:0.02840190939605236 ic:0.02349289506673813 al:0.022232254967093468 :0.7333097644150257 -Steel:0.08911959826946259 Iron:0.06081324815750122 -:0.03151106834411621 Oil:0.018121827393770218 Railroad:0.016764458268880844 :0.7836697995662689 -exper:0.08083056658506393 conven:0.08047574758529663 experien:0.03218328580260277 -:0.027341041713953018 fun:0.027111539617180824 :0.7520578186959028 -­:0.5427792072296143 -:0.10470402985811234 ad:0.012603648006916046 *:0.012303868308663368 ­:0.008946841582655907 :0.3186624050140381 -books:0.09877531975507736 Bible:0.07473315298557281 returned:0.019506288692355156 homes:0.01771705038845539 belonging:0.017451604828238487 :0.7718165833503008 -Cuba:0.3157115578651428 Santiago:0.286186158657074 ,:0.12629492580890656 Havana:0.1187671646475792 which:0.015531806275248528 :0.13750838674604893 -.,:0.9490454792976379 .:0.02548144944012165 ,:0.013645846396684647 .;:0.0021256147883832455 ,:0.002118056872859597 :0.007583553204312921 -his:0.7056716680526733 the:0.2210751473903656 this:0.023830050602555275 that:0.012362442910671234 my:0.006557390093803406 :0.030503300949931145 -any:0.8252522945404053 all:0.09284114837646484 the:0.03129943832755089 every:0.021440861746668816 whatever:0.005749081261456013 :0.023417175747454166 -for:0.4061138331890106 during:0.23792284727096558 in:0.17943096160888672 at:0.048736654222011566 before:0.018854759633541107 :0.10894094407558441 -country:0.21771597862243652 currency:0.1196487620472908 matter:0.08343737572431564 world:0.04626603052020073 treasury:0.039934054017066956 :0.49299779906868935 -the:0.9 :0.1 -::0.5722286701202393 .:0.2648037374019623 ::0.055677756667137146 :-:0.007203749381005764 .—:0.005421411246061325 :0.09466467518359423 -of:0.880233645439148 on:0.047366246581077576 about:0.019672581925988197 for:0.014094614423811436 to:0.008696028031408787 :0.029936883598566055 -ment:0.6036272048950195 ing:0.21477103233337402 ter:0.016054365783929825 tion:0.009357866831123829 n:0.007901424542069435 :0.14828810561448336 -the:0.9 :0.1 -offend:0.08005090802907944 hurt:0.07000072300434113 injure:0.041760653257369995 secure:0.04133876785635948 satisfy:0.035783980041742325 :0.7310649678111076 -a:0.1220633015036583 the:0.10986802726984024 t:0.02909991517663002 no:0.019542694091796875 u:0.019002066925168037 :0.7004239950329065 -leave:0.15372052788734436 enter:0.10538239777088165 board:0.08338278532028198 take:0.04523152485489845 lose:0.04318488389253616 :0.5690978802740574 -States:0.5353416204452515 English:0.06535356491804123 Kingdom:0.0377192422747612 State:0.02152079902589321 British:0.019460635259747505 :0.3206041380763054 -were:0.7328749895095825 are:0.18287119269371033 ,:0.016241269186139107 was:0.013483515940606594 had:0.005001796875149012 :0.04952723579481244 -committed:0.5644263029098511 perpetrated:0.1756327599287033 caused:0.03266684338450432 made:0.025604335591197014 done:0.017406871542334557 :0.18426288664340973 -owing:0.3868667781352997 due:0.07556010037660599 due:0.07022915035486221 thanks:0.0374302975833416 adding:0.020731741562485695 :0.4091819319874048 -paper:0.13770361244678497 s:0.02938549593091011 ,:0.026832278817892075 sheet:0.025289012119174004 newspaper:0.024331271648406982 :0.7564583290368319 -country:0.26404285430908203 party:0.07602483034133911 nation:0.06388264894485474 people:0.054039448499679565 republic:0.038240157067775726 :0.5037700608372688 --:0.6196207404136658 mat:0.2004222571849823 and:0.00830106995999813 ­:0.005801085382699966 -:0.005481557454913855 :0.16037328960373998 -is:0.5828201770782471 becomes:0.06875520199537277 Is:0.03786247596144676 makes:0.029992958530783653 requires:0.026283031329512596 :0.25428615510463715 -the:0.9 :0.1 -for:0.39580637216567993 at:0.09986311197280884 and:0.08621111512184143 In:0.052402105182409286 in:0.04336455464363098 :0.32235274091362953 -there:0.5862169861793518 always:0.10887756943702698 often:0.03407567739486694 likely:0.0338524766266346 probably:0.029417064040899277 :0.2075602263212204 -man:0.8870295286178589 boy:0.03484545275568962 lad:0.010788258165121078 Christian:0.010276992805302143 person:0.004598211497068405 :0.052461556158959866 -the:0.9 :0.1 -received:0.11095777899026871 had:0.09602897614240646 held:0.08154771476984024 won:0.06365379691123962 in:0.05120202153921127 :0.5966097116470337 -th:0.31882724165916443 .:0.11772895604372025 ':0.027902208268642426 ,:0.02778574265539646 Mile:0.012490294873714447 :0.495265556499362 -thence:0.13685111701488495 follows:0.07201773673295975 therein:0.036654163151979446 thereof:0.03388627618551254 point:0.03388188034296036 :0.686708826571703 -are:0.24020084738731384 very:0.09561365842819214 not:0.0709507092833519 most:0.06700855493545532 more:0.04911350831389427 :0.4771127216517925 -that:0.9700400829315186 as:0.012203924357891083 ,:0.004546182695776224 where:0.003678329521790147 and:0.0018140326719731092 :0.007717447821050882 -night:0.6679403185844421 evening:0.14066381752490997 morning:0.06981683522462845 afternoon:0.06074822321534157 ,:0.05394141748547554 :0.0068893879652023315 -tho:0.7819446921348572 the:0.15959955751895905 his:0.008467069827020168 o:0.006016403436660767 ho:0.0058348532766103745 :0.03813742380589247 -which:0.4636557400226593 that:0.3321678936481476 and:0.13219556212425232 ,:0.04757121205329895 she:0.00545356422662735 :0.018956027925014496 -declaration:0.11430539935827255 .:0.038874730467796326 fact:0.03321322426199913 doubt:0.025571227073669434 question:0.025306716561317444 :0.7627287022769451 -to:0.9933807849884033 into:0.001765824039466679 not:0.00040072586853057146 ot:0.00029834109591320157 of:0.00026492675533518195 :0.0038893972523510456 -,:0.08774686604738235 bug:0.08103533834218979 fever:0.04601293429732323 disease:0.04430835321545601 cough:0.0281200110912323 :0.7127764970064163 -price:0.05655520409345627 n:0.044465597718954086 value:0.02608422003686428 cost:0.020138338208198547 t:0.0190223790705204 :0.8337342608720064 -needs:0.20663054287433624 prices:0.1036098524928093 demands:0.08251851797103882 costs:0.04747849702835083 supplies:0.04273046553134918 :0.5170321241021156 -We:0.9511166214942932 They:0.017449507489800453 You:0.0052558365277945995 we:0.0033561026211827993 To:0.002601554850116372 :0.020220377016812563 -;:0.8417565822601318 .:0.03463519737124443 ::0.029200300574302673 ;:0.028752608224749565 ,:0.021555975079536438 :0.04409933649003506 -brought:0.12183178961277008 and:0.08567074686288834 left:0.08373600244522095 with:0.07213319092988968 had:0.05625941604375839 :0.5803688541054726 -the:0.9 :0.1 -thing:0.26443448662757874 work:0.05246441811323166 being:0.04166695848107338 event:0.017853882163763046 is:0.01579955592751503 :0.6077806986868382 -destruction:0.08428186923265457 ation:0.040255457162857056 loss:0.021768027916550636 burning:0.018887318670749664 ing:0.01834869012236595 :0.8164586368948221 -his:0.5780313014984131 the:0.27345672249794006 her:0.03368934616446495 a:0.025923630222678185 bis:0.016963817179203033 :0.07193518243730068 -term:0.6161032319068909 sentence:0.22258351743221283 time:0.13707925379276276 period:0.010587931610643864 date:0.0007352025131694973 :0.012910862744320184 -and:0.24766398966312408 ,:0.2266143411397934 to:0.21162843704223633 they:0.07272119075059891 aud:0.030417829751968384 :0.2109542116522789 -he:0.3406071662902832 it:0.17206139862537384 ,:0.07517364621162415 It:0.026267684996128082 and:0.02456505224108696 :0.36132505163550377 -cents:0.49818792939186096 .:0.31333988904953003 %.:0.0682440996170044 .:0.0526803657412529 ;:0.008251580409705639 :0.059296135790646076 -ly:0.09732624143362045 lie:0.03157928213477135 rise:0.023837406188249588 die:0.02312305010855198 mend:0.02148563601076603 :0.8026483841240406 -ing:0.07270101457834244 -:0.03556966036558151 eness:0.02448667213320732 ing:0.01666932739317417 up:0.014932523481547832 :0.8356408020481467 -to:0.7063380479812622 s:0.06912241131067276 at:0.013350867666304111 all:0.012609140947461128 as:0.008710289373993874 :0.18986924272030592 -?":0.322052001953125 ?:0.2459026426076889 .:0.2168465405702591 ,:0.08900637179613113 ?:0.019132398068904877 :0.10706004500389099 -evil:0.3094332218170166 war:0.15132203698158264 oppression:0.042199358344078064 battle:0.03746729716658592 tyranny:0.03303070738911629 :0.4265473783016205 -States:0.24075397849082947 Alaska:0.17782755196094513 State:0.048739898949861526 state:0.03749344125390053 American:0.0188240148127079 :0.47636111453175545 -the:0.9 :0.1 -railways:0.14612507820129395 bridges:0.10767294466495514 roads:0.06838119775056839 railroad:0.06805285811424255 companies:0.058131858706474304 :0.5516360625624657 -the:0.5161122679710388 a:0.06728360056877136 your:0.04045060649514198 -:0.027067942544817924 this:0.01748664677143097 :0.33159893564879894 -where:0.6207391619682312 .:0.11186819523572922 ,:0.09354543685913086 ;:0.02684037759900093 which:0.0198532547801733 :0.1271535735577345 -the:0.9629064798355103 a:0.012380458414554596 this:0.0062322174198925495 tho:0.004704656545072794 any:0.003251816611737013 :0.010524371173232794 -proposed:0.6898007392883301 said:0.055944640189409256 present:0.02247687429189682 existing:0.019706236198544502 new:0.01372926589101553 :0.19834224414080381 -ton:0.43056806921958923 ty:0.013359018601477146 ment:0.01258692517876625 ter:0.01228507049381733 ly:0.011837205849587917 :0.5193637106567621 -,:0.5409181118011475 officer:0.04220384731888771 man:0.027700960636138916 company:0.02190198004245758 member:0.014130130410194397 :0.35314496979117393 -robbed:0.5470672845840454 stripped:0.19999241828918457 deprived:0.1704980731010437 starved:0.021238718181848526 the:0.006552784703671932 :0.05465072114020586 -candidate:0.10500351339578629 man:0.05902905762195587 campaign:0.04210051894187927 party:0.040856700390577316 character:0.040796853601932526 :0.7122133560478687 -based:0.2162582278251648 running:0.05238982290029526 and:0.03985322639346123 relying:0.038296617567539215 built:0.03396349772810936 :0.6192386075854301 -of:0.9540002346038818 ot:0.005227629095315933 ol:0.004773348104208708 Of:0.0036292041186243296 at:0.0034982759971171618 :0.02887130808085203 -cloth:0.8897110819816589 rope:0.017555048689246178 cotton:0.0027764306869357824 water:0.0026244460605084896 oil:0.0022416114807128906 :0.08509138110093772 -was:0.9357156157493591 is:0.03259402886033058 had:0.0034271490294486284 ,:0.0028096481692045927 saw:0.002129568951204419 :0.023323989240452647 -and:0.3533388376235962 In:0.06921129673719406 And:0.06723958253860474 or:0.030742423608899117 with:0.024850167334079742 :0.45461769215762615 -payment:0.9619830846786499 sum:0.006274774670600891 amount:0.004342763219028711 pay:0.001426104223355651 repayment:0.0013616536743938923 :0.024611619533970952 -country:0.23922514915466309 Union:0.04673045873641968 peace:0.0457303449511528 nation:0.04137058183550835 freedom:0.03832240775227547 :0.5886210575699806 -to:0.990577220916748 ot:0.0025330190546810627 ta:0.0017745813820511103 To:0.0010134594049304724 to:0.00039544375613331795 :0.00370627548545599 -mill:0.11686265468597412 work:0.09031514078378677 works:0.07793199270963669 mines:0.07456938922405243 mills:0.05766195058822632 :0.5826588720083237 -suspended:0.5086954236030579 halted:0.1968223750591278 stopped:0.03966856002807617 delayed:0.018158264458179474 closed:0.017380408942699432 :0.21927496790885925 -severity:0.08339044451713562 importance:0.045856498181819916 character:0.030202103778719902 fer:0.024773305281996727 il:0.023501532152295113 :0.7922761160880327 -ballots:0.7485442161560059 votes:0.1676221489906311 ballot:0.021329713985323906 returns:0.0065117496997118 vote:0.0053399959579110146 :0.05065217521041632 -time:0.1514047086238861 reason:0.13208486139774323 moment:0.07713411748409271 fact:0.0710141584277153 day:0.011138588190078735 :0.5572235658764839 -of:0.6734446883201599 for:0.09229127317667007 to:0.051579251885414124 ot:0.03839923068881035 in:0.019477086141705513 :0.12480846978724003 -operation:0.5569750666618347 operating:0.27603259682655334 .:0.04094372317194939 working:0.017617234960198402 operations:0.009122214280068874 :0.09930916409939528 -the:0.6747225522994995 tho:0.3038957118988037 this:0.0025623966939747334 an:0.0024692765437066555 its:0.0018708547577261925 :0.014479207806289196 -'s:0.07408641278743744 stock:0.06120508536696434 corporation:0.054570719599723816 law:0.0410475954413414 -:0.02267538197338581 :0.7464148048311472 -is:0.4279731214046478 was:0.1252228021621704 has:0.05704626813530922 of:0.05326254665851593 Is:0.023404506966471672 :0.31309075467288494 -now:0.1312122642993927 worth:0.11367014795541763 producing:0.05554594844579697 only:0.02913658507168293 making:0.0254212599247694 :0.6450137943029404 -,:0.33207181096076965 trees:0.08748655766248703 flowers:0.07433963567018509 plants:0.04606964811682701 leaves:0.02415241301059723 :0.435879934579134 -make:0.2707693576812744 do:0.14030848443508148 conduct:0.04778479039669037 be:0.040762487798929214 begin:0.03961120545864105 :0.46076367422938347 -third:0.4255838394165039 first:0.2607383728027344 second:0.1830301433801651 fourth:0.06362050771713257 fifth:0.014629186131060123 :0.05239795055240393 -said:0.7477694749832153 stated:0.07960621267557144 thought:0.017090531066060066 confessed:0.013014530763030052 claimed:0.011692268773913383 :0.13082698173820972 -in:0.6797645688056946 for:0.11585631221532822 of:0.04652978107333183 against:0.04035697504878044 on:0.026918329298496246 :0.09057403355836868 -little:0.3975038230419159 baby:0.11731559038162231 life:0.03021090477705002 human:0.01903587207198143 infant:0.018806472420692444 :0.4171273373067379 -t:0.03767862170934677 it:0.018485289067029953 i:0.015166466124355793 n:0.011537890881299973 j:0.01148600596934557 :0.9056457262486219 -be:0.5800228118896484 have:0.030279437080025673 make:0.02134467288851738 been:0.019314410164952278 become:0.015868082642555237 :0.333170585334301 -cough:0.07330688834190369 draw:0.052507512271404266 discharge:0.03774072974920273 drink:0.03398456051945686 swallow:0.031415026634931564 :0.7710452824831009 -favor:0.8860343098640442 behalf:0.031573351472616196 front:0.01514492928981781 favour:0.007485152687877417 relief:0.005371773615479469 :0.05439048307016492 -the:0.9 :0.1 -city:0.10903646796941757 class:0.0509834960103035 era:0.03565921261906624 country:0.027677878737449646 day:0.02300751581788063 :0.7536354288458824 -the:0.8017716407775879 tho:0.11179929971694946 The:0.032623473554849625 when:0.01715783402323723 New:0.002341562882065773 :0.03430618904531002 -The:0.1787821501493454 But:0.1253288984298706 1:0.07197994738817215 That:0.029897276312112808 but:0.0276612751185894 :0.5663504526019096 -were:0.2072584182024002 had:0.15160025656223297 counted:0.03599629923701286 was:0.033662717789411545 of:0.020038187503814697 :0.5514441207051277 -and:0.7151525616645813 but:0.10369759798049927 so:0.03403404727578163 as:0.016686825081706047 for:0.013958434574306011 :0.11647053342312574 -Court:0.7165045738220215 court:0.2453562468290329 Judge:0.007674768101423979 Jury:0.0026883170939981937 jury:0.0020674371626228094 :0.025708656990900636 -and:0.3758102059364319 if:0.11605387181043625 but:0.09180835634469986 when:0.06373124569654465 as:0.05387872830033302 :0.29871759191155434 -be:0.9344318509101868 bo:0.012675771489739418 remain:0.006235173903405666 lie:0.003951192367821932 get:0.0033141642343252897 :0.039391847094520926 -was:0.3758094608783722 ,:0.06432948261499405 is:0.04734215885400772 had:0.01706676185131073 would:0.016848715022206306 :0.478603420779109 -vote:0.17286615073680878 die:0.06640500575304031 be:0.045251812785863876 stay:0.04238671809434891 not:0.030538508668541908 :0.6425518039613962 -information:0.06833210587501526 s:0.03201647475361824 which:0.023806901648640633 it:0.02355915866792202 system:0.019845612347126007 :0.8324397467076778 --:0.2446170598268509 ­:0.03295069560408592 *:0.023253504186868668 est:0.02083423174917698 the:0.020687835291028023 :0.6576566733419895 -it:0.8674691319465637 It:0.07715190947055817 ,:0.013905374333262444 that:0.0070701176300644875 this:0.004553262609988451 :0.02985020400956273 -and:0.478755921125412 so:0.25852078199386597 but:0.08763015270233154 that:0.03513698652386665 then:0.026310164481401443 :0.1136459931731224 -very:0.05965597927570343 u:0.03962089121341705 most:0.03479815274477005 o:0.028177741914987564 an:0.023297695443034172 :0.8144495394080877 -per:0.6259828209877014 of:0.06337269395589828 for:0.05933627858757973 in:0.04224548116326332 ,:0.0217885822057724 :0.18727414309978485 -been:0.6609335541725159 become:0.23652727901935577 grown:0.049175161868333817 increased:0.016470955684781075 developed:0.0038067935965955257 :0.03308625565841794 -old:0.32132115960121155 additional:0.08311104774475098 older:0.06546595692634583 adjoining:0.06502950936555862 extra:0.060755375772714615 :0.4043169505894184 -ground:0.10338357090950012 .:0.08963927626609802 earth:0.07458507269620895 surface:0.0610000304877758 valley:0.032823894172906876 :0.6385681554675102 -pillars:0.8580951690673828 columns:0.11583820730447769 structures:0.0019530935678631067 points:0.0013521293876692653 towers:0.0009513291297480464 :0.021810071542859077 -bet:0.09935488551855087 sec:0.03687053918838501 spec:0.02922644466161728 dire:0.02415836974978447 con:0.021757911890745163 :0.7886318489909172 -She:0.48899325728416443 He:0.15602758526802063 ho:0.12412822246551514 she:0.033485181629657745 Ho:0.03242991864681244 :0.16493583470582962 -Now:0.28167954087257385 Then:0.11860955506563187 :0.11241717636585236 Miss:0.050797488540410995 But:0.03094841167330742 :0.4055478274822235 -of:0.5591223835945129 ot:0.2523336410522461 ,:0.032166678458452225 for:0.02643575333058834 in:0.025119999423623085 :0.10482154414057732 -to:0.23854148387908936 for:0.086179718375206 and:0.07934418320655823 with:0.0727405697107315 of:0.049585506319999695 :0.4736085385084152 -death:0.8031765222549438 illness:0.036642733961343765 sickness:0.018728775903582573 suffering:0.013656043447554111 condition:0.01042172685265541 :0.11737419757992029 -,:0.3901076912879944 away:0.26398372650146484 out:0.08009526133537292 off:0.041567180305719376 down:0.02968754991889 :0.19455859065055847 -the:0.9 :0.1 -.:0.367341011762619 ?:0.046114251017570496 when:0.036590415984392166 where:0.03502988442778587 town:0.02813941054046154 :0.4867850262671709 -his:0.904543399810791 the:0.06642436981201172 her:0.003693395759910345 a:0.002350642578676343 their:0.0022081336937844753 :0.020780058344826102 -school:0.5571507215499878 other:0.16235147416591644 such:0.03964035212993622 particular:0.034451764076948166 given:0.01964571699500084 :0.18675997108221054 -has:0.7929252982139587 ,:0.07793032377958298 is:0.02513735368847847 have:0.020135829225182533 had:0.014449437148869038 :0.06942175794392824 -water:0.07995756715536118 waters:0.049269258975982666 lands:0.022674918174743652 land:0.016464903950691223 property:0.016253679990768433 :0.8153796717524529 -tried:0.17609180510044098 failed:0.08601801097393036 unable:0.08592798560857773 attempted:0.051904767751693726 trying:0.045213162899017334 :0.5548442676663399 -fire:0.9651220440864563 Fire:0.008587435819208622 city:0.004384695086628199 police:0.0024651093408465385 town:0.0013920842902734876 :0.018048631376586854 --:0.1876659244298935 il:0.022550707682967186 -:0.011217158287763596 .:0.010365310125052929 help:0.010025236755609512 :0.7581756627187133 -what:0.9371722340583801 something:0.015405140817165375 all:0.013029214926064014 that:0.012938675470650196 What:0.0042329817079007626 :0.017221753019839525 -it:0.24996346235275269 them:0.12857915461063385 disease:0.06152191758155823 which:0.03415023535490036 anything:0.028453970327973366 :0.4973312597721815 -the:0.6141567230224609 to:0.013331683352589607 ­:0.012220138683915138 such:0.009527224116027355 tho:0.009116831235587597 :0.34164739958941936 -or:0.9887511134147644 and:0.004706177394837141 of:0.001966888317838311 Or:0.0009419538546353579 or:0.0008548774640075862 :0.0027789895539171994 -extent:0.11068803817033768 man:0.05631260201334953 person:0.05434812605381012 people:0.05257372930645943 thing:0.027463918551802635 :0.6986135859042406 -birds:0.7198348045349121 ,:0.111655592918396 chicks:0.04618139564990997 chickens:0.013194913044571877 ducks:0.010310684330761433 :0.09882260952144861 -and:0.2011057585477829 the:0.05401364341378212 or:0.04450802132487297 of:0.04186120629310608 in:0.03932361677289009 :0.6191877536475658 -!":0.5957761406898499 ?":0.2711995244026184 ,":0.0973195731639862 ?!":0.010225431062281132 .":0.005343829281628132 :0.02013550139963627 -masse:0.15354536473751068 route:0.059501633048057556 sight:0.031215611845254898 season:0.026349317282438278 lot:0.01307584811002016 :0.7163122249767184 -fro:0.979665219783783 from:0.017844218760728836 about:0.0002622460015118122 to:0.00019358856661710888 from:0.00016331854567397386 :0.00187140834168531 -,:0.4183334410190582 and:0.24456994235515594 .:0.03968438878655434 *,:0.015440661460161209 &:0.006302024703472853 :0.27566954167559743 -built:0.2992613613605499 established:0.2081679254770279 constructed:0.07011193037033081 erected:0.05682392790913582 opened:0.03619728237390518 :0.32943757250905037 -would:0.19837035238742828 must:0.12324991077184677 may:0.12028133124113083 should:0.08096890896558762 will:0.06563700735569 :0.4114924892783165 -companion:0.12023529410362244 gentleman:0.11286403238773346 friend:0.09164202213287354 witness:0.037946850061416626 man:0.03333671763539314 :0.6039750836789608 -the:0.8457214832305908 those:0.03108946979045868 tho:0.02728361450135708 these:0.013146784156560898 said:0.01269286498427391 :0.07006578333675861 -the:0.8282895088195801 a:0.0896977037191391 no:0.039088569581508636 any:0.004212247673422098 further:0.0024810037575662136 :0.036230966448783875 -Is:0.70423823595047 is:0.25399380922317505 being:0.004641095642000437 ,:0.004555084742605686 as:0.004075398202985525 :0.028496376238763332 -cause:0.1186688244342804 ,:0.05856967717409134 compel:0.037753913551568985 require:0.029759924858808517 authorize:0.02814530022442341 :0.7271023597568274 -About:0.92857426404953 Just:0.0141933374106884 Nearly:0.013034815900027752 Only:0.004983917344361544 Within:0.004347875248640776 :0.0348657900467515 -views:0.07385122030973434 principles:0.04635205492377281 opinions:0.035463206470012665 thus:0.028033249080181122 traditions:0.01601920649409294 :0.8002810627222061 -of:0.9614838361740112 of:0.010166601277887821 Of:0.006950523238629103 n:0.003510726848617196 o:0.0034476695582270622 :0.014440642902627587 -those:0.7993729114532471 others:0.08372975140810013 men:0.02913045883178711 all:0.008748810738325119 people:0.006357342936098576 :0.072660724632442 -account:0.4263139069080353 explanation:0.21739666163921356 description:0.08356908708810806 outline:0.029054438695311546 picture:0.024856794625520706 :0.21880911104381084 -benefit:0.3133142590522766 welfare:0.09753233939409256 good:0.08444641530513763 needs:0.05223816633224487 interest:0.040028832852840424 :0.4124399870634079 -have:0.09204361587762833 receive:0.0902748703956604 get:0.05500742420554161 obtain:0.053705256432294846 bring:0.03856854885816574 :0.6704002842307091 -cess:0.41119688749313354 taxes:0.18523864448070526 tax:0.037121113389730453 fees:0.014424879103899002 tax:0.013105949386954308 :0.33891252614557743 -that:0.46760210394859314 which:0.45867201685905457 she:0.03390863165259361 who:0.010264496318995953 and:0.003296458162367344 :0.026256293058395386 -able:0.06832065433263779 posed:0.010069833137094975 bound:0.00848357193171978 willing:0.008397107012569904 charged:0.008091716095805168 :0.8966371174901724 -has:0.9520799517631531 have:0.01322179939597845 having:0.006943856831640005 hath:0.005651505198329687 had:0.004860842600464821 :0.01724204421043396 -discovery:0.08903003484010696 discoveries:0.0526905283331871 experiments:0.032726094126701355 visit:0.029979441314935684 experience:0.026775140315294266 :0.7687987610697746 -the:0.1238594502210617 self:0.06912730634212494 de:0.04732338339090347 a:0.04650096595287323 re:0.042591143399477005 :0.6705977506935596 -according:0.5332371592521667 According:0.1860489398241043 pursuant:0.048049185425043106 Subject:0.024589991196990013 conform:0.012154183350503445 :0.19592054095119238 -,:0.05848238244652748 state:0.05074925720691681 country:0.04665001481771469 Union:0.025002265349030495 trenches:0.021705985069274902 :0.7974100951105356 -In:0.611749529838562 On:0.19556531310081482 At:0.04070265591144562 Under:0.012757021002471447 Into:0.008464876562356949 :0.13076060358434916 -.:0.12706860899925232 the:0.10148469358682632 taken:0.0552234910428524 thrown:0.03391416743397713 made:0.021259915083646774 :0.661049123853445 -of:0.759875476360321 for:0.17921067774295807 behind:0.022053686901926994 in:0.0068034096620976925 between:0.003638735506683588 :0.02841801382601261 -we:0.28100308775901794 you:0.07005548477172852 would:0.05965125188231468 must:0.0452197901904583 will:0.02561786212027073 :0.5184525232762098 -a:0.9426631927490234 -:0.023329023271799088 one:0.009816543199121952 per:0.00630781427025795 two:0.0036385729908943176 :0.014244853518903255 -,:0.8510312438011169 ;:0.03311517834663391 ;:0.008022475987672806 .:0.00791627261787653 ,:0.005285155493766069 :0.09462967375293374 -dancing:0.08210507780313492 going:0.06769242137670517 pacing:0.05696224793791771 looking:0.046535637229681015 running:0.028507551178336143 :0.718197064474225 -of:0.6764626502990723 for:0.2496587336063385 ot:0.025159917771816254 in:0.008548524230718613 to:0.007564326282590628 :0.03260584780946374 -they:0.6165186762809753 some:0.1342371255159378 many:0.07349473237991333 these:0.06611930578947067 most:0.03334569185972214 :0.07628446817398071 -;:0.20117592811584473 ,:0.19355222582817078 and:0.12013084441423416 when:0.041817985475063324 of:0.03986078500747681 :0.4034622311592102 -ing:0.23625880479812622 ed:0.0420057475566864 reaching:0.02578016370534897 bearing:0.022443868219852448 drawing:0.02104264125227928 :0.6524687744677067 -of:0.544564962387085 in:0.2503874897956848 In:0.053524330258369446 for:0.02371472492814064 to:0.016901180148124695 :0.11090731248259544 -nominations:0.1056022047996521 ,:0.03719085827469826 nomination:0.03510172665119171 voted:0.02705111913383007 nominees:0.026208944618701935 :0.7688451465219259 -child:0.08805657178163528 girl:0.08468810468912125 one:0.07974861562252045 lady:0.05261794850230217 woman:0.05177077278494835 :0.6431179866194725 -no:0.6375313401222229 a:0.3168838620185852 the:0.01964879222214222 any:0.012406918220221996 some:0.0044700102880597115 :0.009059077128767967 -as:0.327989399433136 by:0.16401995718479156 in:0.06844029575586319 to:0.05931798741221428 up:0.05027041584253311 :0.32996194437146187 -damages:0.40118369460105896 loss:0.11702030897140503 losses:0.10697542876005173 toll:0.04657210782170296 damage:0.03863781318068504 :0.2896106466650963 -mere:0.15310923755168915 slightest:0.03644683584570885 very:0.03510339930653572 first:0.02863236889243126 highest:0.024884680286049843 :0.7218234781175852 -the:0.9 :0.1 -its:0.5469212532043457 this:0.2017594575881958 the:0.18583089113235474 that:0.02669685147702694 Its:0.013522791676223278 :0.025268754921853542 -from:0.8376732468605042 of:0.07474599778652191 in:0.05079076066613197 In:0.014966173097491264 From:0.00839330069720745 :0.01343052089214325 -the:0.6366119980812073 her:0.3127732276916504 tho:0.009681591764092445 its:0.008840024471282959 his:0.0032275032717734575 :0.028865654719993472 -for:0.30028748512268066 or:0.1750771403312683 in:0.07432261109352112 by:0.05290082097053528 and:0.04873642325401306 :0.34867551922798157 -in:0.9486626982688904 In:0.03647679463028908 by:0.004976344760507345 in:0.0019889145623892546 en:0.0013217753730714321 :0.0065734724048525095 -have:0.09099544584751129 plant:0.08814939111471176 build:0.07230883091688156 dig:0.07134628295898438 see:0.054048821330070496 :0.6231512278318405 -The:0.26212719082832336 My:0.2104937881231308 An:0.0948527380824089 His:0.08960919827222824 the:0.0494641549885273 :0.2934529297053814 -,:0.5487152338027954 ;:0.24705469608306885 ;:0.186354398727417 .:0.007343930192291737 ,:0.0030698899645358324 :0.007461851229891181 -.:0.967006266117096 .:0.005590558517724276 !:0.003502514911815524 ..:0.0016998692881315947 ,:0.0014645069604739547 :0.020736284204758704 -greatest:0.18341761827468872 great:0.08873328566551208 utmost:0.06333456188440323 desired:0.05312051251530647 greater:0.042608533054590225 :0.5687854886054993 -be:0.25144389271736145 he:0.06096978113055229 lie:0.03424641489982605 the:0.02918306738138199 he:0.023686464875936508 :0.6004703789949417 -will:0.22985540330410004 can:0.16000130772590637 may:0.09354143589735031 would:0.0557393915951252 should:0.05099640414118767 :0.4098660573363304 -can:0.19558285176753998 will:0.09807232022285461 may:0.06958422064781189 to:0.030399411916732788 fully:0.023498082533478737 :0.582863112911582 -lot:0.39960548281669617 lots:0.05283711105585098 block:0.04745497927069664 section:0.03091900236904621 Lot:0.025517093017697334 :0.44366633147001266 -be:0.9022617340087891 bo:0.035187456756830215 lie:0.010032757185399532 have:0.009102786891162395 become:0.004730054177343845 :0.03868521098047495 -to:0.20774321258068085 on:0.11667483299970627 with:0.10491090267896652 out:0.10220092535018921 up:0.09746789932250977 :0.3710022270679474 -be:0.08306770026683807 not:0.04499473422765732 ever:0.03852201998233795 have:0.03218318894505501 help:0.0262464452534914 :0.7749859113246202 -.:0.45059287548065186 him:0.29602164030075073 them:0.07547713071107864 it:0.027157386764883995 his:0.009671146981418133 :0.14107981976121664 -the:0.40003204345703125 be:0.10971911251544952 appoint:0.08693819493055344 a:0.02105984091758728 make:0.0185494776815176 :0.3637013304978609 -has:0.8638629913330078 had:0.05981461703777313 takes:0.01943361759185791 pays:0.006805427372455597 bears:0.004562725313007832 :0.045520621351897717 -,:0.22909758985042572 voice:0.0980856791138649 ;:0.032822396606206894 .:0.020843276754021645 heart:0.019036240875720978 :0.6001148167997599 -the:0.7776395082473755 a:0.08605431020259857 that:0.06316833198070526 this:0.01205500215291977 The:0.009244222193956375 :0.051838625222444534 -I:0.24136611819267273 1:0.1329386830329895 he:0.09414249658584595 i:0.036967597901821136 the:0.0202791690826416 :0.4743059352040291 -the:0.4678696393966675 bis:0.20434331893920898 his:0.1785849630832672 tho:0.0606401264667511 a:0.005386697594076395 :0.08317525452002883 -with:0.38609567284584045 by:0.1253701150417328 in:0.11674283444881439 on:0.10438983887434006 for:0.025327330455183983 :0.24207420833408833 -was:0.8621021509170532 said:0.04449423775076866 is:0.006548358127474785 came:0.005161483306437731 asked:0.005091129336506128 :0.07660264056175947 -The:0.9920340180397034 The:0.002207981888204813 This:0.0016474419971928 the:0.0011650981614366174 A:0.0005539519479498267 :0.0023915079655125737 -consist:0.4872245788574219 consisted:0.22795110940933228 consists:0.08066434413194656 consisting:0.06790895760059357 were:0.04715418815612793 :0.08909682184457779 -,:0.1653887927532196 will:0.08647091686725616 knows:0.07483626902103424 dies:0.06795904040336609 says:0.04017054662108421 :0.5651744343340397 -In:0.5921160578727722 During:0.3126612901687622 From:0.019840015098452568 At:0.013544832356274128 Throughout:0.010371335782110691 :0.05146646872162819 -it:0.6193110346794128 and:0.03652219474315643 they:0.029044343158602715 It:0.022663826122879982 or:0.017692485824227333 :0.2747661154717207 -water:0.30831483006477356 stream:0.2624596357345581 river:0.19560544192790985 creek:0.06788219511508942 rain:0.012521249242126942 :0.15321664791554213 -of:0.6649340987205505 near:0.07382282614707947 at:0.056209295988082886 in:0.03567752242088318 of:0.01758062094449997 :0.15177563577890396 -the:0.9 :0.1 -inches:0.7240607142448425 feet:0.2391025722026825 acres:0.0116909584030509 yards:0.009757164865732193 miles:0.00270950049161911 :0.012679089792072773 -or:0.6413119435310364 ,:0.291747510433197 and:0.044275976717472076 of:0.003989244345575571 ol:0.0029002174269407988 :0.015775107545778155 -lawyer:0.3852072060108185 girl:0.0915587991476059 man:0.0661325603723526 lady:0.038226835429668427 woman:0.035132650285959244 :0.38374194875359535 -its:0.851009726524353 the:0.05693085864186287 Its:0.02499685063958168 this:0.017041916027665138 their:0.013697066344320774 :0.03632358182221651 --:0.08594211935997009 day:0.03337911516427994 fee:0.029034746810793877 year:0.024192310869693756 fees:0.022829953581094742 :0.8046217542141676 -of:0.9838559627532959 to:0.009166243486106396 with:0.0016685378504917026 from:0.0006103207706473768 upon:0.0003489529190119356 :0.004349982220446691 -out:0.4559043049812317 o:0.10883890837430954 off:0.017346149310469627 aft:0.015268616378307343 Out:0.012741831131279469 :0.38990018982440233 -the:0.9 :0.1 -for:0.8270338773727417 for:0.03210332244634628 in:0.0175536647439003 's:0.00864675734192133 from:0.00769031373783946 :0.10697206435725093 -to:0.4994368255138397 will:0.13849377632141113 ,:0.06628149747848511 and:0.030440401285886765 shall:0.028864705935120583 :0.2364827934652567 -force:0.09577760845422745 victory:0.06811562925577164 plan:0.04724350944161415 foe:0.03365940973162651 task:0.027878455817699432 :0.7273253872990608 -had:0.628240704536438 has:0.23619475960731506 having:0.01528873760253191 ever:0.014115909114480019 have:0.01294791605323553 :0.09321197308599949 -and:0.5559123158454895 ,:0.2995680272579193 but:0.03440014272928238 ;:0.03288277983665466 which:0.014067874290049076 :0.06316886004060507 -for:0.5315142273902893 during:0.13677453994750977 in:0.12915746867656708 over:0.11681253463029861 within:0.049007635563611984 :0.03673359379172325 -other:0.3446653187274933 of:0.059370141476392746 -:0.025627803057432175 skilled:0.022644318640232086 men:0.01704384945333004 :0.5306485686451197 -to:0.997344434261322 should:0.00045837342622689903 would:0.00041314063128083944 ot:0.0003556803858373314 ,:0.0001774296397343278 :0.0012509416555985808 -men:0.058959852904081345 er:0.05213753879070282 ty:0.036002788692712784 ing:0.030034156516194344 masters:0.016594000160694122 :0.8062716629356146 -got:0.21352934837341309 received:0.10312545299530029 made:0.08959832042455673 had:0.05140617489814758 have:0.04995150864124298 :0.4923891946673393 -to:0.9911823272705078 and:0.0041450089775025845 or:0.0017063042614609003 ta:0.0005610815715044737 not:0.0004875495214946568 :0.0019177283975295722 -3:0.8164698481559753 4:0.062299225479364395 1:0.04709261655807495 3:0.023150822147727013 5:0.008927803486585617 :0.04205968417227268 -winters:0.15090535581111908 years:0.10534419864416122 days:0.09537862241268158 nights:0.05805349722504616 children:0.033234912902116776 :0.5570834130048752 -The:0.781516432762146 Our:0.06413254886865616 These:0.06393249332904816 We:0.012264377437531948 Such:0.008017856627702713 :0.07013629097491503 -the:0.5323740839958191 their:0.17366865277290344 a:0.1626894772052765 1:0.028518645092844963 every:0.00852527841925621 :0.0942238625138998 -of:0.8501409888267517 ol:0.05086684972047806 ot:0.03466357663273811 in:0.012508328072726727 In:0.012320395559072495 :0.0394998611882329 -tho:0.7571671009063721 the:0.22652040421962738 tha:0.0018178768223151565 an:0.0014378519263118505 his:0.001382035668939352 :0.01167473045643419 -ided:0.18316179513931274 eded:0.03941529989242554 posed:0.019796041771769524 ed:0.01879836618900299 ected:0.015253580175340176 :0.723574916832149 -she:0.7400358319282532 he:0.1993769258260727 Sally:0.025360118597745895 ho:0.003305711317807436 it:0.0032341424375772476 :0.028687269892543554 -and:0.06847484409809113 Is:0.061262261122465134 is:0.05844626948237419 ,:0.052549172192811966 was:0.046540625393390656 :0.7127268277108669 -private:0.3101467788219452 personal:0.20241311192512512 public:0.10304665565490723 early:0.059169746935367584 own:0.05285022407770157 :0.2723734825849533 -splendid:0.03144300356507301 bright:0.02444973960518837 grand:0.02154991216957569 beautiful:0.021314026787877083 little:0.0177590474486351 :0.8834842704236507 -the:0.521764874458313 and:0.3153778612613678 of:0.026272853836417198 with:0.019274072721600533 all:0.012517514638602734 :0.10479282308369875 -Columbia:0.41687509417533875 Sunset:0.15281842648983002 Valley:0.02244449034333229 Vernon:0.020333878695964813 Richmond:0.016610611230134964 :0.37091749906539917 -hope:0.2323710322380066 means:0.13964878022670746 possibility:0.08676796406507492 chance:0.08055848628282547 prospect:0.03598193824291229 :0.42467179894447327 -ing:0.43209198117256165 ly:0.09590663015842438 and:0.01705571822822094 is:0.01658744178712368 in:0.016168788075447083 :0.4221894405782223 -Mississippi:0.04511680081486702 Hudson:0.0324459969997406 Grand:0.03076358325779438 Missouri:0.02950241044163704 Delaware:0.02707740105688572 :0.8350938074290752 -schedule:0.3645620346069336 calendar:0.188701331615448 list:0.054596319794654846 program:0.04977821186184883 field:0.025894485414028168 :0.31646761670708656 -are:0.710333526134491 were:0.13383416831493378 seem:0.02913803420960903 became:0.014471565373241901 appear:0.011311102658510208 :0.10091160330921412 -at:0.5081065893173218 from:0.14919014275074005 by:0.07930762320756912 against:0.03149447962641716 .:0.0296162199229002 :0.2022849451750517 -than:0.8744210600852966 of:0.018129641190171242 like:0.015420536510646343 precisely:0.014959444291889668 to:0.00779009610414505 :0.06927922181785107 -was:0.730601966381073 felt:0.08988387137651443 am:0.05147198587656021 'm:0.045601263642311096 feel:0.021455734968185425 :0.060985177755355835 --:0.061623211950063705 *:0.030988356098532677 .:0.02239549346268177 i:0.01984703168272972 uly:0.01655476912856102 :0.8485911376774311 -police:0.15676769614219666 force:0.09926631301641464 city:0.07734349370002747 town:0.0502641424536705 department:0.0460352785885334 :0.5703230760991573 -look:0.2135695517063141 work:0.16616451740264893 be:0.06260475516319275 stop:0.051952067762613297 arrive:0.04433443769812584 :0.4613746702671051 -and:0.08959153294563293 The:0.058035001158714294 ,:0.04844854772090912 when:0.03446187824010849 Now:0.029576852917671204 :0.739886187016964 -timber:0.3103146255016327 lumber:0.05215467885136604 logs:0.01963852159678936 trespass:0.01786991022527218 claims:0.01754971407353878 :0.582472549751401 -who:0.14595359563827515 elected:0.08352030813694 serving:0.05925781652331352 appointed:0.048792194575071335 acting:0.04414532333612442 :0.6183307617902756 -been:0.8747447729110718 just:0.020120270550251007 now:0.01182981114834547 not:0.010280123911798 already:0.009852555580437183 :0.07317246589809656 -nearly:0.39704248309135437 almost:0.1855878084897995 practically:0.11002446711063385 the:0.024311015382409096 about:0.023298345506191254 :0.25973588041961193 -when:0.17159727215766907 if:0.1707809716463089 till:0.09187918901443481 until:0.08763394504785538 because:0.06728965044021606 :0.4108189716935158 -the:0.9 :0.1 -Both:0.3208824098110199 But:0.11937341094017029 Chief:0.09273398667573929 The:0.0411924310028553 Lieutenant:0.028268462046980858 :0.39754929952323437 --:0.061362992972135544 men:0.061329178512096405 ,:0.04682411253452301 ou:0.03902558609843254 .:0.022404983639717102 :0.7690531462430954 -they:0.7553572654724121 everybody:0.03228386864066124 we:0.015423945151269436 nobody:0.01354939118027687 ho:0.012715700082480907 :0.17066982947289944 -and:0.5974440574645996 or:0.2049558162689209 ,:0.10212995111942291 but:0.012269153259694576 yet:0.009986096061766148 :0.07321492582559586 -two:0.4587554335594177 more:0.3415282368659973 all:0.0502912700176239 both:0.03762628138065338 three:0.026591714471578598 :0.08520706370472908 -sugar:0.08169292658567429 latter:0.030391139909625053 food:0.029431872069835663 fruit:0.020549559965729713 same:0.01816432923078537 :0.8197701722383499 -a:0.07309675216674805 the:0.038144294172525406 de:0.029743315652012825 ad:0.029189204797148705 tho:0.028913427144289017 :0.800913006067276 -execution:0.9878635406494141 execute:0.008385799825191498 executed:0.0015349880559369922 executing:0.0004417537129484117 Execution:0.0003543245838955045 :0.0014195931726135314 -examinations:0.27835944294929504 examination:0.1366601288318634 tests:0.1094558984041214 exam:0.10065102577209473 test:0.09935715049505234 :0.2755163535475731 -the:0.6485100984573364 a:0.2564089000225067 that:0.03952927514910698 this:0.025565916672348976 tho:0.014681312255561352 :0.015304497443139553 -knew:0.300590842962265 felt:0.1930108368396759 thought:0.13697277009487152 believed:0.08239354938268661 found:0.020706653594970703 :0.26632534712553024 -and:0.3348967432975769 not:0.2521066963672638 than:0.12623433768749237 or:0.10366981476545334 but:0.04141818732023239 :0.1416742205619812 -gone:0.3256700336933136 been:0.23580291867256165 visited:0.22605429589748383 left:0.031292494386434555 stayed:0.030487051233649254 :0.15069320611655712 -.:0.21237601339817047 noticed:0.08684513717889786 breakfast:0.07976026087999344 fun:0.035345468670129776 visited:0.03316143527626991 :0.5525116845965385 -does:0.15319277346134186 loves:0.09178737550973892 cannot:0.06802213191986084 doesnt:0.06538207083940506 can:0.06212611496448517 :0.5594895333051682 -b:0.20560920238494873 ab:0.08560961484909058 a:0.04758711904287338 of:0.046607501804828644 more:0.03560825437307358 :0.5789783075451851 -he:0.7688584923744202 ho:0.13994771242141724 lie:0.023249132558703423 she:0.005660411436110735 was:0.005542566068470478 :0.05674168514087796 -a:0.5579612255096436 my:0.059891022741794586 the:0.03887798637151718 me:0.031260378658771515 its:0.024148225784301758 :0.2878611609339714 -,:0.5750856399536133 .:0.1400187462568283 1:0.04631882533431053 18:0.022654283791780472 of:0.016870448365807533 :0.19905205629765987 -on:0.6239876747131348 of:0.10161198675632477 upon:0.08789760619401932 in:0.062123287469148636 to:0.029849836602807045 :0.09452960826456547 -09:0.12774834036827087 13:0.06435135751962662 10:0.051599983125925064 05:0.046792998909950256 01:0.046573419123888016 :0.6629339009523392 -have:0.09247585386037827 know:0.04886425659060478 say:0.036257054656744 find:0.033564575016498566 take:0.03138229250907898 :0.7574559673666954 -,:0.9205862879753113 .:0.018483459949493408 *,:0.010298470966517925 m:0.0058158403262495995 :0.002333885757252574 :0.042482055025175214 -,:0.1880205124616623 figures:0.034828994423151016 things:0.025993825867772102 sums:0.023606061935424805 allowances:0.020971212536096573 :0.7065793927758932 -forth:0.9187406897544861 out:0.05131125822663307 up:0.007273293565958738 down:0.0021840427070856094 upon:0.001911713508889079 :0.018579002236947417 -the:0.9407363533973694 The:0.014855884946882725 its:0.008898009546101093 tho:0.007401528302580118 a:0.0057136788964271545 :0.022394544910639524 -a:0.12594762444496155 you:0.11904244869947433 I:0.11695368587970734 ,:0.04736342281103134 thou:0.044317055493593216 :0.5463757626712322 -.:0.08222033828496933 *:0.05293837562203407 K:0.0471290647983551 .:0.03467382490634918 W:0.03448200225830078 :0.7485563941299915 -was:0.9351372718811035 is:0.008206425234675407 came:0.003228790359571576 was:0.003051856765523553 had:0.001959782326593995 :0.04841587343253195 -e:0.036779530346393585 an:0.034900519996881485 State:0.026527997106313705 t:0.024188492447137833 n:0.01822158880531788 :0.8593818712979555 -the:0.781048595905304 tho:0.0844353437423706 this:0.021602390334010124 a:0.01533686462789774 that:0.01209239847958088 :0.0854844069108367 -their:0.6252983212471008 its:0.23794406652450562 the:0.047834474593400955 his:0.012481319718062878 this:0.008705408312380314 :0.06773640960454941 -party:0.07111095637083054 people:0.05382006987929344 Republicans:0.04370848834514618 Democrats:0.03865896537899971 way:0.030803188681602478 :0.7618983313441277 -matter:0.21981236338615417 bill:0.06211526319384575 question:0.05182090774178505 report:0.050058890134096146 proposition:0.02815866284072399 :0.5880339127033949 -the:0.5483290553092957 this:0.08893127739429474 Tin:0.01741715520620346 said:0.01680389605462551 that:0.011226875707507133 :0.3172917403280735 -a:0.6646692156791687 the:0.2392386943101883 its:0.03022557869553566 their:0.01862969808280468 tho:0.010831036604940891 :0.036405776627361774 -as:0.5953173041343689 ,:0.22072099149227142 and:0.019883254542946815 when:0.014870213344693184 .:0.013632823713123798 :0.13557541277259588 -the:0.9601098299026489 our:0.02126915752887726 tho:0.004050778225064278 this:0.00343338493257761 a:0.003292810171842575 :0.007844039238989353 -of:0.8787909746170044 in:0.026767827570438385 and:0.024814672768115997 ,:0.0076238480396568775 or:0.007381363306194544 :0.0546213136985898 -office:0.7019476294517517 records:0.03985771909356117 possession:0.02749420888721943 custody:0.025029607117176056 hands:0.02384638972580433 :0.1818244457244873 -himself:0.16065172851085663 him:0.045586928725242615 and:0.02958780899643898 -:0.026976926252245903 ,:0.024063896387815475 :0.7131327111274004 -him:0.6497088670730591 .:0.1007160022854805 me:0.06322783976793289 them:0.03832574933767319 .:0.009522517211735249 :0.1384990243241191 -mill:0.3564123511314392 plant:0.09586342424154282 factory:0.08513619005680084 yard:0.061183441430330276 ,:0.05033805966377258 :0.3510665334761143 -all:0.8101489543914795 both:0.03205472230911255 considering:0.004006651695817709 regard:0.003669437952339649 t:0.003287356346845627 :0.14683287730440497 -became:0.7206549048423767 was:0.21518054604530334 become:0.015317712910473347 came:0.0093441903591156 made:0.005689069163054228 :0.03381357667967677 -than:0.4646456241607666 and:0.21395264565944672 aud:0.09464114159345627 or:0.07111098617315292 for:0.012935373932123184 :0.1427142284810543 -.:0.9699413776397705 ?:0.007325740531086922 !:0.003980714362114668 ,:0.0034816800616681576 ::0.003455550642684102 :0.011814936762675643 -way:0.422528475522995 door:0.13381999731063843 entrance:0.0814874991774559 keys:0.057896699756383896 key:0.02963561750948429 :0.2746317107230425 -boys:0.5736472010612488 Indians:0.07223063707351685 children:0.030322935432195663 youth:0.02473699115216732 men:0.019394002854824066 :0.2796682324260473 -than:0.9679153561592102 as:0.004279801622033119 to:0.0036914434749633074 in:0.003178689628839493 on:0.0026749870739877224 :0.018259722040966153 -of:0.28898176550865173 our:0.22381970286369324 and:0.0425470769405365 by:0.03366347774863243 ,:0.027415549382567406 :0.3835724275559187 -copies:0.9440978765487671 copy:0.017236139625310898 one:0.010328422300517559 possession:0.002799245296046138 records:0.002369821071624756 :0.02316849515773356 -of:0.6992108225822449 for:0.134093776345253 ,:0.03569307550787926 and:0.03443809598684311 in:0.023577488958835602 :0.07298674061894417 -will:0.6694037318229675 would:0.041488680988550186 shall:0.023370523005723953 ,:0.022705774754285812 may:0.015214611776173115 :0.2278166776522994 -under:0.42876556515693665 to:0.1771554946899414 within:0.10032057762145996 with:0.0726664736866951 of:0.06818387657403946 :0.15290801227092743 -been:0.07713642716407776 ,:0.07078071683645248 -:0.019374819472432137 a:0.015508845448493958 aud:0.015031380578875542 :0.8021678104996681 -smoke:0.4600265324115753 fire:0.06203734502196312 light:0.030641494318842888 wood:0.024944117292761803 water:0.01904468983411789 :0.403305821120739 -ged:0.056578896939754486 ly:0.045978844165802 away:0.02948903664946556 cases:0.029371477663517 i:0.02541126124560833 :0.8131704833358526 -the:0.5919705629348755 a:0.09777556359767914 tho:0.021612120792269707 tin:0.017420083284378052 their:0.016203148290514946 :0.25501852110028267 -be:0.09676966071128845 *:0.06257960945367813 b:0.04054822027683258 ne:0.02871597371995449 bo:0.027061473578214645 :0.7443250622600317 -being:0.5822644233703613 ,:0.041260603815317154 now:0.03005608543753624 equally:0.01841912604868412 as:0.012563471682369709 :0.31543628964573145 -,:0.8069251179695129 .:0.054913513362407684 ;:0.04441530257463455 and:0.017141370102763176 pounds:0.010478628799319267 :0.06612606719136238 -I:0.07853333652019501 two:0.06099778786301613 sixty:0.04135484620928764 twenty:0.03854529932141304 fifty:0.037941887974739075 :0.7426268421113491 -business:0.08361151069402695 lif:0.05162929743528366 time:0.04706418886780739 voy:0.03251446411013603 year:0.024491017684340477 :0.7606895212084055 -water:0.0196866262704134 work:0.018805239349603653 whole:0.009645403362810612 man:0.009472579695284367 men:0.0075830877758562565 :0.9348070635460317 -no:0.8816117644309998 any:0.05207368731498718 all:0.020884184166789055 little:0.012986218556761742 without:0.006903416942805052 :0.025540728587657213 -victims:0.6537240743637085 convicted:0.08443274348974228 guilty:0.07106601446866989 suspected:0.01944078505039215 perpetrators:0.018421372398734093 :0.1529150102287531 -and:0.7584018111228943 ,:0.10605630278587341 who:0.040786080062389374 but:0.027723753824830055 ;:0.012815892696380615 :0.054216159507632256 -the:0.928214967250824 this:0.04425183683633804 their:0.008905722759664059 his:0.006250703241676092 a:0.003256057621911168 :0.009120712289586663 -,:0.27984294295310974 man:0.1043405532836914 even:0.0398789644241333 only:0.033835090696811676 he:0.03365221247076988 :0.508450236171484 -was:0.23687393963336945 as:0.11987176537513733 became:0.1162346750497818 sent:0.06428485363721848 made:0.030170824378728867 :0.4325639419257641 -the:0.3229517638683319 tho:0.2976490557193756 a:0.2703689932823181 this:0.06451555341482162 our:0.019130947068333626 :0.025383686646819115 -s:0.17747794091701508 of:0.10498075932264328 ed:0.08386342972517014 thereof:0.06717102229595184 and:0.06108349934220314 :0.5054233483970165 -Captain:0.10210487991571426 Colonel:0.09844478219747543 General:0.07751042395830154 and:0.036937639117240906 Major:0.0354418121278286 :0.6495604626834393 -to:0.9472132921218872 with:0.02086511068046093 from:0.004546573385596275 of:0.0036106090992689133 for:0.0021050418727099895 :0.021659372840076685 -John:0.1080906093120575 Harry:0.06740870326757431 George:0.03676167130470276 William:0.02874220907688141 Charles:0.028674473986029625 :0.7303223330527544 -to:0.9891230463981628 who:0.002776998095214367 will:0.0025673359632492065 and:0.0017136528622359037 that:0.0008141802391037345 :0.0030047864420339465 -convent:0.7935603260993958 church:0.041429053992033005 sisters:0.020785242319107056 mission:0.01599329710006714 Sisters:0.013909961096942425 :0.11432211939245462 -impressed:0.2178601175546646 bestowed:0.08817038685083389 impress:0.07413532584905624 conferred:0.0681760162115097 and:0.06547563523054123 :0.4861825183033943 -one:0.20268644392490387 some:0.15550367534160614 all:0.13358508050441742 any:0.09454081207513809 each:0.08654150366783142 :0.32714248448610306 -religion:0.1340683400630951 faith:0.0834009125828743 values:0.04613986611366272 ideas:0.031093453988432884 principles:0.0284012071788311 :0.6768962200731039 -a:0.773880124092102 tho:0.08972754329442978 and:0.03561253845691681 an:0.02405938133597374 the:0.023080997169017792 :0.05363941565155983 -Grove:0.982524573802948 Columbia:0.0006929038208909333 the:0.0006662948871962726 Green:0.0004316088161431253 Richmond:0.0004216974775772542 :0.015262921195244417 -the:0.9750401973724365 Oakland:0.004953955300152302 Philadelphia:0.0029051287565380335 The:0.0014364502858370543 Milwaukee:0.0008908717427402735 :0.014773396542295814 -,:0.2727735638618469 and:0.0834149494767189 -:0.07888182252645493 ;:0.06851332634687424 .:0.03846435621380806 :0.45795198157429695 -the:0.04225175082683563 t:0.032941270619630814 ter:0.02265525795519352 an:0.017658796161413193 ing:0.017522795125842094 :0.8669701293110847 -he:0.7781790494918823 I:0.05739505589008331 we:0.03235277533531189 you:0.02012290433049202 it:0.012318459339439869 :0.09963175561279058 -in:0.3409774601459503 In:0.1609303057193756 in:0.12705649435520172 the:0.05709189921617508 and:0.01588497869670391 :0.29805886186659336 -taken:0.5652741193771362 afflicted:0.14845746755599976 stricken:0.07949015498161316 struck:0.02248748391866684 treated:0.01663135550916195 :0.16765941865742207 -the:0.9838923215866089 that:0.005444835871458054 this:0.0038427356630563736 tho:0.0030368492007255554 a:0.0007444369257427752 :0.0030388207524083555 -with:0.6054379343986511 and:0.06950537860393524 leaving:0.0683983713388443 seeing:0.0573735274374485 saw:0.03430879861116409 :0.16497598960995674 -will:0.728784441947937 shall:0.11939315497875214 must:0.04218844324350357 may:0.03536788746714592 should:0.03419692814350128 :0.04006914421916008 -P:0.02291073277592659 M:0.022904790937900543 :0.021566117182374 J:0.020079970359802246 F:0.018769731745123863 :0.8937686569988728 -in:0.8771874904632568 of:0.06024501845240593 In:0.026238100603222847 under:0.014192458242177963 with:0.003958921413868666 :0.01817801082506776 -system:0.18053625524044037 method:0.1375068575143814 policy:0.11551918089389801 way:0.04866993427276611 methods:0.044601429253816605 :0.4731663428246975 -to:0.15471525490283966 before:0.1340799182653427 upon:0.08580271899700165 on:0.06823067367076874 In:0.060554035007953644 :0.4966173991560936 -the:0.5154591798782349 whose:0.2252933531999588 which:0.054513972252607346 their:0.05207109823822975 our:0.03501540422439575 :0.11764699220657349 -town:0.08915003389120102 Chicago:0.029999617487192154 which:0.02552150748670101 or:0.021416258066892624 and:0.020624471828341484 :0.8132881112396717 -few:0.9626471400260925 couple:0.023856187239289284 dozen:0.0022831009700894356 hundred:0.0012007324257865548 two:0.0008622905588708818 :0.009150548779871315 -the:0.0680086687207222 of:0.06080139800906181 in:0.04895136505365372 that:0.03914382681250572 to:0.03505919873714447 :0.7480355426669121 -check:0.6990610361099243 mortgage:0.031832341104745865 license:0.030681340023875237 certificate:0.026625311002135277 report:0.024209538474678993 :0.1875904332846403 -told:0.33104997873306274 asked:0.29109957814216614 found:0.07962508499622345 informed:0.025615457445383072 showed:0.024354763329029083 :0.2482551373541355 -or:0.2235877960920334 and:0.07612837851047516 by:0.06448891013860703 the:0.04457883536815643 ,:0.04367980360984802 :0.54753627628088 -would:0.5809674859046936 will:0.15527944266796112 to:0.07634783536195755 may:0.06778793036937714 should:0.03298254683613777 :0.08663475885987282 --:0.02624625526368618 whole:0.023772263899445534 more:0.020362097769975662 other:0.018343672156333923 not:0.01583835482597351 :0.8954373560845852 -Democratic:0.31172025203704834 Republican:0.15396344661712646 republican:0.1475391536951065 liberal:0.03192261606454849 Union:0.030762281268835068 :0.32409225031733513 -from:0.6035392880439758 in:0.07402927428483963 with:0.06030062213540077 between:0.0389104038476944 by:0.031038176268339157 :0.1921822354197502 -the:0.953040361404419 a:0.012915470637381077 their:0.0075216107070446014 tho:0.005361895076930523 my:0.004570261109620333 :0.01659040106460452 -head:0.20355695486068726 .:0.16689519584178925 face:0.04338034242391586 back:0.03807130455970764 left:0.027844291180372238 :0.5202519111335278 -laughed:0.3687245845794678 looked:0.19705918431282043 screamed:0.08556640148162842 yelled:0.0645361989736557 cursed:0.040429964661598206 :0.24368366599082947 -at:0.3856368064880371 of:0.1318710446357727 .:0.11479511111974716 ,:0.042459893971681595 for:0.037967924028635025 :0.2872692197561264 -against:0.4488391578197479 for:0.32771140336990356 on:0.13591285049915314 upon:0.04012461006641388 in:0.009433574043214321 :0.03797840420156717 -one:0.9474612474441528 some:0.01172846183180809 part:0.0038938685320317745 indicative:0.003306231228634715 evidence:0.003153107361868024 :0.030457083601504564 -and:0.5868690609931946 but:0.2317667156457901 while:0.0269406009465456 aud:0.021633265540003777 although:0.012335671111941338 :0.1204546857625246 -paid:0.07613513618707657 made:0.07594238966703415 raised:0.07573206722736359 lent:0.061773352324962616 received:0.052533868700265884 :0.6578831858932972 -night:0.1732015162706375 tried:0.15074782073497772 attempted:0.13771295547485352 dared:0.03506317362189293 managed:0.032828789204359055 :0.47044574469327927 -to:0.220163956284523 from:0.15910333395004272 into:0.06892713904380798 of:0.06334846466779709 over:0.041759200394153595 :0.4466979056596756 -,:0.030454643070697784 ing:0.029901890084147453 :0.02979285642504692 having:0.021380670368671417 ording:0.01531163603067398 :0.8731583040207624 -the:0.5418167114257812 his:0.24587726593017578 a:0.16178937256336212 your:0.009611153975129128 that:0.008238004520535469 :0.03266749158501625 -.:0.9043734073638916 .:0.015547194518148899 ?:0.006814326625317335 !:0.00522001413628459 -.:0.004741771146655083 :0.06330328620970249 -sense:0.14150461554527283 taste:0.09649748355150223 glimpse:0.08031393587589264 description:0.03872370719909668 picture:0.027289219200611115 :0.6156710386276245 -,:0.16325585544109344 o:0.03516632318496704 day:0.028509698808193207 county:0.01915283128619194 ed:0.01753673329949379 :0.7363785579800606 -whom:0.32340678572654724 that:0.26651015877723694 ,:0.05948426201939583 which:0.04372496157884598 as:0.031493786722421646 :0.27538004517555237 -cut:0.9519129395484924 cutting:0.009245351888239384 -:0.00907185859978199 cut:0.00481125945225358 cuts:0.001254065427929163 :0.02370452508330345 -said:0.9407029151916504 said:0.043452467769384384 same:0.0020486898720264435 accused:0.0010342783061787486 other:0.0009948350489139557 :0.011766813811846077 -and:0.2587761878967285 or:0.24021561443805695 for:0.1902543008327484 in:0.06258311867713928 to:0.05929965525865555 :0.1888711228966713 -to:0.9555620551109314 the:0.026811106130480766 tho:0.0015617936151102185 by:0.0008287396631203592 o:0.0008107827161438763 :0.014425522764213383 -the:0.9 :0.1 -known:0.45801180601119995 ,:0.1197419986128807 understood:0.02751028537750244 concealed:0.024988440796732903 explained:0.018052030354738235 :0.35169543884694576 -.:0.9442899227142334 .:0.005396686960011721 ::0.002187131205573678 the:0.0016552607994526625 ,:0.0015232103178277612 :0.04494778800290078 -such:0.5895664691925049 these:0.13358013331890106 the:0.035052742809057236 private:0.033430468291044235 special:0.014144541695713997 :0.1942256446927786 -said:0.9361768364906311 the:0.021067092195153236 this:0.014139191247522831 such:0.010182077065110207 his:0.0030344061087816954 :0.015400396892800927 -given:0.3212485611438751 made:0.08653060346841812 attended:0.038742341101169586 offered:0.032668501138687134 held:0.032607026398181915 :0.4882029667496681 -got:0.3239883482456207 ran:0.22427062690258026 went:0.1277068555355072 came:0.0273119043558836 rushed:0.027264412492513657 :0.26945785246789455 -if:0.48814916610717773 when:0.25082921981811523 and:0.10136823356151581 or:0.061100251972675323 unless:0.01876211352646351 :0.07979101501405239 -d:0.036581747233867645 far:0.03275495767593384 n:0.02023257315158844 ly:0.019623542204499245 l:0.017793791368603706 :0.8730133883655071 -mounted:0.14253540337085724 took:0.04356953874230385 of:0.02759014256298542 brought:0.025772061198949814 saw:0.022871965542435646 :0.737660888582468 -his:0.07093052566051483 treason:0.05738675221800804 the:0.05621730536222458 an:0.03857407718896866 Burr:0.03671932592988014 :0.7401720136404037 -hundred:0.6852747797966003 -:0.04920703545212746 f:0.01692255027592182 per:0.013011498376727104 ,:0.009349995292723179 :0.2262341408059001 -in:0.09180725365877151 of:0.03144368529319763 a:0.024696337059140205 u:0.02379574626684189 very:0.021669724956154823 :0.8065872527658939 -.:0.4836367666721344 ::0.0305757038295269 ,:0.023154444992542267 history:0.02290499396622181 story:0.020442750304937363 :0.41928534023463726 -of:0.37355902791023254 in:0.28765055537223816 In:0.07077687233686447 ol:0.03261026367545128 ot:0.028819957748055458 :0.2065833229571581 -they:0.6388137340545654 the:0.061785738915205 their:0.03311706706881523 th:0.030349958688020706 them:0.01161208562552929 :0.22432141564786434 -dress:0.08234584331512451 gown:0.06208983063697815 necklace:0.05665087327361107 scarf:0.04231006279587746 skirt:0.030956383794546127 :0.7256470061838627 -the:0.5084496140480042 a:0.047524262219667435 using:0.012658949010074139 some:0.008917894214391708 :0.007460152264684439 :0.41498912824317813 -the:0.9 :0.1 -with:0.1530224084854126 now:0.11832620203495026 if:0.09655236452817917 the:0.07795550674200058 and:0.05599822849035263 :0.49814528971910477 -of:0.22948862612247467 ,:0.2286643534898758 by:0.13612255454063416 with:0.06040724366903305 that:0.03064696118235588 :0.31467026099562645 -office:0.2223447859287262 building:0.0934872180223465 house:0.08235377073287964 office:0.03874406963586807 hall:0.03334060311317444 :0.5297295525670052 -well:0.5233079195022583 properly:0.07354710251092911 fully:0.054546058177948 not:0.04001917690038681 sufficiently:0.03222280740737915 :0.27635693550109863 -John:0.11810924112796783 William:0.11091041564941406 James:0.089431993663311 Charles:0.07098563760519028 Joseph:0.05890154466032982 :0.551661167293787 -of:0.8474635481834412 and:0.03903692960739136 for:0.016845934092998505 in:0.01444086804986 ,:0.0104671036824584 :0.07174561638385057 -with:0.9286213517189026 in:0.028011972084641457 for:0.011787435971200466 to:0.005378236994147301 by:0.005053816828876734 :0.021147186402231455 -,:0.622589647769928 .:0.2267124056816101 of:0.042841795831918716 in:0.004327086266130209 May:0.004245429299771786 :0.0992836351506412 -of:0.41669297218322754 and:0.15887324512004852 ,:0.13965947926044464 or:0.02388615347445011 in:0.021308518946170807 :0.23957963101565838 -with:0.5938205122947693 against:0.17434731125831604 to:0.10783163458108902 for:0.032884251326322556 and:0.017262572422623634 :0.07385371811687946 -the:0.9 :0.1 -people:0.15574394166469574 foreigner:0.09519854933023453 nation:0.06240088865160942 country:0.05461534857749939 man:0.053101107478141785 :0.5789401642978191 -the:0.6184452772140503 tho:0.15399225056171417 this:0.12040429562330246 that:0.03747039660811424 his:0.02372683584690094 :0.04596094414591789 -water:0.17051468789577484 timber:0.16732558608055115 lumber:0.10382825881242752 grain:0.04058530926704407 clothing:0.032715972512960434 :0.485030185431242 -present:0.16038188338279724 original:0.12239821255207062 usual:0.09071874618530273 true:0.07959280908107758 full:0.03614535555243492 :0.5107629932463169 -for:0.14406028389930725 in:0.14302565157413483 a:0.05421377718448639 of:0.036008886992931366 the:0.03046722710132599 :0.5922241732478142 -erest:0.15370452404022217 ions:0.06143137067556381 ure:0.05037189647555351 ion:0.04640768840909004 ation:0.04241087660193443 :0.645673643797636 -to:0.9757001996040344 not:0.010607510805130005 should:0.0011693085543811321 ot:0.0010035296436399221 :0.000855897378642112 :0.010663554014172405 -.:0.25713980197906494 ,:0.09969912469387054 of:0.0463843010365963 and:0.03924357146024704 -:0.02089797332882881 :0.5366352275013924 -are:0.9805472493171692 were:0.00908080767840147 is:0.004249684512615204 Are:0.0011147432960569859 have:0.0009176591993309557 :0.004089855996426195 -the:0.3025940954685211 tho:0.13051100075244904 a:0.05516105517745018 his:0.036938391625881195 last:0.02181577868759632 :0.45297967828810215 -of:0.9924734830856323 from:0.003094380022957921 ot:0.0018630691338330507 of:0.000419986667111516 to:0.00031354857492260635 :0.0018355325155425817 -bo:0.5648108720779419 be:0.36198675632476807 he:0.014141354709863663 ho:0.00771579472348094 lie:0.00661180866882205 :0.044733413495123386 -John:0.11517573148012161 William:0.08670206367969513 Joseph:0.058666955679655075 Samuel:0.052383095026016235 George:0.04967450723052025 :0.6373976469039917 -the:0.9 :0.1 -of:0.9847925901412964 ot:0.00577556574717164 from:0.003052826039493084 to:0.0012518942821770906 ol:0.0010093703167513013 :0.004117753473110497 -secret:0.2752889394760132 hidden:0.2545938491821289 concealed:0.17076866328716278 away:0.042264461517333984 confidential:0.031232528388500214 :0.22585155814886093 -;:0.5958749651908875 .:0.030587496235966682 ;:0.029781928285956383 ::0.027061495929956436 ,:0.01760750450193882 :0.2990866098552942 -should:0.5181003212928772 would:0.3033671975135803 could:0.04893610253930092 must:0.037797797471284866 might:0.03404565528035164 :0.05775292590260506 -and:0.43002215027809143 ,:0.4073985517024994 &:0.07153235375881195 of:0.025813166052103043 .:0.021679064258933067 :0.04355471394956112 -here:0.22697879374027252 now:0.1402970850467682 then:0.07397016137838364 again:0.0667371153831482 we:0.05163072794675827 :0.4403861165046692 -the:0.9 :0.1 -to:0.38800641894340515 from:0.2698724567890167 by:0.24698400497436523 through:0.023824417963624 with:0.02296549081802368 :0.04834721051156521 -a:0.9496890306472778 the:0.024904511868953705 his:0.014306464232504368 any:0.002911664079874754 your:0.000980591168627143 :0.0072077380027621984 -in:0.79781574010849 In:0.09002970904111862 within:0.08493202179670334 at:0.008188199251890182 near:0.004408399108797312 :0.014625930693000555 -the:0.8195866346359253 a:0.16902323067188263 tho:0.0018792137270793319 some:0.0008952552452683449 :0.0008244960918091238 :0.007791169628035277 -weak:0.112411268055439 well:0.06133608520030975 strong:0.060193981975317 healthy:0.053814519196748734 good:0.0315927192568779 :0.6806514263153076 -at:0.8373108506202698 into:0.04111091420054436 over:0.027859993278980255 through:0.019047703593969345 to:0.01696949638426304 :0.05770104192197323 -any:0.6298257112503052 one:0.12178457528352737 some:0.05421269312500954 all:0.04003165662288666 many:0.03832344710826874 :0.11582191661000252 -the:0.3149428367614746 Physical:0.22852370142936707 Medical:0.14416947960853577 American:0.021739967167377472 The:0.013905712403357029 :0.27671830262988806 -told:0.9617438912391663 informed:0.011113660410046577 assured:0.0063806199468672276 warned:0.003911845851689577 showed:0.0030946575570851564 :0.013755324995145202 -the:0.9 :0.1 -th:0.8463903069496155 rd:0.02786172367632389 Main:0.014068060554564 nd:0.012004383839666843 st:0.01069650799036026 :0.08897901698946953 -he:0.10861027240753174 .:0.05833521485328674 day:0.024962512776255608 ,:0.02405189722776413 it:0.015462054871022701 :0.7685780478641391 -compelled:0.11558713763952255 allowed:0.0629761666059494 sold:0.058932069689035416 paid:0.058681655675172806 obliged:0.05233030393719673 :0.6514926664531231 -is:0.8914320468902588 was:0.02401462383568287 Is:0.018177270889282227 be:0.009072531946003437 has:0.005614084657281637 :0.05168944178149104 -a:0.721529483795166 the:0.2514841854572296 A:0.005338551942259073 another:0.004415241535753012 this:0.002484123222529888 :0.014748414047062397 -Scripture:0.05746357515454292 tradition:0.051589954644441605 religion:0.0492187924683094 reason:0.04608239606022835 science:0.03563825413584709 :0.7600070275366306 -so:0.9220587015151978 not:0.011441057547926903 as:0.007429135497659445 very:0.006639046594500542 such:0.0062430500984191895 :0.04618900874629617 -and:0.7893649339675903 &:0.04407206177711487 .:0.019734300673007965 to:0.010878793895244598 feet:0.010354939848184586 :0.12559496983885765 -,:0.7448060512542725 ranging:0.12006707489490509 varying:0.019537875428795815 ;:0.016392633318901062 ranged:0.0051545072346925735 :0.094041857868433 -doors:0.2781587839126587 homes:0.12319736182689667 houses:0.11996158212423325 offices:0.047620728611946106 estates:0.03292720019817352 :0.39813434332609177 -work:0.10956870019435883 theory:0.052187398076057434 theories:0.03863508999347687 ideas:0.036136265844106674 plans:0.03371480852365494 :0.7297577373683453 -part:0.9987119436264038 side:0.000577860395424068 parts:0.00024352010223083198 hands:2.9167546017561108e-05 behalf:2.6598390832077712e-05 :0.00041090993909165263 -and:0.9493823647499084 while:0.00966064352542162 but:0.008389838971197605 as:0.005342389456927776 when:0.004088779911398888 :0.023135983385145664 -clay:0.14217063784599304 .:0.1140325739979744 sandy:0.08371413499116898 sand:0.07749154418706894 soil:0.04814157262444496 :0.5344495363533497 -the:0.9 :0.1 -as:0.993119478225708 that:0.0019192881882190704 As:0.0011870387243106961 when:0.0004990473389625549 if:0.0003314937639515847 :0.002943653758848086 -.:0.9707914590835571 .:0.00515287509188056 ::0.0024150346871465445 state:0.0021796247456222773 State:0.0019595520570874214 :0.017501454334706068 -was:0.9149532318115234 meant:0.008237936533987522 contained:0.008221705444157124 is:0.003535184310749173 were:0.0030614552088081837 :0.06199048669077456 -peculiar:0.0756223127245903 cruel:0.041641030460596085 unfortunate:0.03926411643624306 dreadful:0.026510585099458694 morbid:0.02593626081943512 :0.7910256944596767 -a:0.9837456941604614 no:0.004445169121026993 the:0.003994996193796396 some:0.0021474207751452923 any:0.0012952128890901804 :0.0043715068604797125 -ced:0.21669548749923706 ce:0.10937277227640152 ive:0.04058464989066124 ent:0.031220268458127975 red:0.02713245153427124 :0.574994370341301 -station:0.9384300112724304 stations:0.009268054738640785 precinct:0.005704293493181467 Station:0.005690443329513073 district:0.005436843726783991 :0.035470353439450264 -can:0.33087974786758423 will:0.2696927785873413 cannot:0.1967424899339676 must:0.09179212898015976 may:0.03752003610134125 :0.07337281852960587 -,:0.8711014986038208 and:0.03812587633728981 of:0.011224733665585518 or:0.0066087506711483 ,:0.0031639232765883207 :0.06977521744556725 -the:0.9870692491531372 tho:0.0036714854650199413 a:0.0024902073200792074 this:0.00184392009396106 that:0.0006168123218230903 :0.004308325645979494 -American:0.07521123439073563 State:0.03482184186577797 local:0.029089799150824547 common:0.025980336591601372 county:0.024669693782925606 :0.8102270942181349 -with:0.9704521894454956 to:0.02392297424376011 of:0.0038919709622859955 wit:0.00028875170391984284 With:0.0002754565211944282 :0.001168657123344019 -.:0.9614054560661316 .:0.01715771108865738 *.:0.0037280309479683638 ..:0.003566235536709428 ,:0.003473826916888356 :0.010668739443644881 -and:0.4666404128074646 ,:0.30306142568588257 to:0.10087475925683975 who:0.030078314244747162 or:0.023299554362893105 :0.07604553364217281 -a:0.5491896271705627 the:0.378864049911499 their:0.019498614594340324 an:0.010701949708163738 tho:0.007610343862324953 :0.03413541475310922 -.:0.5599974989891052 court:0.14941519498825073 courts:0.09783248603343964 affairs:0.01577243208885193 service:0.009408300742506981 :0.1675740871578455 -put:0.39936691522598267 got:0.10091867297887802 kept:0.08395546674728394 seen:0.05837016925215721 found:0.055932898074388504 :0.30145587772130966 -exist:0.2098676860332489 be:0.17676642537117004 participate:0.1265350878238678 remain:0.041507720947265625 act:0.03857192397117615 :0.4067511558532715 -In:0.10162459313869476 to:0.05628913640975952 a:0.05003471300005913 in:0.04918980225920677 the:0.024524973705410957 :0.7183367814868689 -in:0.16491058468818665 o:0.08849430829286575 ,:0.07788227498531342 and:0.06786304712295532 of:0.05277307331562042 :0.5480767115950584 -Range:0.8719922304153442 ,:0.040164195001125336 and:0.01220108475536108 range:0.008504629135131836 .:0.0037016605492681265 :0.06343620014376938 -be:0.06282513588666916 been:0.044054362922906876 not:0.04197527468204498 ia:0.037989333271980286 *:0.035830289125442505 :0.7773256041109562 -and:0.6659447550773621 to:0.20199079811573029 or:0.039964497089385986 by:0.022363897413015366 the:0.008502994664013386 :0.061233057640492916 -and:0.34635505080223083 it:0.25831136107444763 that:0.24755807220935822 It:0.05878348648548126 which:0.021316541358828545 :0.06767548806965351 -peace:0.7520855069160461 law:0.03342677280306816 laws:0.02417798526585102 country:0.011487647891044617 Constitution:0.01009748037904501 :0.16872460674494505 -mind:0.3895709812641144 hands:0.1187807098031044 head:0.0976969450712204 grasp:0.04175214096903801 heart:0.02969401702284813 :0.3225052058696747 -,:0.26587456464767456 ;:0.25997528433799744 ;:0.08446934074163437 .:0.06655395776033401 .;:0.028738422319293022 :0.2943884301930666 -,:0.38608065247535706 ;:0.05362506955862045 ,:0.04431832581758499 it:0.03942219540476799 ;:0.026966642588377 :0.4495871141552925 -who:0.9945853352546692 that:0.003171451622620225 whom:0.0009620733908377588 which:0.0006477165734395385 who:0.00020257016876712441 :0.0004308529896661639 -Just:0.388852596282959 Not:0.11122097820043564 Is:0.03512975201010704 Im:0.030757294967770576 Keep:0.030423790216445923 :0.40361558832228184 -be:0.1255372166633606 furnish:0.09631801396608353 have:0.04744753614068031 consult:0.03552659973502159 employ:0.0321127250790596 :0.6630579084157944 -which:0.6103947162628174 and:0.2439885437488556 it:0.034704212099313736 that:0.024506252259016037 It:0.020737461745738983 :0.06566881388425827 -suspension:0.3491280674934387 steel:0.1706303060054779 concrete:0.049082327634096146 suspended:0.03916678577661514 standing:0.03188473358750343 :0.36010777950286865 -of:0.6429271697998047 ,:0.08981368690729141 in:0.03882342204451561 on:0.03195163235068321 to:0.013181041926145554 :0.18330304697155952 -ful:0.47533437609672546 provoking:0.12032532691955566 ly:0.030738413333892822 er:0.02856026217341423 ed:0.019900701940059662 :0.32514091953635216 -Mary:0.09940561652183533 John:0.06315533071756363 William:0.03486684337258339 Joseph:0.03251621499657631 James:0.029088836163282394 :0.740967158228159 -the:0.8673686981201172 a:0.020898692309856415 he:0.014660337008535862 said:0.012900765053927898 The:0.010711481794714928 :0.07346002571284771 -the:0.902827799320221 this:0.020385099574923515 tho:0.018785526975989342 that:0.01596870832145214 a:0.004427864216268063 :0.03760500159114599 -pioneers:0.3466157913208008 founders:0.1920313984155655 settlers:0.06889509409666061 men:0.06420779228210449 colonists:0.049571193754673004 :0.2786787301301956 -John:0.10716839879751205 President:0.04532834514975548 Captain:0.04211095720529556 George:0.03884781897068024 Charles:0.036922886967659 :0.7296215929090977 -have:0.9812017679214478 who:0.004718208685517311 had:0.002716313349083066 having:0.0023241417948156595 have:0.0012823762372136116 :0.007757192011922598 -the:0.7777925729751587 this:0.07976323366165161 an:0.023341065272688866 a:0.022181538864970207 replacing:0.007065893150866032 :0.08985569607466459 -gave:0.37579500675201416 paid:0.08392056077718735 made:0.05857621878385544 had:0.038997963070869446 owes:0.03160392865538597 :0.41110632196068764 -and:0.2342263013124466 tho:0.07123857736587524 wo:0.0564376637339592 in:0.037466950714588165 a:0.028658827766776085 :0.5719716791063547 -States:0.9858314990997314 State:0.007543214131146669 state:0.0009133789571933448 Kingdom:0.0008811046136543155 states:0.0007707547047175467 :0.004060048493556678 -tion:0.04910591244697571 ment:0.028899528086185455 crop:0.01724325679242611 er:0.017105640843510628 ent:0.015333032235503197 :0.8723126295953989 -church:0.05564915016293526 soul:0.05267288535833359 congregation:0.0520763099193573 people:0.044233232736587524 flock:0.02540621906518936 :0.769962202757597 -he:0.4094848036766052 He:0.09681779146194458 one:0.0638580396771431 you:0.06277701258659363 1:0.03067810647189617 :0.3363842461258173 -a:0.5963724255561829 for:0.3004906475543976 some:0.021609941497445107 in:0.013759702444076538 of:0.007521108724176884 :0.06024617422372103 -at:0.8547542691230774 of:0.04035646468400955 near:0.0094295684248209 in:0.00840520765632391 .:0.006299161352217197 :0.08075532875955105 -without:0.7263257503509521 before:0.17207957804203033 if:0.025928499177098274 with:0.008084648288786411 Without:0.007745830342173576 :0.059835693798959255 -of:0.7249481678009033 ot:0.04777900502085686 in:0.023451924324035645 among:0.016137883067131042 probably:0.012333053164184093 :0.17534996662288904 -he:0.8588430881500244 and:0.01412409357726574 lie:0.013112976215779781 He:0.011906344443559647 Lee:0.0075708976946771145 :0.0944425999186933 -Ross:0.6527798175811768 York:0.12061344087123871 Orleans:0.027991455048322678 ,:0.02333883009850979 Cork:0.022368723526597023 :0.15290773287415504 -men:0.17231006920337677 crew:0.08307083696126938 man:0.026991408318281174 elevator:0.026117844507098198 company:0.023001093417406082 :0.6685087475925684 --:0.03386327251791954 of:0.027098137885332108 ng:0.02142041176557541 ,:0.01913214661180973 al:0.017678454518318176 :0.880807576701045 -fter:0.07083363831043243 ider:0.06721678376197815 iser:0.03688937425613403 ver:0.026790129020810127 ige:0.013920290395617485 :0.7843497842550278 -fence:0.19756349921226501 house:0.1061839759349823 tree:0.06249250844120979 ladder:0.02758646570146084 wall:0.026195546612143517 :0.5799780040979385 -of:0.9700053334236145 for:0.012614664621651173 on:0.0019292744109407067 in:0.001338748261332512 as:0.0012725169071927667 :0.01283946237526834 -big:0.3340233564376831 great:0.11983375996351242 decisive:0.07070980966091156 major:0.0686967745423317 large:0.05802164226770401 :0.3487146571278572 -furnace:0.35962364077568054 boiler:0.10577656328678131 steam:0.09221500158309937 air:0.025920003652572632 gas:0.024670731276273727 :0.3917940594255924 -the:0.9843316078186035 tho:0.005730598233640194 no:0.0014958684332668781 The:0.0014636405976489186 any:0.000853374192956835 :0.006124910723883659 -know:0.9682987332344055 knows:0.0036826080176979303 learn:0.003657596418634057 remember:0.003536598291248083 Know:0.003023262368515134 :0.017801201669499278 -Mr:0.9291191697120667 Miss:0.006962146144360304 husband:0.005840014200657606 Mrs:0.0037725784350186586 M:0.002655553165823221 :0.05165053834207356 -,:0.4151327908039093 is:0.23520410060882568 be:0.07312680035829544 Is:0.019190015271306038 has:0.018126219511032104 :0.23922007344663143 -the:0.7507232427597046 these:0.07536804676055908 tho:0.014546572230756283 other:0.014253276400268078 two:0.011199341155588627 :0.13390952069312334 -,:0.11624571681022644 and:0.08855204284191132 *:0.04467819631099701 rooms:0.02316422201693058 papers:0.02308824472129345 :0.7042715772986412 -of:0.9242948293685913 by:0.02845120243728161 ot:0.02784981206059456 among:0.0037095029838383198 from:0.0020112076308578253 :0.013683445518836379 -friends:0.026496853679418564 people:0.023295339196920395 country:0.017334720119833946 duty:0.015020741149783134 time:0.013684204779565334 :0.9041681410744786 -had:0.34722697734832764 have:0.15273244678974152 most:0.14387114346027374 only:0.0767194926738739 very:0.04239795356988907 :0.23705198615789413 -notes:0.37846121191978455 ,:0.13428808748722076 equal:0.09636803716421127 bonds:0.06619583815336227 equivalent:0.04458573833107948 :0.28010108694434166 -third:0.18614183366298676 sixth:0.15391501784324646 fifth:0.13059645891189575 fourth:0.12455838173627853 seventh:0.097197026014328 :0.3075912818312645 -the:0.8488847017288208 to:0.05420438200235367 tho:0.024659711867570877 by:0.015946777537465096 The:0.006759919226169586 :0.04954450763761997 -work:0.2542749047279358 contract:0.12914887070655823 works:0.07967937737703323 contracts:0.056182458996772766 bids:0.04181469604372978 :0.4388996921479702 -not:0.611376941204071 well:0.07641129195690155 only:0.05203552171587944 scarcely:0.017941642552614212 already:0.014560255222022533 :0.22767434734851122 -increase:0.30373379588127136 stimulate:0.12969136238098145 improve:0.113926462829113 attract:0.073580801486969 reduce:0.0358923077583313 :0.3431752696633339 -asked:0.8498777747154236 told:0.12281212955713272 ask:0.01564881205558777 tell:0.003946125507354736 informed:0.0016341229202225804 :0.00608103524427861 -or:0.9217984080314636 and:0.048957813531160355 nor:0.015517987310886383 even:0.001882155891507864 any:0.0007661157287657261 :0.01107751950621605 -up:0.15839146077632904 80:0.030480990186333656 100:0.025723537430167198 1000:0.025525301694869995 800:0.024307984858751297 :0.7355707250535488 -no:0.5728133320808411 a:0.15196958184242249 the:0.14986327290534973 this:0.032207708805799484 some:0.018864095211029053 :0.07428200915455818 -it:0.520362138748169 It:0.24210651218891144 they:0.06266869604587555 he:0.020341413095593452 China:0.018195778131484985 :0.13632546178996563 -,:0.6824137568473816 this:0.1523772031068802 what:0.07322686910629272 that:0.020479822531342506 which:0.017549926415085793 :0.0539524219930172 -t:0.1664896011352539 f:0.08601649850606918 of:0.07934623956680298 in:0.07601549476385117 .:0.02979431115090847 :0.5623378548771143 -refused:0.39915063977241516 neglected:0.1102229431271553 failed:0.08741842210292816 tried:0.07742331922054291 attempted:0.03816522657871246 :0.287619449198246 -up:0.41451889276504517 him:0.13530372083187103 away:0.13419753313064575 back:0.04768428951501846 himself:0.0435645692050457 :0.22473099455237389 -Into:0.4613017439842224 over:0.08849833160638809 into:0.0736306831240654 around:0.07113441079854965 through:0.04700101912021637 :0.2584338113665581 -silk:0.6624450087547302 cotton:0.07603619247674942 textile:0.07102230936288834 wool:0.024490009993314743 cloth:0.021620914340019226 :0.14438556507229805 -the:0.475580096244812 tho:0.0991986021399498 an:0.03461375832557678 some:0.02004162035882473 a:0.020019136369228363 :0.3505467865616083 -the:0.9 :0.1 -only:0.6487038135528564 least:0.04860181733965874 as:0.035056356340646744 just:0.02041095867753029 one:0.018652822822332382 :0.2285742312669754 -more:0.4554336965084076 better:0.06966068595647812 good:0.06691738963127136 get:0.04376278445124626 the:0.02982422150671482 :0.33440122194588184 -good:0.6009671092033386 their:0.03524871543049812 the:0.02836655266582966 honest:0.019485341385006905 excellent:0.01884877309203148 :0.2970835082232952 -be:0.38237592577934265 have:0.37585797905921936 bo:0.007955464534461498 lie:0.007587038446217775 been:0.00651093153283 :0.21971266064792871 -it:0.963921308517456 It:0.03088454157114029 there:0.0012413158547133207 we:0.0008633725810796022 they:0.00023056898498907685 :0.002858892490621656 -which:0.9872910380363464 whom:0.007701351772993803 which:0.0014824899844825268 that:0.0004874153237324208 each:0.00030745999538339674 :0.002730244887061417 -death:0.04442710056900978 first:0.03144853934645653 funeral:0.02511793002486229 last:0.022447945550084114 unfortunate:0.019381508231163025 :0.8571769762784243 -was:0.39992767572402954 they:0.20268875360488892 he:0.05540335923433304 were:0.05014951527118683 ho:0.029921434819698334 :0.26190926134586334 -of:0.9134730100631714 ot:0.048317279666662216 o:0.0047759078443050385 in:0.0037682594265788794 In:0.003554030554369092 :0.026111512444913387 -large:0.022086767479777336 high:0.01327473297715187 great:0.009932753629982471 1:0.00884520635008812 800:0.008383438922464848 :0.9374771006405354 -go:0.15171948075294495 step:0.0862516537308693 come:0.0847591906785965 stand:0.06693720817565918 turn:0.052395060658454895 :0.5579374060034752 -It:0.984860897064209 He:0.0034262121189385653 This:0.0024819718673825264 it:0.0010790693340823054 One:0.0009872630471363664 :0.007164586568251252 -the:0.8492380380630493 our:0.049289606511592865 a:0.035607390105724335 each:0.016131404787302017 this:0.011616699397563934 :0.03811686113476753 -of:0.13576968014240265 and:0.12943637371063232 in:0.11609873175621033 ,:0.0963604524731636 like:0.028025779873132706 :0.4943089820444584 -the:0.7553142309188843 our:0.12654097378253937 that:0.03239944577217102 this:0.023706426844000816 their:0.008612683974206448 :0.05342623870819807 -West:0.0741664320230484 East:0.037567801773548126 Charles:0.017880672588944435 Central:0.015829361975193024 and:0.013687659054994583 :0.8408680725842714 -to:0.25323486328125 toward:0.19257506728172302 at:0.139097660779953 for:0.07434235513210297 of:0.06195078417658806 :0.27879926934838295 -a:0.3626441955566406 severe:0.0766063779592514 bad:0.052465133368968964 the:0.039036475121974945 mild:0.022824909538030624 :0.44642290845513344 -of:0.9759356379508972 ol:0.005594532936811447 in:0.0021980118472129107 ot:0.0014894508058205247 ,:0.001196494558826089 :0.013585871900431812 -man:0.16448408365249634 .":0.10830340534448624 ?":0.08232942223548889 .:0.04654243588447571 ?:0.03747247904539108 :0.5608681738376617 -the:0.8344101309776306 his:0.06437784433364868 an:0.042370352894067764 tho:0.03851666674017906 this:0.006426463834941387 :0.01389854121953249 -holding:0.17497651278972626 with:0.08457035571336746 wearing:0.08236709982156754 in:0.0757480338215828 under:0.06281200051307678 :0.5195259973406792 -feet:0.2699531316757202 eggs:0.23306505382061005 inches:0.05538870021700859 degrees:0.03300594910979271 times:0.024408230558037758 :0.3841789346188307 -,:0.43660789728164673 as:0.11353062093257904 a:0.07933049649000168 and:0.04503859207034111 was:0.03628770634531975 :0.2892046868801117 -had:0.7946757078170776 has:0.15584231913089752 was:0.01135515421628952 having:0.0074969069100916386 have:0.0024213644210249186 :0.028208547504618764 -in:0.6282486915588379 In:0.053758665919303894 on:0.04170919582247734 beside:0.033315714448690414 behind:0.030933363363146782 :0.21203436888754368 -him:0.16345840692520142 me:0.048083867877721786 o:0.03273570165038109 her:0.028116581961512566 he:0.02660982497036457 :0.7009956166148186 -wife:0.7609794735908508 friend:0.053512878715991974 daughter:0.05286411941051483 husband:0.019512271508574486 sister:0.018815195187926292 :0.09431606158614159 -and:0.4487663507461548 but:0.40616267919540405 for:0.030324576422572136 yet:0.011952308937907219 hut:0.007115444168448448 :0.09567864052951336 -John:0.09357992559671402 William:0.09172836691141129 Joseph:0.04221426695585251 Charles:0.031305793672800064 Mrs:0.0309610553085804 :0.7102105915546417 -guests:0.6014443039894104 friends:0.08212365210056305 children:0.0286728385835886 relatives:0.025033235549926758 persons:0.02330387383699417 :0.23942209593951702 -.:0.6032530069351196 !:0.041277967393398285 ?:0.0193844735622406 plan:0.016240227967500687 judgment:0.012279361486434937 :0.30756496265530586 -arrived:0.4020059108734131 came:0.08965713530778885 entered:0.08554711192846298 met:0.08547151833772659 boarded:0.0735587552189827 :0.2637595683336258 -the:0.943273663520813 tho:0.021540801972150803 this:0.007001135498285294 tha:0.004711025394499302 its:0.003857808653265238 :0.019615564960986376 -send:0.2246064990758896 bring:0.12494166940450668 deliver:0.11608852446079254 sell:0.06193177029490471 ship:0.053626567125320435 :0.41880496963858604 -to:0.18296490609645844 ,:0.1289501190185547 of:0.10531117022037506 in:0.08583681285381317 taken:0.03460363298654556 :0.4623333588242531 -in:0.06861614435911179 Henry:0.03921957314014435 under:0.03862202540040016 George:0.03464648500084877 at:0.03261426091194153 :0.7862815111875534 --:0.5295363068580627 i:0.13220025599002838 -:0.011408427730202675 t:0.010642762295901775 ­:0.007809297647327185 :0.30840294947847724 -,:0.437639445066452 payable:0.08176714926958084 due:0.06457657366991043 thereof:0.06036968156695366 arising:0.01769411563873291 :0.33795303478837013 -and:0.16366510093212128 who:0.14166519045829773 ,:0.07802677154541016 to:0.057594653218984604 they:0.04118872433900833 :0.5178595595061779 -and:0.8975379467010498 ,:0.026331569999456406 of:0.012614906765520573 nor:0.007612163666635752 or:0.00393903162330389 :0.051964381244033575 -ready:0.1963382214307785 going:0.0947556272149086 obliged:0.08132022619247437 determined:0.0806041732430458 here:0.04352608695626259 :0.5034556649625301 -nt:0.03569244593381882 not:0.02673693373799324 been:0.012589563615620136 f:0.012465880252420902 u:0.011005266569554806 :0.9015099098905921 -the:0.9 :0.1 -the:0.34486183524131775 every:0.14091645181179047 a:0.1342461109161377 its:0.05390884354710579 tho:0.02969212830066681 :0.2963746301829815 -ment:0.10295110940933228 tion:0.07678049802780151 rage:0.018006375059485435 ce:0.017615528777241707 ing:0.017411796376109123 :0.76723469235003 -offers:0.16054672002792358 agrees:0.09140952676534653 asks:0.05131973326206207 tries:0.04717908799648285 decides:0.03985214605927467 :0.6096927858889103 -which:0.6578232645988464 whom:0.03617206588387489 having:0.01680808886885643 justice:0.011899582110345364 that:0.009421301074326038 :0.26787569746375084 -dresses:0.08314185589551926 coats:0.06198461353778839 robes:0.0603722408413887 hats:0.04916989803314209 suits:0.0394742488861084 :0.7058571428060532 -with:0.8173980712890625 in:0.03809555619955063 and:0.013676978647708893 to:0.011661180295050144 by:0.011327848769724369 :0.10784036479890347 -much:0.844916582107544 many:0.032470766454935074 little:0.026274044066667557 the:0.01050079520791769 your:0.005469610448926687 :0.08036820171400905 -in:0.2340257465839386 for:0.16471296548843384 with:0.1469288319349289 to:0.12671531736850739 ,:0.03917020931839943 :0.28844692930579185 -ing:0.7050573229789734 ed:0.04281450808048248 ter:0.01899603195488453 ment:0.0052472916431725025 er:0.005093547515571117 :0.22279129782691598 -complied:0.7263847589492798 dealt:0.25110989809036255 charged:0.0058438777923583984 proceeded:0.00417882576584816 interfered:0.002988890977576375 :0.009493748424574733 -evil:0.03885715827345848 awful:0.024697087705135345 earnest:0.024604907259345055 old:0.024320362135767937 honest:0.022589996457099915 :0.8649304881691933 -over:0.2755911648273468 all:0.08999868482351303 one:0.057932060211896896 half:0.04696141183376312 to:0.04138666391372681 :0.48813001438975334 -iac:0.7582346796989441 ant:0.04655473306775093 antly:0.026996823027729988 ical:0.014304675161838531 ic:0.011922813951969147 :0.1419862750917673 -of:0.9642753005027771 to:0.007312370929867029 from:0.0048722135834395885 ot:0.004550602287054062 on:0.0030293462332338095 :0.01596016646362841 -,:0.27905845642089844 friends:0.09510771185159683 neighbors:0.0806439220905304 husband:0.06551773101091385 parents:0.02897292748093605 :0.45069925114512444 -the:0.6954678893089294 tho:0.10902046412229538 a:0.050621148198843 its:0.02789030410349369 this:0.01511603407561779 :0.1018841601908207 -":0.42434069514274597 ,":0.10640575736761093 and:0.09243793785572052 ,:0.06673336774110794 ";:0.040142543613910675 :0.26993969827890396 -commit:0.32737240195274353 object:0.12776879966259003 contribute:0.09014949202537537 devote:0.049517273902893066 go:0.03679091855883598 :0.368401113897562 -400:0.11468806117773056 8000:0.08987891674041748 500:0.0817028135061264 600:0.05899234116077423 000:0.05045362934470177 :0.6042842380702496 -for:0.3132598102092743 in:0.14207714796066284 to:0.09559662640094757 one:0.07536324858665466 of:0.05969905108213425 :0.3140041157603264 -often:0.09890096634626389 usually:0.043063968420028687 not:0.03935291990637779 being:0.03842863067984581 generally:0.03738555684685707 :0.7428679578006268 -use:0.8528090119361877 application:0.1179242953658104 insertion:0.0029784454964101315 care:0.0019789570942521095 usage:0.0012863620650023222 :0.0230229280423373 -the:0.9 :0.1 -A:0.48120224475860596 a:0.16243092715740204 The:0.08416935056447983 Another:0.05760640278458595 This:0.050483960658311844 :0.16410711407661438 -free:0.2875620126724243 ,:0.14536608755588531 far:0.06268368661403656 saving:0.03814316168427467 recovering:0.024772649630904198 :0.44147240184247494 -the:0.9657504558563232 tho:0.01620491035282612 The:0.0009718041983433068 our:0.0008563098381273448 some:0.0008321053464896977 :0.01538441440789029 -sermon:0.21481098234653473 Gospel:0.04700096324086189 Bible:0.025655023753643036 Torah:0.02267937734723091 Judgment:0.019206609576940536 :0.6706470437347889 -who:0.5347648859024048 have:0.2807347774505615 and:0.04110538214445114 having:0.03680887073278427 that:0.02756998874247074 :0.07901609502732754 -make:0.18484894931316376 form:0.13966204226016998 follow:0.07868698984384537 create:0.05585184320807457 be:0.046784985810518265 :0.49416518956422806 -Christ:0.04875864088535309 prayer:0.04803480952978134 praise:0.03866325691342354 God:0.030603652819991112 love:0.023608040064573288 :0.8103315997868776 --:0.12975680828094482 :0.06653591990470886 t:0.026837650686502457 v:0.018786996603012085 u:0.015917502343654633 :0.7421651221811771 -resent:0.0731668546795845 oppose:0.04523332417011261 protested:0.04276842251420021 blame:0.039855923503637314 regret:0.03573885187506676 :0.7632366232573986 -virtue:0.26781129837036133 decree:0.09164335578680038 order:0.05690021440386772 payment:0.05600881576538086 way:0.03937290236353874 :0.48826341331005096 -hundred:0.8271647095680237 half:0.023731697350740433 quarter:0.014422114938497543 dozen:0.010218845680356026 half:0.009969891980290413 :0.1144927404820919 -to:0.8132392764091492 ot:0.07312608510255814 of:0.03407493233680725 lo:0.006898153573274612 ta:0.005147872492671013 :0.06751368008553982 -;:0.545581579208374 ,:0.2598470151424408 .:0.07800556719303131 ;:0.03894593194127083 ::0.019320329651236534 :0.05829957686364651 -the:0.9 :0.1 -and:0.9900402426719666 ,:0.006842573173344135 und:0.00047854467993602157 or:0.0004675020172726363 &:0.0004238522669766098 :0.0017472851905040443 -cause:0.1672072410583496 result:0.04868718609213829 object:0.03987733647227287 effect:0.03540859371423721 purpose:0.031901441514492035 :0.67691820114851 -he:0.9327991008758545 lie:0.01456446759402752 she:0.012075023725628853 I:0.007885036990046501 it:0.003818351309746504 :0.02885801950469613 -securing:0.12878581881523132 reaching:0.10736829787492752 bringing:0.03133822977542877 making:0.030353059992194176 :0.030071476474404335 :0.6720831170678139 -dy:0.5396668314933777 ly:0.0224082600325346 ty:0.013502449728548527 di:0.009570389054715633 d:0.009308861568570137 :0.4055432081222534 -nd:0.42092037200927734 th:0.02133115567266941 n:0.020394764840602875 t:0.018898427486419678 o:0.01744200475513935 :0.5010132752358913 -erect:0.41549935936927795 build:0.15034747123718262 establish:0.048075392842292786 put:0.04490235447883606 construct:0.04238234460353851 :0.29879307746887207 -the:0.4756947159767151 his:0.4731736183166504 these:0.006668847519904375 two:0.005983208771795034 those:0.0044961306266486645 :0.03398347878828645 -Garfield:0.14027027785778046 Grant:0.024043643847107887 Lincoln:0.021196233108639717 Harrison:0.016637511551380157 Pierce:0.015325527638196945 :0.7825268059968948 -villages:0.5161444544792175 towns:0.42080065608024597 counties:0.010679461993277073 farms:0.007775523234158754 districts:0.0038915914483368397 :0.04070831276476383 -a:0.30557841062545776 any:0.2140088975429535 one:0.15727202594280243 that:0.037881311029195786 the:0.030591124668717384 :0.25466823019087315 -Indians:0.12391269952058792 Spanish:0.08916929364204407 Italians:0.08125773817300797 British:0.07441291213035583 English:0.06904704123735428 :0.5622003152966499 -reason:0.45886120200157166 second:0.3004797399044037 third:0.03382544592022896 consequence:0.015640033408999443 condition:0.01145770400762558 :0.17973587475717068 -The:0.26424509286880493 Our:0.06359881907701492 All:0.06086650863289833 These:0.052342213690280914 Why:0.03412918001413345 :0.5248181857168674 -existence:0.27361974120140076 presence:0.15606479346752167 origin:0.1144004762172699 cause:0.045623473823070526 effects:0.04364858940243721 :0.36664292588829994 -,:0.16023379564285278 and:0.08039124310016632 that:0.0622686967253685 which:0.06023282930254936 I:0.04380631819367409 :0.593067117035389 -buildings:0.14284245669841766 warehouses:0.03988771513104439 factories:0.038808926939964294 stores:0.034789424389600754 shops:0.029611747711896896 :0.714059729129076 -the:0.5372450947761536 tho:0.3942387104034424 her:0.017032645642757416 this:0.012222867459058762 that:0.011232003569602966 :0.02802867814898491 -of:0.9413123726844788 ol:0.023275140672922134 ot:0.010303881950676441 Of:0.004184587858617306 from:0.001938661909662187 :0.018985354923643172 -Shortly:0.3491893410682678 Immediately:0.10990455001592636 Soon:0.07622113078832626 But:0.06449141353368759 and:0.028850983828306198 :0.37134258076548576 -to:0.9716737270355225 ot:0.006770636420696974 ta:0.0021598502062261105 and:0.002011752687394619 To:0.0020092891063541174 :0.015374744543805718 -,:0.031416136771440506 Taylor:0.027762558311223984 Brown:0.02285982482135296 Hall:0.02121082693338394 Jones:0.019787754863500595 :0.876962898299098 -to:0.8123570680618286 upon:0.07635891437530518 for:0.025574494153261185 on:0.02239140495657921 by:0.01669890433549881 :0.04661921411752701 -to:0.31316080689430237 into:0.24253948032855988 in:0.13627034425735474 at:0.08518541604280472 In:0.03631230816245079 :0.1865316443145275 -has:0.21432030200958252 have:0.11959134787321091 to:0.08605613559484482 that:0.07943786680698395 which:0.07754013687372208 :0.42305421084165573 -other:0.7493895292282104 all:0.048975177109241486 the:0.02435045689344406 various:0.013426238670945168 any:0.00905107706785202 :0.15480752103030682 -He:0.9425390362739563 It:0.023983249440789223 he:0.0038022177759557962 I:0.001750898314639926 And:0.0016863406635820866 :0.02623825753107667 -factory:0.32766470313072205 these:0.3118799030780792 the:0.08750571310520172 grocery:0.06371697038412094 such:0.028290094807744026 :0.18094261549413204 -a:0.31406375765800476 the:0.2702347934246063 this:0.13588310778141022 that:0.046964604407548904 our:0.03168617561459541 :0.20116756111383438 -th:0.2109944373369217 page:0.023899465799331665 paragraph:0.022953663021326065 minutes:0.01915799267590046 pages:0.019094133749604225 :0.7039003074169159 -thought:0.320629745721817 knew:0.18037022650241852 felt:0.07149387151002884 said:0.053955141454935074 decided:0.0330205112695694 :0.34053050354123116 -came:0.7835077047348022 went:0.10797026008367538 returned:0.05496598780155182 come:0.010718608275055885 called:0.008988152258098125 :0.03384928684681654 -every:0.5450112223625183 the:0.13344983756542206 any:0.11710203438997269 no:0.09772314131259918 an:0.03996506705880165 :0.06674869731068611 -,:0.7013680934906006 as:0.06357163190841675 which:0.029904451221227646 duly:0.019578853622078896 was:0.014386485330760479 :0.17119048442691565 -..:0.25511306524276733 ....:0.16344590485095978 .:0.11383994668722153 ..:0.09389785677194595 .......:0.07760115712881088 :0.2961020693182945 -to:0.5202876925468445 in:0.17114843428134918 before:0.07815729826688766 at:0.07788467407226562 by:0.029097657650709152 :0.1234242431819439 -ty:0.019882461056113243 dent:0.019677940756082535 ter:0.018289299681782722 est:0.017970187589526176 ly:0.014889584854245186 :0.9092905260622501 -.:0.0780017301440239 :0.05972614511847496 and:0.05581144616007805 ::0.050201207399368286 at:0.043338507413864136 :0.7129209637641907 -population:0.30977165699005127 crop:0.0766088142991066 insect:0.06570533663034439 annual:0.05678069218993187 net:0.019795240834355354 :0.4713382590562105 -formed:0.13836044073104858 structed:0.0940641462802887 ned:0.054511792957782745 organized:0.04218700900673866 joined:0.03982387110590935 :0.631052739918232 -half:0.25431233644485474 about:0.13760225474834442 for:0.12058167904615402 nearly:0.06590062379837036 over:0.03701664134860039 :0.38458646461367607 -to:0.8260486125946045 and:0.14087848365306854 of:0.006622444838285446 ot:0.005857628770172596 ,:0.003630690276622772 :0.01696213986724615 -ment:0.0723717138171196 ed:0.05627817660570145 ter:0.04770949110388756 man:0.03686661645770073 er:0.03268039599061012 :0.7540936060249805 -ment:0.8760797381401062 mem:0.008957509882748127 dent:0.006039478350430727 tion:0.0045852381736040115 mand:0.0018744614208117127 :0.10246357403229922 -which:0.6156620383262634 that:0.2929135262966156 who:0.017670540139079094 but:0.011132931336760521 ,:0.011069673113524914 :0.05155129078775644 -The:0.602986216545105 No:0.07412921637296677 tho:0.06404101103544235 the:0.03942691907286644 Every:0.03251335769891739 :0.18690327927470207 -be:0.9760642051696777 bo:0.015624749474227428 lie:0.001730136456899345 have:0.0007835871074348688 bee:0.0005074323853477836 :0.00528988940641284 -horses:0.18481029570102692 wagon:0.05019524320960045 blankets:0.04330749809741974 belts:0.04231594502925873 boots:0.03236617147922516 :0.647004846483469 -not:0.3774745464324951 never:0.038839105516672134 hardly:0.03615810349583626 without:0.03009878285229206 seldom:0.028668874874711037 :0.4887605868279934 -being:0.3236446976661682 is:0.16227105259895325 ,:0.03558138385415077 when:0.028827190399169922 Is:0.023816123604774475 :0.42585955187678337 -tho:0.3721312880516052 the:0.28364548087120056 th:0.027787066996097565 a:0.01926327496767044 an:0.015900321304798126 :0.2812725678086281 -were:0.2339475303888321 was:0.13031937181949615 is:0.0525255911052227 not:0.05060087889432907 are:0.0371326245367527 :0.4954740032553673 -those:0.3659103512763977 persons:0.1810472309589386 being:0.058939989656209946 all:0.05030655488371849 were:0.03949902579188347 :0.3042968474328518 -The:0.5505958795547485 Our:0.13213683664798737 This:0.12721867859363556 A:0.07329476624727249 Their:0.0198714267462492 :0.09688241221010685 -said:0.9790169596672058 said:0.009870050475001335 same:0.000815213134046644 .:0.0004133261682000011 late:0.0004111379967071116 :0.009473312558839098 -him:0.7271198630332947 them:0.03345784917473793 he:0.0307735875248909 himself:0.011353394947946072 ho:0.010070509277284145 :0.18722479604184628 -by:0.8295843601226807 in:0.04648474231362343 ,:0.041415657848119736 from:0.02644241973757744 with:0.009679022245109081 :0.04639379773288965 -of:0.9067355990409851 before:0.02076619490981102 preceding:0.015567154623568058 after:0.010169212706387043 ot:0.005658993497490883 :0.04110284522175789 -to:0.3861998915672302 the:0.2510319948196411 said:0.08571965992450714 for:0.03155709430575371 ot:0.017977707087993622 :0.2275136522948742 -them:0.16417187452316284 ,:0.10288064926862717 it:0.09990657866001129 gold:0.08941026777029037 silver:0.08843789994716644 :0.4551927298307419 -Senate:0.8846184015274048 House:0.07023905962705612 senate:0.01827738620340824 Congress:0.005116552114486694 house:0.004904606379568577 :0.01684399414807558 -to:0.9781940579414368 the:0.006429086439311504 from:0.002560603665187955 with:0.0022402817849069834 to:0.0010793983237817883 :0.009496571845375001 -does:0.41384586691856384 did:0.305250346660614 would:0.06668281555175781 will:0.06591832637786865 could:0.042672403156757355 :0.10563024133443832 -the:0.950797975063324 a:0.012413923628628254 tho:0.008829922415316105 Assistant:0.002372750546783209 The:0.002371053909882903 :0.023214374436065555 -,:0.04646307975053787 saved:0.038159504532814026 worth:0.02845762111246586 preserving:0.02166249044239521 all:0.021355442702770233 :0.8439018614590168 -Golden:0.37581199407577515 South:0.03673534095287323 West:0.030474450439214706 Iron:0.018922053277492523 Silver:0.017662709578871727 :0.5203934516757727 -I:0.42828336358070374 he:0.27108627557754517 and:0.19951874017715454 He:0.031035691499710083 she:0.0076008085161447525 :0.06247512064874172 -room:0.28714966773986816 chair:0.2084679752588272 corner:0.07825449109077454 doorway:0.07386691868305206 middle:0.043415673077106476 :0.30884527415037155 -steam:0.6783756017684937 electric:0.06819194555282593 water:0.013386121019721031 new:0.0112915663048625 first:0.011289715766906738 :0.21746504958719015 -the:0.15463396906852722 our:0.07023057341575623 properly:0.05251861736178398 newly:0.0343644954264164 well:0.03433982655405998 :0.6539125181734562 -will:0.4102119505405426 to:0.12990236282348633 shall:0.057190872728824615 should:0.029761940240859985 can:0.02907167375087738 :0.3438611999154091 -ever:0.11489366739988327 indeed:0.10143885761499405 anything:0.06329818814992905 not:0.058522049337625504 it:0.05520328879356384 :0.6066439487040043 -avenue:0.8215129971504211 street:0.16491545736789703 road:0.004846515133976936 Avenue:0.0030087875202298164 ,:0.0006053416873328388 :0.005110901140142232 -order:0.5528877973556519 refusing:0.06513811647891998 attempting:0.03641887381672859 which:0.026755711063742638 trying:0.017004305496811867 :0.30179519578814507 -of:0.7994441390037537 at:0.08497253805398941 to:0.0366549976170063 from:0.0163737703114748 for:0.015683794394135475 :0.04687076061964035 -wit:0.3455285131931305 ::0.3022754192352295 .:0.04711970314383507 ::0.04600526764988899 me:0.024206707254052162 :0.2348643895238638 -of:0.9318387508392334 in:0.020858218893408775 from:0.004368273541331291 or:0.003172381315380335 all:0.0028719641268253326 :0.03689041128382087 -if:0.5309819579124451 when:0.19779887795448303 unless:0.04375741258263588 though:0.03848276659846306 not:0.030764730647206306 :0.15821425430476665 -spring:0.17038261890411377 garden:0.10707566142082214 yard:0.07708392292261124 shade:0.06393475085496902 autumn:0.03969893231987953 :0.5418241135776043 -of:0.668867290019989 in:0.16069342195987701 at:0.07645565271377563 ol:0.023531557992100716 In:0.015468604862689972 :0.05498347245156765 -and:0.8696814179420471 or:0.068496935069561 ,:0.023233164101839066 to:0.004086409695446491 with:0.0032589794136583805 :0.03124309377744794 -these:0.21071165800094604 those:0.20359554886817932 their:0.12431040406227112 both:0.08719071000814438 the:0.03735238313674927 :0.33683929592370987 -well:0.2231195569038391 ,:0.1431492418050766 candidates:0.03543638437986374 opposed:0.024532537907361984 such:0.019827742129564285 :0.5539345368742943 -In:0.9923622608184814 in:0.0018886409234255552 In:0.0011597347911447287 By:0.0007668420439586043 The:0.0007581965182907879 :0.0030643249046988785 -so:0.11246085166931152 later:0.04894886165857315 18:0.04558912664651871 14:0.03597396984696388 17:0.03127186745405197 :0.7257553227245808 -of:0.974073588848114 from:0.00698511116206646 in:0.0038948801811784506 on:0.0037215857300907373 ot:0.0035178018733859062 :0.0078070322051644325 -On:0.5593840479850769 Along:0.23934268951416016 At:0.05361829698085785 From:0.03147629275918007 In:0.020162276923656464 :0.09601639583706856 -1:0.4866980016231537 2:0.0461292564868927 I:0.03426022082567215 M:0.018695369362831116 5:0.017590567469596863 :0.3966265842318535 -to:0.11214843392372131 I:0.10801998525857925 't:0.07986190915107727 not:0.04383188486099243 me:0.04238518700003624 :0.6137525998055935 -an:0.5496627688407898 that:0.0761566162109375 the:0.05556381121277809 one:0.053762029856443405 and:0.0340256504714489 :0.2308291234076023 -method:0.9019573926925659 system:0.08068583160638809 mechanism:0.0008040046668611467 principle:0.0008020403329282999 mode:0.0007699227426201105 :0.014980807958636433 -see:0.21314318478107452 visit:0.20658151805400848 view:0.1135086640715599 leave:0.08625127375125885 reach:0.03824355825781822 :0.34227180108428 -persons:0.7457549571990967 person:0.16562290489673615 officer:0.011801599524915218 vessel:0.00831258948892355 party:0.00460679130628705 :0.06390115758404136 -a:0.9887063503265381 the:0.005637762136757374 an:0.0024931887164711952 some:0.00021961152378935367 good:0.000146026024594903 :0.0027970612718490884 -notice:0.7140998244285583 cause:0.13121415674686432 order:0.01940411888062954 reason:0.015274163335561752 Notice:0.00841912068426609 :0.11158861592411995 -equipped:0.18094797432422638 able:0.1741979420185089 than:0.13643918931484222 qualified:0.08085396885871887 disposed:0.06683305650949478 :0.36072786897420883 -tion:0.035835083574056625 mem:0.019900521263480186 masters:0.016833409667015076 senators:0.015861457213759422 members:0.013216903433203697 :0.898352624848485 -the:0.5180511474609375 my:0.09669359028339386 our:0.08608097583055496 and:0.04009900242090225 tho:0.017398331314325333 :0.2416769526898861 -some:0.10616996884346008 at:0.07069653272628784 no:0.06422392278909683 -:0.05289171636104584 a:0.04551657289266586 :0.6605012863874435 -used:0.30962058901786804 come:0.17751668393611908 sworn:0.04417678341269493 grown:0.041433610022068024 learned:0.03826187178492546 :0.38899046182632446 -,:0.198871448636055 usual:0.059271711856126785 possible:0.05777254328131676 advertised:0.02584790252149105 that:0.024321002885699272 :0.6339153908193111 -In:0.023859307169914246 ex:0.023258913308382034 west:0.02224254421889782 east:0.017878122627735138 Im:0.01750347577035427 :0.8952576369047165 -is:0.7107676267623901 Is:0.20955219864845276 was:0.013612441718578339 be:0.009841143153607845 are:0.007907972671091557 :0.048318617045879364 -as:0.7931649088859558 so:0.13197004795074463 ,:0.01404501125216484 of:0.01297007780522108 at:0.002897426253184676 :0.04495252785272896 -to:0.4169664680957794 would:0.06919661909341812 will:0.05540899559855461 they:0.041982438415288925 it:0.03627585247159004 :0.3801696263253689 -Committee:0.5043820738792419 committee:0.10824988037347794 Government:0.030248207971453667 officers:0.02116883546113968 Commissioners:0.02030354179441929 :0.3156474605202675 -of:0.9735628366470337 ot:0.009151935577392578 ol:0.0031877674628049135 for:0.0024940548464655876 in:0.0022991348523646593 :0.00930427061393857 -irritation:0.10292666405439377 suffering:0.07689224928617477 decay:0.07672040909528732 disease:0.04622966796159744 use:0.038792308419942856 :0.6584387011826038 -he:0.17183291912078857 ho:0.15101610124111176 lie:0.07695837318897247 it:0.04824431613087654 she:0.036181941628456116 :0.5157663486897945 -was:0.10816650092601776 never:0.02856491692364216 ,:0.02394004538655281 itself:0.02117891050875187 sky:0.02072649449110031 :0.7974231317639351 -husband:0.0626378282904625 friends:0.045859649777412415 fellow:0.035331323742866516 own:0.033887773752212524 wife:0.03361591696739197 :0.7886675074696541 -he:0.6992752552032471 one:0.06921036541461945 man:0.04189857468008995 ho:0.02444521337747574 who:0.022060832008719444 :0.14310975931584835 -hip:0.24263903498649597 ,:0.17865335941314697 mith:0.024513714015483856 and:0.014470540918409824 are:0.010874834842979908 :0.5288485158234835 -a:0.36589428782463074 a:0.11714943498373032 he:0.03583800420165062 no:0.029480013996362686 A:0.027711108326911926 :0.4239271506667137 -both:0.5548759698867798 in:0.15193282067775726 all:0.10953657329082489 painted:0.018231546506285667 of:0.008219505660235882 :0.1572035839781165 -that:0.05629655346274376 ,:0.04788263142108917 something:0.04576043784618378 all:0.041474152356386185 what:0.033395346254110336 :0.7751908786594868 -ice:0.07912677526473999 winter:0.07022127509117126 bears:0.05714336037635803 bear:0.046697042882442474 ordeal:0.03640083223581314 :0.7104107141494751 -day:0.22485999763011932 ballot:0.19970835745334625 time:0.043266020715236664 basis:0.03915616497397423 record:0.023964280262589455 :0.4690451789647341 -the:0.9549384117126465 this:0.01826235093176365 our:0.011680271476507187 tho:0.006007971707731485 a:0.0037972398567944765 :0.005313754314556718 -;:0.45665132999420166 ;:0.1318063735961914 ,:0.10479237884283066 ";:0.05017063021659851 and:0.03820793703198433 :0.21837135031819344 -inventor:0.09602831304073334 owner:0.09476049989461899 maker:0.03868960961699486 master:0.03519948571920395 power:0.03260543942451477 :0.7027166523039341 -The:0.36059027910232544 ::0.27008765935897827 the:0.10079578310251236 .:0.07798229902982712 ,:0.048855770379304886 :0.14168820902705193 -At:0.8370018005371094 About:0.10732437670230865 Around:0.017404384911060333 Before:0.005792413838207722 By:0.005000163801014423 :0.027476860210299492 -all:0.6984055042266846 that:0.1325414627790451 every:0.0387558713555336 each:0.021232211962342262 this:0.01866733841598034 :0.09039761126041412 -came:0.6323553323745728 got:0.07317782938480377 turned:0.05207348242402077 went:0.04838978126645088 flew:0.011726487427949905 :0.18227708712220192 -the:0.8854396343231201 tho:0.04016324505209923 a:0.026652012020349503 any:0.00985695794224739 this:0.007214950863271952 :0.03067319979891181 -been:0.9840880036354065 now:0.0026972931809723377 be:0.0021299307700246572 recently:0.001688607269898057 just:0.0012265563709661365 :0.008169608772732317 -the:0.8737455010414124 a:0.10843446105718613 tho:0.005672344472259283 this:0.0009857028489932418 The:0.0009594070143066347 :0.01020258356584236 -does:0.45096880197525024 do:0.31838953495025635 will:0.08235810697078705 would:0.04562091827392578 did:0.029284976422786713 :0.07337766140699387 -hay:0.07855813205242157 cider:0.061489399522542953 milk:0.060696277767419815 bread:0.05190503969788551 butter:0.0388188399374485 :0.7085323110222816 -my:0.5103713870048523 their:0.11421859264373779 these:0.1031002625823021 its:0.0725085511803627 his:0.03901711106300354 :0.16078409552574158 -that:0.8343629837036133 how:0.13592521846294403 why:0.008250348269939423 all:0.005751761607825756 to:0.0011693383567035198 :0.01454034959897399 -per:0.9981464147567749 Per:0.00030397140653803945 per:0.00024236630997620523 p:0.00021792644110973924 -:0.00019140033691655844 :0.0008979207486845553 -is:0.7622883319854736 Is:0.05759892985224724 feels:0.015527650713920593 was:0.014484463259577751 has:0.012718169949948788 :0.137382454238832 -::0.29797089099884033 .:0.220007061958313 ::0.0531633198261261 for:0.018949007615447044 at:0.01893884688615799 :0.39097087271511555 -past:0.7393051385879517 last:0.22632327675819397 next:0.012908030301332474 previous:0.005740191321820021 preceding:0.0033734452445060015 :0.012349917786195874 -cruel:0.033647194504737854 dark:0.033238735049963 terrible:0.022743036970496178 other:0.01948264241218567 great:0.01923494040966034 :0.871653450652957 -by:0.4016243815422058 in:0.3573191165924072 In:0.12154921144247055 on:0.04073268547654152 with:0.016303028911352158 :0.062471576035022736 -the:0.9937020540237427 tho:0.00144846027251333 the:0.001143804402090609 tha:0.0009191314456984401 a:0.0006909245857968926 :0.0020956252701580524 -great:0.03867705166339874 vast:0.029916709288954735 large:0.0214601568877697 foul:0.019191792234778404 terrible:0.018911486491560936 :0.8718428034335375 -first:0.9414556622505188 second:0.013131438754498959 last:0.01050362829118967 third:0.005165638402104378 First:0.002668424043804407 :0.027075208257883787 -bring:0.610209584236145 carry:0.18984130024909973 take:0.10462598502635956 have:0.01730305142700672 mean:0.008968541398644447 :0.06905153766274452 -causing:0.23693712055683136 for:0.07684046775102615 enabling:0.07624780386686325 cause:0.05560418218374252 forcing:0.04435626417398453 :0.5100141614675522 -of:0.8660905361175537 for:0.042093563824892044 to:0.038655124604701996 and:0.038387496024370193 or:0.005471341777592897 :0.009301937650889158 -by:0.732820451259613 with:0.1438974291086197 to:0.02321883849799633 from:0.019804595038294792 against:0.016239719465374947 :0.0640189666301012 -there:0.9654070138931274 There:0.014060781337320805 it:0.005553597584366798 he:0.0025348623748868704 ther:0.0020532601047307253 :0.01039048470556736 -both:0.4361763000488281 the:0.11808851361274719 :0.08208995312452316 Great:0.039233483374118805 New:0.031166628003120422 :0.2932451218366623 -was:0.9003729224205017 seemed:0.03774323686957359 is:0.00932610034942627 became:0.006507445592433214 proved:0.005770910065621138 :0.04027938470244408 -and:0.8860923647880554 ':0.03669330105185509 or:0.02507428079843521 ,:0.017173973843455315 of:0.00949225015938282 :0.025473829358816147 -The:0.1509726643562317 Western:0.052337270230054855 Southern:0.04191040247678757 Chicago:0.039848726242780685 the:0.031059149652719498 :0.6838717870414257 -has:0.6423401236534119 Is:0.06344205141067505 is:0.06294756382703781 never:0.04032588005065918 had:0.023233652114868164 :0.16771072894334793 -between:0.9359365105628967 of:0.0247836634516716 in:0.019373128190636635 from:0.005915963090956211 Between:0.00398704968392849 :0.010003685019910336 -law:0.1113806739449501 neigh:0.06603089720010757 local:0.016368675976991653 crime:0.014715863391757011 coun:0.012595477513968945 :0.7789084119722247 -New:0.3456536829471588 the:0.1236763745546341 :0.043898776173591614 North:0.01948629878461361 President:0.018527965992689133 :0.44875690154731274 -pay:0.16964265704154968 satisfy:0.10325167328119278 secure:0.07977970689535141 prove:0.06564859300851822 recover:0.051235683262348175 :0.5304416865110397 -Bach:0.39166730642318726 music:0.20378077030181885 melody:0.061094071716070175 it:0.018175862729549408 Music:0.011848959140479565 :0.31343302968889475 -star:0.11332911998033524 best:0.06047552078962326 starting:0.03872289881110191 ace:0.03689848631620407 leading:0.0354229137301445 :0.715151060372591 -position:0.1551816463470459 field:0.09646554291248322 kind:0.06137825548648834 class:0.05752244219183922 party:0.03701474517583847 :0.5924373678863049 -let:0.6218055486679077 letting:0.29099559783935547 made:0.025607110932469368 saw:0.010683267377316952 making:0.008822337724268436 :0.04208613745868206 -was:0.5430071949958801 bo:0.08807629346847534 and:0.07309110462665558 got:0.02809733711183071 Was:0.021781643852591515 :0.24594642594456673 -and:0.28156059980392456 the:0.18808551132678986 or:0.09904691576957703 all:0.028077855706214905 young:0.027894282713532448 :0.3753348346799612 -the:0.4648628830909729 an:0.1504644751548767 this:0.1335214525461197 their:0.0893939658999443 that:0.02755226381123066 :0.13420495949685574 -several:0.2652088403701782 many:0.14824238419532776 two:0.08025934547185898 numerous:0.05704335495829582 large:0.031583674252033234 :0.417662400752306 -to:0.1110270619392395 in:0.09463269263505936 up:0.08734441548585892 around:0.08606402575969696 down:0.08193136006593704 :0.5390004441142082 -the:0.9009671807289124 tho:0.03656643629074097 those:0.011725246906280518 these:0.010370266623795033 their:0.008497933857142925 :0.031872935593128204 -that:0.975526750087738 certain:0.0012509399093687534 ,:0.001070832833647728 t:0.0010530073195695877 tho:0.0010221486445516348 :0.02007632120512426 -,:0.13431115448474884 opinion:0.03007841855287552 motives:0.02879542112350464 sympathy:0.017281677573919296 affairs:0.014968246221542358 :0.7745650820434093 -and:0.22466829419136047 at:0.1401122361421585 for:0.12851880490779877 a:0.08289413154125214 of:0.0735597163438797 :0.3502468168735504 -strength:0.040011581033468246 vitality:0.039585426449775696 fertility:0.03189651668071747 reproduction:0.03019575960934162 organs:0.02819863148033619 :0.8301120847463608 -by:0.48000335693359375 in:0.07692544162273407 from:0.05757884308695793 with:0.05445349961519241 for:0.022659150883555412 :0.3083797078579664 -This:0.4321938753128052 The:0.3457362949848175 That:0.08250381797552109 Such:0.03371267020702362 A:0.022924207150936127 :0.08292913436889648 -Helena:0.15266935527324677 Mexico:0.07232237607240677 Phoenix:0.05015427991747856 Fresno:0.042141400277614594 Lima:0.038020748645067215 :0.6446918398141861 -be:0.507439136505127 bo:0.2996153235435486 ho:0.07633515447378159 he:0.013238344341516495 lie:0.0059826988726854324 :0.09738934226334095 -a:0.9097509384155273 one:0.02814638800919056 another:0.0239285696297884 any:0.01430045161396265 the:0.007133712526410818 :0.01673993980512023 -on:0.24311281740665436 to:0.0755697563290596 under:0.057905495166778564 over:0.05179538205265999 from:0.04615884646773338 :0.5254577025771141 -has:0.2672199010848999 wants:0.09096087515354156 is:0.07609406113624573 loves:0.0751357153058052 knows:0.03994040563702583 :0.45064904168248177 -from:0.21031582355499268 by:0.2074946016073227 to:0.16683301329612732 ,:0.11347884684801102 for:0.06149541959166527 :0.24038229510188103 -office:0.23363138735294342 house:0.06423129886388779 Senate:0.04588622599840164 committee:0.04314889386296272 chamber:0.0406118668615818 :0.5724903270602226 -was:0.14802563190460205 broke:0.06383495777845383 were:0.061506327241659164 had:0.042326174676418304 got:0.03833015263080597 :0.6459767557680607 -do:0.24364183843135834 have:0.05314219743013382 for:0.050626445561647415 and:0.031397465616464615 want:0.027851225808262825 :0.593340827152133 -ail:0.05018748715519905 nervous:0.02824235148727894 -:0.0276558306068182 contag:0.020687665790319443 :0.019710464403033257 :0.8535162005573511 -a:0.609693169593811 tho:0.21243548393249512 the:0.13259029388427734 his:0.018320901319384575 an:0.004436369054019451 :0.022523782216012478 -and:0.5647374987602234 but:0.26293909549713135 of:0.021378232166171074 all:0.012007872574031353 although:0.011233126744627953 :0.12770417425781488 -the:0.9 :0.1 -.:0.5732738971710205 .:0.1925642490386963 .,:0.11456547677516937 ,:0.05988161265850067 ,:0.018027227371931076 :0.04168753698468208 -all:0.43799152970314026 present:0.08939522504806519 noon:0.06774484366178513 once:0.044824328273534775 work:0.04250537231564522 :0.31753870099782944 -Chicago:0.13549919426441193 Boston:0.044254228472709656 Charleston:0.03140507638454437 Baltimore:0.02924061007797718 Philadelphia:0.028938613831996918 :0.73066227696836 -houses:0.3374945819377899 roads:0.20936818420886993 buildings:0.09054362028837204 crops:0.07550160586833954 things:0.030394388362765312 :0.25669761933386326 -it:0.6833849549293518 he:0.19296947121620178 one:0.04052126035094261 It:0.01923375204205513 ho:0.016042685136198997 :0.04784787632524967 -had:0.5707930326461792 would:0.22505085170269012 might:0.09854432940483093 could:0.03441964462399483 was:0.024639111012220383 :0.046553030610084534 -,:0.05223964899778366 married:0.0329972580075264 .:0.024781420826911926 in:0.021157028153538704 soon:0.01978122629225254 :0.8490434177219868 -the:0.19503259658813477 such:0.08737633377313614 more:0.08650904893875122 their:0.06411528587341309 in:0.04856569692492485 :0.5184010379016399 -a:0.09325836598873138 ad:0.07159913331270218 *:0.06392650306224823 i:0.036237265914678574 od:0.03408082202076912 :0.7008979097008705 -and:0.8194323182106018 but:0.031571220606565475 adding:0.020546805113554 and:0.019611282274127007 that:0.008959915488958359 :0.09987845830619335 -green:0.05392545834183693 blue:0.02423209138214588 and:0.02333112619817257 possible:0.020632240921258926 white:0.01893812231719494 :0.8589409608393908 -place:0.16893507540225983 hang:0.1267101913690567 keep:0.12323914468288422 put:0.06235933303833008 set:0.049250759184360504 :0.4695054963231087 -straight:0.1416136771440506 it:0.08117459714412689 -:0.06179143115878105 right:0.03811720013618469 myself:0.037011709064245224 :0.6402913853526115 -by:0.9594759345054626 with:0.013322082348167896 under:0.003257513977587223 in:0.0031966473907232285 from:0.003167013404890895 :0.01758080837316811 -concert:0.10679955780506134 opera:0.0861813947558403 fair:0.02774517796933651 event:0.02372009865939617 play:0.021029017865657806 :0.7345247529447079 -finest:0.2967076003551483 best:0.29383817315101624 greatest:0.1050441563129425 largest:0.05876174941658974 heaviest:0.030867379158735275 :0.21478094160556793 -,:0.77320396900177 .:0.014928975142538548 ,:0.009837007150053978 *,:0.008559214882552624 ;:0.0039865970611572266 :0.1894842367619276 -gravel:0.42111527919769287 material:0.04853957146406174 rock:0.043061088770627975 stone:0.033499184995889664 timber:0.029235288500785828 :0.4245495870709419 -inconsistent:0.5626334547996521 conflicting:0.12094292044639587 conflict:0.06872717291116714 interfere:0.06781850755214691 incompatible:0.044014424085617065 :0.1358635202050209 -,:0.6692867875099182 described:0.039048220962285995 said:0.03239385038614273 mentioned:0.023481350392103195 ;:0.023101594299077988 :0.21268819645047188 -t:0.0278114415705204 the:0.023399867117404938 ing:0.020791495218873024 «:0.01680012419819832 t:0.014740431681275368 :0.896456640213728 -past:0.4999842643737793 last:0.45228177309036255 next:0.014317024499177933 present:0.00310402549803257 previous:0.0027586219366639853 :0.027554290601983666 -keeping:0.1469307839870453 dragging:0.06739155948162079 bringing:0.06554315239191055 leading:0.05976850539445877 getting:0.05865637585520744 :0.6017096228897572 -out:0.2273092120885849 up:0.18221870064735413 forth:0.11680004000663757 together:0.05837465822696686 ,:0.05651178956031799 :0.35878559947013855 -food:0.24127842485904694 flour:0.05748501420021057 grain:0.05501210317015648 fuel:0.033457785844802856 supplies:0.03313099592924118 :0.579635675996542 -painful:0.11209218949079514 dull:0.07370377331972122 heavy:0.036388054490089417 ringing:0.03542371094226837 sharp:0.02797703817486763 :0.7144152335822582 -best:0.43656590580940247 most:0.11513013392686844 latest:0.08992771804332733 following:0.06521076709032059 greatest:0.02178719826042652 :0.27137827686965466 -they:0.46156516671180725 he:0.13356448709964752 ho:0.05195619910955429 it:0.04746944084763527 nobody:0.04406804218888283 :0.26137666404247284 -and:0.9871467351913452 regard:0.004418790340423584 or:0.0015059920260682702 respect:0.0012081291060894728 relation:0.0009976703440770507 :0.0047226829919964075 -avenue:0.4749331772327423 street:0.4078926146030426 ,:0.056238070130348206 Street:0.01413034275174141 Avenue:0.013412000611424446 :0.03339379467070103 -that:0.37701982259750366 which:0.26824095845222473 to:0.05478378012776375 as:0.04040481150150299 and:0.039493802934885025 :0.22005682438611984 -country:0.3754718005657196 Philippines:0.09999178349971771 island:0.0922931432723999 islands:0.03528110682964325 land:0.028915584087371826 :0.3680465817451477 -the:0.9 :0.1 -and:0.5979848504066467 his:0.044688545167446136 ,:0.032295722514390945 the:0.027065221220254898 when:0.025705482810735703 :0.2722601778805256 --:0.58538818359375 com:0.02828972227871418 govern:0.01880236528813839 de:0.018759075552225113 ad:0.014636456035077572 :0.33412419725209475 -,:0.2777518928050995 to:0.13300107419490814 of:0.12803439795970917 from:0.04072801023721695 with:0.036727238446474075 :0.3837573863565922 -House:0.3925803303718567 Senate:0.15709000825881958 house:0.03959086537361145 bill:0.030955256894230843 senate:0.02597115747630596 :0.3538123816251755 -South:0.057743221521377563 States:0.05647299066185951 lands:0.047435175627470016 land:0.02799663133919239 North:0.027492647990584373 :0.7828593328595161 -in:0.28868022561073303 on:0.18595699965953827 along:0.06011728197336197 down:0.05568515136837959 over:0.05490816757082939 :0.35465217381715775 -the:0.9 :0.1 -country:0.15988606214523315 people:0.04523874819278717 nation:0.0335630364716053 government:0.024585656821727753 children:0.019812487065792084 :0.7169140093028545 -the:0.9 :0.1 -his:0.6532893776893616 the:0.2683035433292389 tho:0.02115723118185997 a:0.008027530275285244 its:0.005780646111816168 :0.043441671412438154 -matter:0.2031048685312271 charge:0.18456842005252838 case:0.06599946320056915 question:0.04725246503949165 situation:0.03350382298231125 :0.46557096019387245 -for:0.1146308034658432 .:0.09258373826742172 in:0.05349426344037056 with:0.05153710022568703 ,:0.044532787054777145 :0.6432213075459003 -of:0.08327443152666092 in:0.06152926757931709 ,:0.04572802782058716 tho:0.03780118376016617 that:0.02163725532591343 :0.7500298339873552 -the:0.7522296905517578 a:0.1719992458820343 its:0.028460821136832237 that:0.01818387396633625 tho:0.009987677447497845 :0.019138691015541553 -use:0.1470632553100586 take:0.12051000446081161 keep:0.03065115585923195 remove:0.027134837582707405 get:0.02300015278160572 :0.6516405940055847 -great:0.3654666841030121 considerable:0.23685944080352783 large:0.18203888833522797 good:0.0527832955121994 fair:0.03540746867656708 :0.12744422256946564 -not:0.08737989515066147 worth:0.056410353630781174 quite:0.04000692069530487 such:0.03990704193711281 now:0.032668113708496094 :0.7436276748776436 -we:0.38877472281455994 Japan:0.23636102676391602 she:0.1565788984298706 America:0.1003713607788086 it:0.03375641629099846 :0.08415757492184639 -Russians:0.3168433904647827 Turks:0.14341877400875092 Jews:0.04811703786253929 .:0.04810437187552452 Ottoman:0.03469996526837349 :0.40881646052002907 -term:0.08668353408575058 time:0.0740431696176529 pressing:0.06639263778924942 distance:0.0613422766327858 standing:0.04775068163871765 :0.6637877002358437 -costs:0.969181478023529 expenses:0.019238462671637535 cost:0.005663508083671331 fees:0.0010894933948293328 charges:0.0008438235963694751 :0.003983234229963273 -you:0.0594014897942543 seen:0.029282961040735245 up:0.02678658254444599 them:0.021991385146975517 myself:0.021936524659395218 :0.8406010568141937 -to:0.9709984660148621 with:0.0077185919508337975 from:0.0027783007826656103 ot:0.002256752923130989 of:0.0014669183874502778 :0.014780969941057265 -the:0.7279689908027649 this:0.041899632662534714 tho:0.02935676835477352 -:0.02817838452756405 a:0.0223823431879282 :0.15021388046443462 -so:0.2285439819097519 left:0.19306235015392303 more:0.130825012922287 too:0.05032428726553917 made:0.04059988632798195 :0.35664448142051697 -to:0.9740758538246155 from:0.005023747682571411 ot:0.0021115487907081842 ta:0.001961157424375415 for:0.001885745907202363 :0.014941946370527148 -than:0.21518442034721375 in:0.15059632062911987 or:0.06796866655349731 by:0.05884907767176628 and:0.05594496428966522 :0.45145655050873756 -leave:0.2172977775335312 keep:0.18602050840854645 make:0.09993281215429306 bring:0.0997186079621315 have:0.05864088982343674 :0.33838940411806107 -er:0.04607595130801201 man:0.04468104988336563 ty:0.030439971014857292 ing:0.028312545269727707 ter:0.027891548350453377 :0.822598934173584 -that:0.6153762340545654 for:0.18948839604854584 and:0.0435611754655838 because:0.03910239785909653 but:0.030223829671740532 :0.08224796690046787 -er:0.1241656169295311 ty:0.06107063218951225 ment:0.05915980041027069 tion:0.036534473299980164 man:0.023523123934864998 :0.6955463532358408 -burning:0.21085618436336517 being:0.09904973208904266 heating:0.07551255077123642 heat:0.05511791631579399 combustion:0.044851720333099365 :0.5146118961274624 -W:0.09587498009204865 M:0.08647172152996063 H:0.08149050176143646 A:0.07260562479496002 J:0.0676601305603981 :0.5958970412611961 -ect:0.06385476887226105 ice:0.05788698047399521 tion:0.054107628762722015 ion:0.04998781159520149 ce:0.03991834819316864 :0.7342444621026516 -until:0.2625104486942291 if:0.2365361452102661 provided:0.21714410185813904 unless:0.08110113441944122 should:0.047387465834617615 :0.15532070398330688 -of:0.6074721813201904 to:0.04639454185962677 on:0.04255685955286026 for:0.03644801676273346 in:0.034196797758340836 :0.23293160274624825 -with:0.5834478735923767 from:0.09449628740549088 by:0.07947124540805817 in:0.05549563840031624 on:0.04233565926551819 :0.14475329592823982 -built:0.35261979699134827 furnished:0.1842755526304245 constructed:0.13683725893497467 decorated:0.05858038365840912 kept:0.02035532332956791 :0.24733168445527554 -as:0.9983506202697754 As:0.0003867272462230176 on:0.00020581771968863904 enough:0.00010374897829024121 not:0.00010252608626615256 :0.000850559699756559 -we:0.6784808039665222 he:0.09255650639533997 one:0.08895471692085266 it:0.07652128487825394 ho:0.006764907389879227 :0.05672178044915199 -or:0.9091148376464844 not:0.025205044075846672 sometimes:0.01168367825448513 and:0.007011086214333773 perhaps:0.006914024241268635 :0.040071329567581415 -at:0.023832187056541443 to:0.0235183946788311 requires:0.02077881619334221 demands:0.019838804379105568 will:0.01653277687728405 :0.8954990208148956 -hood:0.48636525869369507 ,:0.14636237919330597 ism:0.0523529089987278 oppression:0.02490309812128544 ization:0.010634667240083218 :0.2793816877529025 -the:0.9 :0.1 -the:0.9446823000907898 tho:0.013638353906571865 both:0.006649529095739126 the:0.005471130833029747 The:0.004675588570535183 :0.024883097503334284 -had:0.36076176166534424 have:0.05226576700806618 all:0.02742554061114788 were:0.02187539078295231 ,:0.01782281883060932 :0.5198487211018801 -the:0.7618532180786133 whether:0.04715493321418762 tho:0.04452667757868767 its:0.03873063251376152 an:0.01764223538339138 :0.09009230323135853 -the:0.7429382801055908 tho:0.07589476555585861 these:0.04476843401789665 The:0.009557199664413929 our:0.00772425252944231 :0.11911706812679768 -the:0.3620300590991974 his:0.14764191210269928 an:0.13335779309272766 and:0.1272578090429306 bis:0.039458438754081726 :0.19025398790836334 -point:0.3472162187099457 stake:0.08647676557302475 line:0.04570009931921959 post:0.021708007901906967 cut:0.014416946098208427 :0.4844819623976946 -first:0.24798251688480377 last:0.22729672491550446 65:0.04045698419213295 fifth:0.029125124216079712 third:0.025026626884937286 :0.4301120229065418 -from:0.3356309235095978 in:0.24826662242412567 on:0.10077054053544998 upon:0.09970078617334366 into:0.04495036229491234 :0.17068076506257057 -the:0.9649850130081177 a:0.01899498514831066 this:0.007931415922939777 tho:0.002645233878865838 their:0.0022424261551350355 :0.003200925886631012 -Best:0.08025772124528885 Great:0.03831780329346657 00:0.0374440960586071 Good:0.027354063466191292 New:0.01977377198636532 :0.7968525439500809 -The:0.7908118367195129 These:0.067361019551754 Such:0.027342304587364197 Those:0.022815607488155365 Many:0.005160029046237469 :0.08650920260697603 -the:0.5406203269958496 tho:0.42438551783561707 th:0.0031604343093931675 on:0.0030709931161254644 in:0.002060346072539687 :0.026702381670475006 -a:0.6987197995185852 no:0.10699785500764847 very:0.06399933993816376 not:0.04434237629175186 the:0.010979298502206802 :0.0749613307416439 -the:0.5469037294387817 a:0.13387097418308258 any:0.040672849863767624 that:0.03819978982210159 this:0.03636018931865692 :0.20399246737360954 -the:0.3503013849258423 Miss:0.13901188969612122 Mrs:0.07300959527492523 my:0.03298190236091614 Aunt:0.02672876976430416 :0.37796645797789097 -a:0.8399690389633179 until:0.021764293313026428 the:0.020212512463331223 one:0.00996762327849865 at:0.009706184267997742 :0.09838034771382809 -for:0.40058448910713196 in:0.3060198426246643 at:0.10819365829229355 during:0.06200041249394417 In:0.05756125971674919 :0.06564033776521683 -the:0.8754047751426697 tho:0.04556239768862724 this:0.03920505568385124 a:0.021297233179211617 th:0.003979812376201153 :0.014550725929439068 -Into:0.42513346672058105 to:0.2691382169723511 for:0.1099521592259407 into:0.0554332360625267 In:0.04310036078095436 :0.0972425602376461 -ing:0.060120053589344025 ter:0.042443715035915375 er:0.02989223226904869 ful:0.019493307918310165 ly:0.01443186029791832 :0.8336188308894634 -not:0.8227142691612244 only:0.013487668707966805 still:0.011445318348705769 more:0.010393518023192883 also:0.009483281522989273 :0.1324759442359209 -ground:0.4122150242328644 land:0.10238956660032272 soil:0.043068598955869675 potatoes:0.023207347840070724 field:0.022868433967232704 :0.3962510284036398 -annexation:0.2098284214735031 Hawaiian:0.11343233287334442 peace:0.0709056556224823 new:0.036087192595005035 Hawaii:0.029285958036780357 :0.5404604393988848 -ment:0.2032252848148346 tion:0.1571102887392044 dent:0.016411472111940384 pose:0.01199923176318407 ble:0.0077713835053145885 :0.603482339065522 -to:0.21674132347106934 the:0.07420820742845535 making:0.04315011948347092 our:0.041145358234643936 giving:0.03393853083252907 :0.5908164605498314 -in:0.40802693367004395 of:0.27197957038879395 ot:0.08007746189832687 In:0.0759834498167038 for:0.06546011567115784 :0.0984724685549736 -United:0.9968975782394409 United:0.000743904965929687 united:0.00016187848814297467 Confederate:0.00014676562568638474 Union:0.00014620319416280836 :0.0019036694866372272 -by:0.10135254263877869 owned:0.05939044803380966 said:0.051968272775411606 ,:0.04847085475921631 described:0.04494884982705116 :0.6938690319657326 -and:0.549538254737854 but:0.2361392080783844 were:0.05567501485347748 was:0.04774177446961403 being:0.016819782555103302 :0.09408596530556679 -of:0.7185426950454712 from:0.0500185489654541 on:0.04599021375179291 in:0.024875344708561897 and:0.01830238662660122 :0.14227081090211868 -be:0.9564915895462036 bo:0.016627347096800804 lie:0.007142622489482164 he:0.004070993512868881 become:0.0025683981366455555 :0.013099049217998981 -1908:0.0826227068901062 1893:0.07289329171180725 1909:0.059271879494190216 1907:0.05582753196358681 1915:0.040770821273326874 :0.6886137686669827 -to:0.6274084448814392 from:0.19081100821495056 for:0.04028564319014549 by:0.0319305956363678 of:0.02659277245402336 :0.08297153562307358 -The:0.9922648668289185 the:0.005431653466075659 The:0.0007417533197440207 He:0.0003194372693542391 They:0.00013892611605115235 :0.001103362999856472 -,:0.28428032994270325 tug:0.030547453090548515 grasping:0.029598120599985123 and:0.023586338385939598 ;:0.018708361312747 :0.6132793966680765 -of:0.28606852889060974 at:0.2490607500076294 in:0.1518322229385376 for:0.07718198746442795 to:0.0589187815785408 :0.17693772912025452 -and:0.7010753750801086 or:0.09852725267410278 of:0.05700254067778587 .:0.026097416877746582 but:0.007822679355740547 :0.10947473533451557 -my:0.9178292751312256 any:0.008322618901729584 a:0.005057054106146097 our:0.004886963404715061 bis:0.004764610435813665 :0.05913947802037001 -their:0.5205281376838684 its:0.2512020766735077 his:0.09193889796733856 these:0.026190314441919327 the:0.014906263910233974 :0.09523430932313204 -the:0.5634264349937439 a:0.4152394235134125 his:0.005636026617139578 its:0.0026129744946956635 this:0.0011446166317909956 :0.011940523749217391 -Territory:0.7479695081710815 State:0.16216829419136047 District:0.018831713125109673 state:0.011368620209395885 City:0.011293010786175728 :0.0483688535168767 -a:0.5121939778327942 the:0.4219887852668762 a:0.009294690564274788 tho:0.005935012828558683 any:0.004102576058357954 :0.046484957449138165 -had:0.8092213869094849 ,:0.09094177931547165 has:0.014475804753601551 faithfully:0.013584036380052567 ago:0.006350361276417971 :0.0654266313649714 -Japan:0.2031790316104889 it:0.17675797641277313 we:0.10291182994842529 that:0.07676812261343002 they:0.06254193186759949 :0.3778411075472832 -bulls:0.7620453834533691 cows:0.17644457519054413 cattle:0.03168322518467903 calves:0.006927334703505039 breeds:0.0038975474890321493 :0.01900193397887051 -the:0.9 :0.1 -placed:0.0678057000041008 put:0.06355193257331848 planted:0.0518522672355175 threw:0.034636352211236954 kept:0.03214346617460251 :0.7500102818012238 -tho:0.6908329725265503 the:0.2440878301858902 a:0.036878153681755066 th:0.0018572533736005425 o:0.0015664674574509263 :0.024777322774752975 -as:0.9968326687812805 to:0.00038123209378682077 by:0.00031527099781669676 As:0.0002706939121708274 for:0.00019151135347783566 :0.002008622861467302 -surprise:0.4541773200035095 shock:0.15874578058719635 disappointment:0.1231190487742424 blow:0.05169861763715744 relief:0.03543637692928314 :0.17682285606861115 -and:0.8274474143981934 as:0.03044315241277218 ly:0.023739105090498924 ,:0.016622094437479973 to:0.014772763475775719 :0.08697547018527985 -made:0.30432066321372986 submitted:0.1975725144147873 received:0.1516696959733963 approved:0.0282710250467062 executed:0.02034222148358822 :0.29782387986779213 -tho:0.26184889674186707 no:0.2289772927761078 the:0.1657656878232956 an:0.07587844133377075 this:0.056644730269908905 :0.2108849510550499 -roof:0.2349153757095337 wall:0.11634290218353271 house:0.040433093905448914 building:0.03376062959432602 ground:0.03134903311729431 :0.5431989654898643 -of:0.8886241912841797 for:0.04080578312277794 ot:0.020294789224863052 ol:0.008363748900592327 to:0.008226992562413216 :0.03368449490517378 -illness:0.18782857060432434 sickness:0.1263982057571411 suffering:0.09037020802497864 ,:0.0690019279718399 life:0.06546992808580399 :0.460931159555912 -treaty:0.382050096988678 peace:0.10429538786411285 war:0.047789543867111206 League:0.02820715494453907 resolution:0.02504710666835308 :0.4126107096672058 -a:0.2002112716436386 in:0.15124475955963135 on:0.11107594519853592 and:0.06555388122797012 the:0.0438019335269928 :0.4281122088432312 -the:0.060602445155382156 J:0.028015805408358574 H:0.025295041501522064 M:0.020638734102249146 W:0.017275294288992882 :0.8481726795434952 -treaty:0.25376591086387634 war:0.18940956890583038 compromise:0.052714746445417404 agreement:0.03530467301607132 action:0.03363502025604248 :0.43517008051276207 -that:0.7750774025917053 where:0.08441575616598129 whence:0.06053352355957031 when:0.027344223111867905 ,:0.008394734933972359 :0.04423435963690281 -ing:0.1789070963859558 ed:0.12292856723070145 as:0.05987712740898132 posed:0.015074103139340878 t:0.013837035745382309 :0.6093760700896382 -as:0.7245800495147705 tor:0.051963940262794495 's:0.05028575286269188 for:0.02585056982934475 the:0.020066045224666595 :0.12725364230573177 -rights:0.8889182806015015 right:0.037924230098724365 privileges:0.004136200062930584 means:0.003692982019856572 way:0.002746978309005499 :0.06258132890798151 -aware:0.11791936308145523 fearful:0.1016460582613945 capable:0.06250805407762527 valuable:0.057693686336278915 nervous:0.04510464891791344 :0.6151281893253326 -and:0.8581146597862244 or:0.11862264573574066 ,:0.006734359078109264 ':0.0054961927235126495 of:0.0031734199728816748 :0.007858722703531384 -getting:0.36296406388282776 falling:0.10631568729877472 going:0.05754268169403076 climbing:0.043274082243442535 jumping:0.027455467730760574 :0.40244801715016365 -.:0.2739861011505127 -:0.06349451094865799 .:0.01938796043395996 >:0.010749908164143562 *:0.009781459346413612 :0.6226000599563122 -and:0.8361386656761169 but:0.0679909810423851 which:0.049191735684871674 or:0.009761132299900055 yet:0.009262477979063988 :0.02765500731766224 -water:0.3804164230823517 lime:0.18195973336696625 moisture:0.18116721510887146 Water:0.03612137958407402 Lime:0.02396092563867569 :0.1963743232190609 -the:0.6388076543807983 tho:0.267865926027298 tha:0.02009153552353382 said:0.014798273332417011 th:0.008330580778419971 :0.05010602995753288 -be:0.9620957374572754 prove:0.0120130255818367 seem:0.007004176266491413 lie:0.0028165935073047876 become:0.0023287667427212 :0.013741700444370508 -and:0.3890020251274109 which:0.2847177982330322 but:0.1305040568113327 as:0.06856092810630798 it:0.03544831648468971 :0.09176687523722649 -the:0.9 :0.1 -,:0.5664235949516296 out:0.043556224554777145 because:0.04252619296312332 and:0.029347453266382217 that:0.01708395406603813 :0.30106258019804955 -large:0.16566400229930878 great:0.06556254625320435 much:0.05056969076395035 vast:0.039604995399713516 far:0.03756880760192871 :0.6410299576818943 -he:0.5520045757293701 and:0.1517125368118286 lie:0.07835528999567032 ,:0.03499689698219299 ho:0.029008686542510986 :0.15392201393842697 -into:0.2664046287536621 on:0.23069870471954346 of:0.1641283929347992 about:0.11373970657587051 to:0.05018547922372818 :0.17484308779239655 -the:0.9 :0.1 -for:0.5531044006347656 to:0.35094577074050903 of:0.017874786630272865 in:0.01579079031944275 toward:0.011532094329595566 :0.05075215734541416 -be:0.08363477140665054 ne:0.06831847876310349 lie:0.05579741671681404 bey:0.027851084247231483 bat:0.020578360185027122 :0.7438198886811733 -in:0.497232049703598 with:0.0884774774312973 without:0.050722163170576096 by:0.03316589444875717 against:0.031033525243401527 :0.2993688900023699 -was:0.7558609247207642 is:0.12939879298210144 has:0.028181161731481552 Is:0.008458727970719337 be:0.008381311781704426 :0.06971908081322908 -the:0.8568546772003174 tho:0.06525538116693497 an:0.025298120453953743 a:0.010293115861713886 this:0.005814385134726763 :0.03648432018235326 -good:0.06425850838422775 happy:0.040679436177015305 married:0.030461445450782776 new:0.028384607285261154 gay:0.026795387268066406 :0.8094206154346466 -ing:0.07502669095993042 put:0.04829082638025284 hed:0.02142547257244587 ed:0.020577996969223022 thrown:0.013061012141406536 :0.8216180009767413 -newspapers:0.12567120790481567 ,:0.10881809145212173 places:0.061547692865133286 cities:0.037842459976673126 letters:0.03624532371759415 :0.629875224083662 -hundreds:0.43165895342826843 tens:0.2302512526512146 number:0.041324906051158905 thousands:0.03189646452665329 plight:0.021361198276281357 :0.24350722506642342 -or:0.4032748341560364 and:0.20712022483348846 ,:0.03770033270120621 just:0.02332385815680027 from:0.015524477697908878 :0.3130562724545598 -In:0.7001579403877258 At:0.08631926774978638 As:0.032013848423957825 After:0.026761788874864578 For:0.026026206091046333 :0.12872094847261906 -same:0.14806601405143738 old:0.11381352692842484 other:0.05210449919104576 two:0.04756631702184677 kitchen:0.035335276275873184 :0.6031143665313721 -only:0.38053539395332336 most:0.16982893645763397 first:0.07199786603450775 one:0.029586296528577805 last:0.026493962854146957 :0.32155754417181015 -and:0.32646554708480835 with:0.23586435616016388 when:0.04269092530012131 one:0.03889797255396843 the:0.03667616844177246 :0.3194050304591656 -.:0.16097116470336914 for:0.14145293831825256 of:0.12145990878343582 with:0.10132457315921783 at:0.09377802908420563 :0.381013385951519 -at:0.5962291359901428 in:0.27517542243003845 In:0.04018879681825638 on:0.01439899206161499 from:0.009931320324540138 :0.06407633237540722 -the:0.966486930847168 that:0.009514783509075642 a:0.006250996142625809 this:0.00577955087646842 tho:0.0046396697871387005 :0.00732806883752346 -the:0.9 :0.1 -they:0.110843226313591 these:0.09430442750453949 the:0.08006345480680466 many:0.06307145953178406 farmers:0.05852385610342026 :0.5931935757398605 -council:0.164223313331604 ,:0.11802509427070618 Council:0.09711785614490509 board:0.08643567562103271 .:0.08022266626358032 :0.4539753943681717 -the:0.1577468067407608 these:0.13703946769237518 those:0.0986344963312149 certain:0.0591098815202713 many:0.05868278816342354 :0.48878655955195427 -had:0.37576475739479065 has:0.3390416204929352 having:0.02744460664689541 then:0.018736258149147034 was:0.016090644523501396 :0.22292211279273033 -is:0.5427265167236328 Is:0.10382376611232758 are:0.08186821639537811 has:0.018077241256833076 just:0.017556019127368927 :0.2359482403844595 -increase:0.43709585070610046 rise:0.08897620439529419 difference:0.08488979190587997 change:0.05498576536774635 reduction:0.0324568897485733 :0.3015954978764057 -the:0.20015470683574677 their:0.05310991406440735 ue:0.0356493778526783 all:0.012834863737225533 two:0.010476630181074142 :0.6877745073288679 -to:0.9984525442123413 ta:0.0001988341100513935 ,:0.0001287105114897713 ot:0.00011317876487737522 can:9.234034951077774e-05 :0.0010143920517293736 -,:0.8968858122825623 .:0.02438618429005146 is:0.015560624189674854 and:0.01369479950517416 ;:0.012316477485001087 :0.03715610224753618 -point:0.8011775612831116 stake:0.12310464680194855 place:0.052648112177848816 spot:0.010793170891702175 corner:0.001051241997629404 :0.011225266847759485 -and:0.5318725109100342 ,:0.17051006853580475 or:0.04720776528120041 as:0.030236603692173958 not:0.015157793648540974 :0.20501525793224573 -by:0.7897378206253052 .:0.08956145495176315 as:0.032165806740522385 with:0.012588192708790302 for:0.012560000643134117 :0.06338672433048487 -public:0.52871173620224 good:0.08811702579259872 social:0.042166464030742645 religious:0.029751112684607506 civil:0.02853729948401451 :0.2827163618057966 -and:0.6436192393302917 to:0.11050982028245926 ,:0.06353293359279633 that:0.04318276420235634 ;:0.009896636009216309 :0.12925860658288002 -be:0.8008096218109131 bo:0.05117906257510185 me:0.029750904068350792 lie:0.013985906727612019 ho:0.008740345947444439 :0.09553415887057781 -iron:0.613896369934082 goods:0.045850563794374466 ore:0.03033481165766716 coal:0.02340654656291008 steel:0.02167234569787979 :0.26483936235308647 -their:0.2458312213420868 tho:0.21401003003120422 the:0.11315760761499405 o:0.07735370844602585 an:0.02423478104174137 :0.3254126515239477 -the:0.9003509879112244 this:0.03876061365008354 tho:0.02616608515381813 that:0.009910899214446545 his:0.007951262407004833 :0.016860151663422585 -ing:0.9764475226402283 ed:0.0043603722006082535 er:0.0009950515814125538 on:0.0007230509072542191 id:0.0005595526890829206 :0.01691444998141378 -issue:0.09101387858390808 payment:0.07357185333967209 issuance:0.07312829047441483 delivery:0.05107831582427025 application:0.04986140504479408 :0.6613462567329407 -this:0.5386701226234436 the:0.376164972782135 that:0.043752219527959824 your:0.02876974642276764 our:0.00805505458265543 :0.004587884061038494 -tho:0.4072622060775757 an:0.37865161895751953 the:0.179931640625 a:0.004200810566544533 no:0.001878050621598959 :0.028075673151761293 -say:0.1574830561876297 have:0.09036464244127274 il:0.04007299989461899 speak:0.030972952023148537 name:0.020902398973703384 :0.6602039504796267 -.:0.9615122675895691 ■:0.00920634064823389 ,:0.0037252004258334637 !:0.003573754569515586 ;:0.0032299270387738943 :0.018752509728074074 -putting:0.04473649337887764 being:0.03829541429877281 preaching:0.03647937998175621 appearing:0.025877326726913452 speaking:0.02417711168527603 :0.8304342739284039 -,:0.06755968928337097 their:0.02314070612192154 .:0.020634135231375694 the:0.0181864183396101 be:0.016585782170295715 :0.853893268853426 -was:0.4380277395248413 and:0.29823729395866394 being:0.032050538808107376 but:0.027443548664450645 :0.018794842064380646 :0.18544603697955608 -the:0.6774970293045044 His:0.1253434717655182 his:0.03749879449605942 The:0.028947850689291954 Holy:0.022638695314526558 :0.10807415843009949 -with:0.7972553968429565 in:0.029701173305511475 up:0.024316642433404922 on:0.020489636808633804 to:0.01516012754291296 :0.1130770230665803 -a:0.4856258034706116 A:0.2060234099626541 ,:0.11832282692193985 .:0.01739339902997017 1:0.015292010270059109 :0.1573425503447652 -or:0.21208268404006958 illness:0.11279276758432388 disability:0.1075548604130745 sickness:0.049898359924554825 and:0.04687754064798355 :0.47079378738999367 -wagon:0.10478217899799347 attention:0.09116100519895554 head:0.047819025814533234 hat:0.026312822476029396 eye:0.02418476529419422 :0.7057402022182941 -eyes:0.024905426427721977 light:0.022120987996459007 s:0.014848383143544197 t:0.01396743394434452 face:0.013780519366264343 :0.910377249121666 -of:0.4135880470275879 in:0.34778648614883423 the:0.03858700394630432 In:0.030273480340838432 for:0.026229213923215866 :0.14353576861321926 -of:0.9140570759773254 on:0.033121831715106964 at:0.006955609656870365 for:0.006414166186004877 upon:0.005568389780819416 :0.03388292668387294 -In:0.3127906620502472 the:0.19707563519477844 in:0.1790887713432312 by:0.10450899600982666 The:0.022469118237495422 :0.18406681716442108 -our:0.4709598124027252 the:0.3210490942001343 their:0.16764923930168152 these:0.015156024135649204 those:0.005938134156167507 :0.019247695803642273 -10:0.1867550164461136 11:0.1295367181301117 12:0.07374764233827591 2:0.04125552251935005 9:0.0399051234126091 :0.5287999771535397 -,:0.4112778902053833 it:0.2914339303970337 them:0.022457633167505264 It:0.014901387505233288 him:0.01426159217953682 :0.24566756654530764 -ed:0.2703905701637268 ly:0.06136437878012657 ing:0.0450604110956192 ted:0.036130860447883606 :0.01760793663561344 :0.5694458428770304 -.:0.4907045364379883 ,:0.04302630200982094 .":0.03718137368559837 ::0.033050090074539185 !:0.02918917126953602 :0.3668485265225172 -Pacific:0.16290315985679626 world:0.08100418001413345 past:0.05698981136083603 Congo:0.048325590789318085 Americas:0.041552092880010605 :0.6092251650989056 -the:0.9 :0.1 -a:0.21661369502544403 very:0.11114434152841568 ,:0.08066166937351227 other:0.0622270442545414 and:0.04054322466254234 :0.4888100251555443 -become:0.35275202989578247 look:0.191533163189888 be:0.09018716216087341 seem:0.05079597607254982 grow:0.04822470620274544 :0.26650696247816086 -,:0.059752583503723145 e:0.04827011004090309 go:0.04141708463430405 it:0.032346900552511215 look:0.03178666904568672 :0.7864266522228718 -she:0.7178516387939453 he:0.11507213115692139 Jessie:0.0659598633646965 She:0.029907632619142532 He:0.006881326902657747 :0.06432740716263652 -the:0.31157684326171875 our:0.0766017809510231 a:0.06124274805188179 in:0.051761120557785034 this:0.047689396888017654 :0.45112811028957367 -said:0.7319087386131287 Baltimore:0.011165320873260498 Superior:0.010293158702552319 the:0.00930025614798069 Judicial:0.006795139983296394 :0.23053738567978144 -of:0.9935290217399597 ot:0.004614600911736488 of:0.00033695503952912986 with:0.00016898369358386844 and:0.00012357770174276084 :0.0012268609134480357 -said:0.21830609440803528 replied:0.2090863436460495 stated:0.12022402137517929 answered:0.025164682418107986 insisted:0.020956553518772125 :0.4062623046338558 -refusing:0.3111603260040283 unwilling:0.17862778902053833 and:0.06793013215065002 ready:0.062080372124910355 refuse:0.04609327390789986 :0.3341081067919731 -t:0.03966154903173447 ':0.032268911600112915 u:0.030710915103554726 «:0.02873765118420124 *:0.02804373949766159 :0.8405772335827351 -eggs:0.20727233588695526 any:0.13505694270133972 those:0.12600545585155487 ones:0.052401959896087646 all:0.040016066282987595 :0.4392472393810749 -in:0.9449822306632996 In:0.031028416007757187 at:0.004026252310723066 on:0.003473151009529829 about:0.003072868101298809 :0.013417081907391548 -I:0.6378706097602844 we:0.278164267539978 you:0.014598092995584011 wo:0.008908890187740326 i:0.008012356236577034 :0.05244578327983618 -ment:0.16547000408172607 tion:0.11316759884357452 cess:0.01297619566321373 ing:0.012673510238528252 line:0.011697820387780666 :0.6840148707851768 -ing:0.1988411843776703 ly:0.0535617470741272 -:0.050989508628845215 :0.03859299421310425 ter:0.029622459784150124 :0.6283921059221029 -This:0.32660552859306335 It:0.25003793835639954 That:0.1320280283689499 As:0.07333400845527649 Such:0.06079776957631111 :0.15719672664999962 -her:0.933448851108551 she:0.03744210675358772 it:0.00763348862528801 him:0.0050616455264389515 herself:0.0035257311537861824 :0.012888176832348108 -,:0.09624586999416351 mistaken:0.08989351987838745 surprised:0.0661587193608284 astonished:0.038539398461580276 nervous:0.03814583644270897 :0.6710166558623314 -aid:0.9002509117126465 rescue:0.02501619979739189 assistance:0.023792259395122528 side:0.0072877975180745125 senses:0.007257482036948204 :0.03639534953981638 -Now:0.05636350065469742 Miss:0.040538955479860306 And:0.04053002595901489 Then:0.0394708514213562 But:0.034898240119218826 :0.7881984263658524 -you:0.6287421584129333 we:0.15328113734722137 that:0.03416125476360321 they:0.013778814114630222 ho:0.012391303665935993 :0.15764533169567585 -members:0.0999143198132515 agents:0.08361029624938965 advocates:0.05185607820749283 representatives:0.05127007141709328 opponents:0.04450960457324982 :0.6688396297395229 -knife:0.05784923955798149 snake:0.04414881765842438 moth:0.038105692714452744 shadow:0.03479772433638573 bullet:0.029309608042240143 :0.7957889176905155 -was:0.19388645887374878 applied:0.1425384283065796 went:0.06595006585121155 came:0.03697904199361801 referred:0.032080065459012985 :0.5285659395158291 -and:0.24684913456439972 to:0.12689508497714996 ,:0.11290319263935089 .:0.0578121617436409 have:0.038196463137865067 :0.41734396293759346 -street:0.6546670198440552 Street:0.13180549442768097 streets:0.07294007390737534 avenue:0.05074682459235191 ,:0.05007769912481308 :0.039762888103723526 -the:0.060068365186452866 a:0.05425379052758217 even:0.043901629745960236 early:0.02966725081205368 on:0.024251073598861694 :0.7878578901290894 -to:0.9395058155059814 for:0.02312854304909706 from:0.01205897144973278 by:0.00484362943097949 ,:0.004318803083151579 :0.016144237481057644 -limits:0.3482026755809784 time:0.18350829184055328 distance:0.09717874228954315 hours:0.09416847676038742 bounds:0.03113478049635887 :0.24580703303217888 -that:0.11793706566095352 ,:0.042975228279829025 f:0.023817718029022217 u:0.022055378183722496 of:0.021316269412636757 :0.771898340433836 -Miss:0.3072402775287628 and:0.0642898678779602 Mary:0.022324776276946068 Mrs:0.020985951647162437 Florence:0.01830284111201763 :0.5668562855571508 -himself:0.06377224624156952 Smith:0.042440738528966904 Johnson:0.024072477594017982 Jones:0.017747528851032257 II:0.017226185649633408 :0.8347408231347799 -one:0.3960270881652832 that:0.22570647299289703 this:0.16330930590629578 the:0.06633765250444412 a:0.04705048352479935 :0.10156899690628052 -the:0.9208459258079529 a:0.04159499332308769 their:0.02550904080271721 this:0.0029877731576561928 tho:0.002355692209675908 :0.006706574698910117 -ly:0.10720910131931305 o:0.0712757483124733 lio:0.04799710959196091 ually:0.027817698195576668 l:0.026240618899464607 :0.7194597236812115 -the:0.9508474469184875 as:0.013134639710187912 tho:0.011898986995220184 the:0.004693314898759127 a:0.0038728362414985895 :0.015552775235846639 -as:0.8527587056159973 so:0.07974624633789062 equally:0.014922896400094032 not:0.0043112835846841335 quite:0.004036876372992992 :0.0442239916883409 -say:0.9595403671264648 be:0.0024520964361727238 speak:0.0019848630763590336 add:0.001789974281564355 see:0.001690903678536415 :0.03254179540090263 -the:0.9 :0.1 -Clerk:0.993506908416748 clerk:0.0024938068818300962 Register:0.0009638866176828742 Sheriff:0.0004279897839296609 Registrar:0.00035929091973230243 :0.0022481173800770193 -wounded:0.022477412596344948 rebel:0.018673254176974297 Indian:0.016418248414993286 local:0.013672000728547573 heavy:0.011259389109909534 :0.9174996949732304 -educational:0.469327837228775 education:0.11080992221832275 agricultural:0.04781554266810417 school:0.023414304479956627 political:0.01893342100083828 :0.32969897240400314 -to:0.9787559509277344 ,:0.00552645418792963 and:0.0015956980641931295 will:0.001202034647576511 than:0.0011250384850427508 :0.011794823687523603 -and:0.31670334935188293 or:0.03151316940784454 relying:0.030724188312888145 commenting:0.028767293319106102 pressing:0.024578997865319252 :0.567713001742959 -the:0.6901993155479431 tho:0.1297910213470459 this:0.017207646742463112 The:0.013013836927711964 th:0.011187996715307236 :0.13860018271952868 -iling:0.42147329449653625 oting:0.0894438698887825 charging:0.05172839015722275 aping:0.041609227657318115 far:0.028029020875692368 :0.367716196924448 -February:0.1745041459798813 September:0.13611695170402527 June:0.12793920934200287 April:0.08496270328760147 July:0.07581542432308197 :0.40066156536340714 -fault:0.17844535410404205 influence:0.04280650615692139 one:0.026470443233847618 kind:0.02531784027814865 power:0.020632412284612656 :0.7063274439424276 -the:0.9686874747276306 tho:0.004520794376730919 a:0.004428558517247438 that:0.002032682066783309 just:0.0015098294243216515 :0.018820660887286067 -which:0.5472840070724487 that:0.2592027187347412 as:0.1713792383670807 it:0.00391786266118288 ,:0.003656885353848338 :0.014559287810698152 -ed:0.2813705503940582 sed:0.05215176194906235 ted:0.04055599868297577 ured:0.0395476259291172 ied:0.02327711507678032 :0.5630969479680061 -I:0.8969730138778687 1:0.07404079288244247 i:0.0038254642859101295 I:0.003091627499088645 will:0.002795914886519313 :0.019273186568170786 -in:0.8745185732841492 In:0.07869000732898712 entering:0.01066085509955883 taking:0.010263361036777496 into:0.007397358771413565 :0.018469844479113817 -used:0.13989125192165375 sold:0.10623078048229218 made:0.10038448125123978 bought:0.08589919656515121 purchased:0.05611160397529602 :0.5114826858043671 -did:0.4891888201236725 could:0.11031270027160645 were:0.10380436480045319 would:0.07208121567964554 was:0.04965141788125038 :0.17496148124337196 -a:0.7717253565788269 no:0.13115020096302032 the:0.04525657370686531 another:0.010448545217514038 an:0.006135140545666218 :0.035284182988107204 -the:0.9441211223602295 this:0.050074487924575806 a:0.0024175154976546764 that:0.0010419900063425303 tho:0.00040753697976469994 :0.0019373472314327955 -that:0.9888607859611511 why:0.005184395704418421 That:0.000487008219351992 what:0.0003347244637552649 whether:0.00033342745155096054 :0.004799658199772239 -appeared:0.4957941472530365 died:0.06989574432373047 hatched:0.031207183375954628 grown:0.023795008659362793 fallen:0.019380290061235428 :0.3599276263266802 -ever:0.707200825214386 yet:0.16706715524196625 even:0.030406132340431213 never:0.020128224045038223 not:0.008051699958741665 :0.06714596319943666 -great:0.10308241099119186 all:0.06886955350637436 the:0.062004975974559784 utmost:0.04193510487675667 our:0.03181850165128708 :0.6922894529998302 -Trinity:0.3530101776123047 the:0.1755804568529129 this:0.07581944018602371 that:0.05019724369049072 said:0.04805878549814224 :0.29733389616012573 -to:0.27534154057502747 who:0.17407722771167755 that:0.06693671643733978 we:0.058645572513341904 I:0.05156471207737923 :0.37343423068523407 -which:0.8054957985877991 and:0.12243732810020447 but:0.025878500193357468 it:0.014870270155370235 It:0.01149795763194561 :0.019820145331323147 -of:0.8549692630767822 and:0.03809698298573494 ot:0.014554977416992188 or:0.012848593294620514 ol:0.008913228288292885 :0.07061695493757725 -tion:0.14371049404144287 ment:0.06928427517414093 ter:0.05024786293506622 ing:0.046698253601789474 ty:0.01718999817967415 :0.6728691160678864 --:0.3397931754589081 and:0.07712959498167038 ,:0.043983094394207 n:0.03457362949848175 or:0.01956835202872753 :0.48495215363800526 -lined:0.4877786934375763 set:0.1103578507900238 put:0.05058740824460983 drawn:0.03947397693991661 called:0.03650491312146187 :0.2752971574664116 -west:0.24213214218616486 south:0.23962819576263428 north:0.19761382043361664 east:0.17332018911838531 southeast:0.059398576617240906 :0.08790707588195801 --:0.23342236876487732 .:0.05736168846487999 ,:0.016951758414506912 ting:0.01687525399029255 ng:0.01580406166613102 :0.6595848686993122 --:0.13795164227485657 ex:0.09439865499734879 con:0.05118366703391075 de:0.046199508011341095 re:0.037738021463155746 :0.632528506219387 -ado:0.03375759720802307 ako:0.03250386193394661 nd:0.018889958038926125 io:0.01630667969584465 oo:0.013539950363337994 :0.8850019527599216 -his:0.6831777691841125 one:0.12643110752105713 the:0.08953491598367691 its:0.014054467901587486 her:0.013369707390666008 :0.07343203201889992 -the:0.6412119269371033 this:0.13498684763908386 a:0.12953943014144897 each:0.014103669673204422 that:0.012876966036856174 :0.0672811595723033 -most:0.035124462097883224 aud:0.018592361360788345 ,:0.01839810237288475 :0.018108408898115158 very:0.01803731359541416 :0.8917393516749144 -and:0.5988003611564636 who:0.1450735479593277 he:0.0510864183306694 but:0.03260883316397667 which:0.02116781659424305 :0.15126302279531956 -that:0.8788959383964539 of:0.08336171507835388 That:0.004537208471447229 if:0.0030489887576550245 which:0.0030356887727975845 :0.027120460523292422 -old:0.0465422160923481 :0.03254268690943718 little:0.022757140919566154 own:0.020603643730282784 wicked:0.020108748227357864 :0.8574455641210079 -of:0.8949218392372131 ot:0.07237541675567627 to:0.008916597813367844 Of:0.005159561987966299 ol:0.0049015735276043415 :0.013725010678172112 -whether:0.3855893015861511 that:0.2721420228481293 if:0.11810441315174103 all:0.036792781203985214 when:0.034396808594465256 :0.1529746726155281 -the:0.9 :0.1 -if:0.681334912776947 when:0.07155908644199371 while:0.058265186846256256 If:0.04502985626459122 although:0.024218229576945305 :0.11959272809326649 -has:0.9769583344459534 ha:0.010601778514683247 had:0.002949577523395419 have:0.001323838485404849 has:0.0011321479687467217 :0.007034323061816394 -it:0.3584960997104645 It:0.06721214950084686 tho:0.037587933242321014 its:0.032401710748672485 them:0.02991468831896782 :0.47438741847872734 -,:0.542844295501709 by:0.16888952255249023 and:0.07029587775468826 from:0.0355326384305954 .:0.034608449786901474 :0.14782921597361565 -the:0.2972509264945984 those:0.09017260372638702 a:0.03919065743684769 cowardly:0.025300156325101852 dishonest:0.019894961267709732 :0.5281906947493553 -demanded:0.5851011276245117 demand:0.07675112783908844 requested:0.07596662640571594 asked:0.040102098137140274 insisted:0.020695362240076065 :0.20138365775346756 -depended:0.13985566794872284 mercy:0.06838124990463257 been:0.06572317332029343 called:0.05427452176809311 faith:0.05215891823172569 :0.6196064688265324 -of:0.9072351455688477 in:0.019379226490855217 ot:0.011401611380279064 at:0.00665842741727829 to:0.006529971957206726 :0.04879561718553305 -the:0.6299411654472351 his:0.0690779983997345 all:0.02599143050611019 to:0.025724830105900764 by:0.025145480409264565 :0.22411909513175488 -except:0.19990737736225128 especially:0.12528401613235474 and:0.09593069553375244 but:0.05135094001889229 even:0.044448886066675186 :0.48307808488607407 -remedy:0.7061215043067932 cure:0.2353593409061432 remedies:0.014524835161864758 medicine:0.007537052500993013 antidote:0.006857749540358782 :0.029599517583847046 -method:0.1537565439939499 course:0.15120309591293335 kind:0.10151702910661697 avenue:0.09375645965337753 form:0.08680785447359085 :0.4129590168595314 -in:0.8624812960624695 In:0.12606598436832428 on:0.0032988223247230053 taking:0.0015103843761608005 of:0.0012684854445979 :0.005375027423724532 -of:0.8181735873222351 ot:0.07853450626134872 to:0.04099983721971512 in:0.008704885840415955 ol:0.007471041288226843 :0.04611614206805825 -able:0.04750528559088707 ,:0.03588908165693283 used:0.028043439611792564 h:0.011913449503481388 ng:0.010952943935990334 :0.8656957997009158 -the:0.11619394272565842 when:0.057710010558366776 and:0.05243738368153572 while:0.05119688808917999 .:0.03834345191717148 :0.6841183230280876 -and:0.5405696630477905 to:0.2397562712430954 or:0.06983968615531921 shall:0.03665497153997421 ,:0.01904328167438507 :0.09413612633943558 -this:0.23118238151073456 the:0.17350248992443085 it:0.1089133769273758 that:0.047589581459760666 our:0.04478880390524864 :0.3940233662724495 -the:0.9173296093940735 tho:0.047371067106723785 The:0.011750347912311554 tha:0.005211361683905125 Mrs:0.0019650403410196304 :0.01637257356196642 -manual:0.43819189071655273 their:0.08212123066186905 the:0.06752235442399979 his:0.03585284948348999 all:0.016596846282482147 :0.3597148284316063 -an:0.42492708563804626 no:0.11470673978328705 the:0.04793902486562729 it:0.04496823623776436 a:0.03855276107788086 :0.3289061523973942 -shall:0.9175676703453064 may:0.03350326418876648 can:0.011960582807660103 should:0.011026016436517239 will:0.009080709889531136 :0.016861756332218647 -north:0.17814014852046967 south:0.0681983157992363 west:0.04061928018927574 n:0.031985435634851456 1:0.030039342120289803 :0.651017477735877 -8:0.12990109622478485 1:0.11354329437017441 I:0.09238269925117493 II:0.06602797657251358 10:0.06518334150314331 :0.5329615920782089 -frequently:0.36629173159599304 regularly:0.14697116613388062 often:0.039748288691043854 constantly:0.031900595873594284 extensively:0.02238313853740692 :0.3927050791680813 -If:0.5810272097587585 When:0.0977218970656395 As:0.03960748016834259 Now:0.03291695937514305 For:0.026328472420573235 :0.22239798121154308 -Smith:0.16907283663749695 and:0.0233303252607584 Shaw:0.015734834596514702 Jones:0.013760757632553577 Turner:0.012053287588059902 :0.7660479582846165 -paid:0.26517006754875183 ,:0.039144117385149 made:0.02697513997554779 thereof:0.026120629161596298 charged:0.018072916194796562 :0.6245171297341585 -the:0.9 :0.1 -after:0.5753772854804993 in:0.12815441191196442 In:0.09232068806886673 After:0.04925977438688278 following:0.04644434154033661 :0.1084434986114502 -tion:0.14497347176074982 nations:0.04566463083028793 states:0.03054073452949524 men:0.027790848165750504 people:0.025838831439614296 :0.7251914832741022 -and:0.5561419129371643 but:0.2910235524177551 so:0.0337664894759655 yet:0.02472027949988842 therefore:0.013733018189668655 :0.08061474747955799 -Louis:0.08002802729606628 Paul:0.07790528237819672 James:0.06381875276565552 Mary:0.05779020115733147 Johns:0.05313783511519432 :0.6673199012875557 -;:0.82309490442276 ::0.05002524331212044 ;:0.04110610485076904 ,:0.03914501890540123 %;:0.007389300502836704 :0.039239428006112576 -will:0.07037748396396637 ould:0.06175624951720238 do:0.03317125886678696 shall:0.01949494518339634 should:0.01797660067677498 :0.797223461791873 -,:0.5425816178321838 done:0.2508925795555115 ;:0.04432763531804085 .:0.022616343572735786 been:0.021758804097771645 :0.11782301962375641 -suffering:0.1789814680814743 results:0.07994361966848373 effects:0.026960229501128197 loss:0.019353922456502914 alienation:0.017229139804840088 :0.6775316204875708 -of:0.9844048619270325 in:0.003977104555815458 ot:0.0016036592423915863 for:0.001485677668824792 ol:0.0008800812647677958 :0.007648615341167897 -to:0.972938060760498 for:0.006384779699146748 in:0.0033191440161317587 as:0.0031328340992331505 of:0.0018342836992815137 :0.012390897725708783 -General:0.15646763145923615 .:0.05067842826247215 John:0.036511003971099854 Colonel:0.03581376373767853 Judge:0.017408935353159904 :0.7031202372163534 -went:0.3981248438358307 got:0.12679529190063477 returned:0.11938346922397614 rushed:0.09119032323360443 came:0.035829562693834305 :0.22867650911211967 -payment:0.2552940547466278 levy:0.041847340762615204 appropriation:0.034369971603155136 taxation:0.03085903264582157 payments:0.02316829189658165 :0.6144613083451986 -,:0.08351987600326538 out:0.0773097351193428 here:0.07100864499807358 that:0.06135108694434166 further:0.04696748033165932 :0.6598431766033173 -County:0.7912377715110779 county:0.13271600008010864 State:0.02593826875090599 City:0.012806767597794533 city:0.007525235880166292 :0.02977595617994666 -great:0.015480395406484604 war:0.01369401067495346 of:0.013543122448027134 Northern:0.009374401532113552 .:0.009258600883185863 :0.9386494690552354 -and:0.5184121131896973 or:0.07978681474924088 etc:0.049135029315948486 et:0.03770932927727699 to:0.013103729113936424 :0.30185298435389996 -turning:0.2520277798175812 making:0.15794870257377625 converting:0.04145939648151398 makes:0.02967638149857521 turns:0.029285641387104988 :0.4896020982414484 -not:0.11248927563428879 ,:0.11231754720211029 now:0.06777539849281311 be:0.028016233816742897 often:0.027477625757455826 :0.6519239190965891 -high:0.07059084624052048 true:0.05018316209316254 great:0.0396738164126873 highest:0.039354074746370316 real:0.02093600109219551 :0.7792620994150639 -of:0.45935291051864624 to:0.3765856623649597 for:0.025661898776888847 toward:0.01965971849858761 in:0.019327199086546898 :0.09941261075437069 -Washington:0.07633597403764725 you:0.05179069936275482 meet:0.04457179456949234 serve:0.029752669855952263 Virginia:0.027630796656012535 :0.7699180655181408 -All:0.6311125755310059 The:0.22689110040664673 Every:0.08238629996776581 No:0.02872726134955883 Any:0.002095449948683381 :0.028787312796339393 -the:0.9 :0.1 -would:0.17165601253509521 will:0.16546502709388733 could:0.1546306610107422 should:0.09523412585258484 does:0.08927207440137863 :0.3237420991063118 -sheltered:0.46602004766464233 protected:0.16712765395641327 shielded:0.14917340874671936 saved:0.025501463562250137 kept:0.024096615612506866 :0.16808081045746803 -that:0.996993899345398 of:0.0007963899406604469 ,:0.00021664985979441553 where:0.00020802392100449651 That:0.00018617682508192956 :0.0015988601080607623 -old:0.09512016922235489 minded:0.09123936295509338 young:0.0744921863079071 Christian:0.07372051477432251 intelligent:0.03814290836453438 :0.6272848583757877 -the:0.9 :0.1 -the:0.7541798949241638 this:0.03575630113482475 his:0.020716097205877304 these:0.017239870503544807 tho:0.015783950686454773 :0.15632388554513454 -fare:0.18433356285095215 toll:0.12680132687091827 cost:0.10262741148471832 price:0.10095658153295517 rate:0.06906413286924362 :0.41621698439121246 -1:0.07269825041294098 I:0.066063791513443 and:0.06267710030078888 You:0.052216820418834686 The:0.02421548031270504 :0.7221285570412874 -the:0.9 :0.1 -to:0.08633449673652649 by:0.08250714093446732 ,:0.051629438996315 a:0.042295780032873154 .:0.02840985544025898 :0.7088232878595591 --:0.06644009798765182 ad:0.03741859644651413 .:0.02386985346674919 ol:0.020297609269618988 fur:0.015355609357357025 :0.8366182334721088 -John:0.10693804919719696 S:0.04387887567281723 J:0.02159549854695797 George:0.01511317677795887 Thomas:0.014975135214626789 :0.7974992645904422 -who:0.3420582711696625 to:0.31203001737594604 they:0.12658099830150604 and:0.09790632873773575 we:0.04994270205497742 :0.07148168236017227 -Barrett:0.5997507572174072 ,:0.06118904426693916 ,:0.029882963746786118 In:0.028585586696863174 of:0.024638697504997253 :0.25595295056700706 -a:0.21757331490516663 the:0.146639883518219 ,:0.089858278632164 -:0.05296625196933746 an:0.03627999499440193 :0.456682275980711 -night:0.3245241940021515 morning:0.3135811984539032 evening:0.15130455791950226 day:0.1237722635269165 afternoon:0.06427347660064697 :0.022544309496879578 -said:0.4183657467365265 reported:0.1445087492465973 stated:0.04873169958591461 thought:0.037667714059352875 claimed:0.03429171070456505 :0.3164343796670437 -.:0.0631990134716034 ,:0.025006959214806557 and:0.016578588634729385 nt:0.015246409922838211 d:0.012561500072479248 :0.8674075286835432 -or:0.701560378074646 and:0.24095633625984192 but:0.028903495520353317 of:0.008497912436723709 to:0.004127585329115391 :0.015954292379319668 -the:0.08229999244213104 an:0.03533405438065529 ,:0.0218814704567194 -:0.021845605224370956 .:0.02132527157664299 :0.8173136059194803 -rooms:0.8928806781768799 buildings:0.02041727863252163 classrooms:0.008101281709969044 halls:0.006541150622069836 bedrooms:0.005968054756522179 :0.06609155610203743 -London:0.2829727828502655 England:0.17397671937942505 Paris:0.04547140374779701 France:0.043066322803497314 Britain:0.02753625251352787 :0.42697651870548725 -she:0.9438019394874573 he:0.02473681978881359 She:0.00518369022756815 Sylvia:0.004054544027894735 they:0.0034313471987843513 :0.018791659269481897 -would:0.6469743251800537 might:0.07265131920576096 will:0.05211250111460686 did:0.05157880112528801 could:0.05083278939127922 :0.12585026398301125 -George:0.1649041473865509 Governor:0.11580269783735275 President:0.07635892927646637 Senator:0.05984079837799072 Mr:0.05552709475159645 :0.5275663323700428 -for:0.38304999470710754 without:0.24978697299957275 upon:0.08797261863946915 with:0.069354347884655 by:0.04901712015271187 :0.1608189456164837 -such:0.06124328821897507 I:0.059702735394239426 a:0.052869684994220734 :0.052556343376636505 ,:0.04926769807934761 :0.7243602499365807 -rested:0.29985642433166504 rest:0.1249806359410286 resting:0.07482368499040604 made:0.033190175890922546 placed:0.03031115233898163 :0.43683792650699615 -fully:0.1319330781698227 wide:0.10984707623720169 startled:0.07336258888244629 ,:0.04435523599386215 aw:0.04270188510417938 :0.5978001356124878 -their:0.9054111242294312 its:0.04669387638568878 his:0.017286576330661774 her:0.012543408200144768 our:0.008815925568342209 :0.009249089285731316 -it:0.6908590197563171 ,:0.13888520002365112 there:0.057087045162916183 this:0.04227869212627411 It:0.01676250994205475 :0.0541275329887867 -a:0.33048638701438904 the:0.10098036378622055 his:0.10039740800857544 it:0.08944351226091385 him:0.08441933244466782 :0.2942729964852333 -tion:0.24202273786067963 ment:0.08062928915023804 dent:0.04006442055106163 ing:0.035541076213121414 ly:0.028390754014253616 :0.5733517222106457 -to:0.31172624230384827 in:0.18118369579315186 ,:0.14183832705020905 at:0.0586799755692482 for:0.04983906075358391 :0.2567326985299587 -of:0.8372554183006287 on:0.07155884802341461 in:0.03207309544086456 ot:0.00789730530232191 from:0.006370493210852146 :0.044844839721918106 -The:0.9481600522994995 This:0.031544025987386703 A:0.00620398111641407 Said:0.005062372889369726 That:0.002975042210891843 :0.006054525496438146 -par:0.03793903440237045 dent:0.023533573374152184 er:0.021249623969197273 ed:0.010256222449243069 tem:0.010071343742311 :0.896950202062726 -,:0.7744742035865784 ;:0.11545581370592117 .:0.02640395052731037 .,:0.006179989781230688 body:0.005082638468593359 :0.07240340393036604 -go:0.24370387196540833 get:0.04705749452114105 set:0.04506766051054001 turn:0.030582604929804802 drift:0.029479043558239937 :0.6041093245148659 -the:0.1652829647064209 East:0.10055280476808548 New:0.09523771703243256 West:0.06344708055257797 North:0.0367354154586792 :0.5387440174818039 -then:0.2292151302099228 soon:0.19718672335147858 also:0.07096482068300247 again:0.04177507758140564 frequently:0.03270156681537628 :0.42815668135881424 -idea:0.1992252916097641 feeling:0.0848013386130333 fact:0.049894556403160095 thought:0.043612703680992126 sense:0.03893786296248436 :0.583528246730566 -and:0.2969922423362732 -:0.04611583054065704 had:0.03836657851934433 ,:0.03281044587492943 would:0.03107915073633194 :0.5546357519924641 -l:0.13841484487056732 i:0.05930357426404953 il:0.03302658721804619 n:0.02756991609930992 ll:0.02092297188937664 :0.7207621056586504 -and:0.13719362020492554 for:0.12385064363479614 on:0.07975850254297256 as:0.07115393877029419 in:0.06872858852148056 :0.519314706325531 -under:0.47809362411499023 on:0.19360068440437317 in:0.14227323234081268 beneath:0.029725806787610054 In:0.015631046146154404 :0.14067560620605946 -the:0.9745419025421143 The:0.01234039943665266 tho:0.006960147991776466 the:0.001601079828105867 tha:0.0008650284726172686 :0.00369144172873348 -line:0.9944829344749451 Line:0.001746135065332055 line:0.001328995218500495 lines:0.0007408451056107879 boundary:0.00011689231178024784 :0.0015841978238313459 -who:0.9965147972106934 that:0.002205032855272293 Who:0.00028533354634419084 whom:0.0001896257308544591 which:0.00018160909530706704 :0.0006236015615286306 -can:0.29599061608314514 cannot:0.14897088706493378 will:0.09850949048995972 may:0.051852863281965256 could:0.032141782343387604 :0.3725343607366085 -the:0.9 :0.1 -may:0.5944535136222839 shall:0.34749841690063477 must:0.02394227124750614 will:0.01961338333785534 should:0.005267344415187836 :0.009225070476531982 -of:0.935265302658081 for:0.023807130753993988 the:0.006929922383278608 ot:0.006386384833604097 as:0.00596246961504221 :0.021648789756000042 -would:0.5815203785896301 should:0.10018420219421387 could:0.10016155987977982 might:0.0784991905093193 will:0.048204053193330765 :0.09143061563372612 -of:0.9809096455574036 on:0.004628281574696302 ot:0.004076509736478329 to:0.0020280799362808466 in:0.001516009564511478 :0.00684147363062948 -,:0.1226695328950882 of:0.06541351974010468 tho:0.053866270929574966 more:0.05003661289811134 the:0.03475799039006233 :0.6732560731470585 -were:0.4117067754268646 are:0.1753682941198349 have:0.15065115690231323 had:0.05166558548808098 of:0.009189342148602009 :0.20141884591430426 -tho:0.18002945184707642 to:0.10760194063186646 an:0.10674431174993515 a:0.06827134639024734 by:0.06504800915718079 :0.47230494022369385 -case:0.6767763495445251 matter:0.16682341694831848 suit:0.04901915788650513 court:0.008787200786173344 cases:0.007567444816231728 :0.09102643001824617 -is:0.23164713382720947 are:0.1769396811723709 which:0.07132550328969955 as:0.04209187626838684 and:0.03951432928442955 :0.43848147615790367 -who:0.586291491985321 where:0.23817937076091766 what:0.07580062001943588 whom:0.023316025733947754 when:0.011984105221927166 :0.06442838627845049 -ed:0.20466668903827667 punished:0.05962954834103584 oned:0.024967817589640617 tried:0.024731285870075226 ated:0.022202538326382637 :0.663802120834589 -without:0.5836320519447327 of:0.1612928807735443 for:0.13396628201007843 from:0.03334652632474899 with:0.020220696926116943 :0.06754156202077866 -the:0.9610781073570251 as:0.007063153199851513 tho:0.006642904598265886 tha:0.0035296690184623003 he:0.002287845127284527 :0.019398320699110627 -pro:0.19546042382717133 es:0.060202457010746 as:0.027388421818614006 in:0.024455061182379723 and:0.02232222817838192 :0.670171407982707 -progress:0.04632987827062607 matters:0.035433027893304825 things:0.033973075449466705 sense:0.031566012650728226 improvements:0.029706565663218498 :0.8229914400726557 -the:0.24547412991523743 a:0.2278413325548172 his:0.059946075081825256 tho:0.04978494346141815 fire:0.01511254534125328 :0.4018409736454487 -sources:0.8856972455978394 means:0.038060735911130905 streams:0.035683900117874146 source:0.00908289011567831 avenues:0.0070756105706095695 :0.024399617686867714 -and:0.22872720658779144 .:0.03147565945982933 ,:0.023181665688753128 William:0.017805367708206177 &:0.016594577580690384 :0.6822155229747295 -200:0.019814657047390938 400:0.01689484529197216 500:0.016018997877836227 2:0.015949470922350883 4:0.014493132941424847 :0.9168288959190249 -the:0.966190755367279 tho:0.02951824478805065 a:0.000865893205627799 tha:0.0008076432859525084 the:0.0004651104682125151 :0.002152352884877473 -by:0.2676128149032593 under:0.1957475244998932 in:0.09445613622665405 In:0.04211415350437164 ,:0.02642488107085228 :0.37364448979496956 -,:0.8711383938789368 and:0.05692781135439873 ;:0.03306945785880089 ::0.00601676432415843 ;:0.0037580416537821293 :0.029089530929923058 -the:0.9 :0.1 -posed:0.19184927642345428 served:0.045580800622701645 proved:0.02908407151699066 ed:0.022067662328481674 pressed:0.021257752552628517 :0.6901604365557432 -has:0.1697801798582077 he:0.07744615525007248 having:0.07726253569126129 s:0.027827804908156395 is:0.025741005316376686 :0.6219423189759254 -was:0.19883106648921967 would:0.16229526698589325 could:0.11007902026176453 came:0.08367305248975754 took:0.05393252521753311 :0.3911890685558319 -,:0.5721909403800964 *,:0.06227714195847511 .:0.043493036180734634 ;:0.04066124185919762 *:0.014459431171417236 :0.26691820845007896 -of:0.7148014307022095 and:0.20382313430309296 ot:0.03057156130671501 or:0.011079098097980022 to:0.005924697034060955 :0.03380007855594158 -acres:0.6896740794181824 ,:0.04449192434549332 feet:0.02379748784005642 trees:0.016118379309773445 .:0.014926852658390999 :0.21099127642810345 -matter:0.06869805604219437 paper:0.06240520626306534 report:0.04371810331940651 article:0.03185370936989784 letter:0.030086437240242958 :0.763238487765193 -did:0.9651504755020142 do:0.020752787590026855 could:0.004413789603859186 would:0.002706953790038824 were:0.001111519755795598 :0.005864473758265376 -;:0.4721442759037018 ,:0.0665636733174324 ::0.04472818225622177 the:0.041609782725572586 .:0.040582794696092606 :0.33437129110097885 -cess:0.055542606860399246 tion:0.05208100378513336 ful:0.037216782569885254 ment:0.036255598068237305 ter:0.02545556053519249 :0.7934484481811523 -popular:0.05278756469488144 much:0.05037490651011467 prevalent:0.027192646637558937 common:0.020341873168945312 desired:0.0189154502004385 :0.8303875587880611 -to:0.20903000235557556 of:0.17814216017723083 ,:0.13652916252613068 was:0.10129134356975555 as:0.060572605580091476 :0.3144347257912159 -to:0.9986478686332703 to:0.00016482970386277884 not:0.00012868267367593944 To:0.00012721536040771753 yet:0.00011091193300671875 :0.0008204916957765818 -great:0.05238724127411842 certain:0.046341050416231155 mere:0.03529293090105057 -:0.03112713433802128 good:0.015139933675527573 :0.819711709395051 -health:0.08426301181316376 being:0.07752463221549988 life:0.056472647935152054 justice:0.03630606830120087 treatment:0.03343900293111801 :0.7119946368038654 -of:0.24667973816394806 on:0.22785314917564392 in:0.1714482307434082 to:0.1375768780708313 upon:0.07858587056398392 :0.1378561332821846 -to:0.4796571135520935 for:0.10176672041416168 by:0.08794518560171127 out:0.06598201394081116 off:0.056333571672439575 :0.2083153948187828 -only:0.08959618210792542 first:0.08143903315067291 United:0.044642530381679535 National:0.03869207948446274 American:0.03655482083559036 :0.709075354039669 -the:0.9 :0.1 -great:0.16471867263317108 civil:0.1321057379245758 present:0.029534826055169106 bloody:0.02824563905596733 American:0.024555077776312828 :0.6208400465548038 -warm:0.3304827809333801 cold:0.19079181551933289 cool:0.10446157306432724 hot:0.03272328898310661 dry:0.029950983822345734 :0.3115895576775074 -pose:0.028316007927060127 ply:0.027949228882789612 ment:0.02027256228029728 port:0.015873301774263382 charge:0.012354407459497452 :0.8952344916760921 -drilling:0.3154650032520294 grinding:0.1346660554409027 work:0.12072353810071945 digging:0.056439172476530075 drill:0.03207763656973839 :0.34062859416007996 -;:0.8676262497901917 ,:0.04703238233923912 and:0.03125091269612312 ::0.01623097062110901 ;:0.00862149428576231 :0.029237990267574787 -the:0.9 :0.1 -were:0.934842050075531 was:0.04379976913332939 are:0.0029895335901528597 were:0.002486789133399725 he:0.0016044116346165538 :0.014277446432970464 -,:0.465284138917923 it:0.21026551723480225 It:0.10829704999923706 and:0.036783263087272644 there:0.035605523735284805 :0.14376450702548027 -'s:0.9507336020469666 ':0.018989037722349167 -:0.0017995157977566123 his:0.0008089446346275508 man:0.0003999232721980661 :0.02726897652610205 -pur:0.06378383189439774 n:0.02244320698082447 de:0.018959911540150642 -:0.01702202670276165 ed:0.015349343419075012 :0.8624416794627905 -if:0.07917017489671707 acting:0.07075083255767822 act:0.05823430418968201 depending:0.03708516061306 so:0.02890019118785858 :0.7258593365550041 -towel:0.1909811645746231 blanket:0.17738157510757446 pillow:0.07716454565525055 shirt:0.05934171378612518 chair:0.036944665014743805 :0.4581863358616829 -and:0.09968975186347961 ,:0.07369078695774078 thou:0.06189782917499542 has:0.022716421633958817 when:0.018808120861649513 :0.7231970895081758 --:0.38937583565711975 of:0.053563714027404785 in:0.045140501111745834 from:0.033474210649728775 up:0.03260635957121849 :0.44583937898278236 -It:0.4547615647315979 I:0.23678284883499146 This:0.09238028526306152 She:0.09220416843891144 That:0.03932419791817665 :0.08454693481326103 -proved:0.0838472992181778 accepted:0.06449945271015167 doubted:0.04331573098897934 seen:0.03301767259836197 forgotten:0.02374604158103466 :0.7515738029032946 -the:0.9749554395675659 tho:0.01454258058220148 a:0.003780901897698641 his:0.002122888807207346 this:0.0014270818792283535 :0.003171107266098261 -the:0.68107670545578 this:0.19837386906147003 tho:0.042160093784332275 that:0.03292502835392952 said:0.015460758469998837 :0.030003544874489307 -remain:0.19773215055465698 be:0.11064311116933823 linger:0.1088249459862709 stay:0.08386555314064026 persist:0.033425040543079376 :0.46550919860601425 -no:0.5713608264923096 a:0.2230229377746582 the:0.05176922306418419 any:0.049448076635599136 every:0.03442695364356041 :0.06997198238968849 -.:0.6071445345878601 .":0.1521841585636139 !:0.019278036430478096 ":0.015385731123387814 !":0.012168120592832565 :0.19383941870182753 -and:0.65973961353302 or:0.23493227362632751 ,:0.07151498645544052 nor:0.01256781816482544 ;:0.002868475392460823 :0.018376832827925682 -what:0.8374101519584656 which:0.053066860884428024 how:0.03274437040090561 whether:0.016179971396923065 where:0.011641532182693481 :0.048957113176584244 -the:0.9474088549613953 tho:0.037583693861961365 that:0.0016347921919077635 our:0.0014872862957417965 his:0.0014148986665531993 :0.010470474022440612 -order:0.9584466814994812 water:0.0036402996629476547 preparation:0.003374991938471794 vain:0.00199008546769619 time:0.0016342432936653495 :0.03091369813773781 -the:0.9 :0.1 -,:0.15044017136096954 and:0.14278723299503326 of:0.07721150666475296 eminent:0.051357537508010864 known:0.028266871348023415 :0.54993668012321 -not:0.34226900339126587 never:0.24416440725326538 neither:0.21792113780975342 dont:0.04609280824661255 cannot:0.030663609504699707 :0.11888903379440308 -.:0.19782444834709167 clerks:0.13679827749729156 .:0.04806643724441528 attendants:0.021210910752415657 others:0.01603618636727333 :0.5800637397915125 -of:0.8670231699943542 and:0.05820854380726814 aud:0.012598532252013683 ol:0.012477859854698181 ot:0.00831986591219902 :0.041372028179466724 -time:0.2846347391605377 ready:0.21829238533973694 possible:0.10451222956180573 necessary:0.061871688812971115 best:0.04390992969274521 :0.2867790274322033 -Fifth:0.8894127011299133 Fourth:0.06810157746076584 Sixth:0.018960172310471535 Third:0.008595428429543972 fifth:0.0022030489053577185 :0.012727071763947606 -he:0.35860416293144226 and:0.32196518778800964 I:0.048352550715208054 lie:0.04636022448539734 1:0.033792462199926376 :0.19092541188001633 -the:0.3065648078918457 a:0.13940060138702393 an:0.1097201257944107 and:0.0579458512365818 to:0.042667750269174576 :0.3437008634209633 -the:0.9 :0.1 -senate:0.10864106565713882 .:0.052864883095026016 ?:0.034493327140808105 Senate:0.027199044823646545 ,:0.024899760261178017 :0.7519019190222025 -the:0.9 :0.1 -report:0.1625487208366394 bureau:0.08253232389688492 inquiry:0.05435921624302864 matter:0.04179679602384567 committee:0.03672688454389572 :0.6220360584557056 -have:0.982382595539093 who:0.0035601023118942976 had:0.003103323047980666 having:0.0021168517414480448 has:0.0007793339318595827 :0.008057793427724391 -by:0.31353259086608887 in:0.11526148021221161 without:0.10703850537538528 through:0.08350569754838943 with:0.0808861032128334 :0.2997756227850914 -was:0.8430883884429932 is:0.07421205192804337 he:0.012876506894826889 Is:0.00794163066893816 not:0.006817042827606201 :0.05506437923759222 -Norton:0.9892310500144958 Ward:0.000935062940698117 Wood:0.00024554107221774757 ,:0.00013633054913952947 and:0.00013213786587584764 :0.009319877557572909 -not:0.33966171741485596 only:0.05495613068342209 also:0.04676492512226105 first:0.03428816422820091 so:0.020847022533416748 :0.5034820400178432 -to:0.18793094158172607 ,:0.07862936705350876 that:0.06009974330663681 a:0.05866645276546478 very:0.0199580080807209 :0.5947154872119427 -assurance:0.23525719344615936 communicating:0.14137518405914307 saying:0.12812724709510803 recommending:0.05790980905294418 instruction:0.03399667143821716 :0.4033338949084282 -Alice:0.1390920728445053 Allen:0.01724924147129059 Jones:0.011842573061585426 Marshall:0.011716553010046482 Anderson:0.011529536917805672 :0.8085700226947665 -.:0.10757020115852356 t:0.02260161191225052 ,:0.018336782231926918 nd:0.016570420935750008 ii:0.015625599771738052 :0.8192953839898109 -that:0.05530426651239395 ut:0.05233891308307648 u:0.03139770030975342 .:0.030164221301674843 ud:0.029389245435595512 :0.8014056533575058 -trial:0.5448846817016602 hearing:0.03561894968152046 sale:0.01799014024436474 action:0.01589725725352764 arbitration:0.013699652627110481 :0.3719093184918165 -have:0.08902408182621002 has:0.06722793728113174 finds:0.06403077393770218 see:0.04617539420723915 find:0.04554039612412453 :0.6880014166235924 -facts:0.08716783672571182 science:0.051334161311388016 knowledge:0.04983844980597496 sciences:0.03989293426275253 history:0.03520774096250534 :0.7365588769316673 -the:0.7237741351127625 no:0.04774864390492439 enough:0.025512078776955605 tho:0.02098456211388111 any:0.016020720824599266 :0.16595985926687717 -and:0.22605183720588684 ,:0.15097858011722565 is:0.04064905270934105 as:0.023834573104977608 be:0.019905684515833855 :0.538580272346735 -and:0.6486863493919373 those:0.04485755413770676 or:0.041886668652296066 others:0.035934433341026306 all:0.029175952076911926 :0.1994590424001217 -so:0.17123757302761078 sufficiently:0.07150937616825104 not:0.049097690731287 properly:0.04044725000858307 as:0.03749055787920952 :0.6302175521850586 -short:0.21322417259216309 particular:0.07451511919498444 long:0.03593192994594574 reasonable:0.03379421681165695 other:0.03158678859472275 :0.610947772860527 -Bible:0.3372837007045746 bible:0.14256002008914948 Scriptures:0.10368961095809937 book:0.0582248717546463 Book:0.028892148286104202 :0.32934964820742607 -of:0.3771510124206543 against:0.24717213213443756 for:0.18866930902004242 ,:0.12286621332168579 in:0.01434230525046587 :0.04979902785271406 -ten:0.18226753175258636 twenty:0.12363172322511673 fifteen:0.11577445268630981 thirty:0.10819239169359207 two:0.07920372486114502 :0.39093017578125 -and:0.5696302652359009 of:0.4078525900840759 or:0.007481937762349844 in:0.0029130096081644297 ,:0.0024831085465848446 :0.009639088762924075 -water:0.0808514729142189 swimming:0.046699486672878265 bathing:0.04145129770040512 baths:0.033571261912584305 golf:0.021425386890769005 :0.7760010939091444 -shall:0.8416687846183777 must:0.07467200607061386 may:0.028511900454759598 will:0.028164464980363846 should:0.013988489285111427 :0.012994354590773582 -of:0.8925564885139465 into:0.02735007181763649 in:0.012250153347849846 from:0.012224559672176838 at:0.008254356682300568 :0.047364369966089725 -Judicial:0.8322493433952332 Congressional:0.05486238747835159 Legislative:0.034041646867990494 Electoral:0.005759503226727247 Capital:0.004904318135231733 :0.06818280089646578 -thence:0.4599921405315399 south:0.15678349137306213 west:0.04732111468911171 north:0.03988201916217804 east:0.03855656087398529 :0.2574646733701229 -Mining:0.09677725285291672 Mine:0.07659158110618591 mining:0.05369330197572708 Mountain:0.03951092064380646 Cove:0.026562221348285675 :0.7068647220730782 -and:0.5432451367378235 but:0.3316657543182373 so:0.029616408050060272 for:0.021633055061101913 as:0.013792822137475014 :0.06004682369530201 -the:0.3223302364349365 tho:0.12517477571964264 our:0.035578418523073196 a:0.03284367918968201 their:0.02998936176300049 :0.45408352836966515 -of:0.1294546127319336 notice:0.11059795320034027 receipt:0.07780002057552338 order:0.04251404479146004 payment:0.03681660443544388 :0.6028167642652988 -few:0.05328201502561569 great:0.05278877541422844 honest:0.04729970172047615 many:0.035230495035648346 brave:0.03184859827160835 :0.779550414532423 -the:0.7711647152900696 a:0.10450642555952072 my:0.05035415664315224 his:0.021689070388674736 that:0.01246445532888174 :0.039821176789700985 -from:0.7463045716285706 by:0.07670290768146515 through:0.037419963628053665 of:0.031363263726234436 with:0.02221205271780491 :0.08599724061787128 -the:0.42034289240837097 other:0.11045179516077042 some:0.07127183675765991 all:0.05380147323012352 certain:0.045254603028297424 :0.29887739941477776 --:0.1862642616033554 of:0.09068389981985092 ,:0.03048107400536537 .:0.021054446697235107 and:0.012950947508215904 :0.6585653703659773 -The:0.8809657692909241 This:0.05865919962525368 A:0.0200163833796978 No:0.007273178547620773 the:0.003932605963200331 :0.029152863193303347 -tho:0.3256843686103821 In:0.18669013679027557 The:0.1462753415107727 the:0.14414002001285553 in:0.09597812592983246 :0.10123200714588165 -went:0.5253923535346985 returned:0.0927606150507927 pitched:0.03367505595088005 then:0.032768480479717255 came:0.03275404870510101 :0.2826494462788105 -from:0.2085484117269516 of:0.18517006933689117 ,:0.09606927633285522 to:0.05618809908628464 and:0.05520878732204437 :0.398815356194973 -West:0.6848114132881165 East:0.08790188282728195 South:0.04586755856871605 North:0.026660962030291557 West:0.015499572269618511 :0.13925861101597548 -of:0.8764666318893433 ol:0.057936184108257294 aud:0.023640213534235954 ,:0.006242826115339994 ot:0.0052798474207520485 :0.030434296932071447 -the:0.9 :0.1 -small:0.20074670016765594 large:0.1795506477355957 good:0.06325763463973999 little:0.04546774923801422 real:0.03899368643760681 :0.47198358178138733 -known:0.13579760491847992 accepted:0.11584839969873428 established:0.0424354150891304 official:0.03278926759958267 true:0.02490776963531971 :0.648221543058753 -rest:0.12057030946016312 grain:0.10272454470396042 other:0.0511246919631958 hay:0.04426705837249756 grass:0.0390474796295166 :0.6422659158706665 -connected:0.10696625709533691 associated:0.06583988666534424 concerned:0.040276218205690384 contrasted:0.037036631256341934 now:0.03126530721783638 :0.7186156995594501 -survey:0.8937610387802124 surveys:0.016609380021691322 description:0.009253527037799358 deed:0.009105478413403034 Survey:0.0067976308055222034 :0.06447294494137168 -allowed:0.2159111201763153 required:0.1715037226676941 permitted:0.15059977769851685 prescribed:0.11010343581438065 authorized:0.04170025512576103 :0.3101816885173321 -tree:0.27203628420829773 down:0.11219089478254318 ,:0.09632835537195206 up:0.08506810665130615 hill:0.05707549303770065 :0.3773008659482002 -girl:0.13350030779838562 child:0.09715226292610168 boy:0.0655478835105896 bird:0.03687240928411484 lion:0.03539386764168739 :0.6315332688391209 -when:0.17398342490196228 the:0.16945090889930725 and:0.10393117368221283 at:0.06330975890159607 that:0.06246039271354675 :0.4268643409013748 -and:0.43101000785827637 with:0.28001725673675537 to:0.23480407893657684 ,:0.008957005105912685 .:0.004915397148579359 :0.040296254213899374 -from:0.8143359422683716 ever:0.008797935210168362 in:0.007904881611466408 out:0.006701662205159664 busy:0.005861292127519846 :0.15639828657731414 -at:0.3953498303890228 a:0.1543983519077301 the:0.10066398978233337 in:0.06668385863304138 for:0.06579682230949402 :0.2171071469783783 -the:0.44407927989959717 tho:0.2984274625778198 a:0.17948587238788605 her:0.00817481055855751 any:0.005151541903614998 :0.06468103267252445 -the:0.9 :0.1 -July:0.6578097343444824 June:0.11011192947626114 May:0.08638226985931396 April:0.04554392397403717 September:0.028701795265078545 :0.07145034708082676 -the:0.982775866985321 tho:0.006186259910464287 the:0.003136943094432354 that:0.002375024138018489 this:0.0014095460064709187 :0.004116359865292907 -to:0.9938758015632629 ot:0.0016918758628889918 ,:0.0008813841268420219 they:0.0005120790447108448 t:0.00034012869582511485 :0.002698730706470087 -tion:0.06512235850095749 cause:0.031587664037942886 day:0.028126955032348633 one:0.026526397094130516 ment:0.017698243260383606 :0.8309383820742369 -,:0.37382665276527405 and:0.34711411595344543 ;:0.16270028054714203 but:0.022489529103040695 so:0.022424079477787018 :0.07144534215331078 -at:0.49944594502449036 about:0.34828928112983704 around:0.03517794981598854 before:0.02606533095240593 near:0.021466843783855438 :0.0695546492934227 -and:0.18915660679340363 The:0.17913581430912018 the:0.11452409625053406 In:0.07546219974756241 Its:0.04395940527319908 :0.39776187762618065 -I:0.9461721181869507 She:0.019543258473277092 1:0.008078363724052906 We:0.005518451798707247 He:0.003998988773673773 :0.0166888190433383 -had:0.7061275839805603 has:0.2312164306640625 have:0.018692636862397194 having:0.011324831284582615 hath:0.008055881597101688 :0.0245826356112957 -I:0.9769913554191589 i:0.006946919951587915 1:0.002641522791236639 he:0.0016461230115965009 ho:0.0014291770057752728 :0.010344901820644736 -dust:0.08328281342983246 vines:0.0683126151561737 weeds:0.054670996963977814 grass:0.039219096302986145 mud:0.03641751781105995 :0.7180969603359699 -a:0.47763630747795105 the:0.35637882351875305 no:0.024184145033359528 tho:0.02265695482492447 much:0.019952861592173576 :0.09919090755283833 -Young:0.9552673697471619 Smith:0.0034617623314261436 Wise:0.0007980175432749093 Johnson:0.0007590136374346912 Williams:0.000705027487128973 :0.03900880925357342 -of:0.7785393595695496 from:0.022999174892902374 day:0.020231304690241814 upon:0.017113259062170982 to:0.01672062650322914 :0.14439627528190613 -domain:0.020043428987264633 realm:0.016510656103491783 subject:0.012667153961956501 work:0.011615368537604809 center:0.01145746000111103 :0.9277059324085712 -brought:0.19036705791950226 taken:0.1453227996826172 helped:0.10269434750080109 carried:0.09566444158554077 called:0.07396436482667923 :0.39198698848485947 -is:0.5056543946266174 may:0.07547687739133835 will:0.07136077433824539 Is:0.05358153581619263 can:0.03846234455704689 :0.2554640732705593 -chief:0.19157536327838898 great:0.09770771861076355 old:0.024212926626205444 first:0.01689222827553749 last:0.016869302839040756 :0.6527424603700638 -the:0.9 :0.1 -burg:0.10423088818788528 burg:0.1028084009885788 day:0.06195585057139397 camp:0.0534999743103981 sburg:0.026895320042967796 :0.650609565898776 -of:0.9717759490013123 for:0.008019625209271908 at:0.00679212249815464 in:0.005632613319903612 Of:0.000999437179416418 :0.006780252791941166 -or:0.9691159725189209 and:0.026864029467105865 ,:0.0019562747329473495 nor:0.0011884261621162295 -:0.0002100042620440945 :0.0006652928568655625 -June:0.16829745471477509 May:0.1427687406539917 July:0.1301799863576889 September:0.08524956554174423 April:0.0826912671327591 :0.390812985599041 -the:0.2768702208995819 his:0.07003674656152725 a:0.04530787095427513 :0.01739572361111641 her:0.014161437749862671 :0.5762280002236366 -1918:0.8352373838424683 1917:0.035435061901807785 1919:0.02811293490231037 1915:0.023173175752162933 1916:0.017806267365813255 :0.06023517623543739 -the:0.6454672813415527 a:0.09814339131116867 tho:0.05654091760516167 their:0.023218467831611633 coal:0.022584952414035797 :0.1540449894964695 -knew:0.18655399978160858 believed:0.11947952955961227 felt:0.11926335096359253 understood:0.09058266878128052 believe:0.04235260561108589 :0.4417678453028202 -School:0.5627991557121277 work:0.1786312460899353 school:0.0723588690161705 Work:0.02922729030251503 Schools:0.02321607433259487 :0.1337673645466566 -an:0.9247417449951172 the:0.03882785141468048 a:0.005093896761536598 one:0.00428547989577055 brief:0.0028144828975200653 :0.024236544035375118 -and:0.9915215969085693 and:0.00296593364328146 as:0.0007953847525641322 And:0.0006471145898103714 but:0.0004676494572777301 :0.0036023206484969705 -of:0.5035874843597412 ot:0.15944038331508636 with:0.049321483820676804 to:0.022316476330161095 o:0.017814844846725464 :0.24751932732760906 -came:0.44890525937080383 got:0.13256675004959106 went:0.12840957939624786 were:0.04551969841122627 walked:0.0363793820142746 :0.20821933075785637 -of:0.4822143614292145 to:0.06405484676361084 ,:0.031924184411764145 with:0.027740998193621635 in:0.024245375767350197 :0.3698202334344387 -hull:0.11208770424127579 raft:0.09535630792379379 boat:0.06035644933581352 water:0.05584609881043434 bottom:0.05272623524069786 :0.6236272044479847 -liquor:0.944111704826355 alcohol:0.011352972127497196 the:0.00511561892926693 whiskey:0.0021056176628917456 a:0.0015552985714748502 :0.0357587878825143 -carried:0.10482703149318695 thrown:0.0463544987142086 running:0.0381854847073555 far:0.031377289444208145 going:0.027557769790291786 :0.751697925850749 -30:0.8672584891319275 thirty:0.06583841145038605 60:0.0053617521189153194 90:0.0034401521552354097 40:0.0031065375078469515 :0.05499465763568878 -but:0.1119578555226326 and:0.11032380908727646 when:0.06071870028972626 suddenly:0.04532678425312042 then:0.042066555470228195 :0.6296062953770161 -it:0.613427460193634 itself:0.1809537559747696 them:0.03718211501836777 schedule:0.023260697722434998 us:0.02130252867937088 :0.12387344241142273 -two:0.9034162163734436 various:0.016262730583548546 three:0.014858082868158817 neighboring:0.007985471747815609 respective:0.004375731572508812 :0.05310176685452461 -of:0.589322566986084 ,:0.05359268561005592 British:0.01597471721470356 :0.015936674550175667 American:0.014947468414902687 :0.3102258872240782 -inform:0.496457576751709 tell:0.20262132585048676 assure:0.07360593229532242 advise:0.06323353201150894 tel:0.021783098578453064 :0.14229853451251984 -the:0.7723807692527771 a:0.058431241661310196 that:0.055046871304512024 this:0.04835608974099159 tho:0.01062250416725874 :0.05516252387315035 -tie:0.5669182538986206 position:0.038380593061447144 spot:0.037350401282310486 place:0.030405649915337563 finish:0.030240150168538094 :0.2967049516737461 -good:0.03376186266541481 u:0.025785038247704506 u:0.025167282670736313 i:0.02075226977467537 bad:0.01717127300798893 :0.8773622736334801 -of:0.3832888603210449 tho:0.14854219555854797 o:0.10042119771242142 ol:0.06439933180809021 the:0.060250453650951385 :0.2430979609489441 -The:0.9114134907722473 Its:0.02527839131653309 Both:0.008795062080025673 These:0.008666795678436756 the:0.007066532503813505 :0.03877972764894366 -captured:0.3440420627593994 arrested:0.08706887811422348 killed:0.05464585870504379 caught:0.03322604298591614 attacked:0.028388991951942444 :0.45262816548347473 -tion:0.032620105892419815 ly:0.02707688882946968 ty:0.02245730347931385 le:0.01669921539723873 t:0.014366082847118378 :0.8867804035544395 -wife:0.13561071455478668 father:0.1098862737417221 .:0.08788672089576721 brother:0.06756017357110977 ,:0.05682451277971268 :0.5422316044569016 -a:0.5410819053649902 the:0.07386250048875809 and:0.073858343064785 who:0.0359741635620594 in:0.022666949778795242 :0.25255613774061203 -Street:0.970731794834137 Streets:0.011573074385523796 street:0.005720406770706177 St:0.003939148038625717 Street:0.000987504841759801 :0.007048071129247546 -being:0.9319274425506592 ,:0.008199326694011688 -:0.0025116619653999805 tho:0.0021291917655617 well:0.0018489145440980792 :0.05338346248026937 -are:0.6946279406547546 lo:0.05815005674958229 is:0.030837848782539368 bo:0.016181493178009987 lie:0.011423527263104916 :0.1887791333720088 -a:0.4618510603904724 the:0.3903362452983856 his:0.037380605936050415 some:0.03281690925359726 tho:0.019572488963603973 :0.05804269015789032 -makes:0.08047842979431152 is:0.06429959833621979 like:0.03625890612602234 Is:0.03604401648044586 resembles:0.029100943356752396 :0.7538181059062481 -also:0.1974659562110901 now:0.1074121966958046 has:0.05471521615982056 ,:0.043049924075603485 likewise:0.023433398455381393 :0.5739233084022999 -rs:0.037989918142557144 ,:0.029028797522187233 *:0.024110503494739532 ii:0.02156359888613224 r:0.01786096766591072 :0.8694462142884731 -;:0.8994242548942566 .:0.025313539430499077 .;:0.024318406358361244 ::0.01234712079167366 ;:0.011573279276490211 :0.027023399248719215 -at:0.3922984004020691 about:0.025670021772384644 only:0.0235871821641922 for:0.022181617096066475 it:0.019198236986994743 :0.5170645415782928 -north:0.15766024589538574 south:0.12319163233041763 west:0.048498183488845825 east:0.03487085551023483 about:0.027456749230623245 :0.6083223335444927 -the:0.9 :0.1 -guns:0.12952466309070587 anchors:0.09202656149864197 engines:0.08111245930194855 decks:0.04155334457755089 holes:0.03556029126048088 :0.6202226802706718 -The:0.8560500144958496 An:0.04269377142190933 the:0.031302135437726974 This:0.003936585038900375 an:0.0032141637057065964 :0.06280332989990711 -He:0.9219375252723694 It:0.019832920283079147 She:0.019571993499994278 he:0.007444270886480808 Ho:0.003195094643160701 :0.02801819541491568 -have:0.4175528287887573 has:0.34088316559791565 having:0.19893665611743927 had:0.01917232759296894 ha:0.008458464406430721 :0.014996557496488094 -of:0.9380220174789429 ot:0.05473017692565918 Of:0.0023169959895312786 and:0.0013662978308275342 o:0.0005772566073574126 :0.002987255167681724 -when:0.11186939477920532 and:0.10124471783638 if:0.07826398313045502 be:0.06126582622528076 or:0.0467582568526268 :0.6005978211760521 -ing:0.17649048566818237 ter:0.08679302781820297 ment:0.055492524057626724 ty:0.04854511469602585 ly:0.02361157350242138 :0.6090672742575407 -of:0.9459553360939026 and:0.016058970242738724 ,:0.0063784485682845116 in:0.003539411351084709 ot:0.0034285560250282288 :0.02463927771896124 -a:0.3743843734264374 the:0.2886858284473419 every:0.1706247627735138 one:0.09848819673061371 each:0.018816513940691948 :0.04900032468140125 -,:0.5126430988311768 and:0.09046591818332672 together:0.055344123393297195 along:0.02170579507946968 connected:0.013208074495196342 :0.3066329900175333 -regulate:0.7619556784629822 control:0.032852303236722946 prevent:0.018925659358501434 prohibit:0.017440591007471085 determine:0.016690930351614952 :0.1521348375827074 -she:0.6946044564247131 ho:0.10008396208286285 he:0.0713367834687233 wo:0.02496771700680256 She:0.011565998196601868 :0.09744108282029629 -have:0.09023334830999374 try:0.08272289484739304 attempt:0.07025054842233658 adjourn:0.05519232526421547 begin:0.043092384934425354 :0.6585084982216358 -that:0.9698236584663391 how:0.01286157313734293 why:0.008479328826069832 where:0.0011967462487518787 whether:0.0011243955232203007 :0.006514297798275948 -a:0.809483528137207 tho:0.0601770244538784 the:0.019451715052127838 his:0.018897168338298798 no:0.01296282559633255 :0.07902773842215538 -elected:0.21964684128761292 chosen:0.2138865888118744 nominated:0.16437315940856934 selected:0.1101638674736023 preferred:0.06138698011636734 :0.23054256290197372 -man:0.052691489458084106 ticket:0.020891794934868813 candidate:0.013662499375641346 place:0.011967175640165806 spot:0.010801033116877079 :0.8899860074743629 -.:0.9353869557380676 rights:0.007834299467504025 interests:0.0057159592397511005 .:0.0032268569339066744 interest:0.0017145799938589334 :0.04612134862691164 -to:0.9538593292236328 ,:0.013119005598127842 To:0.009715701453387737 ta:0.002865165937691927 ot:0.002842600690200925 :0.017598197096958756 -u:0.12811174988746643 i:0.10621687769889832 o:0.0588475801050663 il:0.014724239706993103 a:0.012635189108550549 :0.6794643634930253 -Norwegian:0.18178097903728485 Lutheran:0.15131132304668427 Christian:0.10643086582422256 Methodist:0.06004931032657623 Presbyterian:0.04512776434421539 :0.4552997574210167 -several:0.2412063330411911 two:0.2283822000026703 four:0.0663926899433136 three:0.0565301738679409 some:0.03508308157324791 :0.3724055215716362 -to:0.9274272322654724 by:0.030868399888277054 for:0.015283443033695221 from:0.008394225500524044 upon:0.007287829183042049 :0.01073887012898922 -his:0.5039235949516296 bis:0.3620744049549103 the:0.025031160563230515 ho:0.01418775413185358 he:0.010572431609034538 :0.08421065378934145 -matter:0.10929546505212784 practice:0.05654077231884003 sale:0.040087103843688965 fire:0.03426036983728409 business:0.03184187784790993 :0.7279744111001492 -the:0.28122806549072266 tho:0.23855842649936676 every:0.08860862255096436 all:0.05915370583534241 th:0.032618094235658646 :0.2998330853879452 -stru:0.06870914250612259 agric:0.05539071187376976 -:0.035985518246889114 prepar:0.03507794067263603 commer:0.030613237991929054 :0.7742234487086535 -that:0.31952419877052307 to:0.07760773599147797 by:0.06735973805189133 in:0.06137761101126671 under:0.05197438970208168 :0.42215632647275925 -a:0.7581885457038879 the:0.1703813076019287 some:0.013274617493152618 in:0.006901758722960949 their:0.006706181447952986 :0.044547589030116796 -state:0.5503385663032532 State:0.1470499485731125 people:0.13194780051708221 states:0.027578087523579597 government:0.02428339421749115 :0.11880220286548138 -the:0.9543995261192322 this:0.014996307902038097 his:0.00772655988112092 their:0.006661517545580864 tho:0.0041873822920024395 :0.012028706260025501 -the:0.12194673717021942 u:0.04569096863269806 o:0.040705256164073944 a:0.0326245091855526 a:0.026423698291182518 :0.7326088305562735 -highest:0.149868443608284 American:0.14195512235164642 public:0.10175975412130356 best:0.05766179412603378 national:0.04438226297497749 :0.5043726228177547 -J:0.6146054267883301 John:0.056322045624256134 J:0.031650617718696594 James:0.021227529272437096 j:0.020479988306760788 :0.2557143922895193 -it:0.6259843111038208 him:0.0591311939060688 them:0.05255306512117386 It:0.02732568047940731 itself:0.025759244337677956 :0.20924650505185127 -of:0.5734339356422424 at:0.08691517263650894 for:0.08277802169322968 over:0.05975033715367317 from:0.0401095412671566 :0.15701299160718918 -illness:0.24234512448310852 suffering:0.22040347754955292 sickness:0.09617271274328232 pain:0.06699162721633911 ,:0.061576008796691895 :0.31251104921102524 -other:0.11203285306692123 agricultural:0.08803553134202957 coarse:0.0755799263715744 the:0.07220861315727234 all:0.06563524156808853 :0.5865078344941139 -insisted:0.34816211462020874 suggested:0.14517542719841003 asked:0.127288356423378 requested:0.10592623800039291 proposed:0.042062483727931976 :0.23138538002967834 -set:0.1561303734779358 called:0.13480578362941742 put:0.1293887346982956 took:0.10318692028522491 brought:0.046084318310022354 :0.4304038695991039 -take:0.13200818002223969 abandon:0.06741160899400711 leave:0.04024520888924599 return:0.03774847462773323 get:0.03423004597425461 :0.6883564814925194 -It:0.8432579040527344 This:0.08340446650981903 That:0.014215781353414059 He:0.006096082739531994 it:0.005945186596363783 :0.04708057874813676 -,:0.9159526824951172 .,:0.017978021875023842 who:0.017588848248124123 .:0.011921826750040054 ,,:0.00352780451066792 :0.033030816121026874 -on:0.3744147717952728 after:0.09163867682218552 marks:0.06648924946784973 ,:0.04755730181932449 upon:0.03718922287225723 :0.3827107772231102 -In:0.25447162985801697 in:0.2259310781955719 of:0.08075704425573349 to:0.05634267255663872 ol:0.03491649776697159 :0.34758107736706734 -very:0.20346993207931519 ,:0.06856264173984528 little:0.06702537834644318 one:0.048390742391347885 the:0.046704452484846115 :0.5658468529582024 -of:0.9855782389640808 ot:0.007733774371445179 to:0.0017114045331254601 among:0.000867604510858655 for:0.0004303051100578159 :0.0036786725104320794 -ing:0.1297781765460968 ly:0.08974429965019226 ed:0.05293237790465355 tion:0.04247220605611801 d:0.04166009649634361 :0.6434128433465958 -that:0.9811168313026428 if:0.004462767858058214 whether:0.0027163398917764425 how:0.0009562760824337602 ,:0.000873667886480689 :0.009874116978608072 -a:0.8274523019790649 the:0.0992073342204094 any:0.015728212893009186 some:0.011570985428988934 one:0.0042092823423445225 :0.04183188313618302 -the:0.35659849643707275 my:0.09377381205558777 a:0.0749003142118454 be:0.060145534574985504 me:0.02420715056359768 :0.3903746921569109 -the:0.4238133132457733 tho:0.08174354583024979 a:0.0413503423333168 «:0.018473239615559578 tha:0.012414701282978058 :0.42220485769212246 -was:0.6447903513908386 were:0.12063853442668915 the:0.08322308212518692 is:0.03586600348353386 been:0.017771510407328606 :0.09771051816642284 -on:0.6272829174995422 upon:0.19597171247005463 to:0.04524783045053482 from:0.03907908499240875 against:0.02553476393222809 :0.06688369065523148 -play:0.3589339554309845 scene:0.05801856890320778 kiss:0.022413399070501328 story:0.021367300301790237 idea:0.016601527109742165 :0.522665249183774 -al:0.18939347565174103 e:0.10355444252490997 a:0.028377408161759377 o:0.02441805601119995 u:0.017772257328033447 :0.6364843603223562 -the:0.9796623587608337 The:0.006812202278524637 a:0.00433452008292079 tho:0.002764637814834714 total:0.0010732096852734685 :0.00535307137761265 -to:0.29000210762023926 against:0.17713041603565216 for:0.13979747891426086 upon:0.11214236170053482 toward:0.07032516598701477 :0.21060246974229813 -resorted:0.1841026246547699 turn:0.11807955801486969 looked:0.07905908674001694 turned:0.06746899336576462 look:0.05652221664786339 :0.49476752057671547 -that:0.261186420917511 .:0.1181979849934578 what:0.09042136371135712 why:0.03248854726552963 how:0.02498980425298214 :0.47271587885916233 -,:0.8138777613639832 .:0.08597487956285477 ;:0.04912558197975159 ::0.013256781734526157 ;:0.007257739081978798 :0.030507256276905537 -it:0.5318868160247803 water:0.07807689905166626 heat:0.054052695631980896 moisture:0.02659624069929123 there:0.026143234223127365 :0.283244114369154 -,:0.08616720139980316 death:0.058245737105607986 them:0.01829507201910019 die:0.013356258161365986 cases:0.012217076495289803 :0.8117186548188329 -when:0.43556737899780273 as:0.10955087095499039 and:0.1044580340385437 whenever:0.06747521460056305 before:0.03615758195519447 :0.24679091945290565 -back:0.08819938451051712 out:0.06865818053483963 operations:0.06772032380104065 up:0.059264492243528366 operation:0.03773555904626846 :0.6784220598638058 -frequent:0.11373981833457947 terrible:0.053254157304763794 horrible:0.04701976105570793 vicious:0.041441403329372406 regular:0.04127035290002823 :0.7032745070755482 -State:0.8656726479530334 state:0.1270897388458252 State:0.0015581549378111959 District:0.0008951921481639147 county:0.0006156574818305671 :0.00416860863333568 -to:0.8229429721832275 and:0.1464143693447113 or:0.012555898167192936 ,:0.00969544518738985 ot:0.001251953188329935 :0.007139361929148436 -officer:0.26113763451576233 defendant:0.043353427201509476 man:0.04023405909538269 officers:0.03440893068909645 latter:0.03407324105501175 :0.5867927074432373 -oats:0.5470425486564636 barley:0.12007398903369904 potatoes:0.04214908927679062 wheat:0.03856337442994118 corn:0.03736186400055885 :0.2148091346025467 -y:0.11663743108510971 i:0.030391745269298553 e:0.024500442668795586 l:0.02078673429787159 -:0.020421281456947327 :0.7872623652219772 -forty:0.26430389285087585 twenty:0.26142454147338867 fifty:0.12172301113605499 five:0.056099239736795425 thirty:0.05160893499851227 :0.2448403798043728 -holding:0.15695254504680634 not:0.06694062054157257 held:0.065510094165802 going:0.03922758623957634 no:0.030625617131590843 :0.6407435368746519 -the:0.614537239074707 by:0.2382318526506424 in:0.040653832256793976 and:0.012934449128806591 The:0.009322973899543285 :0.08431965298950672 -and:0.9340962171554565 or:0.041124701499938965 to:0.010402773506939411 ,:0.0037792150396853685 -:0.00101990788243711 :0.009577184915542603 -ly:0.14342445135116577 der:0.031396809965372086 ever:0.024838082492351532 dare:0.01998540572822094 ter:0.019406743347644806 :0.7609485071152449 -of:0.9807739853858948 ot:0.0034444036427885294 in:0.0031049884855747223 Of:0.0020081372931599617 In:0.0019427649676799774 :0.008725720224902034 -Fair:0.5677180886268616 Main:0.040542054921388626 State:0.01701648347079754 West:0.011402307078242302 South:0.010591339319944382 :0.3527297265827656 -and:0.6071979403495789 but:0.19789211452007294 for:0.05994834750890732 as:0.0392952561378479 when:0.01509936060756445 :0.08056698087602854 -pictures:0.08010149747133255 art:0.055783286690711975 paintings:0.036764007061719894 subjects:0.015794850885868073 things:0.014677321538329124 :0.7968790363520384 -and:0.35245516896247864 t:0.029110070317983627 which:0.018434908241033554 he:0.014963674359023571 e:0.014431241899728775 :0.5706049362197518 -insanity:0.4312920570373535 illness:0.10563572496175766 sickness:0.07823708653450012 madness:0.030195923522114754 psychosis:0.02492947317659855 :0.3297097347676754 -expected:0.4275212287902832 likely:0.07141449302434921 beginning:0.06826972961425781 about:0.06077376753091812 liable:0.04150771349668503 :0.3305130675435066 --:0.06648585200309753 ,:0.02895287051796913 .:0.02543686516582966 *:0.024612026289105415 i:0.016899975016713142 :0.8376124110072851 -,:0.12342167645692825 ed:0.12077424675226212 ing:0.04790164530277252 .:0.034104492515325546 e:0.024811960756778717 :0.6489859782159328 -in:0.12888818979263306 of:0.11855202168226242 to:0.07040231674909592 on:0.05542740598320961 from:0.031277116388082504 :0.5954529494047165 -and:0.6726199984550476 ,:0.14629845321178436 with:0.04360595718026161 in:0.02951849438250065 or:0.011630534194409847 :0.09632656257599592 -empty:0.11141721159219742 deserted:0.03959079831838608 vacant:0.03854605183005333 quiet:0.03296748548746109 crowded:0.02472435124218464 :0.7527541015297174 -the:0.22637875378131866 his:0.09853068739175797 he:0.08468066900968552 that:0.06395233422517776 th:0.055119000375270844 :0.47133855521678925 -.:0.26929834485054016 TH:0.14247260987758636 ,:0.10746942460536957 1:0.024759965017437935 CH:0.018342716619372368 :0.4376569390296936 -sale:0.6512537598609924 contract:0.03411547839641571 application:0.031419120728969574 payment:0.02835499495267868 service:0.021860532462596893 :0.2329961135983467 -in:0.466367244720459 In:0.3729355037212372 at:0.0653703361749649 of:0.01830177940428257 by:0.012546532787382603 :0.06447860319167376 -at:0.6757345795631409 in:0.18936115503311157 on:0.11765643209218979 In:0.004834984894841909 under:0.003429348347708583 :0.008983500069007277 -Mary:0.5595910549163818 Marie:0.029408937320113182 Margaret:0.02146212011575699 Maggie:0.012140168808400631 John:0.010559306479990482 :0.3668384123593569 -and:0.48487594723701477 before:0.046307552605867386 while:0.026826661080121994 after:0.024573100730776787 or:0.02310393936932087 :0.3943127989768982 -can:0.7043412923812866 will:0.14228621125221252 could:0.07429659366607666 should:0.015126057900488377 may:0.013216415420174599 :0.05073342937976122 -a:0.293742835521698 his:0.1823348104953766 with:0.14967402815818787 the:0.13756819069385529 whose:0.04821652173995972 :0.18846361339092255 -of:0.6717164516448975 in:0.11527453362941742 In:0.056947655975818634 to:0.03420189395546913 with:0.02514917217195034 :0.09671029262244701 -Fitz:0.31517016887664795 G:0.0450882762670517 Se:0.0360153466463089 E:0.02455913834273815 Be:0.020497437566518784 :0.5586696323007345 -money:0.6050265431404114 property:0.08132609724998474 amount:0.06025858595967293 capital:0.036591786891222 funds:0.031151508912444115 :0.18564547784626484 -free:0.12381027638912201 full:0.09174048155546188 men:0.08463200181722641 out:0.05385209992527962 people:0.03871466591954231 :0.6072504743933678 -in:0.7750445008277893 In:0.08489656448364258 at:0.022087786346673965 within:0.01852124184370041 until:0.012165296822786331 :0.08728460967540741 -of:0.20305949449539185 for:0.11288078129291534 to:0.06271202117204666 ,:0.06231033429503441 ot:0.03274960070848465 :0.5262877680361271 -went:0.32932695746421814 was:0.20851485431194305 ,:0.08310965448617935 .:0.01880083791911602 turned:0.014667963609099388 :0.34557973220944405 -times:0.9578587412834167 years:0.018509576097130775 fold:0.0026043965481221676 fold:0.0014813104644417763 millions:0.0011628047795966268 :0.018383170827291906 -River:0.06470595300197601 river:0.030504532158374786 ,:0.028029531240463257 of:0.020459510385990143 line:0.01671859622001648 :0.8395818769931793 -the:0.499228298664093 his:0.06728381663560867 this:0.037121422588825226 a:0.020254140719771385 tho:0.017100729048252106 :0.3590115923434496 -We:0.9148088693618774 I:0.027749676257371902 1:0.012339777313172817 we:0.005551925394684076 Wo:0.004782266914844513 :0.03476748475804925 -it:0.6347575783729553 life:0.04773902893066406 everything:0.03577490150928497 cotton:0.02525128424167633 nothing:0.02123892679810524 :0.23523828014731407 -pers:0.24378900229930878 neys:0.09604419022798538 ners:0.0805375799536705 children:0.02592981606721878 geons:0.022639499977231026 :0.5310599114745855 -the:0.6072512269020081 his:0.289276659488678 my:0.04139444977045059 a:0.02013665810227394 our:0.005949484184384346 :0.035991521552205086 -of:0.9560037851333618 in:0.02163810096681118 ot:0.008781354874372482 throughout:0.002289051888510585 over:0.0017097315285354853 :0.009577975608408451 -down:0.18546855449676514 upon:0.11723868548870087 on:0.09636352956295013 in:0.08249786496162415 off:0.04233044013381004 :0.4761009253561497 -per:0.4674564003944397 a:0.43087393045425415 a:0.009588354267179966 cents:0.006337254773825407 .:0.0060902428813278675 :0.07965381722897291 -and:0.7831496596336365 ,:0.0896976962685585 or:0.03335661068558693 but:0.02179194800555706 to:0.014399340376257896 :0.05760474503040314 -both:0.8102792501449585 all:0.15381495654582977 the:0.020454004406929016 two:0.003239359939470887 various:0.002326579764485359 :0.009885849198326468 -just:0.032192640006542206 earnest:0.028501437976956367 minute:0.02511470392346382 solemn:0.014603371731936932 sober:0.014387858100235462 :0.8851999882608652 -,:0.8889934420585632 .:0.0560811348259449 of:0.018823830410838127 .,:0.0065885125659406185 in:0.004360825289040804 :0.025152254849672318 -athetic:0.298846572637558 ical:0.18443581461906433 olic:0.17118634283542633 ic:0.13821721076965332 atic:0.02251008152961731 :0.18480397760868073 -may:0.39069196581840515 to:0.11975239217281342 otherwise:0.07524621486663818 cannot:0.05830579996109009 not:0.04026859998703003 :0.31573502719402313 -basketball:0.44039657711982727 baseball:0.19551335275173187 football:0.10908909887075424 volleyball:0.025733845308423042 athletics:0.024594943970441818 :0.20467218197882175 -.:0.22557242214679718 legislation:0.13989557325839996 ordinance:0.1114959716796875 plan:0.06856337934732437 bill:0.06747627258300781 :0.3869963809847832 -by:0.9752240180969238 to:0.011122950352728367 from:0.0025923524517565966 in:0.001760094310157001 with:0.0014691881369799376 :0.00783139665145427 -the:0.7427789568901062 his:0.14613106846809387 a:0.06728009134531021 her:0.010371186770498753 that:0.0068993824534118176 :0.026539314072579145 -.:0.327521950006485 World:0.11239815503358841 England:0.10198970884084702 York:0.09662768989801407 South:0.0873878002166748 :0.2740746960043907 -her:0.3708183169364929 it:0.277957946062088 him:0.046881794929504395 a:0.04174782708287239 the:0.032762620598077774 :0.2298314943909645 -figures:0.3404303193092346 men:0.2072514146566391 leaders:0.10971009731292725 officers:0.046869002282619476 officials:0.02299058809876442 :0.27274857833981514 -Otherwise:0.08054839819669724 and:0.07486572116613388 Then:0.07455351203680038 But:0.06879439949989319 That:0.051278743892908096 :0.6499592252075672 -is:0.08437516540288925 not:0.05983569100499153 are:0.041657429188489914 do:0.03744189813733101 act:0.0301953237503767 :0.7464944925159216 -hesitate:0.7113563418388367 fail:0.07249947637319565 have:0.026886634528636932 seem:0.025729229673743248 refuse:0.013711660169064999 :0.1498166574165225 -ed:0.6886612772941589 able:0.04714730381965637 ment:0.02515280432999134 ly:0.010635091923177242 ing:0.009842908941209316 :0.2185606136918068 -line:0.6615116000175476 one:0.0451696515083313 section:0.026988035067915916 road:0.018160808831453323 point:0.010390158742666245 :0.2377797458320856 -interests:0.2839132249355316 ,:0.09331195056438446 ends:0.08161937445402145 ambitions:0.04306924343109131 aims:0.030476512387394905 :0.46760969422757626 -recently:0.1254049837589264 so:0.12076123058795929 most:0.06738556176424026 once:0.06118294224143028 also:0.042113225907087326 :0.5831520557403564 -ten:0.12059373408555984 one:0.053331874310970306 1:0.04956690967082977 twenty:0.049416858702898026 10:0.04051417112350464 :0.6865764521062374 -for:0.4470580518245697 in:0.22246113419532776 within:0.22094137966632843 every:0.04374353587627411 In:0.01179082877933979 :0.05400506965816021 -If:0.2759491801261902 As:0.20894616842269897 Since:0.17466765642166138 When:0.08820933848619461 While:0.061834678053855896 :0.19039297848939896 -r:0.09978704899549484 n:0.036955591291189194 i:0.03358106315135956 d:0.033394526690244675 l:0.02798301912844181 :0.7682987507432699 -candidate:0.29120558500289917 Senator:0.14367273449897766 nominee:0.05804482474923134 ,:0.035031240433454514 .:0.03348041698336601 :0.4385651983320713 -and:0.8766210675239563 but:0.03159993141889572 where:0.02567371167242527 which:0.01109228003770113 as:0.008044272661209106 :0.04696873668581247 -The:0.9451622366905212 the:0.01343872956931591 This:0.008327348157763481 The:0.002649267902597785 Mr:0.0010849692625924945 :0.02933744841720909 -for:0.6292375326156616 in:0.1795513927936554 over:0.059627730399370193 after:0.03061128780245781 In:0.014445249922573566 :0.08652680646628141 -with:0.4262969493865967 by:0.12020336836576462 ,:0.11577331274747849 to:0.05368382856249809 as:0.05219631269574165 :0.23184622824192047 -1918:0.6467658877372742 18:0.05398643761873245 1:0.034378137439489365 1917:0.0340387187898159 1915:0.026623215526342392 :0.20420760288834572 -piece:0.5307042002677917 tract:0.2804793119430542 parcel:0.1177036464214325 plot:0.03223028779029846 lot:0.014180319383740425 :0.02470223419368267 -and:0.253430038690567 I:0.18953518569469452 you:0.12581808865070343 ,:0.07485443353652954 wo:0.0397561751306057 :0.3166060782968998 -seed:0.04432320222258568 market:0.043804775923490524 growing:0.02836100570857525 crop:0.024645237252116203 new:0.017473090440034866 :0.8413926884531975 -made:0.9215802550315857 discovered:0.012650380842387676 reported:0.009859250858426094 found:0.003534215036779642 obtained:0.0026098343078047037 :0.04976606392301619 -the:0.9 :0.1 -came:0.581649124622345 was:0.22242912650108337 led:0.04660433903336525 went:0.016787629574537277 occurred:0.011899081990122795 :0.12063069827854633 -at:0.7000694870948792 for:0.1978067010641098 to:0.017841048538684845 without:0.011107559315860271 with:0.009051651693880558 :0.06412355229258537 -the:0.9 :0.1 -provisions:0.3823907971382141 act:0.11502254754304886 date:0.07799451053142548 virtue:0.06346166133880615 provision:0.03015959821641445 :0.33097088523209095 -up:0.431621253490448 out:0.21240046620368958 by:0.03267720714211464 on:0.028575215488672256 down:0.023563731461763382 :0.27116212621331215 -lot:0.9367741346359253 lots:0.05554362013936043 Lot:0.005321947857737541 Lots:0.0004209904873277992 number:0.00027831317856907845 :0.0016609937010798603 -can:0.46937787532806396 cannot:0.22479240596294403 should:0.0849534422159195 must:0.03325095772743225 could:0.03242693841457367 :0.1551983803510666 -the:0.8425647020339966 that:0.05968974530696869 this:0.058879170566797256 his:0.020797865465283394 our:0.004188180901110172 :0.013880335725843906 -I:0.8774780035018921 1:0.09969880431890488 i:0.0050071002915501595 ,:0.0033587112557142973 it:0.002162178512662649 :0.012295202119275928 -er:0.09738586097955704 ment:0.05928698927164078 tor:0.05553077161312103 ter:0.024513326585292816 ed:0.020791713148355484 :0.7424913384020329 -this:0.7323681712150574 his:0.10447672009468079 the:0.05915665626525879 an:0.05570758134126663 such:0.01788533478975296 :0.03040553629398346 -be:0.3262970447540283 deem:0.11768558621406555 bo:0.058370985090732574 ­:0.030530454590916634 -:0.029635528102517128 :0.4374804012477398 -'s:0.34551185369491577 His:0.13035321235656738 The:0.0947776511311531 W:0.04742778092622757 A:0.021649381145834923 :0.36028012074530125 -sum:0.10535786300897598 ,:0.05460480600595474 -:0.05023694410920143 amount:0.04870441555976868 :0.04655805230140686 :0.6945379190146923 -a:0.5751319527626038 the:0.3508884608745575 this:0.02140682376921177 some:0.010020019486546516 an:0.007292312569916248 :0.03526043053716421 -large:0.20172114670276642 splendid:0.10491065680980682 beautiful:0.055184006690979004 magnificent:0.05066615715622902 tall:0.031752247363328934 :0.5557657852768898 -to:0.7733796834945679 and:0.1902223527431488 that:0.007419871632009745 will:0.006478816270828247 ,:0.004688029643148184 :0.01781124621629715 -,:0.1120338886976242 .:0.07061799615621567 and:0.049967605620622635 was:0.04487614333629608 of:0.03494168072938919 :0.6875626854598522 -party:0.201453298330307 cause:0.18521228432655334 causes:0.026257367804646492 principles:0.02540755644440651 forces:0.0229567289352417 :0.538712764158845 -.:0.9554330706596375 runs:0.017540469765663147 .:0.005458871368318796 !:0.0041028400883078575 innings:0.0012612720020115376 :0.01620347611606121 -him:0.8057855367660522 ,:0.06909731775522232 them:0.03472954034805298 it:0.008938902989029884 and:0.007815506309270859 :0.07363319583237171 -This:0.47971558570861816 It:0.40243256092071533 There:0.08133754134178162 The:0.006950977258384228 That:0.0026115356013178825 :0.026951799169182777 -the:0.613609790802002 these:0.1802661120891571 tho:0.0215622428804636 our:0.01792747527360916 those:0.006636627018451691 :0.1599977519363165 -best:0.16079512238502502 right:0.08806729316711426 perfect:0.055491991341114044 proper:0.05265483260154724 fair:0.04034041613340378 :0.6026503443717957 -feelings:0.15015727281570435 same:0.08192040771245956 feeling:0.06470069289207458 love:0.03347497805953026 sentiment:0.024912934750318527 :0.6448337137699127 -the:0.9 :0.1 -handled:0.4057248532772064 investigated:0.06025008484721184 solved:0.0523991733789444 treated:0.042145658284425735 caused:0.02406761236488819 :0.4154126178473234 -Jewish:0.17846333980560303 this:0.05997204780578613 the:0.056681059300899506 Hebrew:0.027498947456479073 prophetic:0.0269541647285223 :0.65043044090271 -Mr:0.14661546051502228 The:0.09844966977834702 He:0.07713744789361954 She:0.06677886843681335 Mrs:0.036052096635103226 :0.5749664567410946 -tion:0.2982584834098816 ly:0.2230566143989563 er:0.060354504734277725 t:0.03798159584403038 ing:0.017724893987178802 :0.3626239076256752 -the:0.9 :0.1 -the:0.31212612986564636 tho:0.1926407665014267 an:0.10257579386234283 his:0.07820027321577072 said:0.04762939736247063 :0.26682763919234276 -for:0.34699365496635437 by:0.19376660883426666 after:0.1455318182706833 without:0.08882041275501251 in:0.04217752441763878 :0.1827099807560444 -which:0.1362115889787674 .:0.07635205239057541 Cure:0.027191443368792534 Medicine:0.02193647064268589 .:0.0168355330824852 :0.7214729115366936 -assessed:0.8450947403907776 valued:0.11589734256267548 estimated:0.003351503284648061 purchased:0.002491200575605035 taxed:0.0022877641022205353 :0.030877449084073305 -and:0.825848400592804 ,:0.09971313923597336 or:0.032823845744132996 yet:0.006143472623080015 but:0.0031570764258503914 :0.032314065378159285 -the:0.8556082248687744 these:0.06372226029634476 all:0.010219713672995567 such:0.008228570222854614 those:0.007482287473976612 :0.054738943465054035 -the:0.25973421335220337 young:0.11672177910804749 two:0.04355202242732048 intelligent:0.034030355513095856 smart:0.033382464200258255 :0.5125791653990746 -the:0.9 :0.1 -In:0.5543438196182251 in:0.38109922409057617 from:0.047167371958494186 of:0.002655413933098316 with:0.002101350575685501 :0.012632819823920727 -Screw:0.7815960645675659 ':0.05524612218141556 screw:0.034037381410598755 's:0.01007302850484848 -:0.007982409559190273 :0.11106499377638102 -was:0.29622191190719604 had:0.12146864086389542 being:0.0810590609908104 ,:0.06346605718135834 he:0.060406994074583054 :0.37737733498215675 -man:0.7568011283874512 thief:0.029894094914197922 person:0.027089117094874382 one:0.023825375363230705 gentleman:0.013485507108271122 :0.1489047771319747 -the:0.49782511591911316 this:0.32414186000823975 that:0.10587751120328903 an:0.01759815216064453 their:0.009997257962822914 :0.04456010274589062 -in:0.27891573309898376 to:0.23535087704658508 into:0.1703316867351532 from:0.068435899913311 through:0.06045382469892502 :0.18651197850704193 -fair:0.6287380456924438 own:0.15567538142204285 opposite:0.011676310561597347 good:0.009302305988967419 old:0.009009795263409615 :0.18559816107153893 -,:0.8711719512939453 burg:0.02980327047407627 .:0.009657875634729862 ville:0.008767753839492798 dam:0.006396372802555561 :0.0742027759552002 -1:0.15974465012550354 good:0.076216921210289 high:0.06971569359302521 2:0.02918890118598938 well:0.024817558005452156 :0.6403162758797407 -The:0.1657671183347702 ..:0.044436123222112656 the:0.04042942821979523 ..:0.03368145599961281 North:0.021598324179649353 :0.6940875500440598 --:0.12578906118869781 ':0.019139856100082397 have:0.017758971080183983 *:0.016670463606715202 com:0.01476609893143177 :0.8058755490928888 -not:0.7980695962905884 never:0.03992373123764992 sent:0.013220871798694134 killed:0.012503381818532944 only:0.011557255871593952 :0.12472516298294067 -vessel:0.34118542075157166 ship:0.3121091425418854 boat:0.07631652057170868 farm:0.01762598566710949 river:0.013023050501942635 :0.23973987996578217 -worthy:0.9620972871780396 deserving:0.00688806502148509 worth:0.00282315188087523 out:0.002667902270331979 unworthy:0.0023315283469855785 :0.023192065302282572 -of:0.4614861011505127 ,:0.40463370084762573 and:0.04660911113023758 ot:0.01642574928700924 or:0.013488251715898514 :0.05735708586871624 -the:0.6550410985946655 tho:0.09222019463777542 th:0.08416851609945297 he:0.01968301460146904 Mr:0.016905086115002632 :0.1319820899516344 -punch:0.3254665732383728 weight:0.057653311640024185 jab:0.03874597325921059 hand:0.023435357958078384 shot:0.022033292800188065 :0.532665491104126 -rising:0.049820829182863235 speaking:0.03808019682765007 born:0.029515329748392105 watching:0.023381415754556656 coming:0.02017529122531414 :0.8390269372612238 -league:0.06083345413208008 born:0.047786399722099304 aged:0.03039603680372238 era:0.029262347146868706 born:0.024499906226992607 :0.8072218559682369 -the:0.28614774346351624 pure:0.05904947221279144 a:0.03934518247842789 Chinese:0.025288250297307968 white:0.023742184042930603 :0.5664271675050259 -and:0.7315486073493958 ,:0.2217605710029602 or:0.030356884002685547 but:0.005511763971298933 yet:0.0011955408845096827 :0.00962663278914988 -.:0.463188111782074 mortgage:0.2484787106513977 Mortgage:0.056315016001462936 ).:0.014448954723775387 .:0.013580244034528732 :0.20398896280676126 -the:0.6623654365539551 a:0.25833413004875183 tho:0.05465859919786453 The:0.0036414065398275852 an:0.0032779802568256855 :0.017722447402775288 -one:0.09413821250200272 case:0.08398448675870895 witness:0.05780625715851784 evidence:0.056102436035871506 matter:0.05434523895382881 :0.6536233685910702 -.:0.8451496362686157 ::0.09052309393882751 ::0.01489634532481432 .:0.005109229125082493 names:0.004809174686670303 :0.03951252065598965 --:0.6459791660308838 .:0.05933355167508125 .-:0.03229840472340584 ,:0.011157399974763393 -:0.010839895345270634 :0.2403915822505951 -the:0.8850928544998169 said:0.03681888058781624 that:0.020984049886465073 this:0.01283296849578619 tho:0.012638796120882034 :0.03163245040923357 -in:0.4039786458015442 for:0.24194040894508362 to:0.2345300316810608 In:0.01825045980513096 by:0.018117932602763176 :0.08318252116441727 -now:0.36518165469169617 today:0.19631993770599365 present:0.04439757019281387 beyond:0.02273157611489296 hereafter:0.020430488511919975 :0.3509387727826834 -.:0.6232858896255493 u:0.015437841415405273 a:0.01257031224668026 ,:0.010576344095170498 i:0.008206665515899658 :0.329922947101295 -people:0.8553717136383057 population:0.04630856588482857 men:0.031966641545295715 Americans:0.014606627635657787 settlers:0.014286019839346409 :0.03746043145656586 -the:0.2790469527244568 its:0.24480746686458588 their:0.0899660587310791 tho:0.0851312205195427 an:0.0809796154499054 :0.22006868571043015 -that:0.43425458669662476 which:0.28846102952957153 lands:0.029635610058903694 territory:0.024205395951867104 what:0.019626649096608162 :0.20381672866642475 -and:0.8232508897781372 to:0.1116478368639946 -:0.011371387168765068 ,:0.007915525697171688 bis:0.004770653322339058 :0.04104370716959238 -reminded:0.49412500858306885 robbed:0.1259494423866272 deprived:0.07771242409944534 reminds:0.046888068318367004 told:0.0371805876493454 :0.2181444689631462 -the:0.25007733702659607 elected:0.21809178590774536 appointed:0.12109903246164322 a:0.055378127843141556 first:0.03251323476433754 :0.32284048199653625 -cut:0.10027801245450974 grade:0.09202545136213303 grades:0.08657804876565933 stock:0.04838641732931137 choice:0.03559946268796921 :0.6371326074004173 -In:0.9180471301078796 By:0.029254071414470673 in:0.007961494848132133 Put:0.00546959089115262 Under:0.0032461804803460836 :0.03602153225801885 -a:0.8778116703033447 as:0.07158462703227997 for:0.008384144864976406 the:0.0043524629436433315 to:0.003222213126718998 :0.03464488172903657 -established:0.16418778896331787 elected:0.13510872423648834 approved:0.10428163409233093 formed:0.0906500294804573 authorized:0.0423889122903347 :0.46338291093707085 -to:0.6140106916427612 in:0.19164462387561798 at:0.06487586349248886 from:0.04376544803380966 In:0.027591759338974953 :0.05811161361634731 -to:0.1681194305419922 in:0.13258981704711914 for:0.1199442595243454 as:0.11043915152549744 at:0.055721525102853775 :0.41318581625819206 -general:0.07814192026853561 special:0.06321695446968079 ordinary:0.025201497599482536 regular:0.01961451955139637 rate:0.01735135354101658 :0.7964737545698881 -insidious:0.15667657554149628 mysterious:0.08092176914215088 fatal:0.03940886631608009 deadly:0.036121319979429245 dangerous:0.028116291388869286 :0.6587551776319742 -on:0.19402064383029938 to:0.08581987768411636 is:0.04900060221552849 correspondent:0.0465925857424736 of:0.043032944202423096 :0.5815333463251591 -it:0.2437516301870346 so:0.16849324107170105 -:0.08918356150388718 them:0.0462518073618412 ,:0.041625455021858215 :0.41069430485367775 -that:0.6318071484565735 when:0.13088008761405945 whether:0.0775713250041008 if:0.03950478509068489 how:0.02460404857993126 :0.09563260525465012 -and:0.5302123427391052 as:0.11947624385356903 so:0.08080868422985077 when:0.06479767709970474 for:0.03666124492883682 :0.1680438071489334 -general:0.06845235079526901 re:0.06228319928050041 ex:0.053766388446092606 pro:0.04697667062282562 Democratic:0.04162029176950455 :0.7269010990858078 -between:0.8827284574508667 connecting:0.05357591435313225 Between:0.029362862929701805 separating:0.009308535605669022 ,:0.002458311151713133 :0.022565918508917093 -their:0.33980363607406616 in:0.30829668045043945 the:0.054098181426525116 our:0.04831027612090111 In:0.04450330138206482 :0.20498792454600334 -fed:0.2522033452987671 gave:0.09158187359571457 went:0.08865843713283539 ate:0.03639940544962883 were:0.027920905500650406 :0.5032360330224037 -election:0.01938914880156517 election:0.019333146512508392 filed:0.01732105016708374 sale:0.016932988539338112 trial:0.01673511415719986 :0.9102885518223047 -!:0.17300303280353546 .:0.1499795913696289 ,:0.10414455831050873 ?:0.043429937213659286 -:0.010498709045350552 :0.5189441712573171 -that:0.9689411520957947 ,:0.007069069426506758 That:0.004617045167833567 ::0.0015802707057446241 ii:0.001565753947943449 :0.016226708656176925 -the:0.8164343237876892 tho:0.10397809743881226 this:0.0208570696413517 his:0.012247495353221893 its:0.01073548011481762 :0.03574753366410732 -an:0.34633398056030273 the:0.21140001714229584 his:0.04763157665729523 a:0.035109564661979675 British:0.012067348696291447 :0.3474575122818351 -with:0.28101104497909546 in:0.11897553503513336 for:0.04833879694342613 ,:0.04797506332397461 at:0.03351087495684624 :0.4701886847615242 -at:0.4867020547389984 in:0.1050909012556076 and:0.0838504433631897 as:0.08323362469673157 by:0.0299553032964468 :0.21116767264902592 -was:0.24993209540843964 been:0.1029077023267746 ever:0.0973670557141304 one:0.07829686254262924 is:0.07705909758806229 :0.39443718641996384 -out:0.22841189801692963 consisting:0.15992902219295502 ,:0.061510831117630005 full:0.03211549296975136 made:0.03196561336517334 :0.48606714233756065 -two:0.0912865549325943 three:0.06870847195386887 four:0.047460250556468964 twelve:0.04596317559480667 six:0.039643675088882446 :0.7069378718733788 -the:0.7984271049499512 a:0.18671680986881256 our:0.003211767179891467 this:0.0028804594185203314 that:0.0013819369487464428 :0.007381921634078026 -These:0.45486506819725037 The:0.2637673616409302 Their:0.13803869485855103 Its:0.018313884735107422 But:0.014071261510252953 :0.11094372905790806 -be:0.8600413203239441 bo:0.033899325877428055 remain:0.031248588114976883 become:0.011354201473295689 lie:0.004819349851459265 :0.05863721435889602 -works:0.05343741551041603 collections:0.03645755723118782 books:0.030094027519226074 editions:0.028784440830349922 prints:0.019441861659288406 :0.8317846972495317 -With:0.25919675827026367 Without:0.11649402230978012 No:0.10493860393762589 A:0.07764172554016113 Upon:0.04592277854681015 :0.39580611139535904 -young:0.22573968768119812 beautiful:0.06798819452524185 married:0.05932575836777687 good:0.0461319237947464 single:0.0336582325398922 :0.5671562030911446 -to:0.9903027415275574 from:0.0018280380172654986 To:0.0008891609613783658 toward:0.0005635456764139235 ,:0.0005344567471183836 :0.005882057070266455 -the:0.24695974588394165 New:0.017172904685139656 Cape:0.01338118501007557 a:0.01332073099911213 Port:0.009719318710267544 :0.6994461147114635 -seemed:0.4995393753051758 was:0.09000129252672195 seems:0.055009130388498306 seem:0.05219685658812523 appeared:0.03978341817855835 :0.2634699270129204 -and:0.16128875315189362 but:0.06316140294075012 when:0.05724531039595604 as:0.05559374764561653 that:0.05147198960185051 :0.6112387962639332 -and:0.533223569393158 to:0.242217555642128 we:0.061442963778972626 I:0.03254316747188568 you:0.02390131913125515 :0.1066714245826006 -and:0.558164119720459 but:0.12909448146820068 while:0.06620343029499054 for:0.020699188113212585 when:0.015245473012328148 :0.21059330739080906 -the:0.9 :0.1 -M:0.13217075169086456 C:0.10233614593744278 R:0.057122163474559784 S:0.0530608706176281 E:0.0516732893884182 :0.6036367788910866 -the:0.536721408367157 a:0.311724990606308 this:0.05455534905195236 that:0.03347605839371681 her:0.02071957476437092 :0.04280261881649494 -I:0.44091731309890747 she:0.2962085008621216 1:0.05153805762529373 he:0.023683879524469376 then:0.019900772720575333 :0.1677514761686325 -the:0.2611965239048004 The:0.023007016628980637 their:0.021723885089159012 ,:0.020291367545723915 our:0.015255441889166832 :0.6585257649421692 -2:0.23239530622959137 1:0.13643352687358856 4:0.09470350295305252 3:0.08625178784132004 the:0.07775972783565521 :0.3724561482667923 -that:0.6811656355857849 which:0.31585800647735596 who:0.0008698927122168243 what:0.0006719548837281764 they:0.00014889336307533085 :0.0012856169778387994 -time:0.48359227180480957 occasion:0.04801706597208977 moment:0.04294651746749878 hour:0.0378788523375988 place:0.024191144853830338 :0.36337414756417274 -was:0.9633263349533081 ,:0.007712271064519882 were:0.0063722943887114525 being:0.004181277006864548 is:0.0029575873631983995 :0.015450235223397613 -Line:0.08878481388092041 Rail:0.05130914971232414 Railway:0.049819208681583405 Railroad:0.048052240163087845 Roads:0.03501700609922409 :0.7270175814628601 -,:0.5491580367088318 and:0.0984157994389534 in:0.05957919731736183 .:0.05502387508749962 to:0.03984656184911728 :0.19797652959823608 -ed:0.36007562279701233 ing:0.07560122758150101 ly:0.0645868256688118 :0.02473028190433979 or:0.021373413503170013 :0.45363262854516506 -that:0.9139635562896729 how:0.014303878881037235 That:0.011285071261227131 not:0.008798742666840553 if:0.00629840511828661 :0.04535034578293562 -;:0.5475515723228455 ;:0.3050950765609741 ::0.06994590908288956 ::0.033627308905124664 on:0.01130983792245388 :0.03247029520571232 -Virginia:0.6884884238243103 Richmond:0.06443232297897339 Maryland:0.020036164671182632 Vermont:0.019613003358244896 Louisiana:0.014955076389014721 :0.19247500877827406 -ed:0.07891412079334259 ber:0.0480627603828907 ing:0.029454296454787254 er:0.017191864550113678 ly:0.015609245747327805 :0.810767712071538 -rigging:0.31480175256729126 yards:0.03460272401571274 docks:0.026596467941999435 railing:0.026240797713398933 yard:0.020576514303684235 :0.5771817434579134 -,:0.11810293793678284 of:0.05718780308961868 s:0.036063529551029205 -:0.03469856455922127 t:0.026988577097654343 :0.7269585877656937 -N:0.501842200756073 S:0.0778481662273407 X:0.07429344207048416 W:0.03699867054820061 H:0.027525771409273148 :0.2814917489886284 -in:0.8020243644714355 In:0.09365010261535645 at:0.030459199100732803 for:0.018866373226046562 ,:0.010553516447544098 :0.044446444138884544 -is:0.4730258882045746 was:0.2988434135913849 Is:0.06396754086017609 has:0.05521661043167114 are:0.010464285500347614 :0.09848226141184568 -New:0.9985195994377136 San:0.000461369170807302 New:0.00032114534405991435 new:5.834330295328982e-05 Cape:3.462890163064003e-05 :0.0006049138428352308 -line:0.743710994720459 corner:0.016681203618645668 line:0.016602136194705963 o:0.00884280912578106 ro:0.008613781072199345 :0.20554907526820898 -case:0.9736694097518921 event:0.013075403869152069 cases:0.006650938652455807 consequence:0.0009446523035876453 view:0.0005417045904323459 :0.005117890832480043 -and:0.8714590072631836 ,:0.05044856294989586 of:0.028014767915010452 for:0.02224796637892723 or:0.007747671566903591 :0.020082023926079273 -left:0.4574560821056366 right:0.17327211797237396 lower:0.03856987506151199 other:0.035428959876298904 opposite:0.03311441093683243 :0.2621585540473461 -had:0.9850316047668457 having:0.008297796361148357 has:0.003240912687033415 Had:0.0012023543240502477 was:0.0005084878066554666 :0.0017188440542668104 -a:0.5670889019966125 the:0.2550562024116516 some:0.022473612800240517 tho:0.009763186797499657 another:0.0036998644936829805 :0.14191823150031269 -is:0.3037372827529907 was:0.2221977561712265 has:0.12811687588691711 had:0.07685527950525284 Is:0.058652933686971664 :0.21043987199664116 -of:0.8965705633163452 Of:0.018573811277747154 ot:0.015688657760620117 for:0.007956358604133129 the:0.005620695184916258 :0.05558991385623813 -this:0.24932323396205902 our:0.11244085431098938 the:0.09570793062448502 an:0.044404368847608566 their:0.02415861189365387 :0.47396500036120415 -Hardy:0.9495184421539307 Jones:0.0013994742184877396 Smith:0.0009685909026302397 Davis:0.000824121932964772 Bishop:0.0005799533682875335 :0.04670941742369905 -.:0.3443244397640228 ,:0.19827857613563538 so:0.0664510503411293 ;:0.0645623430609703 and:0.03491104394197464 :0.29147254675626755 -a:0.08037060499191284 the:0.0649641826748848 -:0.045529335737228394 u:0.02161932736635208 ou:0.017301689833402634 :0.7702148593962193 -reason:0.06989873945713043 time:0.04589653015136719 cure:0.04161006957292557 sick:0.03615662828087807 disease:0.0267824437469244 :0.7796555887907743 -tho:0.7747345566749573 the:0.13197122514247894 a:0.01614103466272354 his:0.016120636835694313 that:0.010733763687312603 :0.050298782996833324 -to:0.6870676279067993 nearly:0.05436575412750244 would:0.046643394976854324 then:0.04280679672956467 almost:0.019161809235811234 :0.14995461702346802 -houses:0.15299339592456818 labor:0.04693898558616638 materials:0.040848322212696075 laborers:0.03749039024114609 men:0.032583244144916534 :0.6891456618905067 -ment:0.2753891944885254 ty:0.04709018021821976 ing:0.016347147524356842 dent:0.013942800462245941 tion:0.012683762237429619 :0.6345469150692225 -the:0.9 :0.1 -to:0.3251001536846161 may:0.16625326871871948 will:0.15475168824195862 must:0.14635396003723145 can:0.06013920158147812 :0.14740172773599625 -1:0.539910078048706 I:0.13904054462909698 the:0.06833038479089737 my:0.015452662482857704 a:0.012878593988716602 :0.22438773605972528 -.:0.41004297137260437 week:0.2510475218296051 night:0.10043524950742722 month:0.052549004554748535 year:0.041711851954460144 :0.14421340078115463 -A:0.8276945352554321 The:0.048319920897483826 One:0.032146405428647995 That:0.017921082675457 This:0.01750849559903145 :0.0564095601439476 -is:0.6938308477401733 was:0.21074047684669495 Is:0.03945436328649521 are:0.01561041921377182 were:0.006406991742551327 :0.03395690117031336 -York:0.9535980820655823 Orleans:0.023967759683728218 Haven:0.006952555384486914 Jersey:0.006624110043048859 Hampshire:0.002702523022890091 :0.006154969800263643 -,:0.3318735957145691 often:0.029583463445305824 frequently:0.029219934716820717 importance:0.02691938355565071 recently:0.019656512886285782 :0.5627471096813679 -Justice:0.9577584862709045 Judge:0.016241585835814476 General:0.008059061132371426 when:0.001995406113564968 justice:0.0014468804001808167 :0.014498580247163773 -canvas:0.06634960323572159 cut:0.03699711337685585 silk:0.02027636207640171 cloth:0.019377319142222404 a:0.01567835733294487 :0.8413212448358536 -ho:0.3092784285545349 he:0.1743423193693161 was:0.083463653922081 were:0.06056743487715721 lie:0.03982141241431236 :0.3325267508625984 -those:0.10297662019729614 even:0.06760305166244507 yet:0.042306121438741684 ,:0.0392933152616024 then:0.018574481830000877 :0.7292464096099138 -they:0.9353027939796448 he:0.009506515227258205 and:0.007891451008617878 but:0.004576146602630615 it:0.003462974214926362 :0.039260118966922164 -,:0.10656110942363739 o:0.01777290180325508 shoes:0.015656352043151855 up:0.015142975375056267 me:0.013860669918358326 :0.8310059914365411 -had:0.904391348361969 'd:0.03683912754058838 never:0.008552982471883297 having:0.006409658119082451 ha:0.006167836487293243 :0.037639047019183636 -in:0.44137662649154663 In:0.2809140086174011 a:0.07446029037237167 with:0.07316139340400696 to:0.02738003060221672 :0.1027076505124569 -mighty:0.07972365617752075 desert:0.05361507087945938 great:0.05360673740506172 old:0.053166236728429794 mountain:0.030507167801260948 :0.7293811310082674 -for:0.03964508697390556 ,:0.03166692703962326 in:0.030393654480576515 only:0.025281034409999847 d:0.017589079216122627 :0.8554242178797722 -especially:0.222834512591362 and:0.1447487622499466 even:0.11518759280443192 but:0.08461780846118927 particularly:0.03762606531381607 :0.39498525857925415 -left:0.2809721529483795 committed:0.03151308000087738 pledged:0.026907462626695633 sent:0.025211738422513008 chosen:0.02239975892007351 :0.612995807081461 -the:0.9 :0.1 -rage:0.5253146886825562 .:0.2378506362438202 Rights:0.0851486325263977 hood:0.019192099571228027 rights:0.01823744922876358 :0.11425649374723434 -be:0.8777381181716919 have:0.06101495400071144 bo:0.02025024965405464 he:0.016771355643868446 been:0.0016635800711810589 :0.022561742458492517 -tho:0.324802964925766 the:0.08316141366958618 their:0.044113900512456894 a:0.032727692276239395 its:0.0204310305416584 :0.49476299807429314 -a:0.9722565412521362 some:0.01287351455539465 no:0.0035020732320845127 the:0.0022611450403928757 any:0.002168671227991581 :0.006938054692000151 -until:0.4027591049671173 ,:0.11424737423658371 till:0.08899003267288208 and:0.07250670343637466 when:0.05701306834816933 :0.2644837163388729 -tho:0.3887924551963806 the:0.366659551858902 a:0.05942525342106819 The:0.03998883068561554 that:0.029978137463331223 :0.11515577137470245 -to:0.1812375783920288 in:0.11650478094816208 of:0.10461444407701492 from:0.07027829438447952 into:0.04542474076151848 :0.4819401614367962 -,:0.7414190173149109 .:0.04658665135502815 to:0.02858750708401203 ;:0.02478976361453533 and:0.010116160847246647 :0.14850089978426695 -course:0.8184010982513428 coarse:0.022089222446084023 a:0.012227899394929409 all:0.011052951216697693 necessity:0.007931322790682316 :0.1282975059002638 -The:0.054853569716215134 the:0.05133812502026558 They:0.03564862161874771 when:0.03048529289662838 In:0.028170408681035042 :0.7995039820671082 -being:0.8173187971115112 feeling:0.07814988493919373 getting:0.008843258023262024 the:0.008254732936620712 Being:0.005115469451993704 :0.0823178575374186 -if:0.2909174859523773 but:0.2192639410495758 and:0.1361819952726364 as:0.041611380875110626 when:0.028476042672991753 :0.2835491541773081 -more:0.48205238580703735 less:0.310995489358902 worse:0.0885276049375534 better:0.04966465011239052 other:0.028937213122844696 :0.03982265666127205 -end:0.2916102707386017 beginning:0.19858498871326447 time:0.1534743458032608 close:0.038293059915304184 start:0.03816073015332222 :0.27987660467624664 -shall:0.6656202077865601 may:0.05157122015953064 will:0.04135739058256149 not:0.022513622418045998 must:0.021585457026958466 :0.19735210202634335 -the:0.42869022488594055 a:0.32623669505119324 her:0.0630718469619751 my:0.0555061399936676 our:0.0382201112806797 :0.08827498182654381 -in:0.06351112574338913 on:0.04520321264863014 to:0.033078715205192566 of:0.022456226870417595 In:0.021659212186932564 :0.814091507345438 -ab:0.10150306671857834 great:0.041596077382564545 keen:0.03976323828101158 just:0.020613517612218857 very:0.0177029799669981 :0.7788211200386286 -on:0.591716468334198 from:0.1318044662475586 at:0.0376468263566494 after:0.028116527944803238 to:0.02643478289246559 :0.18428092822432518 -of:0.9482851028442383 for:0.022126056253910065 from:0.006625028792768717 ing:0.003954152576625347 with:0.0023087256122380495 :0.01670093392021954 -^:0.3448757529258728 -:0.12792862951755524 ug:0.034124765545129776 *:0.03349723294377327 agonal:0.00977108720690012 :0.4498025318607688 -.:0.2942312955856323 impossible:0.05861085653305054 ?:0.021766265854239464 to:0.019964898005127907 entirely:0.01656876690685749 :0.5888579171150923 -they:0.8223108053207397 we:0.061460528522729874 Italians:0.022627729922533035 these:0.008581820875406265 you:0.006842037197202444 :0.07817707816138864 -compelled:0.3304418623447418 forced:0.3114396929740906 obliged:0.21477054059505463 ordered:0.01921623758971691 persuaded:0.011306915432214737 :0.11282475106418133 -,:0.7889981865882874 up:0.01884714514017105 down:0.012935305014252663 ;:0.012694867327809334 .:0.011111981235444546 :0.15541251469403505 -the:0.7006373405456543 which:0.11051976680755615 tho:0.08366770297288895 what:0.013605712912976742 a:0.013070604763925076 :0.07849887199699879 -.:0.4808177947998047 arrive:0.10229580104351044 can:0.09224572777748108 will:0.02159827947616577 .":0.010098639875650406 :0.2929437570273876 -The:0.26924610137939453 Two:0.08830238878726959 Three:0.06755132973194122 Twenty:0.04309437423944473 Four:0.03354477882385254 :0.4982610270380974 -that:0.394166499376297 if:0.09908772259950638 how:0.06420541554689407 believe:0.051041074097156525 whether:0.0478002205491066 :0.34369906783103943 -placed:0.3364381194114685 put:0.32251086831092834 thrown:0.09605719894170761 held:0.039157524704933167 kept:0.03612258657813072 :0.16971370205283165 -John:0.029560087248682976 James:0.0256609246134758 William:0.023936593905091286 Joseph:0.022212063893675804 Henry:0.019257010892033577 :0.8793733194470406 -bees:0.14216749370098114 weeds:0.03966915234923363 trees:0.03377382829785347 bee:0.027849208563566208 ants:0.022171037271618843 :0.7343692798167467 -of:0.7558972239494324 in:0.061883654445409775 ­:0.023093335330486298 -:0.009213090874254704 In:0.00800422765314579 :0.14190846774727106 -City:0.9776890277862549 city:0.006850782316178083 County:0.0012184680672362447 General:0.0009329061722382903 Reading:0.0008315247250720859 :0.012477290933020413 -knives:0.6477717757225037 knife:0.22718726098537445 forks:0.010904135182499886 stove:0.005625781137496233 implements:0.005241984501481056 :0.10326906247064471 -returned:0.8996626138687134 come:0.06514231860637665 gone:0.0069413939490914345 came:0.005150875076651573 return:0.002099323319271207 :0.02100347517989576 -and:0.13724830746650696 I:0.07764038443565369 he:0.0279832910746336 a:0.026689214631915092 which:0.02609732747077942 :0.7043414749205112 -in:0.44831913709640503 of:0.2589317858219147 with:0.12690556049346924 not:0.029205460101366043 In:0.02627645619213581 :0.1103616002947092 -river:0.08419714123010635 surrounding:0.05892185866832733 surface:0.02982178144156933 same:0.026569891721010208 mountain:0.026255259290337563 :0.7742340676486492 -oil:0.0945974811911583 mineral:0.08513996005058289 petroleum:0.06040103733539581 coal:0.04151979088783264 gas:0.031402718275785446 :0.6869390122592449 -water:0.3600313365459442 coal:0.1848209947347641 land:0.07698667794466019 freight:0.0642445906996727 ore:0.02771679125726223 :0.28619960881769657 -done:0.10908512771129608 with:0.04682176932692528 given:0.03770769014954567 for:0.023614948615431786 found:0.022670067846775055 :0.7601003963500261 -a:0.37641575932502747 pure:0.16667163372039795 the:0.02562863379716873 fresh:0.011205763556063175 harmless:0.010902166366577148 :0.40917604323476553 -,:0.2049158215522766 as:0.08675407618284225 he:0.056478071957826614 and:0.054338470101356506 that:0.029074637219309807 :0.5684389229863882 -the:0.9 :0.1 -referred:0.08286692947149277 came:0.08060874789953232 belonged:0.05999721214175224 ,:0.05951850488781929 was:0.04650488868355751 :0.6705037169158459 -camp:0.14500868320465088 and:0.06179376691579819 shelter:0.049605123698711395 hut:0.04939349368214607 dam:0.04705130308866501 :0.6471476294100285 -satisfaction:0.26073840260505676 knowledge:0.2060198336839676 benefit:0.06332681328058243 effect:0.03439704328775406 extent:0.01962568424642086 :0.4158922228962183 -the:0.9 :0.1 -,:0.3525630831718445 sun:0.08078476786613464 light:0.03074413351714611 furnace:0.012753940187394619 wind:0.012275196611881256 :0.5108788786455989 -people:0.33814117312431335 audiences:0.26872920989990234 audience:0.06298656761646271 fans:0.059166621416807175 crowds:0.052677057683467865 :0.21829937025904655 -carried:0.6368979215621948 brought:0.1147545650601387 had:0.08680321276187897 took:0.08391668647527695 wore:0.013899989426136017 :0.06372762471437454 -ing:0.12001042813062668 of:0.10422113537788391 to:0.09156463295221329 on:0.06303073465824127 about:0.04693226516246796 :0.5742408037185669 -,:0.0694100558757782 home:0.06476018577814102 farm:0.04447978734970093 town:0.037692274898290634 house:0.037644851952791214 :0.746012844145298 -payment:0.6285036206245422 payments:0.17137590050697327 ,:0.09293621778488159 it:0.022361086681485176 due:0.01674078218638897 :0.06808239221572876 -recent:0.9600427746772766 past:0.013535493053495884 the:0.0075707281939685345 many:0.0044844988733530045 several:0.0019591455347836018 :0.012407359667122364 -possession:0.23409928381443024 use:0.17338645458221436 consumption:0.15035055577754974 enjoyment:0.13735225796699524 sale:0.08102894574403763 :0.2237825021147728 -of:0.9351954460144043 at:0.02836599573493004 in:0.011708809062838554 for:0.007681197952479124 ol:0.006022277753800154 :0.011026273481547832 -George:0.02997514046728611 .:0.02790350280702114 Port:0.026228291913866997 St:0.02175091579556465 New:0.01909022592008114 :0.87505192309618 -her:0.47467100620269775 the:0.35715624690055847 his:0.026378042995929718 that:0.023859797045588493 this:0.01889795996248722 :0.09903694689273834 -small:0.3134097754955292 minor:0.09540608525276184 large:0.08937256038188934 low:0.06260303407907486 high:0.03865562379360199 :0.4005529209971428 -to:0.16103677451610565 would:0.03198147192597389 he:0.027346253395080566 ,:0.020338568836450577 could:0.019757742062211037 :0.7395391892641783 -intimidate:0.08230308443307877 embarrass:0.05644160881638527 deceive:0.05169513076543808 corrupt:0.049335602670907974 obstruct:0.04505404829978943 :0.7151705250144005 -the:0.9035986065864563 tho:0.02451365813612938 a:0.01708749122917652 The:0.004189862869679928 his:0.0029938542284071445 :0.04761652695015073 -was:0.4777465760707855 is:0.3145080506801605 Is:0.11011596024036407 were:0.03599782660603523 are:0.021291324868798256 :0.04034026153385639 -at:0.9943360686302185 the:0.002381531987339258 At:0.0011116188252344728 a:0.0008004887495189905 not:0.0004205854784231633 :0.0009497063292656094 -doctor:0.5725070238113403 physician:0.31504032015800476 man:0.016011353582143784 Doctor:0.015919405966997147 patient:0.014239082112908363 :0.06628281436860561 -same:0.08228529989719391 better:0.04197334498167038 best:0.02915230020880699 good:0.027900397777557373 beautiful:0.02219345048069954 :0.7964952066540718 -Board:0.9631708264350891 Boards:0.012560462579131126 board:0.0043242438696324825 Commissioners:0.003247722052037716 Court:0.0016032267594709992 :0.015093518304638565 -in:0.3648371398448944 ,:0.18430879712104797 on:0.09475523233413696 In:0.09283055365085602 and:0.07220383733510971 :0.19106443971395493 -color:0.09637264162302017 .:0.020157387480139732 virtue:0.018868019804358482 prejudice:0.017924480140209198 slavery:0.017219262197613716 :0.8294582087546587 -it:0.2248496562242508 she:0.16584829986095428 I:0.09347802400588989 It:0.0750664472579956 this:0.06537884473800659 :0.37537872791290283 -safe:0.12357029318809509 clean:0.08615414798259735 improved:0.03986097127199173 efficient:0.0301058329641819 modern:0.029885223135352135 :0.6904235314577818 -aged:0.12527412176132202 ided:0.09410655498504639 ived:0.0894332081079483 ly:0.08840451389551163 ged:0.08064805716276169 :0.52213354408741 -the:0.47396767139434814 General:0.11921484023332596 Captain:0.041641607880592346 President:0.037703387439250946 Colonel:0.036430735141038895 :0.2910417579114437 -with:0.5702763199806213 to:0.095311738550663 Is:0.04800048843026161 of:0.04380517452955246 is:0.03769607096910477 :0.20491020753979683 -.:0.48194780945777893 ,:0.16900978982448578 resumed:0.10359380394220352 ::0.02552841603755951 continued:0.022115962579846382 :0.19780421815812588 -assigned:0.8038731217384338 distributed:0.08322641998529434 given:0.020620640367269516 awarded:0.011521419510245323 allotted:0.01048522163182497 :0.07027317676693201 -ly:0.04384169355034828 ple:0.02624211274087429 ing:0.019346196204423904 pose:0.018888797610998154 ment:0.014612426981329918 :0.8770687729120255 -of:0.4977397322654724 and:0.09856407344341278 that:0.08841641247272491 for:0.06517844647169113 It:0.032199423760175705 :0.21790191158652306 -brink:0.0456191711127758 business:0.028158167377114296 side:0.021704645827412605 world:0.016892975196242332 art:0.01687835343182087 :0.8707466870546341 -and:0.9011120796203613 ,:0.03685402497649193 to:0.02768442966043949 or:0.01497033704072237 then:0.001540752244181931 :0.01783837645780295 -in:0.47407492995262146 on:0.12421178072690964 for:0.12048517167568207 of:0.04433564469218254 from:0.04057811200618744 :0.19631436094641685 -nor:0.8078988790512085 or:0.13162651658058167 and:0.012575165368616581 of:0.008277243934571743 in:0.00635497085750103 :0.033267224207520485 -,:0.06555019319057465 them:0.05668570101261139 water:0.05427408218383789 rocks:0.03936345502734184 and:0.027217764407396317 :0.7569088041782379 -the:0.8662119507789612 tho:0.05861499533057213 her:0.03146258741617203 the:0.006111697293817997 she:0.0030941928271204233 :0.03450457635335624 -a:0.7132351994514465 any:0.11188242584466934 one:0.06959398090839386 another:0.06651434302330017 no:0.011025741696357727 :0.027748309075832367 -rope:0.2222396731376648 tree:0.08179952204227448 river:0.03926318883895874 ladder:0.02165079303085804 ropes:0.02164814993739128 :0.6133986730128527 -Secretary:0.8466371893882751 Senator:0.023880349472165108 that:0.019709700718522072 Governor:0.009721899405121803 President:0.00888983253389597 :0.0911610284820199 -.:0.9091672301292419 ,:0.016197381541132927 !:0.011546187102794647 ;:0.010671259835362434 !:0.008065029047429562 :0.044352912344038486 -a:0.41297051310539246 the:0.16788870096206665 my:0.078334741294384 his:0.06330770999193192 elected:0.05077330768108368 :0.2267250269651413 -Wilmington:0.3076131343841553 Philadelphia:0.14009983837604523 town:0.05145233869552612 duty:0.051321785897016525 home:0.03791907802224159 :0.41159382462501526 -od:0.026539621874690056 id:0.02203049510717392 ud:0.019226834177970886 ad:0.015042467974126339 deed:0.013913911767303944 :0.9032466690987349 -of:0.20354245603084564 -:0.05850283056497574 .:0.02462623082101345 ol:0.016053754836320877 tho:0.015197064727544785 :0.6820776630192995 -be:0.05962661653757095 possibly:0.05773353949189186 not:0.0508938729763031 ':0.036507535725831985 -:0.026570767164230347 :0.7686676681041718 -little:0.20214690268039703 thing:0.09223099052906036 bit:0.07370032370090485 step:0.06496251374483109 question:0.040584713220596313 :0.5263745561242104 -better:0.08013570308685303 best:0.07143067568540573 reason:0.0553395040333271 fact:0.03907148912549019 right:0.03341289237141609 :0.7206097356975079 -of:0.7718366384506226 in:0.03164355084300041 ,:0.027311604470014572 for:0.00916742067784071 ol:0.007127389777451754 :0.15291339578107 -weakness:0.1847776472568512 genius:0.15657591819763184 greatness:0.03252064809203148 beauty:0.0206929799169302 perfection:0.020382367074489594 :0.5850504394620657 -ed:0.22528515756130219 able:0.0508512407541275 ing:0.032041240483522415 tried:0.027755839750170708 seemed:0.026333391666412354 :0.6377331297844648 -and:0.6001054644584656 but:0.046966567635536194 or:0.01996501535177231 which:0.01553119346499443 while:0.012816077098250389 :0.3046156819909811 -,:0.5466631054878235 ls:0.09208942204713821 ers:0.020982373505830765 es:0.020178109407424927 *,:0.014836379326879978 :0.30525061022490263 -A:0.9058133363723755 The:0.07090292870998383 An:0.006440033204853535 Another:0.005290959496051073 A:0.0036750866565853357 :0.007877655560150743 -a:0.4629767835140228 any:0.4377727806568146 the:0.053892362862825394 said:0.014451813884079456 this:0.007984757423400879 :0.02292150165885687 -it:0.8120691776275635 poison:0.03331204503774643 alcohol:0.025601906701922417 liquor:0.019538333639502525 this:0.016816357150673866 :0.09266217984259129 -for:0.7587910890579224 on:0.051097720861434937 the:0.026478448882699013 authorizing:0.015832414850592613 regulating:0.015660174190998077 :0.132140152156353 -from:0.48824524879455566 From:0.26105785369873047 from:0.06268861144781113 on:0.010033812373876572 and:0.009218755178153515 :0.16875571850687265 -north:0.23521539568901062 south:0.22959600389003754 west:0.12415114790201187 east:0.10158572345972061 northwest:0.05135972052812576 :0.2580920085310936 -ad:0.06177724152803421 u:0.05834433436393738 a:0.04703741893172264 i:0.04197210073471069 at:0.03685307875275612 :0.754015825688839 -in:0.2672716975212097 of:0.03980375453829765 In:0.03784957155585289 the:0.032773133367300034 .:0.024300264194607735 :0.598001578822732 -of:0.3340093195438385 ,:0.09830612689256668 for:0.07302648574113846 and:0.055739935487508774 to:0.047254737466573715 :0.39166339486837387 -it:0.17342440783977509 ,:0.14469824731349945 him:0.07701373845338821 there:0.06592581421136856 here:0.04961007833480835 :0.48932771384716034 -the:0.6605502963066101 when:0.09646712243556976 and:0.04789881780743599 in:0.029888197779655457 that:0.020278580486774445 :0.14491698518395424 -have:0.9802148342132568 not:0.004572881851345301 ha:0.003968456294387579 've:0.0017187275225296617 bo:0.0008457682561129332 :0.00867933186236769 -street:0.7596272826194763 ,:0.0942964106798172 ;:0.03862159326672554 Street:0.03576413169503212 streets:0.015221180394291878 :0.056469401344656944 -a:0.8341474533081055 her:0.08426880091428757 the:0.027480924502015114 another:0.016012568026781082 one:0.007024111691862345 :0.031066141556948423 -This:0.6074321866035461 The:0.30697736144065857 That:0.027194079011678696 Such:0.015041676349937916 Its:0.014354565180838108 :0.02900013141334057 -learn:0.303677499294281 see:0.16486145555973053 realize:0.1455339938402176 know:0.08128152787685394 discover:0.06739368289709091 :0.23725184053182602 -legal:0.05445539951324463 old:0.02454073540866375 street:0.02421715296804905 gambling:0.022271621972322464 poker:0.016513686627149582 :0.8580014035105705 -to:0.9453999996185303 and:0.02806949056684971 ,:0.008720410987734795 as:0.0028451045509427786 or:0.0014035762287676334 :0.013561418047174811 -liberty:0.10585949569940567 patriotism:0.07637909799814224 peace:0.06380002945661545 people:0.060470931231975555 nations:0.052010420709848404 :0.6414800249040127 -tion:0.13112500309944153 ing:0.09799271821975708 ment:0.045194052159786224 ter:0.02736647054553032 er:0.026137536391615868 :0.672184219583869 -in:0.5752670764923096 of:0.35723572969436646 In:0.022860107943415642 throughout:0.006506015546619892 on:0.0030005446169525385 :0.0351305257063359 -They:0.9912306070327759 they:0.0030115346889942884 These:0.0027292498853057623 We:0.0011733031133189797 They:0.00021369718888308853 :0.001641608090722002 -and:0.9135265946388245 or:0.07862254977226257 &:0.001352927996776998 of:0.0011648184154182673 nor:0.0010810198727995157 :0.004252089303918183 -their:0.17743617296218872 my:0.14537601172924042 the:0.08789417147636414 tho:0.06832682341337204 an:0.06476714462041855 :0.45619967579841614 -day:0.9545691013336182 night:0.03248487412929535 day:0.0014240402961149812 now:0.0011184127070009708 hour:0.0009684410761110485 :0.009435130457859486 -yet:0.9797282814979553 entirely:0.0025818469002842903 quite:0.0025229814928025007 even:0.001521299360319972 long:0.0009821797721087933 :0.012663410976529121 -.:0.9117987751960754 ,:0.008750462904572487 *.:0.005839954130351543 .:0.005568772554397583 ..:0.005065524019300938 :0.06297651119530201 -with:0.35731539130210876 by:0.17055727541446686 under:0.048097655177116394 beside:0.04758252203464508 for:0.03150611370801926 :0.34494104236364365 -?:0.5657938122749329 .:0.2372313141822815 ?:0.09751853346824646 !:0.0284856129437685 ,:0.02085312455892563 :0.050117602571845055 -my:0.27702435851097107 tho:0.21956540644168854 the:0.19531327486038208 his:0.06511855125427246 our:0.05746467038989067 :0.18551373854279518 -clearly:0.3677886426448822 plainly:0.20724032819271088 well:0.12081213295459747 simply:0.02301122434437275 thoroughly:0.01776007004082203 :0.26338760182261467 -boy:0.07205554842948914 was:0.048954445868730545 music:0.02655046060681343 has:0.02518993243575096 man:0.021758031100034714 :0.8054915815591812 -deem:0.8748471736907959 find:0.09549117088317871 consider:0.006603799760341644 make:0.0038739186711609364 think:0.0029949459712952375 :0.016188991023227572 -I:0.21943852305412292 We:0.15989816188812256 You:0.04973867908120155 Well:0.020940937101840973 But:0.01892072521150112 :0.5310629736632109 -of:0.6405487060546875 its:0.037439435720443726 it:0.021508067846298218 he:0.01446176040917635 have:0.01385407242923975 :0.27218795754015446 -confidence:0.13197650015354156 courage:0.06535185873508453 wisdom:0.04697982594370842 integrity:0.045319098979234695 conviction:0.04078425467014313 :0.6695884615182877 -ashes:0.13537399470806122 death:0.09388025850057602 cigar:0.06758363544940948 body:0.05004049465060234 case:0.038083504885435104 :0.6150381118059158 -and:0.6839266419410706 The:0.04710447043180466 of:0.04419218748807907 ,:0.04197721183300018 or:0.013020971789956093 :0.16977851651608944 -Police:0.08708437532186508 Postal:0.0408250093460083 Judiciary:0.03620833158493042 Post:0.03573257476091385 State:0.028927436098456383 :0.771222272887826 -and:0.8488093614578247 or:0.061708126217126846 ,:0.025817042216658592 &:0.008757717907428741 aud:0.00839974731206894 :0.046508004888892174 -the:0.9 :0.1 -keeping:0.31063759326934814 leaving:0.20681461691856384 putting:0.13608309626579285 placing:0.08971147984266281 with:0.08685222268104553 :0.16990099102258682 -the:0.3392746150493622 active:0.14613687992095947 in:0.02506498247385025 his:0.018179476261138916 continued:0.015330219641327858 :0.4560138266533613 -no:0.9742111563682556 every:0.006312797777354717 No:0.0034399419091641903 not:0.0025220708921551704 any:0.002406310522928834 :0.011107722530141473 -that:0.39817237854003906 which:0.18420690298080444 similar:0.0835149735212326 this:0.056589625775814056 it:0.030836012214422226 :0.2466801069676876 -and:0.12228433787822723 to:0.09667907655239105 ,:0.08368808031082153 that:0.08138097822666168 when:0.07925324887037277 :0.5367142781615257 -its:0.4211210012435913 their:0.3320734202861786 the:0.12299790233373642 his:0.02933553420007229 her:0.026282060891389847 :0.06819008104503155 -,:0.22944165766239166 each:0.07237177342176437 are:0.05181404575705528 not:0.04030793532729149 -:0.02195841260254383 :0.5841061752289534 -,:0.05757501721382141 nd:0.02592792734503746 i:0.022236131131649017 .:0.02182844467461109 st:0.021107690408825874 :0.8513247892260551 -shall:0.9035955667495728 may:0.045875634998083115 will:0.020149745047092438 must:0.01062245387583971 should:0.0034443922340869904 :0.016312207095324993 -lecture:0.22330667078495026 day:0.21493181586265564 week:0.16774511337280273 night:0.03270779177546501 month:0.02282879687845707 :0.3384798113256693 -Is:0.9806888103485107 Was:0.008431722410023212 is:0.0022082854993641376 Are:0.0006816001259721816 Has:0.0006722902180626988 :0.007317291398067027 -any:0.2924971878528595 the:0.23224496841430664 this:0.2230582982301712 that:0.07950036972761154 said:0.061818547546863556 :0.11088062822818756 -the:0.9 :0.1 -back:0.31637680530548096 ,:0.14171041548252106 down:0.032629285007715225 out:0.027807578444480896 on:0.02648897096514702 :0.45498694479465485 -and:0.6466684341430664 ,:0.11006134003400803 of:0.04662931337952614 less:0.035798847675323486 or:0.025519484654068947 :0.135322580114007 -accept:0.3313383460044861 a:0.09397225826978683 acceptance:0.06318078935146332 the:0.034069765359163284 pay:0.026844972744584084 :0.4505938682705164 -road:0.41638579964637756 bridge:0.11861506849527359 connection:0.09192929416894913 line:0.04178769513964653 route:0.01662125252187252 :0.31466089002788067 -in:0.5130268335342407 of:0.14832915365695953 to:0.09372156858444214 from:0.0463457927107811 In:0.031070642173290253 :0.16750600934028625 -to:0.4466463029384613 by:0.24772000312805176 upon:0.1199951320886612 for:0.032234035432338715 against:0.02960137091577053 :0.1238031554967165 -old:0.3998287618160248 fallen:0.028204169124364853 dead:0.027816731482744217 wounded:0.018734227865934372 young:0.016589945182204247 :0.5088261645287275 -the:0.3781537115573883 tho:0.05233175680041313 a:0.044794563204050064 all:0.023889178410172462 not:0.01952541247010231 :0.4813053775578737 -the:0.6454125642776489 his:0.19436268508434296 tho:0.046762000769376755 its:0.03888855502009392 this:0.028444690629839897 :0.04612950421869755 -is:0.4294413626194 has:0.4146484136581421 was:0.03131983429193497 Is:0.026795022189617157 had:0.012892931699752808 :0.08490243554115295 -lead:0.10055073350667953 speed:0.08315780758857727 pace:0.0488462932407856 advantage:0.04674803838133812 start:0.04586991295218468 :0.6748272143304348 -the:0.7381445169448853 a:0.1865723729133606 her:0.033654216676950455 his:0.0236105564981699 that:0.005536429584026337 :0.01248190738260746 -commerce:0.09157214313745499 customs:0.056691236793994904 labor:0.04341978207230568 morals:0.039458978921175 culture:0.03662506863474846 :0.732232790440321 -us:0.14894801378250122 Catholics:0.1278158724308014 him:0.12685665488243103 many:0.05651137977838516 Protestants:0.05418861657381058 :0.4856794625520706 -Smith:0.025191716849803925 Thompson:0.017164617776870728 Miller:0.015370688401162624 Mitchell:0.011522669345140457 Jones:0.01077861338853836 :0.9199716942384839 -confronted:0.12532168626785278 found:0.05645470693707466 awakened:0.05493633449077606 approached:0.0467863529920578 met:0.03905080631375313 :0.6774501129984856 -,:0.28666114807128906 and:0.2834676504135132 that:0.02894078940153122 or:0.024333475157618523 ;:0.024173371493816376 :0.35242356546223164 -Engineer:0.6274726390838623 Clerk:0.1571549028158188 Executive:0.02840435318648815 Architect:0.01998625509440899 Inspector:0.01851014234125614 :0.14847170747816563 -he:0.7692155838012695 ho:0.10081803798675537 it:0.022690799087285995 He:0.019499247893691063 be:0.01788836158812046 :0.06988796964287758 -the:0.9449314475059509 tho:0.024663282558321953 a:0.021438337862491608 that:0.0015504042385146022 any:0.0012301382375881076 :0.006186389597132802 -,:0.7232298851013184 and:0.14417125284671783 or:0.02919977530837059 ;:0.011223032139241695 .:0.010400643572211266 :0.08177541103214025 -impossible:0.24674557149410248 inevitable:0.08599098026752472 possible:0.07848137617111206 ,:0.02180800400674343 impossibility:0.014724123291671276 :0.552249944768846 -that:0.3093637228012085 a:0.17504607141017914 your:0.10036053508520126 this:0.09915204346179962 the:0.09560801088809967 :0.2204696163535118 -indication:0.33026596903800964 sign:0.195469468832016 evidence:0.18364687263965607 doubt:0.05376200005412102 suggestion:0.04159554839134216 :0.19526014104485512 -fully:0.8876596093177795 well:0.011840264312922955 thoroughly:0.011599608696997166 properly:0.010460780933499336 faithfully:0.005311194341629744 :0.07312854239717126 -new:0.06832371652126312 dress:0.04070514813065529 -:0.021852320060133934 particular:0.01641690544784069 individual:0.01486104354262352 :0.8378408662974834 -of:0.9255152344703674 ot:0.02882331982254982 in:0.01725064590573311 ol:0.0088715935125947 to:0.006629932206124067 :0.012909274082630873 -the:0.7693366408348083 such:0.07424851506948471 these:0.06185004487633705 tho:0.03942203149199486 those:0.01659894920885563 :0.0385438185185194 -ton:0.13688714802265167 ter:0.021864647045731544 er:0.020880889147520065 le:0.016186609864234924 ly:0.0129868034273386 :0.7911939024925232 -her:0.18772290647029877 him:0.12177955359220505 ,:0.07169593125581741 the:0.038549937307834625 .:0.02688966691493988 :0.5533620044589043 -Radical:0.11468431353569031 political:0.09572460502386093 business:0.05967075005173683 Democratic:0.05239765718579292 elected:0.04684960097074509 :0.6306730732321739 -.:0.9408637881278992 ?:0.02817528322339058 !:0.01832304708659649 .":0.0016227243468165398 ,:0.0014091618359088898 :0.009605995379388332 -food:0.09211360663175583 industrial:0.06316154450178146 business:0.060492075979709625 labor:0.05015992745757103 domestic:0.04330109804868698 :0.6907717473804951 -men:0.09183511883020401 officers:0.025996558368206024 corps:0.02410499006509781 soldiers:0.022534672170877457 troops:0.017476249486207962 :0.8180524110794067 -.:0.6714566349983215 home:0.07421209663152695 out:0.05294198542833328 back:0.018839027732610703 on:0.017247449606657028 :0.1653028056025505 -think:0.10542125254869461 just:0.06489051133394241 watch:0.05918905884027481 see:0.03407110273838043 even:0.02966051548719406 :0.7067675590515137 -the:0.9 :0.1 -the:0.9 :0.1 -a:0.9467242956161499 the:0.01077229529619217 very:0.006496788468211889 this:0.005328372120857239 some:0.004957172088325024 :0.025721076410263777 -and:0.29801249504089355 that:0.04837549850344658 with:0.03321360796689987 he:0.03237828612327576 which:0.030696334317326546 :0.5573237780481577 -circles:0.3505062758922577 hall:0.11978296935558319 streets:0.06296636909246445 halls:0.045853812247514725 council:0.04559483379125595 :0.375295739620924 -In:0.47352516651153564 in:0.24152661859989166 at:0.059010088443756104 of:0.05829612910747528 ol:0.03147697076201439 :0.13616502657532692 -made:0.05283290892839432 rendered:0.03181220591068268 found:0.016832629218697548 proved:0.016545940190553665 d:0.015959162265062332 :0.8660171534866095 -that:0.4245423674583435 which:0.33275267481803894 and:0.11547210067510605 ,:0.11135300248861313 .:0.0012731533497571945 :0.014606701210141182 -the:0.7581247687339783 a:0.1747824102640152 its:0.01140004862099886 tho:0.009013263508677483 this:0.008023888804018497 :0.03865562006831169 -this:0.7003961205482483 that:0.07859500497579575 his:0.07660306990146637 tho:0.03425199165940285 my:0.021799355745315552 :0.0883544571697712 -any:0.8516010642051697 the:0.03643006458878517 some:0.03447767347097397 no:0.010846337303519249 an:0.01025649905204773 :0.056388361379504204 -south:0.18989355862140656 north:0.16691854596138 said:0.09376095235347748 west:0.05507408827543259 frame:0.05034980922937393 :0.44400304555892944 -all:0.44864422082901 any:0.1806982010602951 the:0.13978330790996552 from:0.02084079571068287 to:0.012822192162275314 :0.1972112823277712 -and:0.3321346640586853 but:0.31229206919670105 although:0.0470268577337265 though:0.0450359545648098 which:0.036207981407642365 :0.22730247303843498 -her:0.35063526034355164 the:0.10742702335119247 two:0.08267770707607269 three:0.03491578623652458 his:0.026776732876896858 :0.39756749011576176 -day:0.3702124357223511 Court:0.051413394510746 time:0.04006248340010643 city:0.031968940049409866 County:0.031380604952573776 :0.47496214136481285 -round:0.806907057762146 ,:0.10304206609725952 by:0.011637037619948387 bout:0.011589635163545609 and:0.00929953996092081 :0.057524663396179676 -wind:0.12712830305099487 storm:0.04307855665683746 boat:0.039047278463840485 fire:0.0345788300037384 ship:0.026210850104689598 :0.7299561817198992 -British:0.38405829668045044 latter:0.10842111706733704 Germans:0.09099575877189636 Government:0.04159780964255333 government:0.030174804851412773 :0.34475221298635006 -,:0.8364468812942505 even:0.03087867982685566 as:0.015905050560832024 he:0.010405093431472778 and:0.008193029090762138 :0.09817126579582691 -slavery:0.535193145275116 right:0.10744629055261612 liberty:0.04993210732936859 ,:0.03982081264257431 rights:0.028678545728325844 :0.23892909847199917 -was:0.9896935820579529 were:0.0011233690893277526 was:0.0007634906796738505 is:0.000696081668138504 got:0.0006690910086035728 :0.007054385496303439 -such:0.28647276759147644 the:0.17510993778705597 a:0.13328473269939423 any:0.11852079629898071 said:0.05539293959736824 :0.2312188260257244 -life:0.1562449038028717 civilization:0.14652004837989807 rights:0.10154811292886734 history:0.06380387395620346 nature:0.0436672568321228 :0.4882158041000366 -no:0.6596775650978088 a:0.3107323944568634 little:0.007977152243256569 some:0.004503421951085329 the:0.0029653403908014297 :0.014144125860184431 -the:0.9 :0.1 -of:0.3828134536743164 all:0.2233487069606781 in:0.06896398216485977 for:0.06362506002187729 to:0.041843727231025696 :0.21940506994724274 -the:0.9 :0.1 -are:0.9739980697631836 were:0.0056311520747840405 as:0.0038709023501724005 be:0.002950117224827409 being:0.0010629603639245033 :0.012486798223108053 -a:0.22754450142383575 the:0.10589141398668289 his:0.049034833908081055 very:0.03064865805208683 that:0.028922222554683685 :0.5579583700746298 -resolution:0.533531904220581 discussion:0.10925383120775223 question:0.02977113239467144 change:0.02386314980685711 consideration:0.014906782656908035 :0.28867319971323013 -tho:0.47227442264556885 the:0.1508583128452301 their:0.13464069366455078 this:0.05636454001069069 his:0.021882548928260803 :0.16397948190569878 -towed:0.11830319464206696 hauled:0.0665656104683876 seen:0.04423737898468971 carried:0.03465387225151062 driven:0.03217800706624985 :0.7040619365870953 -window:0.09466072916984558 gloom:0.07563958317041397 sky:0.0711628794670105 clouds:0.06682941317558289 windows:0.048875775188207626 :0.6428316198289394 -of:0.9537313580513 ot:0.012743580155074596 ol:0.007824982516467571 by:0.003951509948819876 upon:0.0034558135084807873 :0.01829275581985712 -the:0.9 :0.1 -her:0.7262371778488159 his:0.1740022897720337 their:0.05059203505516052 the:0.030541950836777687 a:0.0015730743762105703 :0.01705347211100161 -Remove:0.12553486227989197 Hold:0.07930435240268707 Lift:0.06325305998325348 Take:0.04950222745537758 Turn:0.04125693067908287 :0.641148567199707 -that:0.9395439028739929 as:0.02545626275241375 ,:0.024015510454773903 and:0.00170559820253402 .:0.0011656087590381503 :0.008113116957247257 -is:0.8439207673072815 Is:0.09872753918170929 was:0.016950156539678574 iss:0.011318945325911045 's:0.005086205899715424 :0.023996385745704174 -the:0.5835295915603638 a:0.11334266513586044 any:0.05179815739393234 tho:0.024366261437535286 great:0.022713975980877876 :0.20424934849143028 -two:0.17472659051418304 four:0.12744100391864777 three:0.04466012120246887 six:0.03964697942137718 :0.03953227400779724 :0.5739930309355259 --:0.06299984455108643 -:0.06102760508656502 t:0.044150423258543015 :0.03299352154135704 c:0.030087735503911972 :0.7687408700585365 -was:0.32842257618904114 is:0.10225825756788254 did:0.021908925846219063 's:0.01532099861651659 helped:0.01498638279736042 :0.5171028589829803 -appointed:0.3611452579498291 designated:0.06268603354692459 governed:0.050812315195798874 elected:0.04154099151492119 directed:0.02817583456635475 :0.4556395672261715 -.:0.28709232807159424 where:0.2831610143184662 ;:0.14590899646282196 ;:0.09408579766750336 ,:0.07411781698465347 :0.11563404649496078 -Chase:0.9851523637771606 Pierce:0.0008361759828403592 Grant:0.0005733584985136986 Morgan:0.0005547194741666317 Buchanan:0.0005310365813784301 :0.012352345685940236 -was:0.9654268026351929 came:0.020158270373940468 occurred:0.007240607403218746 is:0.0025413045659661293 being:0.0011024862760677934 :0.003530528745613992 -the:0.874004602432251 tho:0.0797678753733635 th:0.012109288945794106 tha:0.005814950447529554 an:0.004552122671157122 :0.023751160129904747 -of:0.5651945471763611 in:0.2701356112957001 for:0.0686708465218544 at:0.04736139625310898 In:0.01029311865568161 :0.038344480097293854 -that:0.8828179836273193 how:0.08051994442939758 when:0.014596812427043915 if:0.0028406227938830853 why:0.0026557911187410355 :0.016568845603615046 -bers:0.721762478351593 ber:0.02546393871307373 ers:0.021036310121417046 men:0.015084726735949516 es:0.010210283100605011 :0.20644226297736168 -a:0.9716939926147461 A:0.005971931852400303 large:0.005105127114802599 an:0.0015791843179613352 tho:0.0015173518331721425 :0.014132412266917527 -,:0.9289592504501343 revolver:0.012295096181333065 which:0.004672734998166561 pistol:0.004380449187010527 ball:0.003885510843247175 :0.045806958340108395 -John:0.08355344086885452 James:0.06246480718255043 William:0.06122824549674988 Charles:0.04514528438448906 Henry:0.03833312913775444 :0.7092750929296017 -the:0.9 :0.1 -people:0.23915641009807587 men:0.1949922740459442 Democrats:0.06507988274097443 Republicans:0.04086539149284363 democr:0.020895859226584435 :0.43901018239557743 -the:0.36783021688461304 a:0.14730975031852722 :0.01602839305996895 another:0.012179306708276272 tho:0.011683996766805649 :0.44496833626180887 -was:0.9351847171783447 of:0.013500014320015907 a:0.010224679484963417 as:0.009350570850074291 is:0.005034277681261301 :0.026705740485340357 -The:0.910010039806366 This:0.03506716713309288 the:0.015682991594076157 That:0.004318770486861467 He:0.003312775632366538 :0.03160825534723699 -the:0.2699320912361145 no:0.22555282711982727 much:0.07873442023992538 more:0.03922007232904434 great:0.035530440509319305 :0.3510301485657692 -and:0.8346925973892212 but:0.05012211948633194 aud:0.010844849050045013 so:0.008503513410687447 adding:0.005957018584012985 :0.08987990207970142 -car:0.3169436752796173 boat:0.06352926045656204 track:0.04633454605937004 cars:0.04554334282875061 wagon:0.042830999940633774 :0.4848181754350662 -.:0.5482630133628845 ;:0.2233772724866867 ,:0.05219858139753342 and:0.023713132366538048 while:0.01540375966578722 :0.1370442407205701 -Hayes:0.08330413699150085 Boston:0.025070900097489357 Rye:0.019798433408141136 Salem:0.010056770406663418 Miller:0.009869198314845562 :0.8519005607813597 -up:0.15788894891738892 back:0.14288367331027985 over:0.12995073199272156 nearer:0.09339358657598495 down:0.087056465446949 :0.3888265937566757 -South:0.11536714434623718 States:0.08049340546131134 West:0.05738549679517746 country:0.05470876395702362 land:0.053141433745622635 :0.6389037556946278 -and:0.6068815588951111 with:0.05161479860544205 by:0.043851811438798904 ,:0.04135584086179733 but:0.01947096548974514 :0.2368250247091055 -after:0.6430563926696777 at:0.08403156697750092 to:0.04149182513356209 from:0.03327082097530365 during:0.02283843234181404 :0.17531096190214157 -tho:0.7469244003295898 the:0.09430638700723648 this:0.0460379421710968 such:0.04131476953625679 its:0.020873170346021652 :0.05054333060979843 -tion:0.545509397983551 ment:0.06340745091438293 pose:0.02374427765607834 ty:0.023571792989969254 ble:0.01336679793894291 :0.33040028251707554 -pressure:0.3261311948299408 air:0.193393737077713 heat:0.10450554639101028 water:0.0682414174079895 gas:0.055325012654066086 :0.2524030916392803 -mines:0.3474487364292145 mining:0.21296413242816925 them:0.14528419077396393 these:0.055974509567022324 this:0.0443742573261261 :0.19395417347550392 -own:0.41923093795776367 official:0.06094590201973915 first:0.044950563460588455 personal:0.03529862314462662 proper:0.02865046262741089 :0.4109235107898712 -children:0.22563283145427704 people:0.06872323155403137 neighbors:0.06027043238282204 friends:0.052265871316194534 citizens:0.04014485701918602 :0.552962776273489 -they:0.4931950569152832 he:0.3690873980522156 Robinson:0.05284959822893143 robbers:0.00925992988049984 men:0.005443938542157412 :0.07016407838091254 -leg:0.12785303592681885 arm:0.09187207370996475 bones:0.06693850457668304 which:0.04926193878054619 hand:0.04786955192685127 :0.6162048950791359 -Since:0.30704575777053833 If:0.26714888215065 As:0.14217182993888855 When:0.05492996424436569 Although:0.0435919389128685 :0.1851116269826889 -not:0.06385034322738647 only:0.05861304700374603 of:0.05043916031718254 possibly:0.04021970182657242 number:0.03316238895058632 :0.7537153586745262 -of:0.82363361120224 times:0.06305662542581558 days:0.053520772606134415 places:0.010950828902423382 cases:0.008519312366843224 :0.04031884949654341 -large:0.11246801912784576 the:0.05864514783024788 white:0.04728065803647041 splendid:0.042692240327596664 two:0.03537100926041603 :0.7035429254174232 -an:0.3865610659122467 the:0.2794392704963684 his:0.09319222718477249 a:0.032908834517002106 tho:0.025933418422937393 :0.1819651834666729 -dams:0.718264102935791 reservoirs:0.11402270197868347 water:0.02110551856458187 mines:0.011922390200197697 dam:0.008917083963751793 :0.12576820235699415 -I:0.4162255525588989 this:0.11533952504396439 the:0.10887516289949417 that:0.06848679482936859 it:0.04396924376487732 :0.2471037209033966 -on:0.5363569259643555 in:0.213492751121521 at:0.022710444405674934 around:0.0216944869607687 In:0.021439548581838608 :0.1843058429658413 -American:0.27896788716316223 the:0.059492915868759155 literary:0.05628117173910141 English:0.030635105445981026 young:0.02553096041083336 :0.5490919593721628 -':0.06790592521429062 themselves:0.056734275072813034 concerned:0.041340380907058716 *:0.033066943287849426 there:0.03121371939778328 :0.7697387561202049 -do:0.0996437817811966 are:0.04304730147123337 and:0.017648527398705482 ,:0.016470713540911674 doing:0.014011191204190254 :0.8091784846037626 -n:0.03202298283576965 the:0.031430087983608246 o:0.025686101987957954 :0.022654959931969643 ter:0.022260578349232674 :0.8659452889114618 -,:0.16600435972213745 firmly:0.0904674232006073 clearly:0.03382774814963341 strongly:0.03085879050195217 boldly:0.023070061579346657 :0.655771616846323 -the:0.9 :0.1 -John:0.16443759202957153 ,:0.1401079297065735 .:0.11525710672140121 by:0.043271444737911224 William:0.02141427993774414 :0.5155116468667984 -meantime:0.3281448483467102 morning:0.18947389721870422 evening:0.17172183096408844 afternoon:0.15749788284301758 night:0.042838070541620255 :0.1103234700858593 -rying:0.3890141546726227 iage:0.12563346326351166 ring:0.10140301287174225 ina:0.03928206488490105 ining:0.01726691797375679 :0.3274003863334656 -in:0.642255425453186 for:0.11563745141029358 ,:0.08440296351909637 of:0.05192878469824791 In:0.025288477540016174 :0.08048689737915993 -he:0.43061012029647827 I:0.4105581045150757 ho:0.06956411898136139 and:0.013502092100679874 lie:0.008564186282455921 :0.06720137782394886 -would:0.1558217704296112 .:0.15394017100334167 ,:0.07221280783414841 know:0.040896691381931305 will:0.03506048396229744 :0.54206807538867 -all:0.15566399693489075 the:0.10142549872398376 Republican:0.06334516406059265 two:0.05461642146110535 Democratic:0.04384449124336243 :0.5811044275760651 -the:0.30447256565093994 any:0.18031352758407593 or:0.10774993896484375 and:0.04414043202996254 an:0.04085056483745575 :0.3224729709327221 -pursuant:0.5892517566680908 subject:0.1341138333082199 according:0.041482314467430115 as:0.027823785319924355 owing:0.02618713118135929 :0.1811411790549755 -.:0.1600600630044937 that:0.03278384730219841 ,:0.029453057795763016 -:0.02318866178393364 the:0.01813739724457264 :0.7363769728690386 -and:0.5942854881286621 where:0.29589101672172546 which:0.02418122999370098 but:0.016328666359186172 when:0.013176615349948406 :0.05613698344677687 -to:0.7476125955581665 and:0.10533343255519867 or:0.0954599678516388 ,:0.013975408859550953 nor:0.01055832114070654 :0.02706027403473854 -success:0.1380080133676529 relief:0.10674353688955307 treatment:0.05784128978848457 improvement:0.04895317554473877 suffering:0.04117029532790184 :0.6072836890816689 -would:0.3290480673313141 must:0.2979712188243866 could:0.11691321432590485 might:0.11622718721628189 may:0.07160194218158722 :0.06823837012052536 -has:0.9857650399208069 had:0.005517208948731422 have:0.0025241561233997345 is:0.0018885127501562238 hath:0.000958555203396827 :0.0033465270535089076 -for:0.31499186158180237 in:0.20691227912902832 In:0.1528312712907791 to:0.10458759218454361 of:0.08224635571241379 :0.1384306401014328 -most:0.9708026051521301 best:0.005573717877268791 least:0.005493567790836096 more:0.004992770962417126 highest:0.0016884601209312677 :0.011448878096416593 -course:0.7903484106063843 coarse:0.04111415147781372 a:0.035504456609487534 necessity:0.021840477362275124 which:0.0074996850453317165 :0.10369281889870763 -and:0.45521339774131775 but:0.22650225460529327 for:0.06684446334838867 that:0.03305331617593765 so:0.016438154503703117 :0.20194841362535954 -now:0.061297692358493805 will:0.050252072513103485 has:0.047929830849170685 can:0.04503806307911873 already:0.037428632378578186 :0.7580537088215351 -reply:0.3132377564907074 responding:0.18555642664432526 answer:0.08150211721658707 regard:0.047903988510370255 response:0.03683288022875786 :0.33496683090925217 -ing:0.17784571647644043 ed:0.082110695540905 ly:0.030373891815543175 er:0.018269995227456093 ter:0.017815832048654556 :0.6735838688910007 -and:0.3550754487514496 then:0.08220048248767853 or:0.052230775356292725 but:0.04944285377860069 when:0.044594474136829376 :0.4164559654891491 -him:0.5034093856811523 them:0.14338411390781403 himself:0.1085866317152977 themselves:0.017848823219537735 ho:0.01648564264178276 :0.21028540283441544 -of:0.22775354981422424 .:0.037463702261447906 n:0.031111236661672592 l:0.02931356243789196 d:0.028037644922733307 :0.64632030390203 -the:0.5359745621681213 their:0.1278194636106491 and:0.02176295593380928 its:0.01750563085079193 -:0.017020780593156815 :0.2799166068434715 -of:0.2118980437517166 receipt:0.18623052537441254 notice:0.10592694580554962 order:0.04717725142836571 and:0.04542342945933342 :0.4033438041806221 -arrived:0.1366829127073288 up:0.0796743780374527 very:0.05648401379585266 gathered:0.04406692460179329 assembled:0.029155001044273376 :0.6539367698132992 -ing:0.028017152100801468 ed:0.027111204341053963 t:0.018428876996040344 d:0.017116982489824295 ed:0.012812081724405289 :0.8965137023478746 -residing:0.3239310681819916 ,:0.26409855484962463 living:0.18777966499328613 here:0.02051077038049698 lady:0.01473877765238285 :0.18894116394221783 -brain:0.9018293023109436 mind:0.05053959786891937 brains:0.01629416085779667 body:0.011232108809053898 Brain:0.003034134628251195 :0.017070695525035262 -many:0.25982823967933655 several:0.16059695184230804 two:0.04496394470334053 the:0.035270191729068756 ten:0.03526988998055458 :0.46407078206539154 -of:0.9573763012886047 to:0.01937536522746086 for:0.009917991235852242 ot:0.008553128689527512 ol:0.0009034821996465325 :0.003873731358908117 -the:0.9 :0.1 -air:0.7202051877975464 surface:0.08036618679761887 water:0.02344890870153904 atmosphere:0.020560944452881813 ground:0.01248487364500761 :0.14293389860540628 -,:0.24534206092357635 here:0.05635058507323265 only:0.04443411901593208 .:0.037242088466882706 first:0.02958914451301098 :0.5870420020073652 -glory:0.14102905988693237 beauty:0.048812996596097946 light:0.022142374888062477 peace:0.017349906265735626 blessings:0.017241571098566055 :0.7534240912646055 -t:0.04459373652935028 d:0.03613002225756645 i:0.02551083266735077 and:0.02168699912726879 s:0.02064686268568039 :0.8514315467327833 -which:0.13216570019721985 they:0.08691751211881638 there:0.07629485428333282 and:0.0620073527097702 ther:0.031169235706329346 :0.6114453449845314 -and:0.567459762096405 ,:0.3078615069389343 by:0.08526996523141861 without:0.007215958554297686 or:0.005561805795878172 :0.026631001383066177 -two:0.4048091769218445 more:0.2817941904067993 all:0.09594826400279999 both:0.08074385672807693 three:0.02361202798783779 :0.11309248395264149 -would:0.8729538321495056 could:0.073881134390831 might:0.024435685947537422 must:0.009107493795454502 should:0.007206139154732227 :0.01241571456193924 -sailors:0.5744321346282959 marines:0.16111983358860016 soldiers:0.053654007613658905 troops:0.04913286864757538 officers:0.032495103776454926 :0.12916605174541473 -the:0.19906029105186462 it:0.02972336672246456 bankruptcy:0.027266409248113632 this:0.02686942368745804 law:0.021506795659661293 :0.6955737136304379 -not:0.29135578870773315 impossible:0.031317513436079025 useless:0.027114372700452805 helpless:0.027012143284082413 nothing:0.02229980379343033 :0.6009003780782223 -corresponding:0.9690757989883423 same:0.013998930342495441 preceding:0.001763144158758223 prior:0.001048063044436276 previous:0.0009805517038330436 :0.01313351176213473 -the:0.8169549107551575 tho:0.17275507748126984 a:0.0034380736760795116 tha:0.0013152154861018062 The:0.0009175565210171044 :0.004619166080374271 -was:0.5043029189109802 became:0.4758225381374359 become:0.006313665304332972 as:0.0015315513592213392 married:0.001265725470148027 :0.010763600817881525 -character:0.12015574425458908 honesty:0.04385143518447876 courage:0.03852932155132294 reputation:0.028368184342980385 name:0.022640934213995934 :0.7464543804526329 -of:0.5075972676277161 ,:0.2628163993358612 or:0.05712730064988136 and:0.05441484972834587 in:0.025866542011499405 :0.09217764064669609 -made:0.07722317427396774 paid:0.05029907822608948 laid:0.04581495746970177 cleaned:0.0438993014395237 taken:0.03945249691605568 :0.7433109916746616 -of:0.9353033900260925 by:0.01570361666381359 ,:0.0072853099554777145 ot:0.0062508354894816875 ol:0.005329446867108345 :0.030127400998026133 -the:0.4622774124145508 these:0.23921234905719757 of:0.05306477099657059 those:0.04795639589428902 or:0.02394898049533367 :0.17354009114205837 -what:0.6488918662071228 whatever:0.17564204335212708 anything:0.0468696691095829 all:0.030033282935619354 something:0.025729283690452576 :0.07283385470509529 -prices:0.20506717264652252 wages:0.042052239179611206 revenues:0.028403811156749725 resources:0.02524346113204956 salaries:0.023639950901269913 :0.6755933649837971 -pm:0.37379422783851624 am:0.09549499303102493 am:0.08745788782835007 noon:0.05997367948293686 pm:0.04957674816250801 :0.3337024636566639 -.:0.6102088093757629 together:0.2073582261800766 ,:0.018631938844919205 apart:0.009954257868230343 In:0.009044838137924671 :0.14480192959308624 -gave:0.2855573892593384 told:0.1094542145729065 gives:0.08541570603847504 made:0.05446767807006836 informed:0.03955656662583351 :0.4255484454333782 -a:0.9238947033882141 one:0.017582973465323448 -:0.010953173041343689 the:0.004643547814339399 and:0.0037105893716216087 :0.03921501291915774 -you:0.7508221864700317 ho:0.04597838968038559 yo:0.042336396872997284 wo:0.02152230218052864 bo:0.01345404889434576 :0.125886675901711 -early:0.10114721953868866 first:0.06754308193922043 various:0.05569794028997421 last:0.05050760135054588 great:0.03663603216409683 :0.688468124717474 -.:0.42533648014068604 per:0.280611127614975 of:0.06730563938617706 a:0.05003366991877556 in:0.023347415030002594 :0.15336566790938377 -to:0.44561856985092163 of:0.26931232213974 for:0.20052529871463776 and:0.020919300615787506 or:0.008017960004508495 :0.05560654867440462 -his:0.8629782199859619 the:0.03050273284316063 his:0.015047160908579826 their:0.013698127120733261 whose:0.011020682752132416 :0.06675307638943195 -was:0.729803740978241 began:0.10185912996530533 started:0.09606321901082993 kept:0.015717795118689537 commenced:0.0055922591127455235 :0.05096385581418872 -for:0.9467700719833374 as:0.01907418854534626 of:0.009260798804461956 a:0.006094406824558973 the:0.005930710583925247 :0.012869823258370161 -76:0.31083860993385315 75:0.09676602482795715 74:0.05224468559026718 72:0.03898865729570389 ,:0.021461347118020058 :0.47970067523419857 -electing:0.24606113135814667 having:0.21632593870162964 the:0.19131413102149963 its:0.07375732809305191 elect:0.02720806933939457 :0.24533340148627758 -not:0.4230518639087677 scarcely:0.09480811655521393 still:0.08575063943862915 only:0.07408250868320465 never:0.06520834565162659 :0.257098525762558 -country:0.7786037921905518 nation:0.029167069122195244 .:0.02126327157020569 world:0.015609716065227985 South:0.01546531729400158 :0.13989083375781775 -great:0.09930407255887985 mighty:0.08239320665597916 guardian:0.049341462552547455 dark:0.03518494963645935 gentle:0.024544112384319305 :0.7092321962118149 -a:0.23787225782871246 the:0.06466547399759293 THE:0.0408003032207489 1:0.03486112132668495 A:0.027824077755212784 :0.593976765871048 -,:0.7451178431510925 trees:0.06330379098653793 it:0.036900099366903305 them:0.0180854219943285 .:0.016811374574899673 :0.11978146992623806 -county:0.38345468044281006 County:0.30433642864227295 State:0.10000475496053696 state:0.03871968016028404 city:0.031164582818746567 :0.14231987297534943 -of:0.5868583917617798 ol:0.1598045825958252 ot:0.06616465002298355 ,:0.03303517401218414 o:0.014067974872887135 :0.1400692267343402 -about:0.1792355179786682 and:0.11736797541379929 of:0.09973761439323425 over:0.07903435081243515 or:0.0710136890411377 :0.4536108523607254 -*:0.06841706484556198 »:0.031433094292879105 >:0.030153632164001465 .:0.029801933094859123 ,:0.02848239429295063 :0.8117118813097477 -he:0.4874274432659149 ho:0.33077314496040344 h:0.03594721108675003 He:0.020572857931256294 lie:0.011672920547425747 :0.11360642220824957 -.:0.9641189575195312 .:0.005426785442978144 !:0.003292754990980029 .":0.001911851461045444 -:0.0013199588283896446 :0.02392969175707549 -Duck:0.8499031066894531 the:0.06396902352571487 Deer:0.004002653993666172 Rock:0.0031576298642903566 Hood:0.0025786918122321367 :0.07638889411464334 -entrusted:0.36165711283683777 endowed:0.09600064903497696 provided:0.05816461890935898 furnished:0.051847025752067566 vested:0.03678784519433975 :0.395542748272419 -own:0.11407951265573502 old:0.11306529492139816 childhood:0.06576888263225555 new:0.06533820927143097 native:0.050958052277565 :0.5907900482416153 -not:0.12944984436035156 only:0.08211565017700195 simply:0.07373882085084915 called:0.0638343095779419 always:0.045674003660678864 :0.6051873713731766 -established:0.1322273463010788 opened:0.0765080526471138 started:0.06907214969396591 situated:0.05515489727258682 begun:0.041278351098299026 :0.6257592029869556 -the:0.9758564233779907 a:0.011825724504888058 tho:0.004972583148628473 that:0.002909136237576604 this:0.0006307163857854903 :0.003805416345130652 -benefit:0.10401972383260727 benefits:0.0876212939620018 cure:0.056939806789159775 product:0.05558734014630318 medicine:0.054805394262075424 :0.6410264410078526 -and:0.6823114156723022 ,:0.12184081971645355 or:0.11851843446493149 the:0.01371741108596325 of:0.010045486502349377 :0.05356643255800009 -at:0.9906540513038635 of:0.0013225811999291182 ot:0.0008154918905347586 as:0.0006105363718234003 At:0.0004990005400031805 :0.006098338693846017 -number:0.9573706388473511 amount:0.018184082582592964 proportion:0.003727821633219719 numbers:0.0033882823772728443 names:0.001635397202335298 :0.0156937773572281 -beautiful:0.15945136547088623 glorious:0.05026056617498398 magnificent:0.040533941239118576 grand:0.03909320384263992 splendid:0.03556239604949951 :0.6750985272228718 -across:0.20417888462543488 around:0.17310845851898193 through:0.15237483382225037 about:0.08135706186294556 into:0.07701820880174637 :0.3119625523686409 -the:0.09292735904455185 ,:0.038538649678230286 so:0.038411177694797516 enough:0.023418627679347992 an:0.02168031595647335 :0.785023869946599 -out:0.27971151471138 down:0.23323167860507965 up:0.11202196031808853 back:0.06210392713546753 over:0.060209665447473526 :0.25272125378251076 -The:0.9734245538711548 A:0.011968107894062996 This:0.007105979602783918 the:0.0016265352023765445 The:0.001265684375539422 :0.004609139054082334 -the:0.21316446363925934 his:0.1826086938381195 His:0.1811988651752472 a:0.07342729717493057 this:0.05964731052517891 :0.2899533696472645 -and:0.6299548745155334 &:0.02945203147828579 ,:0.028408821672201157 -:0.027414429932832718 or:0.019934361800551414 :0.2648354806005955 -millions:0.9532051086425781 million:0.021532883867621422 billions:0.010846140794456005 thousands:0.00558866560459137 Millions:0.0016302097355946898 :0.007196991355158389 -together:0.46164608001708984 up:0.268996000289917 down:0.038713760673999786 ,:0.032743554562330246 back:0.028622504323720932 :0.1692781001329422 -a:0.1675761640071869 his:0.09126532822847366 the:0.07031572610139847 to:0.04266747459769249 tho:0.024181796237826347 :0.6039935108274221 -speculation:0.2640242278575897 uncertainty:0.13822729885578156 question:0.13100245594978333 confusion:0.06847904622554779 doubt:0.035667549818754196 :0.3625994212925434 -the:0.9 :0.1 -and:0.31621623039245605 we:0.18610148131847382 We:0.178371399641037 you:0.04976480454206467 ,:0.04287094995379448 :0.226675134152174 -ck:0.015005877241492271 ly:0.014731110073626041 ff:0.013933409005403519 ley:0.009815254248678684 h:0.008637160062789917 :0.9378771893680096 -the:0.44993650913238525 by:0.19086043536663055 its:0.03349786251783371 under:0.03281695395708084 other:0.028261344879865646 :0.264626894146204 -or:0.9788752198219299 and:0.018967486917972565 than:0.0011934628710150719 to:0.0002567742485553026 nor:0.00016324133321177214 :0.000543814807315357 -to:0.9986304044723511 and:0.00012911717931274325 To:8.242335024988279e-05 ,:8.005835843505338e-05 ot:7.670876948395744e-05 :0.001001287870167289 -or:0.18816381692886353 and:0.09897029399871826 dried:0.040854185819625854 fresh:0.020315993577241898 of:0.019391629844903946 :0.6323040798306465 -cap:0.6408520936965942 capped:0.06356778740882874 caps:0.024255376309156418 ly:0.008919923566281796 ter:0.005008163396269083 :0.25739665562286973 -,:0.6648085117340088 known:0.04211295023560524 able:0.01620277762413025 which:0.013488954864442348 organized:0.011854555457830429 :0.25153225008398294 -tho:0.6771798133850098 the:0.20962552726268768 our:0.045135609805583954 some:0.00502214627340436 two:0.003323281416669488 :0.05971362185664475 -the:0.9 :0.1 -is:0.8313900828361511 Is:0.06231757625937462 becomes:0.03640766441822052 seems:0.011539174243807793 was:0.009446091018617153 :0.04889941122382879 -strike:0.05138004571199417 handle:0.033046044409275055 control:0.029797665774822235 lift:0.025639981031417847 fight:0.02132498100399971 :0.838811282068491 -work:0.21089349687099457 duties:0.14378367364406586 .:0.09633305668830872 business:0.061080384999513626 activities:0.047369491308927536 :0.4405398964881897 -lines:0.18231478333473206 line:0.07726632058620453 ,:0.04198361560702324 ity:0.023168005049228668 rails:0.014846623875200748 :0.6604206515476108 -it:0.0352645069360733 It:0.02095866948366165 him:0.020289799198508263 home:0.018160516396164894 out:0.018137574195861816 :0.8871889337897301 -end:0.11537782102823257 part:0.09193442761898041 side:0.0746646448969841 surface:0.04055704548954964 section:0.03552709519863129 :0.641938965767622 -of:0.2357313632965088 assail:0.18624372780323029 to:0.06901383399963379 plague:0.06182897463440895 affect:0.05903848260641098 :0.3881436176598072 -striking:0.45249658823013306 struck:0.14929568767547607 hitting:0.07016018033027649 knocking:0.023488817736506462 cutting:0.018787415698170662 :0.28577131032943726 -or:0.8314939141273499 and:0.09846930205821991 of:0.011567478999495506 ,:0.005645157303661108 ary:0.00515319686383009 :0.04767095064744353 -Miss:0.41325798630714417 Madame:0.10793738812208176 Judge:0.04374707117676735 Senator:0.039450936019420624 Mrs:0.036742448806762695 :0.3588641695678234 -send:0.43303677439689636 have:0.029324425384402275 bring:0.028558874502778053 furnish:0.025455934926867485 dispatch:0.024421924725174904 :0.4592020660638809 -duty:0.18090099096298218 duties:0.05859127268195152 life:0.02875634841620922 own:0.023463869467377663 home:0.014697408303618431 :0.693590110167861 -his:0.6918258666992188 the:0.2610170245170593 a:0.01955968700349331 her:0.009625581093132496 bis:0.004597284831106663 :0.013374555855989456 -make:0.18540918827056885 take:0.09245521575212479 do:0.08451276272535324 give:0.0756382867693901 perform:0.03376706689596176 :0.5282174795866013 -.:0.9157487154006958 .:0.007707126904278994 ?:0.005207433830946684 life:0.004575423896312714 !:0.003109548008069396 :0.06365175195969641 -it:0.8347544074058533 there:0.04525957256555557 this:0.035626765340566635 that:0.01457667164504528 It:0.012982700020074844 :0.056799883022904396 -the:0.7383431792259216 tho:0.23808418214321136 th:0.0036269205156713724 tha:0.003109834622591734 each:0.002344392705708742 :0.014491490786895156 -in:0.7664585113525391 In:0.20686791837215424 the:0.0019234842620790005 in:0.0017513841157779098 an:0.0010741257574409246 :0.021924576140008867 -is:0.6316176056861877 Is:0.21255697309970856 has:0.04688743129372597 needs:0.01699773781001568 ought:0.014591637067496777 :0.07734861504286528 -had:0.2781601548194885 has:0.2732912003993988 is:0.08765996247529984 was:0.07813221961259842 ever:0.0202459916472435 :0.2625104710459709 -the:0.9 :0.1 -was:0.700954020023346 were:0.04864601418375969 not:0.03295065462589264 be:0.03293152153491974 had:0.030342858284711838 :0.15417493134737015 -is:0.9003348350524902 Is:0.08611442893743515 's:0.002956832991912961 was:0.0027170712128281593 seems:0.0014664084883406758 :0.006410423316992819 -,:0.5282207727432251 and:0.2623260021209717 .:0.09330526739358902 ;:0.011719133704900742 ,:0.00893211830407381 :0.09549670573323965 -ago:0.983363151550293 later:0.004898097366094589 ,:0.002499578520655632 old:0.0020973298233002424 back:0.001451769727282226 :0.0056900730123743415 -pencil:0.0715404823422432 canvas:0.06425611674785614 brush:0.04423541948199272 paint:0.043989188969135284 chalk:0.031859997659921646 :0.744118794798851 -The:0.8837600350379944 A:0.09125873446464539 Her:0.0024917421396821737 The:0.0018384489230811596 the:0.0015204313676804304 :0.019130608066916466 -in:0.8269938230514526 In:0.14678330719470978 around:0.004942846484482288 of:0.003241053782403469 within:0.002951460424810648 :0.01508750906214118 -the:0.943093478679657 this:0.013045531697571278 tho:0.006609161384403706 said:0.005213061813265085 a:0.00376239069737494 :0.02827637572772801 -?:0.259118914604187 .:0.1484878808259964 ,:0.04479597136378288 not:0.043266501277685165 ?:0.04091349616646767 :0.4634172357618809 -and:0.9303975701332092 ,:0.037909623235464096 or:0.020616451278328896 at:0.0014824406243860722 in:0.0010056786704808474 :0.00858823605813086 -dean:0.5268374085426331 president:0.19547997415065765 chairman:0.04893364757299423 head:0.03413451835513115 director:0.03293534368276596 :0.16167910769581795 -have:0.9697533845901489 've:0.003427723655477166 be:0.003414366627112031 not:0.0019211254548281431 he:0.0011907784501090646 :0.02029262122232467 -un:0.14253175258636475 a:0.0825287401676178 in:0.04172389209270477 very:0.037097614258527756 aud:0.02322760596871376 :0.6728903949260712 -short:0.9673828482627869 little:0.006760050542652607 brief:0.005610182415693998 long:0.0046419114805758 single:0.0017068027518689632 :0.013898204546421766 -day:0.07185004651546478 street:0.04836003854870796 .:0.03227851167321205 streets:0.03043036162853241 night:0.026998015120625496 :0.7900830265134573 -and:0.4306136965751648 in:0.3479591906070709 or:0.0579303503036499 In:0.037523653358221054 ,:0.02146945893764496 :0.10450365021824837 -been:0.9217889904975891 served:0.015080524608492851 tried:0.011953797191381454 died:0.008694102056324482 appeared:0.0031575635075569153 :0.039325022138655186 -business:0.21604910492897034 man:0.0912659764289856 life:0.07497860491275787 men:0.05692458897829056 people:0.04510721564292908 :0.5156745091080666 -are:0.7127277255058289 will:0.0946262925863266 should:0.02762349136173725 may:0.02441447414457798 be:0.022826172411441803 :0.11778184399008751 -the:0.9 :0.1 -.:0.9855008721351624 .:0.0021546767093241215 ,:0.0019054748117923737 .":0.0016617944929748774 !:0.0011547604808583856 :0.007622421369887888 -u:0.049843497574329376 rom:0.020239608362317085 know:0.013405795209109783 o:0.012801344506442547 om:0.01241983100771904 :0.8912899233400822 -make:0.4671151041984558 take:0.11966206133365631 get:0.0697726383805275 have:0.051297884434461594 not:0.02006523869931698 :0.2720870729535818 -New:0.12245135009288788 White:0.10823332518339157 Southern:0.09199590981006622 Northern:0.08417635411024094 Black:0.045175280421972275 :0.5479677803814411 -member:0.17551888525485992 secretary:0.030896831303834915 chief:0.02826564945280552 regular:0.026933202520012856 part:0.024833643808960915 :0.7135517876595259 -a:0.4397009313106537 the:0.16706538200378418 tho:0.04412444308400154 he:0.0313565768301487 his:0.026733646169304848 :0.29101902060210705 -covering:0.27256935834884644 filling:0.22411324083805084 lining:0.05221745744347572 stuffing:0.03751782327890396 painting:0.03237762674689293 :0.3812044933438301 -the:0.7546029686927795 tho:0.07178671658039093 to:0.02778027206659317 for:0.020005984231829643 out:0.012769952416419983 :0.11305410601198673 -standing:0.07319194078445435 put:0.04776386171579361 knocked:0.0393560454249382 not:0.024724187329411507 shown:0.022288011386990547 :0.7926759533584118 -police:0.3427184224128723 officers:0.06721401959657669 officer:0.06179238483309746 dog:0.04355435073375702 deer:0.03548800200223923 :0.4492328204214573 -,:0.2525971233844757 ;:0.20565751194953918 ;:0.2046107053756714 .:0.15833799540996552 and:0.0434829443693161 :0.1353137195110321 -a:0.13683292269706726 *:0.08313341438770294 place:0.030005019158124924 well:0.01895352266728878 man:0.016572250053286552 :0.7145028710365295 -or:0.8866782188415527 and:0.09201148897409439 ,:0.007478943094611168 to:0.0037582824006676674 nor:0.003530976828187704 :0.006542089860886335 -the:0.9611508250236511 a:0.012990388087928295 that:0.008423231542110443 one:0.0032920953817665577 tha:0.002894130302593112 :0.011249329661950469 -the:0.32631129026412964 a:0.19980289041996002 any:0.09826575219631195 that:0.030338626354932785 some:0.025314880535006523 :0.3199665602296591 -to:0.2315675914287567 not:0.07295296341180801 him:0.059318650513887405 who:0.025480635464191437 a:0.021895239129662514 :0.5887849200516939 -the:0.9 :0.1 -months:0.9199728965759277 years:0.010005142539739609 month:0.009609334170818329 year:0.004701621364802122 -:0.0045075081288814545 :0.05120349721983075 -as:0.9484602212905884 As:0.025144170969724655 is:0.003363662399351597 Is:0.0021933112293481827 of:0.0019105786923319101 :0.018928055418655276 -own:0.09114953130483627 war:0.0396118126809597 respective:0.03337414935231209 great:0.03272002190351486 home:0.02779429219663143 :0.7753501925617456 -,:0.4659942090511322 authorities:0.07163304090499878 ;:0.06082972511649132 officials:0.031159134581685066 agencies:0.02277621440589428 :0.34760767593979836 -to:0.626121997833252 of:0.15393304824829102 ot:0.07719583809375763 for:0.06107828766107559 in:0.016449224203824997 :0.06522160395979881 -was:0.4453001618385315 had:0.19215935468673706 ,:0.03416525945067406 were:0.030481483787298203 being:0.024335099384188652 :0.27355864085257053 -two:0.8722175359725952 three:0.05525321140885353 five:0.016253836452960968 four:0.012452696450054646 more:0.007733146660029888 :0.03608957305550575 -;:0.9583289623260498 .:0.010705572552978992 ::0.009814396500587463 ;:0.006591518875211477 ,:0.006109591107815504 :0.008449958637356758 -to:0.15532633662223816 with:0.144796222448349 on:0.05687849223613739 around:0.05449088290333748 for:0.04915912076830864 :0.5393489450216293 -The:0.14209434390068054 the:0.05482160300016403 «:0.041825052350759506 and:0.026103302836418152 In:0.021060029044747353 :0.7140956688672304 -com:0.03351674601435661 -:0.0312212947756052 reve:0.01715073175728321 inter:0.016559861600399017 vict:0.016491683200001717 :0.8850596826523542 -accurate:0.5098448991775513 fair:0.2063884437084198 complete:0.09721878170967102 proper:0.015774259343743324 satisfactory:0.011182159185409546 :0.15959145687520504 -last:0.46706411242485046 least:0.1527576595544815 once:0.08318408578634262 times:0.04154247045516968 first:0.029308835044503212 :0.22614283673465252 -life:0.2526474595069885 goods:0.1878204196691513 living:0.12430685758590698 manufacture:0.04046960920095444 food:0.03696827217936516 :0.3577873818576336 -human:0.22604770958423615 conscious:0.05631662905216217 spiritual:0.04283922538161278 natural:0.025423843413591385 inner:0.025418922305107117 :0.6239536702632904 -,:0.13642458617687225 a:0.12134652584791183 the:0.0931953713297844 and:0.09165780246257782 of:0.06990449130535126 :0.48747122287750244 -f:0.0351216197013855 n:0.029354140162467957 of:0.016408860683441162 io:0.015971027314662933 *:0.015296665951609612 :0.8878476861864328 -union:0.4245307147502899 fusion:0.08573519438505173 diffusion:0.025208815932273865 motion:0.019969487562775612 friction:0.017770277336239815 :0.42678551003336906 -and:0.78427654504776 or:0.07558021694421768 aud:0.029369041323661804 but:0.029075421392917633 for:0.026464438065886497 :0.055234337225556374 -go:0.4155752658843994 vote:0.12087288498878479 run:0.035593610256910324 look:0.022406237199902534 turn:0.01591513864696026 :0.3896368630230427 -ly:0.22441498935222626 and:0.09562154114246368 ,:0.08291762322187424 u:0.028169792145490646 e:0.02638406865298748 :0.5424919854849577 -river:0.0958150178194046 sandy:0.05399030074477196 rocky:0.03880399093031883 great:0.032517943531274796 steep:0.03249732777476311 :0.7463754191994667 -.:0.17522871494293213 ,:0.04433303698897362 time:0.02894718572497368 self:0.025921056047081947 that:0.02136276476085186 :0.7042072415351868 -and:0.4260247051715851 ;:0.19268661737442017 ;:0.11888966709375381 John:0.012947159819304943 And:0.007352451793849468 :0.24209939874708652 -one:0.9813446998596191 some:0.0072525967843830585 One:0.004746210295706987 another:0.0015806140145286918 part:0.0011286081280559301 :0.0039472709177061915 -to:0.3980172574520111 ing:0.25335443019866943 ing:0.10297601670026779 ting:0.032712992280721664 with:0.028716908767819405 :0.1842223946005106 -.:0.9304918050765991 long:0.009199433028697968 !:0.006612934172153473 ,:0.006543949246406555 ::0.003062402131035924 :0.04408947634510696 -will:0.23293393850326538 should:0.17366845905780792 to:0.09418897330760956 must:0.09346668422222137 may:0.08917973190546036 :0.3165622130036354 -to:0.35113751888275146 not:0.1564091593027115 then:0.03860444948077202 will:0.02222565747797489 we:0.013782362453639507 :0.41784085240215063 -surrounded:0.1389826238155365 crowded:0.1095617413520813 filled:0.040384501218795776 saw:0.03489668667316437 cheered:0.034836068749427795 :0.6413383781909943 -the:0.9 :0.1 -weakened:0.20168574154376984 damaged:0.10005366802215576 affected:0.09543464332818985 reduced:0.036851730197668076 destroyed:0.025569599121809006 :0.5404046177864075 -sins:0.16430844366550446 faith:0.032710570842027664 hearts:0.022338394075632095 duty:0.021059857681393623 duties:0.017227744683623314 :0.7423549890518188 -we:0.17962951958179474 it:0.12549516558647156 I:0.10686419159173965 he:0.06174164637923241 It:0.05746453255414963 :0.468804944306612 -with:0.5633735060691833 ,:0.14125971496105194 had:0.04581388831138611 holding:0.02069105952978134 having:0.01579946093261242 :0.21306237019598484 -I:0.8316025137901306 1:0.023623166605830193 then:0.023365210741758347 ho:0.01777629926800728 suddenly:0.010324794799089432 :0.09330801479518414 -for:0.0601753331720829 in:0.0536283440887928 half:0.0428149588406086 once:0.03135978430509567 days:0.025559423491358757 :0.7864621561020613 -the:0.8091306090354919 a:0.03742951899766922 tho:0.02762407623231411 large:0.009552964940667152 in:0.007702501956373453 :0.10856032883748412 -whole:0.21139153838157654 free:0.07396702468395233 promised:0.07254336029291153 entire:0.0526113361120224 great:0.045256637036800385 :0.5442301034927368 -the:0.9 :0.1 -,:0.9667885899543762 now:0.005718573462218046 far:0.005189603194594383 that:0.004162211902439594 .:0.001504560699686408 :0.016636460786685348 -Mr:0.49710729718208313 But:0.02106868103146553 Judge:0.01955440640449524 Miss:0.01918938010931015 Agent:0.015398439019918442 :0.4276817962527275 -,:0.3989837169647217 and:0.08670581877231598 where:0.08296899497509003 ;:0.08075591921806335 when:0.04826955124735832 :0.30231599882245064 -under:0.24256087839603424 to:0.18370813131332397 in:0.09426437318325043 ol:0.08640316128730774 of:0.06744890660047531 :0.3256145492196083 -;:0.38274168968200684 ;:0.2747797667980194 ,:0.07170834392309189 ::0.06374333053827286 .:0.049404848366975784 :0.15762202069163322 -B:0.34748375415802 J:0.04834607243537903 L:0.02454460971057415 .:0.022526752203702927 B:0.018931111320853233 :0.5381677001714706 -man:0.5721111297607422 gentleman:0.10605623573064804 woman:0.02366294525563717 ,:0.020139290019869804 men:0.014892639592289925 :0.2631377596408129 -Smith:0.02255910262465477 Moore:0.017814278602600098 Taylor:0.01535723451524973 Mayer:0.01224738173186779 Jones:0.012180115096271038 :0.9198418874293566 -been:0.08249220997095108 a:0.04451249912381172 ,:0.03983607143163681 to:0.03885253146290779 o:0.025227775797247887 :0.7690789122134447 -at:0.9856089949607849 about:0.0054569425992667675 around:0.0020999019034206867 At:0.001810254529118538 in:0.0012959989253431559 :0.00372790708206594 -The:0.7045328617095947 This:0.03389962390065193 tho:0.023495269939303398 the:0.02274758741259575 Ho:0.012636933475732803 :0.2026877235621214 -believe:0.3078782856464386 rejoice:0.13840392231941223 care:0.04363524913787842 dwell:0.02408062480390072 revel:0.022862132638692856 :0.4631397854536772 -.:0.5143346786499023 said:0.3333568871021271 says:0.06641930341720581 explained:0.010119512677192688 stated:0.009791561402380466 :0.06597805675119162 -and:0.06865536421537399 or:0.06675955653190613 either:0.04186197370290756 tho:0.0407339483499527 both:0.02866794541478157 :0.753321211785078 -of:0.9328992962837219 on:0.016373828053474426 for:0.014724989421665668 ot:0.004358322825282812 in:0.0039062537252902985 :0.02773730969056487 -mood:0.184231236577034 wind:0.10151022672653198 crowd:0.05340486392378807 weather:0.04630770906805992 spirit:0.036903709173202515 :0.5776422545313835 -Is:0.701363742351532 is:0.14270718395709991 has:0.12672054767608643 Has:0.010154087096452713 hath:0.0011487487936392426 :0.01790569012518972 -most:0.16123229265213013 The:0.0944412425160408 the:0.07523612678050995 a:0.061069782823324203 and:0.05721179395914078 :0.5508087612688541 -le:0.10145454853773117 f:0.07302772998809814 e:0.06791474670171738 l:0.05580465868115425 -:0.04801413044333458 :0.6537841856479645 -of:0.9768508672714233 ot:0.008114689961075783 ol:0.007732192520052195 at:0.0032639713026583195 or:0.00040696526411920786 :0.0036313136806711555 -to:0.7134747505187988 which:0.10395941138267517 shall:0.07429353892803192 that:0.05367031693458557 may:0.012423073872923851 :0.04217890836298466 -docks:0.5874443650245667 ports:0.11115054041147232 facilities:0.022258024662733078 advantages:0.01946614868938923 islands:0.012737864628434181 :0.24694305658340454 -when:0.23607563972473145 while:0.16602329909801483 because:0.1444447934627533 and:0.08685300499200821 ,:0.06206021085381508 :0.30454305186867714 -and:0.3235975205898285 in:0.0624200738966465 at:0.04071241244673729 I:0.037515152245759964 after:0.03650132939219475 :0.499253511428833 -regular:0.2670844495296478 irregular:0.07801377028226852 various:0.027159342542290688 alarming:0.02402309514582157 certain:0.022917641326785088 :0.5808017011731863 -a:0.8775411248207092 the:0.048362210392951965 another:0.01150846853852272 an:0.005471432581543922 one:0.004297243896871805 :0.05281951976940036 -laws:0.10374323278665543 orders:0.10130031406879425 regulations:0.07144638895988464 instructions:0.04158228635787964 policy:0.030702345073223114 :0.6512254327535629 -not:0.31540602445602417 only:0.19506706297397614 scarcely:0.10066245496273041 never:0.05327128246426582 hardly:0.04315406084060669 :0.2924391143023968 -and:0.23823846876621246 once:0.0996481329202652 least:0.05726650729775429 noon:0.04303259775042534 or:0.03820914030075073 :0.523605152964592 -of:0.8537771701812744 ot:0.04967650771141052 in:0.04128421097993851 ol:0.024282122030854225 for:0.003548190463334322 :0.02743179863318801 -une:0.0677332878112793 .:0.036106713116168976 .:0.01465507224202156 ores:0.011501597240567207 ,:0.011401746422052383 :0.8586015831679106 -for:0.6270595788955688 in:0.18791453540325165 to:0.06280767172574997 of:0.029368046671152115 with:0.028539780527353287 :0.06431038677692413 -that:0.9761959314346313 ,:0.018071824684739113 .:0.0006837316323071718 That:0.0006402161670848727 ;:0.00045647798106074333 :0.003951818100176752 -a:0.22942546010017395 my:0.09866487234830856 the:0.07042134553194046 his:0.03725670650601387 -:0.0288676954805851 :0.5353639200329781 -whose:0.6670442819595337 with:0.13814513385295868 who:0.06290781497955322 having:0.02423693984746933 in:0.022434387356042862 :0.08523144200444221 -no:0.22275438904762268 the:0.08793381601572037 a:0.08474176377058029 an:0.07618613541126251 his:0.02826233208179474 :0.5001215636730194 -the:0.13234761357307434 tho:0.08583629131317139 that:0.06543140113353729 a:0.06164821982383728 ,:0.05070227384567261 :0.6040342003107071 -.:0.9188143014907837 ,:0.021773329004645348 and:0.01311892457306385 ;:0.009108418598771095 where:0.007293492555618286 :0.02989153377711773 -.:0.24392887949943542 hat:0.16971895098686218 head:0.1295568197965622 coat:0.014398057013750076 hats:0.011802206747233868 :0.43059508595615625 -women:0.5967127680778503 wives:0.07285793870687485 men:0.05620572715997696 woman:0.04974482208490372 ladies:0.04524637758731842 :0.17923236638307571 -out:0.4055138826370239 free:0.032918233424425125 worthy:0.021441150456666946 place:0.019903693348169327 capable:0.01683657430112362 :0.5033864658325911 -with:0.4481254518032074 for:0.059193726629018784 near:0.05628388002514839 visiting:0.0288900975137949 to:0.018974417820572853 :0.3885324262082577 -which:0.5175206661224365 that:0.4014412462711334 to:0.03916528448462486 ,:0.01977367326617241 who:0.007998251356184483 :0.0141008784994483 -of:0.6881723403930664 by:0.0387735553085804 to:0.03207535669207573 in:0.030980559065937996 for:0.024658197537064552 :0.18533999100327492 -There:0.9178792834281921 there:0.023061949759721756 There:0.020801125094294548 It:0.01268056035041809 This:0.006801371928304434 :0.018775709439069033 -,:0.3332676589488983 try:0.0529589019715786 stop:0.04411692917346954 take:0.03591805323958397 start:0.024637358263134956 :0.5091010984033346 -due:0.5524929165840149 owing:0.09940534085035324 attributed:0.07491882145404816 attributable:0.07473243027925491 subject:0.022084588184952736 :0.17636590264737606 -traffic:0.010001416318118572 time:0.009588594548404217 travel:0.00888203363865614 daily:0.008046924136579037 air:0.007257950957864523 :0.9562230804003775 -,:0.2644120752811432 aspirations:0.2060251086950302 ambitions:0.09613585472106934 ties:0.02400006726384163 power:0.021664723753929138 :0.3877621702849865 -100:0.03502683714032173 400:0.03461701050400734 1500:0.031227819621562958 500:0.03046945109963417 300:0.030107922852039337 :0.8385509587824345 -the:0.8951818943023682 tho:0.030935874208807945 tha:0.0073571279644966125 his:0.007017643190920353 an:0.006560504902154207 :0.05294695543125272 -out:0.9902030229568481 Out:0.0032886348199099302 OUT:0.002019500359892845 short:0.0008456841460429132 ahead:0.0005688624805770814 :0.0030742952367290854 -over:0.09662921726703644 un:0.03938800096511841 almost:0.027015244588255882 in:0.022943396121263504 honest:0.020851189270615578 :0.7931729517877102 -minutes:0.6275556683540344 inches:0.13178138434886932 seconds:0.05337352305650711 hours:0.03345589339733124 strokes:0.025564974173903465 :0.12826855666935444 -the:0.30150550603866577 that:0.14287467300891876 this:0.13459596037864685 a:0.0826178640127182 seed:0.06258690357208252 :0.2758190929889679 -is:0.7888029217720032 Is:0.0628615990281105 are:0.03184829279780388 was:0.012068125419318676 as:0.009012458845973015 :0.09540660213679075 -public:0.06266239285469055 political:0.03903752937912941 domestic:0.02747875079512596 personal:0.02548280917108059 mere:0.023850057274103165 :0.8214884605258703 -load:0.08177497982978821 portion:0.05527391657233238 pile:0.04884213209152222 fraction:0.04798495024442673 few:0.03318765014410019 :0.7329363711178303 -in:0.2310517132282257 and:0.1383640319108963 In:0.09770170599222183 on:0.09248068183660507 of:0.06409396231174469 :0.3763079047203064 -sent:0.18693125247955322 brought:0.181048184633255 shipped:0.11993838101625443 moved:0.10905620455741882 took:0.07504256814718246 :0.32798340916633606 -general:0.051394786685705185 careful:0.016912583261728287 satisfactory:0.016691556200385094 favorable:0.015140836127102375 logical:0.01474718376994133 :0.8851130539551377 -Hudson:0.022203953936696053 Main:0.02145521342754364 Howard:0.0163729190826416 Clark:0.015253031626343727 Montgomery:0.012962782755494118 :0.9117520991712809 -to:0.09214694052934647 woman:0.04320327192544937 ,:0.03783033788204193 widow:0.023538118228316307 girl:0.021328479051589966 :0.781952852383256 -of:0.8528251051902771 to:0.04293382912874222 for:0.035638805478811264 in:0.016145111992955208 on:0.011410558596253395 :0.041046589612960815 -decide:0.06672191619873047 make:0.04223665967583656 examine:0.0335930772125721 appoint:0.03211896866559982 determine:0.030168835073709488 :0.7951605431735516 -and:0.6693083047866821 but:0.05875189229846001 if:0.03123364970088005 that:0.027318598702549934 all:0.012548811733722687 :0.2008387427777052 -growth:0.3993213474750519 condition:0.12639513611793518 appearance:0.052826888859272 health:0.04386747255921364 shape:0.04341200739145279 :0.3341771475970745 -and:0.6127223372459412 ,:0.2655620574951172 or:0.03489580377936363 but:0.020263493061065674 aud:0.010041426867246628 :0.05651488155126572 -tariff:0.17784170806407928 grain:0.03655453771352768 price:0.03616417199373245 market:0.029306169599294662 basis:0.026748081669211388 :0.6933853309601545 -t:0.07659825682640076 ment:0.053036414086818695 ing:0.022286752238869667 plat:0.01908329501748085 tion:0.017947880551218987 :0.811047401279211 -paper:0.08322036266326904 money:0.062156789004802704 book:0.061139706522226334 ink:0.040138598531484604 subscription:0.035157427191734314 :0.718187116086483 -ferment:0.8468639850616455 boil:0.03087960183620453 dry:0.006447321269661188 pour:0.004383712075650692 stir:0.004071847070008516 :0.10735353268682957 -arms:0.22711493074893951 crosses:0.09331388771533966 heads:0.04701061546802521 shirts:0.03633207827806473 hearts:0.02969333902001381 :0.5665351487696171 -time:0.13786864280700684 moment:0.12358041107654572 will:0.08487346023321152 as:0.06473745405673981 from:0.045552484691143036 :0.5433875471353531 -all:0.06408381462097168 the:0.05688174441456795 other:0.020083120092749596 no:0.017071716487407684 in:0.015831585973501205 :0.8260480184108019 -census:0.3778848350048065 figures:0.18315783143043518 statistics:0.10057481378316879 report:0.06807881593704224 Census:0.048131175339221954 :0.22217252850532532 -.:0.9657054543495178 ,:0.004983499646186829 Creek:0.0011327625252306461 Hill:0.001003968296572566 .:0.000951502239331603 :0.026222812943160534 -in:0.06980237364768982 on:0.054662056267261505 from:0.033760081976652145 to:0.023270152509212494 ts:0.02298862114548683 :0.7955167144536972 -,:0.9237419962882996 ;:0.02204696089029312 ;:0.010753687471151352 that:0.006929012946784496 and:0.006860537454485893 :0.029667804948985577 -not:0.42775481939315796 only:0.18533383309841156 now:0.0926610454916954 been:0.021465102210640907 already:0.017932046204805374 :0.2548531536012888 -which:0.8932452201843262 and:0.07911740243434906 but:0.00784615520387888 as:0.0034167880658060312 whom:0.003029145300388336 :0.013345288811251521 -a:0.5340533256530762 an:0.05342777073383331 high:0.019057653844356537 the:0.01645749993622303 -:0.008588934317231178 :0.36841481551527977 -the:0.9 :0.1 -it:0.1651063710451126 one:0.12868434190750122 them:0.11466202139854431 me:0.09749352186918259 the:0.0630980134010315 :0.4309557303786278 -ing:0.13737215101718903 to:0.04411529377102852 front:0.04236005246639252 on:0.024308912456035614 til:0.0214089248329401 :0.7304346654564142 -said:0.9428371787071228 stated:0.02588437870144844 says:0.004873308353126049 added:0.003507278161123395 that:0.0023787899408489466 :0.020519066136330366 -and:0.7510973215103149 in:0.042021043598651886 but:0.03535069525241852 of:0.024331815540790558 or:0.01527805533260107 :0.13192106876522303 -a:0.024272263050079346 o:0.01759571023285389 i:0.013792223297059536 ie:0.011784384027123451 and:0.00884571298956871 :0.9237097064033151 -,:0.28251025080680847 did:0.12601055204868317 have:0.05434313789010048 do:0.04248516634106636 said:0.037328872829675674 :0.45732202008366585 -the:0.9 :0.1 -.:0.02173803001642227 asonic:0.02080204151570797 asonry:0.017556939274072647 ni:0.01384818460792303 ural:0.012784102000296116 :0.913270702585578 -premises:0.06520261615514755 situated:0.05659285560250282 property:0.042464058846235275 others:0.03855063393712044 described:0.03524303808808327 :0.7619467973709106 -what:0.3494965434074402 and:0.2781480550765991 that:0.034272994846105576 nothing:0.02939186617732048 or:0.026066383346915245 :0.2826241571456194 -is:0.4813048243522644 Is:0.25048568844795227 was:0.05445725470781326 bo:0.019372254610061646 ho:0.01297619566321373 :0.1814037822186947 -,:0.48642081022262573 him:0.06961595267057419 which:0.028646914288401604 ,:0.021085716784000397 and:0.01770872063934803 :0.37652188539505005 -,:0.11674520373344421 down:0.08213008940219879 out:0.07432647049427032 on:0.07226352393627167 back:0.0716082975268364 :0.5829264149069786 -a:0.6828915476799011 the:0.13529707491397858 some:0.05117936432361603 tho:0.03304895758628845 one:0.026982726529240608 :0.07060032896697521 -lic:0.13360576331615448 er:0.0287798959761858 able:0.021844618022441864 fair:0.016327474266290665 prudent:0.010052726604044437 :0.7893895218148828 -a:0.24310296773910522 1:0.0961732491850853 per:0.0803404301404953 one:0.032562725245952606 40:0.029174843803048134 :0.5186457838863134 -accident:0.5173190832138062 collision:0.2691364288330078 crash:0.1132931113243103 wreck:0.06450114399194717 incident:0.007223527412861586 :0.028526705224066973 -they:0.637171745300293 he:0.24751262366771698 ho:0.027234919369220734 it:0.02477928437292576 she:0.006143131759017706 :0.05715829553082585 -the:0.12787920236587524 t:0.05559442937374115 *:0.04799775406718254 all:0.043765269219875336 that:0.02395363710820675 :0.700809707865119 -ment:0.3875889480113983 ing:0.05527887120842934 tion:0.05292317271232605 ter:0.052359797060489655 ty:0.03577001392841339 :0.41607919707894325 -Confederate:0.46423861384391785 rebel:0.045415859669446945 Republican:0.02645488642156124 British:0.02511170320212841 two:0.02332550287246704 :0.4154534339904785 -of:0.16957798600196838 in:0.04593035578727722 from:0.04584851861000061 on:0.04155493155121803 at:0.031083011999726295 :0.6660051960498095 -the:0.3422791659832001 tho:0.247492253780365 its:0.04728313162922859 all:0.013550435192883015 many:0.011033954098820686 :0.33836105931550264 -.:0.4893871247768402 .,:0.14503192901611328 .:0.12969037890434265 ..:0.03673134744167328 ,:0.00840689055621624 :0.19075232930481434 +two:0.25 to be:0.2 to appear:0.16666666666666666 persons:0.14285714285714285 :0.2404761904761905 +was:0.25 had:0.2 would:0.16666666666666666 he:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +He:0.25 Rossman:0.2 he:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +miles,:0.25 hours or:0.2 minutes,:0.16666666666666666 miles or:0.14285714285714285 hours,:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +and at:0.25 at:0.2 on:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +this:0.25 one:0.2 some:0.16666666666666666 :0.3833333333333333 +nearby:0.25 small:0.2 French:0.16666666666666666 :0.3833333333333333 +with:0.25 for:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +have:0.25 want,:0.2 want to:0.16666666666666666 want:0.14285714285714285 :0.2404761904761905 +ers:0.25 s:0.2 states:0.16666666666666666 :0.3833333333333333 +have:0.25 had:0.2 had not:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.25 his:0.2 :0.55 +this:0.25 that:0.2 it:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +think:0.25 conclude:0.2 suggest:0.16666666666666666 :0.3833333333333333 +completed:0.25 finished:0.2 :0.55 +the:0.9 :0.1 +to:0.25 at:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +said:0.25 noted:0.2 understood:0.16666666666666666 emphasized:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +er:0.25 ­:0.2 -:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 come,:0.2 be,:0.16666666666666666 :0.3833333333333333 +from:0.25 in:0.2 of:0.16666666666666666 :0.3833333333333333 +,:0.25 iu:0.2 i:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +engagement:0.25 marriage:0.2 wedding:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +, that:0.25 that:0.2 :0.55 +them:0.25 themselves:0.2 :0.55 +to:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +s 17:0.25 s 20:0.2 s 18:0.16666666666666666 s 19:0.14285714285714285 s 10:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +in:0.25 of:0.2 :0.55 +the:0.9 :0.1 +remain:0.25 still be:0.2 be:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 speaking,:0.2 , so:0.16666666666666666 speaking:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +which:0.25 :0.75 +The:0.25 A:0.2 :0.55 +th.:0.25 d.:0.2 .:0.16666666666666666 -:0.14285714285714285 :0.2404761904761905 +was:0.25 they had:0.2 they:0.16666666666666666 :0.3833333333333333 +with:0.25 to:0.2 to the:0.16666666666666666 :0.3833333333333333 +and sometimes:0.25 or:0.2 and:0.16666666666666666 :0.3833333333333333 +any:0.25 every:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +, they:0.25 ,:0.2 , and:0.16666666666666666 . They:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +in:0.25 of the:0.2 of:0.16666666666666666 :0.3833333333333333 +water:0.25 leak:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 by:0.2 more than:0.16666666666666666 by over:0.14285714285714285 :0.2404761904761905 +among:0.25 of:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +with:0.25 a of:0.2 for:0.16666666666666666 within:0.14285714285714285 in:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +better.:0.25 .:0.2 :0.55 +the:0.9 :0.1 +I:0.25 They:0.2 :0.55 +oo:0.25 a:0.2 f:0.16666666666666666 o:0.14285714285714285 :0.2404761904761905 +'m:0.25 feel:0.2 get:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +and thirty:0.25 and twenty:0.2 and:0.16666666666666666 :0.3833333333333333 +building:0.25 so:0.2 building so:0.16666666666666666 :0.3833333333333333 +,:0.25 mountains,:0.2 land,:0.16666666666666666 wilderness,:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +in:0.25 during:0.2 :0.55 +organized under:0.25 under:0.2 :0.55 +the:0.9 :0.1 +but:0.25 and:0.2 :0.55 +anyone:0.25 no one:0.2 not one:0.16666666666666666 :0.3833333333333333 +ballot:0.25 vote:0.2 :0.55 +hall:0.25 room:0.2 hall,:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +whose:0.25 which:0.2 with its:0.16666666666666666 and:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +The:0.25 The five:0.2 The glass:0.16666666666666666 The iron:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +mure:0.25 less:0.2 more:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +drawn:0.25 :0.75 +one:0.25 man:0.2 person:0.16666666666666666 :0.3833333333333333 +been wounded:0.25 been:0.2 been shot:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +same:0.25 :0.75 +case),:0.25 case,:0.2 case):0.16666666666666666 order):0.14285714285714285 order),:0.125 :0.11547619047619051 +advanced:0.25 effective:0.2 efficient:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +proof:0.25 izing some:0.2 evidence:0.16666666666666666 :0.3833333333333333 +to:0.25 :0.75 +the:0.9 :0.1 +is:0.25 was:0.2 has been:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +':0.25 '':0.2 r:0.16666666666666666 :0.14285714285714285 :0.2404761904761905 +in:0.25 and:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +nations,:0.25 countries:0.2 nations:0.16666666666666666 countries,:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +2:0.25 12:0.2 3:0.16666666666666666 73:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +run from:0.25 run after:0.2 kill:0.16666666666666666 :0.3833333333333333 +broken:0.25 thrown:0.2 given:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +will:0.25 also:0.2 do:0.16666666666666666 will also:0.14285714285714285 :0.2404761904761905 +1898:0.25 1897:0.2 1900:0.16666666666666666 1899:0.14285714285714285 1896:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +visible:0.25 pronounced:0.2 prominent:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +Mr:0.25 Mr.:0.2 the:0.16666666666666666 M.:0.14285714285714285 J:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 :0.75 +head:0.25 lead:0.2 :0.55 +the:0.9 :0.1 +the:0.25 a:0.2 .:0.16666666666666666 :0.3833333333333333 +the:0.25 their:0.2 the two:0.16666666666666666 :0.3833333333333333 +his:0.25 e:0.2 his own:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +William James:0.25 James:0.2 George:0.16666666666666666 John:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +and in:0.25 but:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +can no:0.25 now no:0.2 no:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +,:0.25 .:0.2 :0.55 +the:0.9 :0.1 +if:0.25 where:0.2 , where:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +shall:0.25 Phall:0.2 :0.55 +the:0.9 :0.1 +with:0.25 by:0.2 from:0.16666666666666666 :0.3833333333333333 +the:0.25 up the:0.2 up:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +Prince-:0.25 Prince:0.2 :0.55 +as:0.25 for:0.2 As:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 was:0.2 being:0.16666666666666666 :0.3833333333333333 +must:0.25 should:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +has also:0.25 also:0.2 has:0.16666666666666666 :0.3833333333333333 +Kemp:0.25 he:0.2 :0.55 +the:0.9 :0.1 +He:0.25 Ho:0.2 :0.55 +resources:0.25 riches:0.2 :0.55 +certain:0.25 :0.75 +the:0.9 :0.1 +or:0.25 and:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +force.:0.25 .:0.2 power.:0.16666666666666666 :0.3833333333333333 +run:0.25 race:0.2 game:0.16666666666666666 :0.3833333333333333 +wrong:0.25 latter:0.2 correct:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +C.:0.25 W.:0.2 B.:0.16666666666666666 H.:0.14285714285714285 J.:0.125 :0.11547619047619051 +the:0.9 :0.1 +only has:0.25 ifies:0.2 :0.55 +by:0.25 of:0.2 :0.55 +s of:0.25 y of:0.2 y over:0.16666666666666666 of:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +large:0.25 small:0.2 good:0.16666666666666666 :0.3833333333333333 +by:0.25 in:0.2 :0.55 +the:0.9 :0.1 +::0.25 at:0.2 .:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +who:0.25 Who:0.2 :0.55 +to:0.25 :0.75 +the:0.9 :0.1 +large:0.25 good:0.2 nice:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 i:0.2 :0.16666666666666666 .:0.14285714285714285 :0.2404761904761905 +the:0.25 the long:0.2 :0.55 +for:0.25 who took:0.2 :0.55 +the:0.9 :0.1 +, as:0.25 ,:0.2 as:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +for the:0.25 for:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +The:0.25 This:0.2 A:0.16666666666666666 :0.3833333333333333 +arc:0.25 have:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +Republican:0.25 Democratic:0.2 :0.55 +but:0.25 and:0.2 :0.55 +served as:0.25 was:0.2 remained:0.16666666666666666 became:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +from:0.25 of:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 , that:0.2 that:0.16666666666666666 :0.3833333333333333 +the:0.25 at:0.2 at its:0.16666666666666666 :0.3833333333333333 +suffering,:0.25 suffering:0.2 :0.55 +the:0.9 :0.1 +this:0.25 that:0.2 it:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 a:0.2 in the:0.16666666666666666 :0.3833333333333333 +which:0.25 whom:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 those:0.2 these:0.16666666666666666 its:0.14285714285714285 :0.2404761904761905 +While:0.25 Although:0.2 :0.55 +lack:0.25 decision:0.2 advice:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +great:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 to its:0.2 to producing:0.16666666666666666 to the:0.14285714285714285 :0.2404761904761905 +out:0.25 on:0.2 :0.55 +the:0.9 :0.1 +Portland:0.25 Memphis:0.2 Little Rock:0.16666666666666666 :0.3833333333333333 +revenue:0.25 Revenue:0.2 :0.55 +state.:0.25 country.:0.2 time.:0.16666666666666666 year.:0.14285714285714285 State.:0.125 :0.11547619047619051 +20,000:0.25 10,000:0.2 9,000:0.16666666666666666 14,230:0.14285714285714285 18,000:0.125 :0.11547619047619051 +pride:0.25 heart:0.2 family:0.16666666666666666 soul:0.14285714285714285 roots:0.125 :0.11547619047619051 +in the:0.25 , in:0.2 of the:0.16666666666666666 in:0.14285714285714285 of:0.125 :0.11547619047619051 +the:0.25 [ the:0.2 [the:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 , and:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +swift,:0.25 *:0.2 rapid,:0.16666666666666666 very:0.14285714285714285 quick,:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.25 said:0.2 such:0.16666666666666666 :0.3833333333333333 +as:0.25 as is:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 my:0.2 all:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 *:0.2 .,:0.16666666666666666 .:0.14285714285714285 :0.2404761904761905 +. for:0.25 for:0.2 , for:0.16666666666666666 :0.3833333333333333 +two:0.25 three:0.2 :0.55 +made:0.25 earned:0.2 :0.55 +make it:0.25 make:0.2 be:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +since:0.25 so:0.2 not:0.16666666666666666 m:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 the Federal:0.2 the American:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +payable on:0.25 payable:0.2 payable to:0.16666666666666666 payable,:0.14285714285714285 :0.2404761904761905 +named:0.25 called:0.2 named Francis:0.16666666666666666 :0.3833333333333333 +it:0.25 :0.75 +badges:0.25 signs:0.2 badge:0.16666666666666666 sign:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +out,:0.25 out:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +of:0.25 th of:0.2 :0.55 +the:0.9 :0.1 +6:0.25 :0.75 +the:0.9 :0.1 +the:0.25 :0.75 +to:0.25 , to:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +much:0.25 big of:0.2 big:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +in:0.25 :0.75 +and,:0.25 or,:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +do:0.25 :0.75 +the:0.25 a:0.2 *:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +started:0.25 began:0.2 went:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the highest:0.25 the:0.2 each:0.16666666666666666 a:0.14285714285714285 one:0.125 :0.11547619047619051 +from:0.25 :0.75 +as:0.25 and:0.2 :0.55 +e:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +o come:0.25 arise:0.2 come:0.16666666666666666 suffer:0.14285714285714285 :0.2404761904761905 +had:0.25 has:0.2 :0.55 +the:0.9 :0.1 +waiting:0.25 working:0.2 :0.55 +the:0.9 :0.1 +years:0.25 live years:0.2 live year:0.16666666666666666 life years:0.14285714285714285 year:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +forth:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 in:0.2 at:0.16666666666666666 :0.3833333333333333 +l:0.25 o:0.2 i:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +stand:0.25 position:0.2 stand,:0.16666666666666666 :0.3833333333333333 +years.:0.25 *.:0.2 .:0.16666666666666666 :0.3833333333333333 +about:0.25 of:0.2 of the:0.16666666666666666 more than:0.14285714285714285 :0.2404761904761905 +er:0.25 rider:0.2 maker:0.16666666666666666 r:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +rights:0.25 right:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +had:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +about:0.25 of:0.2 on:0.16666666666666666 :0.3833333333333333 +young:0.25 :0.75 +n:0.25 and:0.2 :0.55 +the:0.9 :0.1 +the tax:0.25 said tax:0.2 tax:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 or:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 a:0.2 this:0.16666666666666666 :0.3833333333333333 +memorial service:0.25 funeral service:0.2 funeral:0.16666666666666666 :0.3833333333333333 +,:0.25 :0.75 +go:0.25 come:0.2 be:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +that would:0.25 to:0.2 that will:0.16666666666666666 :0.3833333333333333 +light:0.25 eye:0.2 lens:0.16666666666666666 eyes:0.14285714285714285 :0.2404761904761905 +which:0.25 d:0.2 and:0.16666666666666666 *:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +before:0.25 even:0.2 :0.55 +a:0.25 in:0.2 :0.55 +Catholic:0.25 Ladies':0.2 Baptist:0.16666666666666666 Methodist:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +lovely:0.25 same:0.2 kind:0.16666666666666666 kind of:0.14285714285714285 very:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +remain:0.25 bo:0.2 be:0.16666666666666666 :0.3833333333333333 +covered,:0.25 destroyed:0.2 destroyed,:0.16666666666666666 covered:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +that was:0.25 by:0.2 on:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +makes just:0.25 can make:0.2 makes:0.16666666666666666 would make:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +for:0.25 d:0.2 t:0.16666666666666666 d for:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +By:0.25 Upon:0.2 After:0.16666666666666666 :0.3833333333333333 +only:0.25 had only:0.2 had:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +s have:0.25 have:0.2 are:0.16666666666666666 :0.3833333333333333 +Those:0.25 The two:0.2 These:0.16666666666666666 The:0.14285714285714285 Both:0.125 :0.11547619047619051 +the:0.9 :0.1 +upon:0.25 on:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +walk:0.25 take:0.2 stretch:0.16666666666666666 :0.3833333333333333 +water had:0.25 water:0.2 waters:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +do:0.25 :0.75 +Turks:0.25 Persians:0.2 Arabs:0.16666666666666666 Egyptians:0.14285714285714285 Greeks:0.125 :0.11547619047619051 +the:0.9 :0.1 +over:0.25 by:0.2 of:0.16666666666666666 :0.3833333333333333 +reject:0.25 refuse:0.2 decline:0.16666666666666666 :0.3833333333333333 +mark:0.25 write:0.2 :0.55 +with:0.25 cattle and:0.2 so:0.16666666666666666 and:0.14285714285714285 :0.2404761904761905 +Town:0.25 City:0.2 town:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +animal:0.25 embryo:0.2 Irom:0.16666666666666666 embryo,:0.14285714285714285 :0.2404761904761905 +the:0.25 all the:0.2 all:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +Your:0.25 that your:0.2 your:0.16666666666666666 :0.3833333333333333 +steel:0.25 iron:0.2 :0.55 +the:0.9 :0.1 +amount:0.25 weight:0.2 length:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +in:0.25 , in:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 and the:0.2 while the:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +sometimes even:0.25 sometimes:0.2 even:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +l:0.25 .:0.2 :0.55 +chance:0.25 job:0.2 :0.55 +be fully:0.25 be:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +City:0.25 town:0.2 city:0.16666666666666666 :0.3833333333333333 +go:0.25 be carried:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +were:0.25 was:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +junction:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +as:0.25 will see:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +that:0.25 :0.75 +the:0.9 :0.1 +t:0.25 t on:0.2 th of:0.16666666666666666 th:0.14285714285714285 of:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +e:0.25 n:0.2 s:0.16666666666666666 a:0.14285714285714285 nt:0.125 :0.11547619047619051 +the:0.9 :0.1 +1:0.25 D:0.2 2:0.16666666666666666 Y:0.14285714285714285 4:0.125 :0.11547619047619051 +the:0.9 :0.1 +which:0.25 whom:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +become:0.25 be very:0.2 be:0.16666666666666666 :0.3833333333333333 +. In:0.25 in:0.2 , in:0.16666666666666666 :0.3833333333333333 +failed to:0.25 to:0.2 , to:0.16666666666666666 :0.3833333333333333 +through:0.25 of:0.2 into:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +it is:0.25 in:0.2 :0.55 +conclusion:0.25 sense:0.2 realization:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +and:0.25 :0.75 +the:0.9 :0.1 +to:0.25 :0.75 +the:0.25 with the:0.2 :0.55 +W:0.25 T:0.2 :0.55 +sometimes even:0.25 even:0.2 :0.55 +the:0.9 :0.1 +height.:0.25 width.:0.2 length.:0.16666666666666666 diameter.:0.14285714285714285 long.:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +which:0.25 that:0.2 :0.55 +Mrs.:0.25 Miss:0.2 :0.55 +And it:0.25 But it:0.2 It:0.16666666666666666 :0.3833333333333333 +each:0.25 per:0.2 a:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +n:0.25 t:0.2 e:0.16666666666666666 i:0.14285714285714285 :0.2404761904761905 +them:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 s:0.2 s,:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +and:0.25 sales in:0.2 sales of:0.16666666666666666 sales and:0.14285714285714285 in:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +company:0.25 company,:0.2 plantation:0.16666666666666666 :0.3833333333333333 +is:0.25 was:0.2 's:0.16666666666666666 :0.3833333333333333 +there:0.25 he:0.2 :0.55 +to:0.25 in:0.2 into:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +wooden:0.25 no:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +general:0.25 local:0.2 private:0.16666666666666666 :0.3833333333333333 +the:0.25 a:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +ly:0.25 ,:0.2 way:0.16666666666666666 train:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +clerk:0.25 chief judge:0.2 judge:0.16666666666666666 :0.3833333333333333 +in:0.25 for:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +a:0.25 t:0.2 e:0.16666666666666666 .:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +important mail:0.25 important:0.2 valuable:0.16666666666666666 important business:0.14285714285714285 :0.2404761904761905 +was:0.25 had:0.2 had been:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +nec-:0.25 nec:0.2 :0.55 +the:0.9 :0.1 +lower end:0.25 end:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +Indian:0.25 " Indian:0.2 :0.55 +speak:0.25 hear:0.2 hear her:0.16666666666666666 :0.3833333333333333 +,:0.25 , and:0.2 s:0.16666666666666666 and:0.14285714285714285 :0.2404761904761905 +this:0.25 the:0.2 this important:0.16666666666666666 :0.3833333333333333 +crowd,:0.25 crowd:0.2 crowd;:0.16666666666666666 :0.3833333333333333 +the:0.25 their:0.2 Their:0.16666666666666666 :0.3833333333333333 +month:0.25 months:0.2 months of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +thing:0.25 good thing:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +in:0.25 into:0.2 :0.55 +us:0.25 me:0.2 :0.55 +at any:0.25 at great:0.2 at:0.16666666666666666 at all:0.14285714285714285 :0.2404761904761905 +about:0.25 :0.75 +Mail:0.25 mail:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +good:0.25 large:0.2 .:0.16666666666666666 :0.3833333333333333 +The:0.25 This:0.2 The Turkish:0.16666666666666666 :0.3833333333333333 +will:0.25 may:0.2 should:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +ened of:0.25 ened by:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +difficulties:0.25 problems:0.2 :0.55 +called:0.25 on the:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +may:0.25 shall:0.2 would:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +me:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +to*:0.25 to:0.2 * to:0.16666666666666666 *:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +theory:0.25 :0.75 +the:0.25 the great:0.2 , the:0.16666666666666666 :0.3833333333333333 +first:0.25 opening:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +stop:0.25 contain:0.2 control:0.16666666666666666 :0.3833333333333333 +in the:0.25 in:0.2 under:0.16666666666666666 under the:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +of:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +felt:0.25 became clear:0.2 was clear:0.16666666666666666 :0.3833333333333333 +with:0.25 from:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +u:0.25 you:0.2 you have:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +any:0.25 his:0.2 his own:0.16666666666666666 such:0.14285714285714285 :0.2404761904761905 +slight:0.25 sudden:0.2 small:0.16666666666666666 :0.3833333333333333 +s of:0.25 for:0.2 of:0.16666666666666666 :0.3833333333333333 +which:0.25 :0.75 +less:0.25 more:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +catalogue.:0.25 own.:0.2 picture.:0.16666666666666666 work.:0.14285714285714285 wall.:0.125 :0.11547619047619051 +the:0.25 , the:0.2 :0.55 +tried:0.25 was trying:0.2 :0.55 +water:0.25 lava:0.2 :0.55 +the:0.9 :0.1 +proposal:0.25 bill:0.2 :0.55 +people:0.25 voters:0.2 men:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +pursuant:0.25 according:0.2 :0.55 +summer months:0.25 summer,:0.2 summer:0.16666666666666666 winter:0.14285714285714285 :0.2404761904761905 +splendor:0.25 splendour:0.2 beauty:0.16666666666666666 ness:0.14285714285714285 :0.2404761904761905 +cockpit:0.25 boat:0.2 trunk:0.16666666666666666 boat.:0.14285714285714285 cabin:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +The:0.25 This:0.2 :0.55 +. The:0.25 of:0.2 of the:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +to:0.25 , to:0.2 :0.55 +>f:0.25 of:0.2 representing:0.16666666666666666 :0.3833333333333333 +in:0.25 :0.75 +William:0.25 James:0.2 George:0.16666666666666666 John:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +of only:0.25 ,:0.2 of about:0.16666666666666666 of:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 my:0.2 this:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +had:0.25 :0.75 +u:0.25 ,:0.2 .:0.16666666666666666 :0.3833333333333333 +in:0.25 school in:0.2 In:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +cycle:0.25 flow:0.2 era:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +new:0.25 college:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +street,:0.25 Street:0.2 streets,:0.16666666666666666 street:0.14285714285714285 Street,:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +on this:0.25 on the:0.2 at:0.16666666666666666 :0.3833333333333333 +out:0.25 :0.75 +joy:0.25 life:0.2 sorrow:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +at once:0.25 in:0.2 :0.55 +in the:0.25 the:0.2 in:0.16666666666666666 :0.3833333333333333 +sing:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +in the:0.25 the:0.2 i the:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +man:0.25 business:0.2 he:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +County:0.25 State:0.2 the State:0.16666666666666666 the state:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +with:0.25 :0.75 +the:0.25 their:0.2 the train:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +April:0.25 May:0.2 June:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +prestige:0.25 power:0.2 influence:0.16666666666666666 :0.3833333333333333 +C.:0.25 A.:0.2 W.:0.16666666666666666 H.:0.14285714285714285 J.:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +if:0.25 but:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +All of:0.25 I think:0.2 All:0.16666666666666666 I believe:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +went:0.25 walked:0.2 :0.55 +The:0.25 Young:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +remain:0.25 be:0.2 :0.55 +the:0.25 a:0.2 t:0.16666666666666666 he:0.14285714285714285 :0.2404761904761905 +to:0.25 of:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +are many:0.25 Are:0.2 are:0.16666666666666666 are several:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +up:0.25 down:0.2 his hands:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.25 this:0.2 :0.55 +the:0.9 :0.1 +rights:0.25 right:0.2 :0.55 +the:0.9 :0.1 +Vista:0.25 Vista Academy:0.2 Vista school:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +cork:0.25 wire:0.2 :0.55 +of Baptist:0.25 s of:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +state:0.25 State:0.2 of them:0.16666666666666666 state for:0.14285714285714285 :0.2404761904761905 +might:0.25 would:0.2 :0.55 +title:0.25 title,:0.2 :0.55 +offered by:0.25 given to:0.2 provided by:0.16666666666666666 given by:0.14285714285714285 found in:0.125 :0.11547619047619051 +the:0.9 :0.1 +Monday:0.25 :0.75 +the:0.9 :0.1 +have been:0.25 been:0.2 be:0.16666666666666666 :0.3833333333333333 +war:0.25 war;:0.2 Revolution,:0.16666666666666666 war,:0.14285714285714285 War,:0.125 :0.11547619047619051 +that:0.25 :0.75 +could:0.25 could not:0.2 did not:0.16666666666666666 :0.3833333333333333 +time:0.25 rest:0.2 :0.55 +the:0.9 :0.1 +votes:0.25 vote:0.2 opinion,:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 , and:0.2 or:0.16666666666666666 and:0.14285714285714285 :0.2404761904761905 +the:0.25 all the:0.2 . The:0.16666666666666666 all:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +E.:0.25 F.:0.2 A.:0.16666666666666666 J.:0.14285714285714285 R.:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +with:0.25 had only:0.2 had:0.16666666666666666 :0.3833333333333333 +soldier:0.25 man:0.2 man,:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +upon him:0.25 forward:0.2 now:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +in:0.25 of:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +.:0.25 -:0.2 :0.55 +,:0.25 Island,:0.2 o,:0.16666666666666666 City,:0.14285714285714285 o:0.125 :0.11547619047619051 +,:0.25 ):0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +play:0.25 :0.75 +the:0.9 :0.1 +Under:0.25 In:0.2 :0.55 +take:0.25 hold:0.2 accept:0.16666666666666666 :0.3833333333333333 +of:0.25 :0.75 +near:0.25 at:0.2 on:0.16666666666666666 :0.3833333333333333 +providing:0.25 providing for:0.2 paying for:0.16666666666666666 doing:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 this:0.2 :0.55 +the:0.9 :0.1 +cages:0.25 cage:0.2 enclosure:0.16666666666666666 :0.3833333333333333 +and the:0.25 and that:0.2 and:0.16666666666666666 :0.3833333333333333 +close:0.25 conclusion:0.2 end:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +among:0.25 in:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.25 the lesser:0.2 the larger:0.16666666666666666 the greater:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +an:0.25 me an:0.2 a:0.16666666666666666 me:0.14285714285714285 :0.2404761904761905 +the:0.25 the new:0.2 his:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +aud:0.25 &:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 the express:0.2 the unanimous:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +which:0.25 that:0.2 :0.55 +t:0.25 ld:0.2 t to:0.16666666666666666 d:0.14285714285714285 th to:0.125 :0.11547619047619051 +midst:0.25 hands:0.2 position:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 said:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +impossible:0.25 not unreasonable:0.2 not reasonable:0.16666666666666666 absurd:0.14285714285714285 unreasonable:0.125 :0.11547619047619051 +the:0.9 :0.1 +to:0.25 of:0.2 on:0.16666666666666666 :0.3833333333333333 +diseased:0.25 the:0.2 these:0.16666666666666666 such:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +There:0.25 But there:0.2 :0.55 +as:0.25 was:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +large:0.25 :0.75 +the:0.9 :0.1 +parated:0.25 en:0.2 ttled:0.16666666666666666 aled:0.14285714285714285 gregated:0.125 :0.11547619047619051 +three:0.25 3:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 all the:0.2 even the:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.25 take:0.2 a:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +at about:0.25 , at:0.2 about:0.16666666666666666 at:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +she:0.25 that she:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +at:0.25 :0.75 +the:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +is:0.25 happens:0.2 :0.55 +we add:0.25 bring:0.2 we take:0.16666666666666666 we bring:0.14285714285714285 :0.2404761904761905 +The:0.25 2 The:0.2 As the:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +—not:0.25 not:0.2 , not:0.16666666666666666 . Not:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +estate:0.25 house:0.2 :0.55 +the:0.9 :0.1 +, and:0.25 , but:0.2 and:0.16666666666666666 :0.3833333333333333 +made:0.25 even:0.2 :0.55 +the:0.25 my:0.2 a:0.16666666666666666 t:0.14285714285714285 :0.2404761904761905 +as:0.25 but:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.25 all the:0.2 doing the:0.16666666666666666 :0.3833333333333333 +this:0.25 the:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +made up:0.25 comprised:0.2 composed:0.16666666666666666 :0.3833333333333333 +are:0.25 :0.75 +the:0.9 :0.1 +soon be:0.25 have:0.2 be:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +to be:0.25 been:0.2 not been:0.16666666666666666 :0.3833333333333333 +other officer:0.25 officer:0.2 officer,:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +(to:0.25 to:0.2 :0.55 +,:0.25 .:0.2 :0.55 +the:0.9 :0.1 +necessity,:0.25 necessity:0.2 must,:0.16666666666666666 must:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +it:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +our sovereignty:0.25 democracy:0.2 sovereignty:0.16666666666666666 our nation:0.14285714285714285 :0.2404761904761905 +,:0.25 to:0.2 in:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 the terrible:0.2 the horrible:0.16666666666666666 of the:0.14285714285714285 :0.2404761904761905 +second story:0.25 first story:0.2 house:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.25 as the:0.2 The:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +The:0.25 » The:0.2 :0.55 +breeze:0.25 flames:0.2 fire:0.16666666666666666 breezes:0.14285714285714285 wind:0.125 :0.11547619047619051 +give:0.25 give to:0.2 :0.55 +to:0.25 and:0.2 :0.55 +Robinson,:0.25 Silver,:0.2 Robinson.:0.16666666666666666 Robinson:0.14285714285714285 Robinson and:0.125 :0.11547619047619051 +The:0.25 The first:0.2 The last:0.16666666666666666 This:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +ot:0.25 od:0.2 os:0.16666666666666666 o:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +to:0.25 Till to:0.2 , to:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +ground:0.25 grounds:0.2 basis:0.16666666666666666 :0.3833333333333333 +case:0.25 absence:0.2 event:0.16666666666666666 :0.3833333333333333 +by:0.25 :0.75 +gospel”:0.25 Lord,”:0.2 Lord”:0.16666666666666666 gospel,”:0.14285714285714285 ministry,”:0.125 :0.11547619047619051 +thing the:0.25 the:0.2 a:0.16666666666666666 that the:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +rights:0.25 right:0.2 :0.55 +the:0.9 :0.1 +would:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +saying to:0.25 asking:0.2 :0.55 +the:0.25 about the:0.2 :0.55 +ing:0.25 :0.75 +the:0.9 :0.1 +to allow:0.25 of:0.2 :0.55 +the:0.25 the regular:0.2 the summer:0.16666666666666666 the winter:0.14285714285714285 :0.2404761904761905 +hands:0.25 heart:0.2 labors:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +in:0.25 at:0.2 now in:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +were:0.25 :0.75 +the:0.9 :0.1 +The nations:0.25 We:0.2 :0.55 +the:0.9 :0.1 +shall:0.25 may:0.2 :0.55 +the:0.25 Federal:0.2 all:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +have been:0.25 not be:0.2 be:0.16666666666666666 :0.3833333333333333 +,:0.25 &:0.2 and:0.16666666666666666 :0.3833333333333333 +school:0.25 ':0.2 e school:0.16666666666666666 :0.3833333333333333 +to be:0.25 so:0.2 not:0.16666666666666666 :0.3833333333333333 +never at:0.25 at:0.2 not at:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +,:0.25 d,:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +slavery:0.25 his conduct:0.2 it:0.16666666666666666 he:0.14285714285714285 :0.2404761904761905 +far:0.25 :0.75 +number:0.25 group:0.2 :0.55 +the:0.9 :0.1 +,:0.25 and her:0.2 , the:0.16666666666666666 :0.3833333333333333 +higher in:0.25 higher on:0.2 wider than:0.16666666666666666 higher than:0.14285714285714285 in:0.125 :0.11547619047619051 +but:0.25 and:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 that the:0.2 :0.55 +the:0.9 :0.1 +I am:0.25 is:0.2 I:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +two:0.25 and last:0.2 :0.55 +the:0.9 :0.1 +within:0.25 in:0.2 outside:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +inspect:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +have:0.25 may have:0.2 has:0.16666666666666666 :0.3833333333333333 +A school:0.25 It:0.2 The school:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +can:0.25 :0.75 +the:0.9 :0.1 +the:0.25 :0.2 our:0.16666666666666666 :0.3833333333333333 +perished:0.25 died:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +But:0.25 However,:0.2 :0.55 +which:0.25 , which:0.2 that:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +Avenue:0.25 street:0.2 avenue:0.16666666666666666 :0.3833333333333333 +of his:0.25 of the:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.25 an:0.2 even an:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +give:0.25 take:0.2 pass:0.16666666666666666 throw:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +n:0.25 done:0.2 d done:0.16666666666666666 n done:0.14285714285714285 :0.2404761904761905 +the:0.25 this:0.2 an:0.16666666666666666 :0.3833333333333333 +remain:0.25 are:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +portion:0.25 part:0.2 :0.55 +state:0.25 county:0.2 :0.55 +Government:0.25 Bank:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +X:0.25 the:0.2 a:0.16666666666666666 the rate:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +part:0.25 side:0.2 end:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +go:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +appears:0.25 is important:0.2 seems:0.16666666666666666 :0.3833333333333333 +family:0.25 body:0.2 ness:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +themselves in:0.25 in:0.2 within:0.16666666666666666 :0.3833333333333333 +the:0.25 :0.75 +never:0.25 not:0.2 :0.55 +without:0.25 without any:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +for:0.25 of:0.2 :0.55 +the:0.25 his:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +d:0.25 ment:0.2 -:0.16666666666666666 :0.3833333333333333 +present:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +any cause:0.25 any cure:0.2 the cause:0.16666666666666666 cure:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +ways:0.25 diseases that:0.2 diseases:0.16666666666666666 many diseases:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +or:0.25 and:0.2 :0.55 +570:0.25 600:0.2 :0.55 +the:0.9 :0.1 +off:0.25 way:0.2 away:0.16666666666666666 :0.3833333333333333 +with:0.25 in:0.2 :0.55 +Daily:0.25 Morning:0.2 :0.55 +the:0.9 :0.1 +with:0.25 and:0.2 of:0.16666666666666666 :0.3833333333333333 +cano:0.25 cane:0.2 corn:0.16666666666666666 :0.3833333333333333 +nobody:0.25 no one:0.2 not one:0.16666666666666666 :0.3833333333333333 +heard:0.25 :0.75 +the:0.9 :0.1 +, as:0.25 so:0.2 as:0.16666666666666666 , so:0.14285714285714285 :0.2404761904761905 +A:0.25 The:0.2 A very:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +from:0.25 into:0.2 :0.55 +the:0.9 :0.1 +the:0.25 a:0.2 no:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +with:0.25 in:0.2 of:0.16666666666666666 :0.3833333333333333 +,:0.25 that:0.2 that,:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +r:0.25 fine:0.2 tooth:0.16666666666666666 -:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +ious:0.25 tious:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +was:0.25 waa:0.2 :0.55 +by:0.25 from:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +, and:0.25 and several:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +who:0.25 now:0.2 :0.55 +s the:0.25 for the:0.2 for:0.16666666666666666 for tine:0.14285714285714285 ing:0.125 :0.11547619047619051 +brought almost:0.25 brought:0.2 :0.55 +see in:0.25 see:0.2 find:0.16666666666666666 see among:0.14285714285714285 :0.2404761904761905 +" A:0.25 "a:0.2 "No:0.16666666666666666 "The:0.14285714285714285 "A:0.125 :0.11547619047619051 +the:0.9 :0.1 +by:0.25 in:0.2 on:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +in:0.25 into:0.2 :0.55 +needs:0.25 best interests:0.2 interest:0.16666666666666666 wishes:0.14285714285714285 interests:0.125 :0.11547619047619051 +physician:0.25 medical:0.2 medicine:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +one:0.25 some:0.2 many:0.16666666666666666 :0.3833333333333333 +in:0.25 :0.75 +us,:0.25 ourselves,:0.2 us:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +He:0.25 Ho:0.2 :0.55 +the same:0.25 compete:0.2 be done:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +I:0.25 we:0.2 i:0.16666666666666666 :0.3833333333333333 +was:0.25 had been:0.2 :0.55 +year:0.25 long period:0.2 period:0.16666666666666666 long day:0.14285714285714285 :0.2404761904761905 +intermediate:0.25 important:0.2 :0.55 +in:0.25 :0.75 +moment:0.25 time:0.2 while:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +books.:0.25 buildings.:0.2 furniture.:0.16666666666666666 materials.:0.14285714285714285 equipment.:0.125 :0.11547619047619051 +the:0.25 a:0.2 th:0.16666666666666666 draw and:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +and knew:0.25 about:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +in:0.25 for:0.2 :0.55 +t.:0.25 .:0.2 s.:0.16666666666666666 :0.3833333333333333 +the:0.25 a:0.2 with the:0.16666666666666666 :0.3833333333333333 +have:0.25 had:0.2 :0.55 +to:0.25 try to:0.2 :0.55 +have:0.25 has:0.2 :0.55 +the:0.9 :0.1 +l:0.25 d:0.2 e:0.16666666666666666 r:0.14285714285714285 :0.2404761904761905 +year:0.25 month:0.2 months:0.16666666666666666 period:0.14285714285714285 :0.2404761904761905 +give:0.25 hand:0.2 take:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +A:0.25 A young:0.2 :0.55 +at my:0.25 my:0.2 on my:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +bright,:0.25 bright:0.2 :0.55 +president:0.25 superintendent:0.2 :0.55 +patterns:0.25 motifs:0.2 designs:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +for:0.25 of:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +ous:0.25 ble:0.2 ness:0.16666666666666666 ful:0.14285714285714285 ing:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 all the:0.2 that the:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the entire:0.25 this whole:0.2 the:0.16666666666666666 the whole:0.14285714285714285 this:0.125 :0.11547619047619051 +following:0.25 taking:0.2 :0.55 +Many:0.25 Most:0.2 Some:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +er:0.25 ers:0.2 growers:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 paid to:0.2 paid by:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +build:0.25 construct:0.2 :0.55 +letter of:0.25 words:0.2 letter:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +de:0.25 de Beau:0.2 Van der:0.16666666666666666 De:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.25 the southern:0.2 the far:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 State:0.2 old:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +provisions:0.25 items;:0.2 items:0.16666666666666666 provisions,:0.14285714285714285 items,:0.125 :0.11547619047619051 +the:0.25 nearby:0.2 our:0.16666666666666666 :0.3833333333333333 +effective:0.25 approval:0.2 final:0.16666666666666666 adoption:0.14285714285714285 :0.2404761904761905 +among:0.25 of:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +*:0.25 of:0.2 and:0.16666666666666666 -:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 at:0.2 :0.55 +other:0.25 any other:0.2 :0.55 +her own:0.25 an:0.2 her:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +Church in:0.25 in:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +81:0.25 82:0.2 85:0.16666666666666666 80:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +for:0.25 , for:0.2 , with:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +with:0.25 about:0.2 with all:0.16666666666666666 :0.3833333333333333 +drinking even:0.25 even:0.2 drinking:0.16666666666666666 :0.3833333333333333 +Since:0.25 If:0.2 In case:0.16666666666666666 So that:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +not:0.25 :0.75 +opportunities:0.25 career path:0.2 career:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +on the:0.25 bearing:0.2 on:0.16666666666666666 :0.3833333333333333 +all:0.25 many:0.2 :0.55 +the:0.9 :0.1 +the:0.25 :0.75 +ii:0.25 t:0.2 i:0.16666666666666666 :0.3833333333333333 +the:0.25 a:0.2 t:0.16666666666666666 :0.3833333333333333 +this morning:0.25 today:0.2 yesterday:0.16666666666666666 :0.3833333333333333 +are made:0.25 were made:0.2 are:0.16666666666666666 :0.3833333333333333 +investigations:0.25 pages:0.2 cases:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +further:0.25 also:0.2 :0.55 +the:0.9 :0.1 +signed:0.25 dated:0.2 signed on:0.16666666666666666 :0.3833333333333333 +s of:0.25 in:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 that:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +ing of:0.25 of:0.2 on:0.16666666666666666 :0.3833333333333333 +of:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 some:0.2 clear and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +;:0.25 ,:0.2 :0.55 +the:0.9 :0.1 +New:0.25 :0.75 +cross:0.25 gap:0.2 small hole:0.16666666666666666 small gap:0.14285714285714285 :0.2404761904761905 +left in:0.25 faced with:0.2 put in:0.16666666666666666 in:0.14285714285714285 :0.2404761904761905 +also:0.25 immediately:0.2 then:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +companies:0.25 agents:0.2 companies,:0.16666666666666666 agents,:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +Montreal:0.25 Toronto:0.2 :0.55 +t:0.25 it:0.2 t it:0.16666666666666666 th which:0.14285714285714285 e it:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +midst:0.25 process:0.2 stage:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.25 his:0.2 the whole:0.16666666666666666 the gambling:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +s of:0.25 of the:0.2 of:0.16666666666666666 :0.3833333333333333 +with:0.25 to:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +Brown:0.25 Ike:0.2 the dealer:0.16666666666666666 he:0.14285714285714285 :0.2404761904761905 +and:0.25 :0.75 +take this:0.25 go:0.2 take it:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.25 the true:0.2 the exact:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 in the:0.2 by the:0.16666666666666666 to the:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +teachers,:0.25 girls,:0.2 women,:0.16666666666666666 ladies,:0.14285714285714285 people,:0.125 :0.11547619047619051 +the:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 and the:0.2 or the:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +as:0.25 than:0.2 :0.55 +s that:0.25 that:0.2 :0.55 +.:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +terms:0.25 conditions:0.2 :0.55 +faithful:0.25 still true:0.2 true:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +must be:0.25 is:0.2 is,:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +already:0.25 also:0.2 :0.55 +The:0.25 Let the:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +Thomas:0.25 William:0.2 John:0.16666666666666666 :0.3833333333333333 +.:0.25 r.:0.2 :0.55 +with:0.25 as:0.2 by:0.16666666666666666 :0.3833333333333333 +, of:0.25 s of:0.2 of:0.16666666666666666 :0.3833333333333333 +I:0.25 he:0.2 :0.55 +boat:0.25 :0.75 +the:0.9 :0.1 +any:0.25 they:0.2 :0.55 +time at:0.25 time in:0.2 time:0.16666666666666666 moment at:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +any:0.25 all:0.2 :0.55 +the:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +market:0.25 exchange:0.2 market has:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +in:0.25 :0.75 +lo:0.25 to:0.2 :0.55 +the:0.9 :0.1 +in:0.25 and spent:0.2 , leaving:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +few:0.25 couple of:0.2 :0.55 +tracted:0.25 :0.75 +to:0.25 by:0.2 between:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +come:0.25 arrive:0.2 :0.55 +the:0.9 :0.1 +the:0.25 t the:0.2 by the:0.16666666666666666 :0.3833333333333333 +Now:0.25 Then:0.2 And:0.16666666666666666 :0.3833333333333333 +with:0.25 to:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +e:0.25 ding:0.2 d:0.16666666666666666 of:0.14285714285714285 e of:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 :0.75 +the:0.9 :0.1 +in:0.25 of:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +suitable:0.25 suited:0.2 qualified:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +nose:0.25 lips:0.2 mouth:0.16666666666666666 face:0.14285714285714285 lips were:0.125 :0.11547619047619051 +the:0.9 :0.1 +1:0.25 I:0.2 :0.55 +launch an:0.25 escape:0.2 come under:0.16666666666666666 make:0.14285714285714285 make an:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 and to:0.2 which shall:0.16666666666666666 :0.3833333333333333 +shot.:0.25 chance.:0.2 fire.:0.16666666666666666 blow.:0.14285714285714285 discharge.:0.125 :0.11547619047619051 +inches:0.25 feet:0.2 :0.55 +the:0.9 :0.1 +cities:0.25 counties:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +K:0.25 R:0.2 :0.55 +rain:0.25 :0.75 +the:0.9 :0.1 +ered:0.25 ry,:0.2 ries,:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +and the:0.25 ally the:0.2 and:0.16666666666666666 of the:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +in:0.25 only in:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +tell:0.25 :0.75 +Whatever:0.25 Let:0.2 :0.55 +making:0.25 forming:0.2 his:0.16666666666666666 the:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +worth:0.25 *:0.2 :0.55 +s in:0.25 in:0.2 ly in:0.16666666666666666 :0.3833333333333333 +when:0.25 if:0.2 for:0.16666666666666666 because:0.14285714285714285 :0.2404761904761905 +at:0.25 in:0.2 of the:0.16666666666666666 of:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 this:0.2 :0.55 +s of:0.25 in:0.2 of:0.16666666666666666 :0.3833333333333333 +given,:0.25 ,:0.2 written,:0.16666666666666666 :0.3833333333333333 +and that:0.25 but:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +two:0.25 three:0.2 :0.55 +the:0.9 :0.1 +one who:0.25 who:0.2 who always:0.16666666666666666 :0.3833333333333333 +the:0.25 then the:0.2 The:0.16666666666666666 :0.3833333333333333 +and take:0.25 taking:0.2 take:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +terrible:0.25 very:0.2 :0.55 +l:0.25 -:0.2 :0.55 +the:0.9 :0.1 +horse:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 his:0.2 :0.55 +mate:0.25 postman:0.2 driver:0.16666666666666666 :0.3833333333333333 +large:0.25 small:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +was burning:0.25 was:0.2 burned:0.16666666666666666 :0.3833333333333333 +of these:0.25 of such:0.2 of those:0.16666666666666666 of the:0.14285714285714285 of:0.125 :0.11547619047619051 +h:0.25 s:0.2 f:0.16666666666666666 m:0.14285714285714285 g:0.125 :0.11547619047619051 +the:0.9 :0.1 +pieces:0.25 :0.75 +process:0.25 move:0.2 vote:0.16666666666666666 plan:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +s of:0.25 of:0.2 :0.55 +also be:0.25 be:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +their:0.25 to:0.2 doing:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +human:0.25 :0.75 +the:0.9 :0.1 +main:0.25 entire:0.2 :0.55 +to:0.25 a:0.2 t:0.16666666666666666 :0.3833333333333333 +United:0.25 :0.75 +can:0.25 cannot:0.2 has to:0.16666666666666666 must:0.14285714285714285 will:0.125 :0.11547619047619051 +the:0.9 :0.1 +heat:0.25 heat loss:0.2 energy:0.16666666666666666 :0.3833333333333333 +one to:0.25 to:0.2 them to:0.16666666666666666 them:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +never:0.25 not:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +in:0.25 at:0.2 near:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +then:0.25 than:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +less:0.25 more:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +to go:0.25 to come:0.2 ever:0.16666666666666666 :0.3833333333333333 +accepted:0.25 rejected:0.2 :0.55 +meet:0.25 see:0.2 greet:0.16666666666666666 :0.3833333333333333 +the:0.25 their:0.2 its:0.16666666666666666 :0.3833333333333333 +to fellow:0.25 to:0.2 to all:0.16666666666666666 to other:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +have:0.25 :0.75 +the:0.9 :0.1 +to:0.25 :0.75 +church:0.25 bridge:0.2 bridge,:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +with:0.25 in:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.25 a:0.2 his:0.16666666666666666 :0.3833333333333333 +merged:0.25 divided:0.2 united:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +s of:0.25 of:0.2 :0.55 +upon:0.25 , use:0.2 into:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +minute:0.25 second!:0.2 second:0.16666666666666666 minute!:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +they were:0.25 kept:0.2 had been:0.16666666666666666 kept them:0.14285714285714285 :0.2404761904761905 +for:0.25 in:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +rain:0.25 ice:0.2 darkness:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +meeting:0.25 meet:0.2 :0.55 +the:0.25 his:0.2 :0.55 +the:0.25 :0.75 +risk:0.25 danger:0.2 possibility:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +never:0.25 not:0.2 :0.55 +the:0.9 :0.1 +electric:0.25 Electric:0.2 :0.55 +far.:0.25 much.:0.2 .:0.16666666666666666 :0.3833333333333333 +by:0.25 in:0.2 :0.55 +special committee:0.25 committee:0.2 :0.55 +l:0.25 11 :0.2 i:0.16666666666666666 I:0.14285714285714285 a:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 :0.75 +" That:0.25 That:0.2 ' That:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +I:0.25 i:0.2 :0.55 +the:0.9 :0.1 +page*:0.25 pages*:0.2 pagea:0.16666666666666666 page:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +"and:0.25 lor:0.2 and:0.16666666666666666 :0.3833333333333333 +out and:0.25 and:0.2 :0.55 +the:0.9 :0.1 +must:0.25 should:0.2 would:0.16666666666666666 :0.3833333333333333 +circumstances:0.25 conditions:0.2 :0.55 +to:0.25 on:0.2 into:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +listening:0.25 speaking:0.2 giving:0.16666666666666666 talking:0.14285714285714285 :0.2404761904761905 +the:0.25 the Indian:0.2 the Native:0.16666666666666666 the native:0.14285714285714285 :0.2404761904761905 +and for:0.25 for:0.2 :0.55 +the:0.9 :0.1 +back:0.25 again:0.2 buried:0.16666666666666666 lying:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +The:0.25 :0.75 +a of:0.25 of all:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +statement.:0.25 motion.:0.2 bill.:0.16666666666666666 measure.:0.14285714285714285 proposal.:0.125 :0.11547619047619051 +the:0.9 :0.1 +e:0.25 ot:0.2 w:0.16666666666666666 b:0.14285714285714285 o:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +extraordinary:0.25 excellent:0.2 :0.55 +independent of:0.25 not of:0.2 not:0.16666666666666666 of:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +The:0.25 This:0.2 :0.55 +entertainment:0.25 music:0.2 musical:0.16666666666666666 cultural:0.14285714285714285 :0.2404761904761905 +I know:0.25 to:0.2 :0.55 +confidence:0.25 conviction:0.2 :0.55 +and equitable:0.25 and reasonable:0.2 and:0.16666666666666666 and fair:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +of:0.25 :0.75 +the:0.9 :0.1 +ordinary:0.25 of these:0.2 young:0.16666666666666666 , many:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +is:0.25 Is:0.2 :0.55 +not:0.25 :0.75 +,:0.25 t,:0.2 r,:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +great:0.25 good:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +fore:0.25 re:0.2 for:0.16666666666666666 :0.3833333333333333 +the:0.25 his:0.2 a:0.16666666666666666 :0.3833333333333333 +cloudy:0.25 clear:0.2 sunny:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +other:0.25 others:0.2 :0.55 +distance of:0.25 d:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.25 an:0.2 the sole:0.16666666666666666 :0.3833333333333333 +Greek:0.25 small:0.2 :0.55 +the:0.9 :0.1 +such insurance:0.25 any insurance:0.2 any such:0.16666666666666666 such:0.14285714285714285 :0.2404761904761905 +house.:0.25 eyes.:0.2 ears.:0.16666666666666666 ears:0.14285714285714285 gate.:0.125 :0.11547619047619051 +the:0.9 :0.1 +part:0.25 section:0.2 :0.55 +who:0.25 , who:0.2 that:0.16666666666666666 :0.3833333333333333 +let:0.25 with:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +May:0.25 June:0.2 September:0.16666666666666666 August:0.14285714285714285 October:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.25 his:0.2 her:0.16666666666666666 :0.3833333333333333 +rd:0.25 d:0.2 t:0.16666666666666666 r:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +times:0.25 day:0.2 history:0.16666666666666666 :0.3833333333333333 +cruel:0.25 horrible:0.2 :0.55 +come:0.25 get it:0.2 get this:0.16666666666666666 get:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +be very:0.25 be:0.2 :0.55 +, of:0.25 from:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +authorization:0.25 direction:0.2 approval:0.16666666666666666 permission:0.14285714285714285 :0.2404761904761905 +up his:0.25 his:0.2 :0.55 +. It:0.25 , and:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +property:0.25 privileges:0.2 freedoms:0.16666666666666666 liberty:0.14285714285714285 :0.2404761904761905 +to:0.25 :0.75 +the:0.25 its:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 a:0.2 :0.55 +Kentucky:0.25 College:0.2 Community College:0.16666666666666666 University:0.14285714285714285 Kentucky University:0.125 :0.11547619047619051 +the:0.9 :0.1 +arc:0.25 had:0.2 a:0.16666666666666666 was:0.14285714285714285 has:0.125 :0.11547619047619051 +the:0.9 :0.1 +In:0.25 :0.75 +the:0.25 some:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +issued:0.25 executed:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +of free:0.25 of:0.2 :0.55 +easy,:0.25 simple,:0.2 clear,:0.16666666666666666 clear:0.14285714285714285 plain,:0.125 :0.11547619047619051 +the:0.9 :0.1 +plans:0.25 decided:0.2 agreed:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +we:0.25 people:0.2 the public:0.16666666666666666 they:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +ward from:0.25 from:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +his real:0.25 his:0.2 :0.55 +his:0.25 that:0.2 its:0.16666666666666666 :0.3833333333333333 +the:0.25 a:0.2 this:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +do:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +204:0.25 202:0.2 203:0.16666666666666666 201:0.14285714285714285 401:0.125 :0.11547619047619051 +Are:0.25 are:0.2 aro:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +where upon:0.25 but:0.2 and:0.16666666666666666 :0.3833333333333333 +possible:0.25 said:0.2 true:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +question,:0.25 question:0.2 inquiry,:0.16666666666666666 letter,:0.14285714285714285 questions,:0.125 :0.11547619047619051 +the:0.9 :0.1 +cost:0.25 :0.75 +she:0.25 they:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 the last:0.2 the first:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +gave:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +dangers:0.25 chances:0.2 odds:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +laws in:0.25 s in:0.2 in:0.16666666666666666 s into:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +having been:0.25 being so:0.2 being:0.16666666666666666 having:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +and by:0.25 or by:0.2 or:0.16666666666666666 and:0.14285714285714285 :0.2404761904761905 +the:0.25 this:0.2 the German:0.16666666666666666 :0.3833333333333333 +e:0.25 e defense:0.2 e government:0.16666666666666666 e evidence:0.14285714285714285 e prosecution:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +;:0.25 he:0.2 :0.55 +the:0.9 :0.1 +all:0.25 very:0.2 :0.55 +the:0.9 :0.1 +or:0.25 and:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +vention:0.25 gress:0.2 :0.55 +west,:0.25 north,:0.2 south:0.16666666666666666 east,:0.14285714285714285 south,:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +movement:0.25 maintenance:0.2 movements:0.16666666666666666 :0.3833333333333333 +or:0.25 and:0.2 :0.55 +William:0.25 John:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +said,:0.25 done:0.2 said:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +projects:0.25 plans:0.2 schemes:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +Third:0.25 :0.75 +fear:0.25 presence:0.2 :0.55 +is quite:0.25 is:0.2 was:0.16666666666666666 is not:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +family was:0.25 body was:0.2 parents were:0.16666666666666666 parents:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +m:0.25 miles:0.2 :0.55 +the:0.9 :0.1 +have:0.25 had:0.2 :0.55 +of all:0.25 of our:0.2 of:0.16666666666666666 of the:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +from:0.25 of:0.2 :0.55 +to financially:0.25 aud:0.2 to:0.16666666666666666 :0.3833333333333333 +not have:0.25 have:0.2 not:0.16666666666666666 not be:0.14285714285714285 not find:0.125 :0.11547619047619051 +the:0.9 :0.1 +in:0.25 :0.75 +will:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +again:0.25 :0.75 +tooth:0.25 root:0.2 :0.55 +years:0.25 time:0.2 :0.55 +the:0.9 :0.1 +, and:0.25 s of:0.2 and:0.16666666666666666 s and:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +cure:0.25 cause:0.2 any cure:0.16666666666666666 the cause:0.14285714285714285 any cause:0.125 :0.11547619047619051 +the:0.9 :0.1 +by:0.25 :0.75 +from our:0.25 from:0.2 of:0.16666666666666666 of our:0.14285714285714285 :0.2404761904761905 +in:0.25 into:0.2 :0.55 +the:0.9 :0.1 +the:0.25 :0.75 +the:0.9 :0.1 +the:0.25 :0.75 +the:0.9 :0.1 +Old:0.25 old:0.2 elderly:0.16666666666666666 :0.3833333333333333 +which was:0.25 that was:0.2 ever:0.16666666666666666 to be:0.14285714285714285 I have:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +customs:0.25 culture:0.2 lifestyles:0.16666666666666666 habits:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +The:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 and worse:0.2 than:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +Her:0.25 her:0.2 :0.55 +east:0.25 west:0.2 :0.55 +so far:0.25 yet:0.2 ever:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +is being:0.25 was:0.2 has been:0.16666666666666666 was then:0.14285714285714285 :0.2404761904761905 +finest:0.25 best:0.2 most:0.16666666666666666 :0.3833333333333333 +;:0.25 , and:0.2 ,:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +, rather:0.25 rather:0.2 :0.55 +on:0.25 of:0.2 into:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +in:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +county:0.25 future:0.2 city:0.16666666666666666 :0.3833333333333333 +achieved:0.25 made:0.2 obtained:0.16666666666666666 :0.3833333333333333 +all her:0.25 her:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +in:0.25 into:0.2 :0.55 +pay:0.25 wait:0.2 ask:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +there:0.25 satisfied:0.2 :0.55 +the:0.9 :0.1 +done:0.25 performed:0.2 done.:0.16666666666666666 carried out:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +been:0.25 not:0.2 :0.55 +the:0.9 :0.1 +Our country:0.25 It:0.2 The hospital:0.16666666666666666 The army:0.14285714285714285 The camp:0.125 :0.11547619047619051 +one:0.25 his:0.2 a:0.16666666666666666 :0.3833333333333333 +is:0.25 has been:0.2 is now:0.16666666666666666 is still:0.14285714285714285 :0.2404761904761905 +Street::0.25 street;:0.2 street,:0.16666666666666666 street and:0.14285714285714285 street::0.125 :0.11547619047619051 +the:0.9 :0.1 +ar:0.25 :0.75 +,:0.25 it,:0.2 the:0.16666666666666666 sincerely:0.14285714285714285 a:0.125 :0.11547619047619051 +the:0.9 :0.1 +been widely:0.25 been:0.2 been readily:0.16666666666666666 :0.3833333333333333 +corners:0.25 corner:0.2 :0.55 +two:0.25 n:0.2 great:0.16666666666666666 who are:0.14285714285714285 of the:0.125 :0.11547619047619051 +Measure:0.25 policy:0.2 measure:0.16666666666666666 Policy:0.14285714285714285 :0.2404761904761905 +idle:0.25 :0.75 +the:0.9 :0.1 +These:0.25 The:0.2 The January:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +, and:0.25 and they:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +At:0.25 at:0.2 on:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +basis:0.25 :0.75 +the:0.9 :0.1 +all their:0.25 their:0.2 style and:0.16666666666666666 their own:0.14285714285714285 its:0.125 :0.11547619047619051 +had:0.25 :0.75 +the rear:0.25 the:0.2 the back:0.16666666666666666 each:0.14285714285714285 the front:0.125 :0.11547619047619051 +all:0.25 :0.75 +the:0.9 :0.1 +of:0.25 :0.75 +the:0.25 on the:0.2 along the:0.16666666666666666 :0.3833333333333333 +had:0.25 has:0.2 :0.55 +the:0.9 :0.1 +J:0.25 :0.75 +to:0.25 in:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +people:0.25 women:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 and:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +set forth:0.25 defined:0.2 provided:0.16666666666666666 provided for:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.25 their:0.2 the extravagant:0.16666666666666666 the lavish:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +rights:0.25 s rights:0.2 right:0.16666666666666666 :0.3833333333333333 +without:0.25 for:0.2 without any:0.16666666666666666 to seek:0.14285714285714285 :0.2404761904761905 +component:0.25 part:0.2 element:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +we:0.25 she was:0.2 she would:0.16666666666666666 she:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +ed:0.25 s:0.2 .:0.16666666666666666 s and:0.14285714285714285 o:0.125 :0.11547619047619051 +the assessment:0.25 the:0.2 assessment:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +Carolina:0.25 :0.75 +to:0.25 in:0.2 for:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +,:0.25 and:0.2 with:0.16666666666666666 a:0.14285714285714285 , the:0.125 :0.11547619047619051 +,:0.25 a:0.2 in:0.16666666666666666 e:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +water in:0.25 sugar in:0.2 in:0.16666666666666666 of:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +":0.25 "will:0.2 i:0.16666666666666666 "we:0.14285714285714285 we:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +Jhar:0.25 Char:0.2 Har:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +other part:0.25 part:0.2 corner:0.16666666666666666 :0.3833333333333333 +be either:0.25 be:0.2 :0.55 +the:0.9 :0.1 +to:0.25 s for:0.2 for:0.16666666666666666 , for:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +tion:0.25 ence:0.2 sion:0.16666666666666666 tors:0.14285714285714285 tions:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +and the:0.25 and City:0.2 and:0.16666666666666666 er and:0.14285714285714285 :0.2404761904761905 +of:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +off:0.25 out of:0.2 from:0.16666666666666666 up from:0.14285714285714285 :0.2404761904761905 +the:0.25 our:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +soil:0.25 pasture:0.2 stock:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +can:0.25 could:0.2 would:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +closer:0.25 near:0.2 :0.55 +taxes are:0.25 taxes:0.2 :0.55 +layer:0.25 layers:0.2 :0.55 +$.:0.25 ,:0.2 .:0.16666666666666666 :0.3833333333333333 +in all:0.25 in both:0.2 in:0.16666666666666666 , in:0.14285714285714285 :0.2404761904761905 +providing General:0.25 providing Captain:0.2 providing:0.16666666666666666 :0.3833333333333333 +brow:0.25 corner:0.2 end:0.16666666666666666 :0.3833333333333333 +the:0.25 their:0.2 its:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +-rich:0.25 and gas:0.2 y:0.16666666666666666 and coal:0.14285714285714285 ing:0.125 :0.11547619047619051 +the:0.9 :0.1 +appointed:0.25 approved:0.2 :0.55 +the:0.9 :0.1 +tell him:0.25 tell me:0.2 believe:0.16666666666666666 say:0.14285714285714285 :0.2404761904761905 +,:0.25 a:0.2 e:0.16666666666666666 .:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +from:0.25 from sell:0.2 :0.55 +n:0.25 a:0.2 t:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +increases:0.25 increases,:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +paint:0.25 n it:0.2 :0.55 +bank accounts:0.25 money,:0.2 money:0.16666666666666666 reserves:0.14285714285714285 :0.2404761904761905 +suffering,:0.25 suffering:0.2 :0.55 +the:0.9 :0.1 +be drawn:0.25 come:0.2 be:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 the Salt:0.2 the Great:0.16666666666666666 Salt:0.14285714285714285 :0.2404761904761905 +later:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +stocks:0.25 day:0.2 commodity:0.16666666666666666 stock:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +brought:0.25 carried:0.2 confined:0.16666666666666666 held:0.14285714285714285 pushed:0.125 :0.11547619047619051 +North:0.25 South:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +away from:0.25 from:0.2 From:0.16666666666666666 :0.3833333333333333 +given:0.25 brought:0.2 :0.55 +we:0.25 but we:0.2 but:0.16666666666666666 and we:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +goal,:0.25 ,:0.2 goal:0.16666666666666666 , nothing:0.14285714285714285 :0.2404761904761905 +the:0.25 that:0.2 this:0.16666666666666666 the world:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 to:0.2 rescue the:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +a:0.25 de well:0.2 de:0.16666666666666666 il:0.14285714285714285 o:0.125 :0.11547619047619051 +great:0.25 very difficult:0.2 difficult:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +earlier:0.25 later:0.2 :0.55 +the:0.9 :0.1 +General:0.25 Gen.:0.2 of Major:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +,:0.25 was:0.2 had:0.16666666666666666 :0.3833333333333333 +the:0.25 any:0.2 :0.55 +by:0.25 x:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +, and:0.25 ,:0.2 's:0.16666666666666666 .:0.14285714285714285 :0.2404761904761905 +ii:0.25 n no:0.2 i:0.16666666666666666 io:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +ve:0.25 ved:0.2 t:0.16666666666666666 :0.3833333333333333 +pattern:0.25 distribution:0.2 ity:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +in:0.25 :0.75 +the:0.25 the natural:0.2 the free:0.16666666666666666 natural:0.14285714285714285 :0.2404761904761905 +Who:0.25 :0.75 +the:0.9 :0.1 +in:0.25 of:0.2 on:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +of water:0.25 of electric:0.2 of electrical:0.16666666666666666 of:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +are also:0.25 are:0.2 are now:0.16666666666666666 :0.3833333333333333 +-:0.25 :0.75 +the:0.9 :0.1 +,:0.25 , and:0.2 and:0.16666666666666666 :0.3833333333333333 +of the:0.25 of:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +have:0.25 a:0.2 :0.55 +the:0.9 :0.1 +ts:0.25 s:0.2 tions:0.16666666666666666 :0.3833333333333333 +it:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +who would:0.25 who:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +short:0.25 little:0.2 long:0.16666666666666666 very long:0.14285714285714285 :0.2404761904761905 +from:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +year:0.25 week:0.2 day:0.16666666666666666 :0.3833333333333333 +Clerk:0.25 Secretary:0.2 Secretary,:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +when:0.25 after:0.2 , after:0.16666666666666666 , while:0.14285714285714285 , when:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +upon:0.25 from:0.2 on:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +of building:0.25 of:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +track:0.25 tracks:0.2 :0.55 +the:0.9 :0.1 +day:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +great:0.25 very good:0.2 good:0.16666666666666666 :0.3833333333333333 +keep:0.25 hold:0.2 :0.55 +build:0.25 have:0.2 have built:0.16666666666666666 :0.3833333333333333 +placed in:0.25 in:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +not an:0.25 a:0.2 an:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +as experts:0.25 as persons:0.2 as those:0.16666666666666666 experts:0.14285714285714285 as people:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +party:0.25 person:0.2 persons:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +one boy:0.25 boy:0.2 man:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +ly:0.25 to:0.2 t:0.16666666666666666 and:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +amendment:0.25 Amendment:0.2 proposition:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.25 its:0.2 :0.55 +the:0.9 :0.1 +such:0.25 :0.75 +the:0.9 :0.1 +11:0.25 £1:0.2 10:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 :0.75 +four:0.25 three:0.2 about three:0.16666666666666666 about four:0.14285714285714285 six:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +and the:0.25 and:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +A:0.25 One:0.2 A business:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +parallel:0.25 :0.75 +after:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +over to:0.25 to:0.2 , to:0.16666666666666666 to the:0.14285714285714285 :0.2404761904761905 +wagon:0.25 wagon,:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +sacred:0.25 holy:0.2 immortal:0.16666666666666666 :0.3833333333333333 +been:0.25 be:0.2 :0.55 +mitted to:0.25 bed through:0.2 bed:0.16666666666666666 mitted:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +by:0.25 in:0.2 :0.55 +to:0.25 and:0.2 of the:0.16666666666666666 to the:0.14285714285714285 :0.2404761904761905 +as:0.25 :0.75 +the:0.9 :0.1 +the:0.25 this:0.2 the previous:0.16666666666666666 that:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +can decide:0.25 can establish:0.2 can determine:0.16666666666666666 can set:0.14285714285714285 can control:0.125 :0.11547619047619051 +off:0.25 down:0.2 off all:0.16666666666666666 :0.3833333333333333 +Mortgage:0.25 mortgage:0.2 :0.55 +the:0.9 :0.1 +in:0.25 :0.75 +the:0.9 :0.1 +,:0.25 es:0.2 s:0.16666666666666666 :0.3833333333333333 +or:0.25 or any:0.2 :0.55 +the:0.9 :0.1 +the same:0.25 the next:0.2 that:0.16666666666666666 the following:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 and:0.2 :0.55 +in:0.25 to me:0.2 him:0.16666666666666666 me:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +about less:0.25 more:0.2 less:0.16666666666666666 :0.3833333333333333 +handed:0.25 turned:0.2 :0.55 +will:0.25 'll:0.2 would:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +e as:0.25 as:0.2 use as:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +good:0.25 right,:0.2 in order:0.16666666666666666 right:0.14285714285714285 :0.2404761904761905 +the:0.25 :0.75 +l:0.25 new:0.2 n:0.16666666666666666 lr:0.14285714285714285 old:0.125 :0.11547619047619051 +TO:0.25 BY:0.2 IN:0.16666666666666666 AT:0.14285714285714285 :0.2404761904761905 +Treasurer:0.25 Executives:0.2 Secretary:0.16666666666666666 Officers:0.14285714285714285 :0.2404761904761905 +as:0.25 on:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +.:0.25 s.:0.2 :0.55 +when:0.25 upon:0.2 thus:0.16666666666666666 thus upon:0.14285714285714285 in:0.125 :0.11547619047619051 +of:0.25 :0.75 +is:0.25 was:0.2 :0.55 +friends:0.25 faces:0.2 friends were:0.16666666666666666 :0.3833333333333333 +distress:0.25 :0.75 +had only:0.25 had:0.2 s had:0.16666666666666666 :0.3833333333333333 +has:0.25 :0.75 +to:0.25 on:0.2 :0.55 +all that:0.25 what:0.2 all:0.16666666666666666 :0.3833333333333333 +and:0.25 :0.75 +May:0.25 February:0.2 :0.55 +by:0.25 of:0.2 among:0.16666666666666666 :0.3833333333333333 +king:0.25 Duke:0.2 King:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +this:0.25 by:0.2 in:0.16666666666666666 in early:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +jobs.:0.25 .:0.2 operations.:0.16666666666666666 projects.:0.14285714285714285 equipment.:0.125 :0.11547619047619051 +transportation:0.25 transport:0.2 transportation*:0.16666666666666666 :0.3833333333333333 +the:0.25 in the:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +that:0.25 :0.75 +the:0.9 :0.1 +A.:0.25 W.:0.2 H.:0.16666666666666666 J.:0.14285714285714285 R.:0.125 :0.11547619047619051 +and will:0.25 or:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +his:0.25 his own:0.2 her:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +wages:0.25 pay:0.2 :0.55 +from:0.25 from West:0.2 :0.55 +the:0.9 :0.1 +the:0.25 his:0.2 :0.55 +the:0.9 :0.1 +ie:0.25 . We:0.2 e:0.16666666666666666 -:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +already:0.25 also:0.2 not:0.16666666666666666 not yet:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +all:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +new:0.25 both young:0.2 young:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +, and:0.25 ,:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +of:0.25 :0.75 +the:0.9 :0.1 +Mount:0.25 house:0.2 Garden:0.16666666666666666 House:0.14285714285714285 Temple:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +movements:0.25 s activities:0.2 s movements:0.16666666666666666 activities:0.14285714285714285 :0.2404761904761905 +l:0.25 ll:0.2 .:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +books:0.25 ,:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +walls,:0.25 rooms,:0.2 windows,:0.16666666666666666 doors,:0.14285714285714285 windows:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +minor:0.25 little:0.2 minimal:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +deliver:0.25 carry:0.2 :0.55 +cutting:0.25 cut:0.2 :0.55 +from:0.25 of:0.2 at:0.16666666666666666 :0.3833333333333333 +, and:0.25 ,:0.2 and:0.16666666666666666 :0.3833333333333333 +Price:0.25 price:0.2 :0.55 +were:0.25 had even:0.2 had:0.16666666666666666 even:0.14285714285714285 at work:0.125 :0.11547619047619051 +the:0.25 until the:0.2 for the:0.16666666666666666 on the:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +prisoner:0.25 he:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 all the:0.2 :0.55 +d:0.25 o:0.2 cd:0.16666666666666666 s:0.14285714285714285 :0.2404761904761905 +best:0.25 proper:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +u:0.25 i:0.2 -:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +which:0.25 that:0.2 :0.55 +the:0.9 :0.1 +the:0.25 their:0.2 a:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +them:0.25 medicine:0.2 it:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +in:0.25 at:0.2 on:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +preserving:0.25 the care:0.2 safeguarding:0.16666666666666666 care:0.14285714285714285 the preservation:0.125 :0.11547619047619051 +the:0.9 :0.1 +in:0.25 of:0.2 :0.55 +the:0.9 :0.1 +to:0.25 :0.75 +already been:0.25 to be:0.2 been:0.16666666666666666 not been:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +.:0.25 r.:0.2 :0.55 +highly:0.25 most:0.2 very:0.16666666666666666 :0.3833333333333333 +is:0.25 is also:0.2 are:0.16666666666666666 Is:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +have come:0.25 speak:0.2 object:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +are not:0.25 words are:0.2 remarks are:0.16666666666666666 statements are:0.14285714285714285 are:0.125 :0.11547619047619051 +the:0.25 about the:0.2 of the:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +legal:0.25 :0.75 +Together in:0.25 in:0.2 In:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +,:0.25 in:0.2 on:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +it:0.25 they not:0.2 not:0.16666666666666666 they:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +country,:0.25 country:0.2 European country:0.16666666666666666 :0.3833333333333333 +you:0.25 that it:0.2 it:0.16666666666666666 :0.3833333333333333 +First:0.25 Second:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +attention:0.25 attention,:0.2 interest,:0.16666666666666666 concern,:0.14285714285714285 :0.2404761904761905 +would have:0.25 had:0.2 might have:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +hill:0.25 mountain,:0.2 mountain:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +in:0.25 at:0.2 :0.55 +the:0.9 :0.1 +print:0.25 piece:0.2 pieces:0.16666666666666666 :0.3833333333333333 +to:0.25 a:0.2 from:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +this:0.25 that:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +few:0.25 number of:0.2 couple of:0.16666666666666666 :0.3833333333333333 +the:0.25 my:0.2 a:0.16666666666666666 :0.3833333333333333 +today that:0.25 that:0.2 that,:0.16666666666666666 :0.3833333333333333 +the:0.25 :0.2 The:0.16666666666666666 ie:0.14285714285714285 :0.2404761904761905 +back:0.25 and:0.2 rail:0.16666666666666666 board:0.14285714285714285 -:0.125 :0.11547619047619051 +explained to:0.25 told:0.2 :0.55 +making:0.25 rendering:0.2 :0.55 +heard:0.25 knew:0.2 saw:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +The:0.25 And his:0.2 His:0.16666666666666666 :0.3833333333333333 +and in:0.25 in:0.2 , in:0.16666666666666666 :0.3833333333333333 +will:0.25 shall:0.2 :0.55 +like:0.25 in:0.2 are now:0.16666666666666666 of:0.14285714285714285 :0.2404761904761905 +they:0.25 the names:0.2 :0.55 +home:0.25 shelter:0.2 hospital:0.16666666666666666 :0.3833333333333333 +and his:0.25 by:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +under,:0.25 under:0.2 :0.55 +would:0.25 :0.75 +this:0.25 that:0.2 :0.55 +the:0.25 :0.75 +the:0.9 :0.1 +music:0.25 banquet:0.2 bingo:0.16666666666666666 entertainment:0.14285714285714285 banqueting:0.125 :0.11547619047619051 +reports:0.25 speculations:0.2 :0.55 +his former:0.25 his:0.2 his own:0.16666666666666666 :0.3833333333333333 +and:0.25 :0.75 +for:0.25 of medical:0.2 of:0.16666666666666666 :0.3833333333333333 +about:0.25 of:0.2 :0.55 +the:0.9 :0.1 +writing;:0.25 writing,:0.2 writing:0.16666666666666666 writing::0.14285714285714285 :0.2404761904761905 +At­:0.25 at:0.2 at-:0.16666666666666666 at :0.14285714285714285 at­:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.25 :0.75 +the:0.9 :0.1 +for twenty:0.25 for thirty:0.2 of twenty:0.16666666666666666 for up:0.14285714285714285 for fifty:0.125 :0.11547619047619051 +the:0.25 the constant:0.2 from the:0.16666666666666666 :0.3833333333333333 +the:0.25 an:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +others,:0.25 those:0.2 others:0.16666666666666666 :0.3833333333333333 +deny:0.25 insist:0.2 believe:0.16666666666666666 agree:0.14285714285714285 :0.2404761904761905 +man:0.25 party:0.2 person:0.16666666666666666 single person:0.14285714285714285 :0.2404761904761905 +desperate need:0.25 need:0.2 favor:0.16666666666666666 favour:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +west:0.25 :0.75 +appears:0.25 is:0.2 seems:0.16666666666666666 serves:0.14285714285714285 :0.2404761904761905 +,:0.25 , was:0.2 was:0.16666666666666666 who was:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +t:0.25 of:0.2 :0.55 +is:0.25 was:0.2 :0.55 +necessary:0.25 weapons and:0.2 armed:0.16666666666666666 requisite:0.14285714285714285 :0.2404761904761905 +will:0.25 shall:0.2 can:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 protect the:0.2 the good:0.16666666666666666 serve the:0.14285714285714285 :0.2404761904761905 +could:0.25 'll:0.2 can:0.16666666666666666 should:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +every:0.25 at:0.2 :0.55 +to:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +very:0.25 quite:0.2 highly:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +this:0.25 it:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +United:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +testified:0.25 said:0.2 :0.55 +the:0.25 the law:0.2 the Law:0.16666666666666666 :0.3833333333333333 +in:0.25 on:0.2 :0.55 +ahead of:0.25 for:0.2 after:0.16666666666666666 before:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +in:0.25 of:0.2 :0.55 +of:0.25 :0.75 +&:0.25 and:0.2 :0.55 +knife.:0.25 wound.:0.2 bullet.:0.16666666666666666 ity.:0.14285714285714285 blow.:0.125 :0.11547619047619051 +discovery:0.25 :0.75 +upon:0.25 on:0.2 :0.55 +the:0.9 :0.1 +three:0.25 more:0.2 :0.55 +the:0.9 :0.1 +,:0.25 and stores:0.2 *:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +never really:0.25 never:0.2 :0.55 +the:0.9 :0.1 +the:0.25 such:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +so:0.25 :0.75 +J:0.25 W:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +bars have:0.25 have:0.2 has:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +Thomas:0.25 William:0.2 John:0.16666666666666666 :0.3833333333333333 +sometimes even:0.25 even:0.2 often:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.25 a:0.2 from the:0.16666666666666666 of the:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +. Lee:0.25 , Lee:0.2 ." Lee:0.16666666666666666 .:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +came:0.25 went:0.2 walked:0.16666666666666666 :0.3833333333333333 +Lincoln:0.25 Lincoln had:0.2 Congress:0.16666666666666666 Congress had:0.14285714285714285 he:0.125 :0.11547619047619051 +is:0.25 has:0.2 :0.55 +the:0.25 :0.75 +attempt:0.25 intervention:0.2 interference:0.16666666666666666 interposition:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +thoughts:0.25 distractions:0.2 sins:0.16666666666666666 temptations:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +will:0.25 shall:0.2 will almost:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +, and:0.25 ,:0.2 and:0.16666666666666666 :0.3833333333333333 +At:0.25 :0.75 +to:0.25 by:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +from:0.25 on:0.2 :0.55 +the:0.9 :0.1 +petition:0.25 petition but:0.2 petition.:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +H:0.25 A:0.2 J:0.16666666666666666 W:0.14285714285714285 M:0.125 :0.11547619047619051 +be given:0.25 have:0.2 get:0.16666666666666666 :0.3833333333333333 +'ve:0.25 have:0.2 had:0.16666666666666666 have already:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +ten:0.25 8:0.2 9:0.16666666666666666 eight:0.14285714285714285 six:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +a-:0.25 a:0.2 i:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +property:0.25 other property:0.2 services:0.16666666666666666 other items:0.14285714285714285 :0.2404761904761905 +and:0.25 in:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +idea:0.25 sight:0.2 thought:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +informed:0.25 declared to:0.2 told:0.16666666666666666 :0.3833333333333333 +the:0.25 that:0.2 his:0.16666666666666666 this:0.14285714285714285 :0.2404761904761905 +necessary,:0.25 ,:0.2 possible,:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +;:0.25 .:0.2 :0.55 +used by:0.25 employed by:0.2 of:0.16666666666666666 adopted by:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +to:0.25 for the:0.2 for:0.16666666666666666 to the:0.14285714285714285 :0.2404761904761905 +of:0.25 :0.75 +turned:0.25 sent:0.2 taken:0.16666666666666666 :0.3833333333333333 +say,:0.25 write this:0.2 write:0.16666666666666666 say:0.14285714285714285 :0.2404761904761905 +recent:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +dollars:0.25 bonds:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +see:0.25 have:0.2 see such:0.16666666666666666 :0.3833333333333333 +The:0.25 :0.75 +the:0.9 :0.1 +, Boot:0.25 Boot:0.2 :0.55 +been:0.25 :0.75 +the:0.9 :0.1 +Sheriff:0.25 :0.75 +pay:0.25 -pay:0.2 - pay:0.16666666666666666 -payment:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +The:0.25 the:0.2 :0.55 +place:0.25 safe place:0.2 places:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +will:0.25 would:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +pleasure of:0.25 pleasure,:0.2 entertainment,:0.16666666666666666 meeting,:0.14285714285714285 school,:0.125 :0.11547619047619051 +s than:0.25 s that:0.2 s:0.16666666666666666 s Than:0.14285714285714285 :0.2404761904761905 +size:0.25 proportions:0.2 height:0.16666666666666666 ness:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 a:0.2 :0.55 +daughter the:0.25 girl the:0.2 daughter:0.16666666666666666 girl:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +con-:0.25 fi:0.2 a:0.16666666666666666 fi-:0.14285714285714285 de-:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 a:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +owns:0.25 works at:0.2 runs:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +financial:0.25 a:0.2 trading:0.16666666666666666 market:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +from:0.25 s of:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +in:0.25 by:0.2 up of:0.16666666666666666 :0.3833333333333333 +the:0.25 their:0.2 this:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +supported:0.25 helped:0.2 :0.55 +the:0.9 :0.1 +William:0.25 James:0.2 J.:0.16666666666666666 John:0.14285714285714285 :0.2404761904761905 +of small:0.25 of white:0.2 of black:0.16666666666666666 of:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +supposed:0.25 not supposed:0.2 afraid:0.16666666666666666 not allowed:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +could:0.25 would:0.2 :0.55 +the:0.9 :0.1 +terrible:0.25 tragic:0.2 :0.55 +large number:0.25 number:0.2 wide range:0.16666666666666666 variety:0.14285714285714285 wide variety:0.125 :0.11547619047619051 +the:0.9 :0.1 +had:0.25 had far:0.2 has:0.16666666666666666 :0.3833333333333333 +may:0.25 could:0.2 can:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the cattle:0.25 it:0.2 they:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +51:0.25 28:0.2 50:0.16666666666666666 31:0.14285714285714285 61:0.125 :0.11547619047619051 +the:0.9 :0.1 +but,:0.25 and,:0.2 but:0.16666666666666666 and:0.14285714285714285 :0.2404761904761905 +, and:0.25 and:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +right whatsoever:0.25 right:0.2 :0.55 +the:0.9 :0.1 +to:0.25 by:0.2 :0.55 +and supported:0.25 but:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +and the:0.25 , and:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.25 its:0.2 :0.55 +the:0.9 :0.1 +may:0.25 would:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +found:0.25 wished:0.2 thought:0.16666666666666666 :0.3833333333333333 +world:0.25 nation:0.2 power:0.16666666666666666 :0.3833333333333333 +the:0.25 the medical:0.2 :0.55 +Delaware:0.25 river and:0.2 Delaware River:0.16666666666666666 Delaware river:0.14285714285714285 :0.2404761904761905 +week:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 e:0.2 s:0.16666666666666666 s,:0.14285714285714285 :0.2404761904761905 +for:0.25 on:0.2 :0.55 +face:0.25 head:0.2 way:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +l:0.25 t the:0.2 ll the:0.16666666666666666 l the:0.14285714285714285 lthe:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +The:0.25 But the:0.2 This:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +light:0.25 joy:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +wages:0.25 their wages:0.2 :0.55 +pair:0.25 series:0.2 row:0.16666666666666666 :0.3833333333333333 +the Commissioner:0.25 they:0.2 he:0.16666666666666666 :0.3833333333333333 +serve in:0.25 serve with:0.2 join:0.16666666666666666 fight in:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +, and:0.25 ,:0.2 and,:0.16666666666666666 and:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 your:0.2 his:0.16666666666666666 ones:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 and the:0.2 The:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 such an:0.2 such:0.16666666666666666 any such:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +from:0.25 to:0.2 in:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +is:0.25 is already:0.2 would be:0.16666666666666666 is now:0.14285714285714285 being:0.125 :0.11547619047619051 +in:0.25 of:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +qualified:0.25 competent:0.2 very good:0.16666666666666666 highly qualified:0.14285714285714285 :0.2404761904761905 +ask:0.25 question:0.2 debate:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 his:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +shopping mall:0.25 street:0.2 city:0.16666666666666666 :0.3833333333333333 +not have:0.25 have:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +By:0.25 And by:0.2 At:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +one of:0.25 of:0.2 :0.55 +to:0.25 not to:0.2 , to:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +by:0.25 in:0.2 :0.55 +the:0.9 :0.1 +paying:0.25 for:0.2 to pay:0.16666666666666666 :0.3833333333333333 +bic phrase:0.25 bic:0.2 bus:0.16666666666666666 :0.3833333333333333 +sale:0.25 auction:0.2 auction,:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +, while:0.25 and:0.2 while:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +to:0.25 on:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +glorious:0.25 perfect:0.2 powerful:0.16666666666666666 noble:0.14285714285714285 :0.2404761904761905 +be:0.25 :0.75 +to:0.25 for:0.2 :0.55 +with:0.25 by:0.2 for:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +draft:0.25 work on:0.2 prepare:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +with as:0.25 as:0.2 of as:0.16666666666666666 and as:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +regions:0.25 region:0.2 :0.55 +little:0.25 no:0.2 :0.55 +to:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +so:0.25 is:0.2 she is:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +friends:0.25 wife:0.2 friend:0.16666666666666666 son:0.14285714285714285 :0.2404761904761905 +proceedings.:0.25 .:0.2 court.:0.16666666666666666 county.:0.14285714285714285 courts.:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +and:0.25 :0.75 +all:0.25 both:0.2 :0.55 +British:0.25 :0.75 +the:0.9 :0.1 +to:0.25 to the:0.2 :0.55 +services,:0.25 Services:0.2 services:0.16666666666666666 :0.3833333333333333 +hot:0.25 :0.75 +the:0.9 :0.1 +provided for:0.25 specified:0.2 provided:0.16666666666666666 defined:0.14285714285714285 set forth:0.125 :0.11547619047619051 +great:0.25 majestic:0.2 vast:0.16666666666666666 ancient:0.14285714285714285 mighty:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +, and:0.25 to:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 :0.75 +the:0.25 an:0.2 :0.55 +so:0.25 would so:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +will:0.25 to:0.2 :0.55 +to:0.25 desperately to:0.2 hard to:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.25 their:0.2 :0.55 +the:0.25 :0.75 +whole world:0.25 people:0.2 world:0.16666666666666666 :0.3833333333333333 +the:0.25 this:0.2 :0.55 +the:0.9 :0.1 +is:0.25 can be:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +e:0.25 e,:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +two:0.25 ten:0.2 eight:0.16666666666666666 twenty:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 or:0.2 and:0.16666666666666666 :0.3833333333333333 +less than:0.25 greater than:0.2 more than:0.16666666666666666 from:0.14285714285714285 of:0.125 :0.11547619047619051 +the:0.9 :0.1 +one:0.25 a:0.2 100:0.16666666666666666 ten:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +fair share:0.25 share:0.2 :0.55 +provision of:0.25 British:0.2 English:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +full:0.25 -day:0.2 consecutive:0.16666666666666666 or four:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +brought back:0.25 brought:0.2 taken:0.16666666666666666 :0.3833333333333333 +did:0.25 would:0.2 could:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +she:0.25 which:0.2 which she:0.16666666666666666 which Virginia:0.14285714285714285 :0.2404761904761905 +same:0.25 :0.75 +the:0.9 :0.1 +relation:0.25 regard:0.2 regards:0.16666666666666666 :0.3833333333333333 +question of:0.25 question,:0.2 question:0.16666666666666666 question::0.14285714285714285 question.:0.125 :0.11547619047619051 +the:0.9 :0.1 +Monday:0.25 Tuesday:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +Beach had:0.25 Beach again:0.2 Beach also:0.16666666666666666 Beach:0.14285714285714285 Beach further:0.125 :0.11547619047619051 +on pension:0.25 on retirement:0.2 on:0.16666666666666666 on health:0.14285714285714285 on welfare:0.125 :0.11547619047619051 +which leaves:0.25 leaves:0.2 puts:0.16666666666666666 places:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +they:0.25 :0.75 +the:0.25 to:0.2 to the:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +by:0.25 at:0.2 :0.55 +appears:0.25 is:0.2 looks:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +"But:0.25 But:0.2 However,:0.16666666666666666 :0.3833333333333333 +East in:0.25 north in:0.2 North in:0.16666666666666666 west in:0.14285714285714285 West in:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +and:0.25 but:0.2 .:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.25 The:0.2 been the:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +their:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +stone,:0.25 stone:0.2 post:0.16666666666666666 :0.3833333333333333 +Wright:0.25 Coddington:0.2 Polk:0.16666666666666666 Moore:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 the general:0.2 :0.55 +the:0.9 :0.1 +sake:0.25 fulfillment:0.2 fulfilment:0.16666666666666666 :0.3833333333333333 +recommendation:0.25 decision:0.2 :0.55 +the:0.25 this:0.2 :0.55 +will be:0.25 is being:0.2 is:0.16666666666666666 may be:0.14285714285714285 :0.2404761904761905 +how many:0.25 several:0.2 many:0.16666666666666666 :0.3833333333333333 +has:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 led,:0.2 e:0.16666666666666666 and:0.14285714285714285 :0.2404761904761905 +the:0.25 had the:0.2 been the:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +will:0.25 shall:0.2 would:0.16666666666666666 :0.3833333333333333 +It:0.25 :0.75 +hoped:0.25 possible:0.2 likely:0.16666666666666666 :0.3833333333333333 +on,:0.25 on:0.2 :0.55 +movement:0.25 exports:0.2 :0.55 +the:0.9 :0.1 +,:0.25 a:0.2 u:0.16666666666666666 o:0.14285714285714285 !:0.125 :0.11547619047619051 +company:0.25 Company:0.2 coal company:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +copper:0.25 iron:0.2 gold:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +their:0.25 his:0.2 their own:0.16666666666666666 :0.3833333333333333 +es:0.25 e:0.2 d:0.16666666666666666 g:0.14285714285714285 ei:0.125 :0.11547619047619051 +the:0.9 :0.1 +thoughts:0.25 images:0.2 thoughts of:0.16666666666666666 :0.3833333333333333 +understanding:0.25 knowledge:0.2 :0.55 +as:0.25 :0.75 +the:0.9 :0.1 +large:0.25 big:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +local:0.25 California:0.2 daily:0.16666666666666666 literary:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +grade:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 this:0.2 that:0.16666666666666666 :0.3833333333333333 +, and:0.25 , but:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 all the:0.2 the most:0.16666666666666666 the very:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +- of:0.25 of:0.2 :0.55 +the:0.9 :0.1 +is:0.25 was:0.2 Is:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +by:0.25 in:0.2 on:0.16666666666666666 :0.3833333333333333 +est:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +highway:0.25 public road:0.2 public highway:0.16666666666666666 road:0.14285714285714285 :0.2404761904761905 +a:0.25 or:0.2 and:0.16666666666666666 :0.3833333333333333 +entrance:0.25 gateway:0.2 road leading:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +separate:0.25 different:0.2 :0.55 +the:0.9 :0.1 +the:0.25 their:0.2 of their:0.16666666666666666 of the:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +making it:0.25 getting:0.2 :0.55 +The:0.25 ) The:0.2 This:0.16666666666666666 :0.3833333333333333 +Julian:0.25 H.:0.2 J.:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +enforce:0.25 defend our:0.2 defend the:0.16666666666666666 support:0.14285714285714285 defend:0.125 :0.11547619047619051 +notice:0.25 it:0.2 :0.55 +Naval:0.25 naval:0.2 :0.55 +the:0.9 :0.1 +in:0.25 on:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +this:0.25 the:0.2 an:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +,:0.25 1):0.2 *:0.16666666666666666 .:0.14285714285714285 *):0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +, and:0.25 ,:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +and sometimes:0.25 or:0.2 and:0.16666666666666666 :0.3833333333333333 +any:0.25 every:0.2 :0.55 +,:0.25 t:0.2 ii:0.16666666666666666 :0.3833333333333333 +as:0.25 d:0.2 most always:0.16666666666666666 most:0.14285714285714285 o:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +going:0.25 willing:0.2 to come:0.16666666666666666 able:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +I:0.25 We:0.2 :0.55 +the:0.9 :0.1 +before:0.25 at:0.2 :0.55 +by:0.25 in:0.2 at:0.16666666666666666 :0.3833333333333333 +for all:0.25 on:0.2 for:0.16666666666666666 up for:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +purchase:0.25 take:0.2 collection:0.16666666666666666 sale:0.14285714285714285 taking:0.125 :0.11547619047619051 +the:0.25 :0.75 +the:0.9 :0.1 +end of:0.25 of:0.2 :0.55 +the:0.9 :0.1 +now back:0.25 still:0.2 now:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +follow:0.25 believe in:0.2 convert to:0.16666666666666666 confess:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +good:0.25 :0.75 +the:0.9 :0.1 +secretary:0.25 Secretary:0.2 :0.55 +I:0.25 they:0.2 :0.55 +but:0.25 and:0.2 :0.55 +the:0.25 nearly the:0.2 about the:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +used for:0.25 ,:0.2 for:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +should not:0.25 should:0.2 would:0.16666666666666666 :0.3833333333333333 +the:0.25 the price:0.2 :0.55 +d:0.25 e:0.2 :0.55 +will:0.25 do:0.2 did:0.16666666666666666 :0.3833333333333333 +a farmer:0.25 :0.2 i:0.16666666666666666 :0.3833333333333333 +food:0.25 blood:0.2 hair:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 charter:0.2 visiting:0.16666666666666666 returning:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +to:0.25 try to:0.2 help:0.16666666666666666 to help:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 on its:0.2 its:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +12,:0.25 10,:0.2 8,:0.16666666666666666 :0.3833333333333333 +the:0.25 their:0.2 a:0.16666666666666666 :0.3833333333333333 +was:0.25 had been:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +The:0.25 :0.75 +the:0.25 a:0.2 on some:0.16666666666666666 on the:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +Her:0.25 and:0.2 a:0.16666666666666666 And:0.14285714285714285 The:0.125 :0.11547619047619051 +the:0.9 :0.1 +already been:0.25 been:0.2 been very:0.16666666666666666 not been:0.14285714285714285 :0.2404761904761905 +the:0.25 a:0.2 that the:0.16666666666666666 :0.3833333333333333 +which:0.25 which,:0.2 :0.55 +the:0.9 :0.1 +purpose,:0.25 ,:0.2 purpose:0.16666666666666666 proposal,:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +offer:0.25 invitation:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +woman:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 of:0.2 :0.55 +reliance:0.25 putting:0.2 use:0.16666666666666666 :0.3833333333333333 +human heart:0.25 human minds:0.2 hearts:0.16666666666666666 human hearts:0.14285714285714285 human eyes:0.125 :0.11547619047619051 +the:0.9 :0.1 +she:0.25 i:0.2 I:0.16666666666666666 sho:0.14285714285714285 he:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +The:0.25 But the:0.2 :0.55 +the:0.9 :0.1 +, on:0.25 on:0.2 :0.55 +The:0.25 These:0.2 Their:0.16666666666666666 :0.3833333333333333 +to:0.25 home to:0.2 :0.55 +from:0.25 produced by:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +Pot:0.25 pot:0.2 :0.55 +the:0.9 :0.1 +, should:0.25 should:0.2 can:0.16666666666666666 :0.3833333333333333 +for:0.25 of:0.2 of raising:0.16666666666666666 of producing:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +,:0.25 , and:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 The:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +in:0.25 g:0.2 :0.55 +esti-:0.25 esti:0.2 -:0.16666666666666666 :0.3833333333333333 +United States:0.25 American history:0.2 world:0.16666666666666666 Union:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +regarded:0.25 perceived:0.2 seen:0.16666666666666666 :0.3833333333333333 +basis:0.25 basis.:0.2 basis and:0.16666666666666666 :0.3833333333333333 +type:0.25 method:0.2 form:0.16666666666666666 :0.3833333333333333 +know:0.25 know,:0.2 understand:0.16666666666666666 :0.3833333333333333 +were just:0.25 are just:0.2 are:0.16666666666666666 were:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the industrial:0.25 the:0.2 the Industrial:0.16666666666666666 this:0.14285714285714285 the labor:0.125 :0.11547619047619051 +two to:0.25 about:0.2 :0.55 +perhaps:0.25 possibly:0.2 probably:0.16666666666666666 :0.3833333333333333 +the:0.25 this:0.2 the old:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 s:0.2 :0.55 +the:0.9 :0.1 +if:0.25 but:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 in:0.2 :0.55 +tion:0.25 tions:0.2 :0.55 +people:0.25 members:0.2 :0.55 +the:0.9 :0.1 +company:0.25 man:0.2 :0.55 +the:0.9 :0.1 +and:0.25 :0.75 +turn:0.25 fact:0.2 :0.55 +they:0.25 :0.75 +,:0.25 .:0.2 :0.55 +the:0.9 :0.1 +the:0.25 the new:0.2 :0.55 +vigorous,:0.25 vigorous:0.2 serious:0.16666666666666666 thorough:0.14285714285714285 :0.2404761904761905 +low:0.25 high:0.2 :0.55 +floor of:0.25 of:0.2 :0.55 +the:0.9 :0.1 +and:0.25 :0.75 +As:0.25 :0.75 +the:0.9 :0.1 +s that:0.25 that:0.2 , that:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 :0.75 +the:0.9 :0.1 +his best:0.25 his:0.2 his own:0.16666666666666666 his political:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +first:0.25 second:0.2 1896:0.16666666666666666 1897:0.14285714285714285 :0.2404761904761905 +to help:0.25 save:0.2 to protect:0.16666666666666666 protect:0.14285714285714285 to save:0.125 :0.11547619047619051 +to:0.25 :0.75 +the:0.9 :0.1 +or that:0.25 and:0.2 nor that:0.16666666666666666 but:0.14285714285714285 where:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +then:0.25 ami:0.2 :0.55 +in:0.25 under:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.25 the great:0.2 the moral:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +but:0.25 and:0.2 :0.55 +the:0.9 :0.1 +,:0.25 istic and:0.2 and:0.16666666666666666 :0.3833333333333333 +ensure:0.25 guarantee:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +alters:0.25 changes:0.2 affects:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +only:0.25 just:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 my:0.2 even the:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +still:0.25 :0.75 +the:0.9 :0.1 +and:0.25 :0.75 +, at:0.25 in:0.2 at:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +and John:0.25 of John:0.2 James:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +strawberries:0.25 berries:0.2 grapes:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +.]:0.25 ].:0.2 .:0.16666666666666666 ]:0.14285714285714285 :0.2404761904761905 +his:0.25 :0.75 +to:0.25 as:0.2 as will:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +no place:0.25 no monument:0.2 nothing:0.16666666666666666 no statue:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +upon:0.25 on:0.2 upon the:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +with:0.25 upon:0.2 since:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +that:0.25 :0.75 +to:0.25 effort to:0.2 attempt to:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +little:0.25 nothing:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +, and:0.25 And mid:0.2 And:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.25 a:0.2 research and:0.16666666666666666 Ihe:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +writer,:0.25 authors,:0.2 writer;:0.16666666666666666 author;:0.14285714285714285 author,:0.125 :0.11547619047619051 +1:0.25 I:0.2 , I:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +their revolt:0.25 themselves:0.2 s:0.16666666666666666 their rights:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 les,:0.2 le,:0.16666666666666666 s,:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +money:0.25 it:0.2 the money:0.16666666666666666 :0.3833333333333333 +will:0.25 may:0.2 may not:0.16666666666666666 will not:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +with:0.25 :0.75 +, and:0.25 ,:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +telephone:0.25 telephone line:0.2 cable:0.16666666666666666 line:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +process:0.25 method:0.2 method,:0.16666666666666666 technique:0.14285714285714285 :0.2404761904761905 +M:0.25 :0.75 +this:0.25 the said:0.2 which:0.16666666666666666 that:0.14285714285714285 :0.2404761904761905 +office,:0.25 office.:0.2 office:0.16666666666666666 :0.3833333333333333 +to:0.25 not to:0.2 :0.55 +the:0.9 :0.1 +candle:0.25 fire,:0.2 fire:0.16666666666666666 candle,:0.14285714285714285 candles,:0.125 :0.11547619047619051 +the:0.25 the next:0.2 a:0.16666666666666666 :0.3833333333333333 +was probably:0.25 is:0.2 was:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +tall on:0.25 above:0.2 on:0.16666666666666666 :0.3833333333333333 +up:0.25 up new:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +whether:0.25 if:0.2 :0.55 +with:0.25 to:0.2 to the:0.16666666666666666 :0.3833333333333333 +and the:0.25 and:0.2 :0.55 +duty:0.25 pleasure:0.2 :0.55 +this:0.25 it:0.2 he:0.16666666666666666 :0.3833333333333333 +easy:0.25 much:0.2 hard:0.16666666666666666 difficult:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +that:0.25 all.:0.2 all:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +other:0.25 all other:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +were:0.25 :0.75 +the:0.9 :0.1 +with:0.25 h:0.2 e:0.16666666666666666 her than:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +who:0.25 that:0.2 :0.55 +the:0.25 a:0.2 th:0.16666666666666666 an election:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +company:0.25 mine:0.2 mines:0.16666666666666666 public:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +also be:0.25 be more:0.2 be:0.16666666666666666 :0.3833333333333333 +the:0.25 the next:0.2 a:0.16666666666666666 the first:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +lo to:0.25 lo:0.2 to:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +had:0.25 read:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 glowing:0.2 bright:0.16666666666666666 :0.3833333333333333 +were:0.25 :0.75 +e to:0.25 to:0.2 :0.55 +the:0.9 :0.1 +sentiment:0.25 opinion:0.2 love:0.16666666666666666 affection:0.14285714285714285 :0.2404761904761905 +Elizabeth:0.25 William:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +will:0.25 suit:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +in:0.25 , in:0.2 :0.55 +the:0.9 :0.1 +to:0.25 only to:0.2 on:0.16666666666666666 :0.3833333333333333 +done:0.25 held:0.2 given:0.16666666666666666 :0.3833333333333333 +. In:0.25 in:0.2 currency in:0.16666666666666666 :0.3833333333333333 +have:0.25 has:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +in:0.25 at:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 faces,:0.2 eyes,:0.16666666666666666 :0.3833333333333333 +claim:0.25 also claim:0.2 say:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +when:0.25 where:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +did:0.25 does:0.2 :0.55 +sail:0.25 ship them:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +n:0.25 of:0.2 ful:0.16666666666666666 :0.3833333333333333 +much:0.25 exactly:0.2 :0.55 +;:0.25 ,:0.2 carefully,:0.16666666666666666 :0.3833333333333333 +mud:0.25 fields:0.2 canals:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 , to:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 immediately to:0.2 :0.55 +the:0.9 :0.1 +part:0.25 result:0.2 :0.55 +the:0.9 :0.1 +Canadian:0.25 American:0.2 :0.55 +for:0.25 of:0.2 :0.55 +the:0.9 :0.1 +:0.25 a:0.2 :0.55 +project:0.25 drive:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +a:0.25 William:0.2 Mr.:0.16666666666666666 John:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +was:0.25 wis:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +A:0.25 The:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +of them:0.25 men:0.2 :0.55 +the:0.9 :0.1 +road,:0.25 way:0.2 road:0.16666666666666666 :0.3833333333333333 +for:0.25 of:0.2 :0.55 +were:0.25 had been:0.2 :0.55 +for:0.25 , for:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +er Ohio:0.25 er:0.2 :0.55 +in:0.25 s:0.2 of:0.16666666666666666 :0.3833333333333333 +only:0.25 merely:0.2 :0.55 +is:0.25 was:0.2 has been:0.16666666666666666 :0.3833333333333333 +the:0.25 new:0.2 his:0.16666666666666666 :0.3833333333333333 +in:0.25 , in:0.2 at:0.16666666666666666 :0.3833333333333333 +arms:0.25 ness:0.2 :0.55 +the:0.25 this:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 a:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +of:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +and in:0.25 or in:0.2 in:0.16666666666666666 or:0.14285714285714285 :0.2404761904761905 +did not:0.25 could:0.2 could not:0.16666666666666666 would:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +, and:0.25 and:0.2 :0.55 +,:0.25 .:0.2 :0.55 +the:0.9 :0.1 +son,:0.25 brother,:0.2 wife,:0.16666666666666666 father,:0.14285714285714285 father:0.125 :0.11547619047619051 +movements:0.25 motions:0.2 movements may:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +has to:0.25 must:0.2 is to:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +call,:0.25 come:0.2 call:0.16666666666666666 :0.3833333333333333 +43:0.25 Mar.:0.2 44:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +s of:0.25 of:0.2 :0.55 +the:0.25 the great:0.2 :0.55 +the:0.9 :0.1 +the:0.25 this:0.2 :0.55 +it:0.25 :0.75 +the:0.25 :0.75 +height,:0.25 diameter,:0.2 length:0.16666666666666666 head,:0.14285714285714285 length,:0.125 :0.11547619047619051 +the:0.9 :0.1 +marry:0.25 be with:0.2 support:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +doubt:0.25 believe in:0.2 :0.55 +, as:0.25 as:0.2 being:0.16666666666666666 as being:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +kept:0.25 had:0.2 carried:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +ways readily:0.25 ready:0.2 ly:0.16666666666666666 ways:0.14285714285714285 most always:0.125 :0.11547619047619051 +the:0.9 :0.1 +with:0.25 visiting:0.2 to see:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +i took:0.25 took:0.2 s took:0.16666666666666666 :0.3833333333333333 +the:0.25 the corn:0.2 the cotton:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +so:0.25 as:0.2 :0.55 +with good:0.25 with:0.2 with strong:0.16666666666666666 with his:0.14285714285714285 with persuasive:0.125 :0.11547619047619051 +d:0.25 a:0.2 sent:0.16666666666666666 ordered:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +large number:0.25 class:0.2 number:0.16666666666666666 group:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +A:0.25 A very:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +who:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +up:0.25 :0.75 +the:0.9 :0.1 +u:0.25 on:0.2 forward:0.16666666666666666 me:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +, than:0.25 than by:0.2 than:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.25 the very:0.2 :0.55 +ight:0.25 ight improve:0.2 are:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +ei:0.25 ,:0.2 .:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +all:0.25 even:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +year:0.25 week:0.2 week,:0.16666666666666666 month:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +great:0.25 some:0.2 much:0.16666666666666666 :0.3833333333333333 +twice as:0.25 as:0.2 about as:0.16666666666666666 :0.3833333333333333 +so:0.25 as:0.2 such:0.16666666666666666 :0.3833333333333333 +the:0.25 a:0.2 his:0.16666666666666666 Mr.:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +hour of:0.25 hours of:0.2 of the:0.16666666666666666 of:0.14285714285714285 :0.2404761904761905 +of great:0.25 of:0.2 of considerable:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 ):0.2 :0.55 +the:0.9 :0.1 +and my:0.25 eous:0.2 and:0.16666666666666666 ful:0.14285714285714285 :0.2404761904761905 +State:0.25 Nations:0.2 States:0.16666666666666666 :0.3833333333333333 +is far:0.25 is much:0.2 is:0.16666666666666666 is no:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +in the:0.25 on the:0.2 under:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +will:0.25 of them:0.2 members:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +with:0.25 against:0.2 for:0.16666666666666666 on:0.14285714285714285 :0.2404761904761905 +the crossing:0.25 the:0.2 that:0.16666666666666666 this:0.14285714285714285 the same:0.125 :0.11547619047619051 +very:0.25 s:0.2 at all:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +supply:0.25 source:0.2 system:0.16666666666666666 :0.3833333333333333 +the:0.25 :0.75 +the:0.9 :0.1 +the:0.25 The:0.2 a:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +from:0.25 into:0.2 :0.55 +the:0.9 :0.1 +How:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +standard:0.25 y:0.2 standard,:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +, Thompson:0.25 Thompson:0.2 he:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +When:0.25 if:0.2 If:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +State:0.25 City:0.2 city:0.16666666666666666 :0.3833333333333333 +s of:0.25 ,:0.2 s,:0.16666666666666666 of:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.25 this:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 lo:0.2 :0.55 +the:0.9 :0.1 +ppin:0.25 pkin:0.2 pps:0.16666666666666666 azza:0.14285714285714285 ppen:0.125 :0.11547619047619051 +,:0.25 , in:0.2 .:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +centers:0.25 center:0.2 :0.55 +first:0.25 immediately:0.2 then:0.16666666666666666 :0.3833333333333333 +be:0.25 :0.75 +line east:0.25 line:0.2 :0.55 +about:0.25 on:0.2 :0.55 +of:0.25 :0.75 +the:0.9 :0.1 +town:0.25 voters:0.2 :0.55 +are of:0.25 in:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +responsibility:0.25 duty:0.2 :0.55 +the:0.9 :0.1 +to:0.25 tor:0.2 for:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +in:0.25 s of:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +tried:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +was:0.25 had been:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 r the:0.2 :0.55 +Board:0.25 Office:0.2 :0.55 +the:0.9 :0.1 +except that:0.25 but:0.2 since:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +at about:0.25 about:0.2 at:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +When:0.25 As:0.2 After:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +o.:0.25 o,:0.2 .,:0.16666666666666666 .:0.14285714285714285 o:0.125 :0.11547619047619051 +the:0.9 :0.1 +,:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +and twenty:0.25 and:0.2 forty:0.16666666666666666 thirty:0.14285714285714285 and thirty:0.125 :0.11547619047619051 +available:0.25 sold:0.2 sold,:0.16666666666666666 available,:0.14285714285714285 :0.2404761904761905 +drawn:0.25 taken:0.2 set:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +,:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +and:0.25 for and:0.2 :0.55 +moist:0.25 warm:0.2 cool:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +words on:0.25 notes on:0.2 letters on:0.16666666666666666 on:0.14285714285714285 :0.2404761904761905 +the:0.25 their:0.2 :0.55 +Usually:0.25 Be:0.2 If:0.16666666666666666 Whether:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +had:0.25 has:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +throughout:0.25 around:0.2 all over:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +J:0.25 . J:0.2 J J:0.16666666666666666 :0.3833333333333333 +other:0.25 the other:0.2 all other:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +stated:0.25 argued:0.2 said:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +reforms:0.25 changes:0.2 change:0.16666666666666666 :0.3833333333333333 +used:0.25 was:0.2 had:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +year:0.25 -year:0.2 years:0.16666666666666666 :0.3833333333333333 +the:0.25 having the:0.2 :0.55 +the:0.9 :0.1 +with:0.25 against:0.2 s with:0.16666666666666666 :0.3833333333333333 +of the:0.25 of:0.2 :0.55 +the:0.9 :0.1 +the:0.25 a:0.2 th:0.16666666666666666 his:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +, am:0.25 ,:0.2 from:0.16666666666666666 :0.3833333333333333 +state:0.25 State:0.2 :0.55 +factories:0.25 :0.75 +the:0.9 :0.1 +ss:0.25 es:0.2 e:0.16666666666666666 s:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +Fifth:0.25 Orange:0.2 High:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +, from:0.25 , on:0.2 on:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +officials:0.25 officers:0.2 :0.55 +the:0.25 this:0.2 to the:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +all:0.25 many:0.2 most:0.16666666666666666 :0.3833333333333333 +as is:0.25 as:0.2 except as:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +say,:0.25 add:0.2 say:0.16666666666666666 :0.3833333333333333 +L.:0.25 A.:0.2 M.:0.16666666666666666 H.:0.14285714285714285 J.:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +any:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +h:0.25 t:0.2 i:0.16666666666666666 o:0.14285714285714285 he:0.125 :0.11547619047619051 +effective.:0.25 effect.:0.2 .:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.25 the presidential:0.2 your:0.16666666666666666 this:0.14285714285714285 :0.2404761904761905 +, at:0.25 also at:0.2 at:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +years:0.25 days:0.2 hundred years:0.16666666666666666 months:0.14285714285714285 :0.2404761904761905 +and:0.25 R.:0.2 .:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +He:0.25 He had:0.2 Ho:0.16666666666666666 Luther:0.14285714285714285 :0.2404761904761905 +to:0.25 who shall:0.2 and to:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +, of:0.25 . of:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.25 The:0.2 the first:0.16666666666666666 :0.3833333333333333 +this:0.25 that it:0.2 it:0.16666666666666666 :0.3833333333333333 +the:0.25 and the:0.2 The:0.16666666666666666 :0.3833333333333333 +house.:0.25 grave.:0.2 feet.:0.16666666666666666 home.:0.14285714285714285 grave,:0.125 :0.11547619047619051 +the:0.25 a:0.2 this:0.16666666666666666 :0.3833333333333333 +forty:0.25 of forty:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +and in:0.25 and:0.2 s and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +and on:0.25 ity and:0.2 and:0.16666666666666666 ation and:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +have:0.25 not be:0.2 be greatly:0.16666666666666666 be:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 at:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +enforce:0.25 pay for:0.2 pay:0.16666666666666666 settle:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +So no:0.25 No:0.2 :0.55 +guard the:0.25 protect:0.2 guard:0.16666666666666666 serve the:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +South Main:0.25 Bristol:0.2 South:0.16666666666666666 Main:0.14285714285714285 West:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +distant:0.25 nearby:0.2 small:0.16666666666666666 :0.3833333333333333 +to:0.25 to whether:0.2 :0.55 +closely at:0.25 to:0.2 at:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +A:0.25 The:0.2 a:0.16666666666666666 :0.3833333333333333 +the:0.25 his:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +exceed the:0.25 increase the:0.2 affect the:0.16666666666666666 change the:0.14285714285714285 alter the:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +which:0.25 who:0.2 :0.55 +session,:0.25 ,:0.2 session:0.16666666666666666 :0.3833333333333333 +to:0.25 from the:0.2 of the:0.16666666666666666 to the:0.14285714285714285 into the:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +officers:0.25 Engineers:0.2 engineers:0.16666666666666666 men:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +as:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 s:0.2 :0.55 +the:0.9 :0.1 +with:0.25 at the:0.2 at:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +bore:0.25 bear:0.2 bears:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +in:0.25 at:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +only:0.25 merely:0.2 not:0.16666666666666666 :0.3833333333333333 +other:0.25 of the:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +work:0.25 properties:0.2 strength:0.16666666666666666 :0.3833333333333333 +seventh,:0.25 seventh:0.2 eighth:0.16666666666666666 eighth,:0.14285714285714285 :0.2404761904761905 +been:0.25 be:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 :0.75 +over:0.25 in:0.2 on:0.16666666666666666 :0.3833333333333333 +came to:0.25 were to:0.2 would:0.16666666666666666 :0.3833333333333333 +it:0.25 's:0.2 to:0.16666666666666666 a:0.14285714285714285 be:0.125 :0.11547619047619051 +The:0.25 the:0.2 The bitter:0.16666666666666666 :0.3833333333333333 +one:0.25 :0.75 +great:0.25 no:0.2 :0.55 +area:0.25 , place:0.2 place:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +any:0.25 every:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +when:0.25 while:0.2 :0.55 +the:0.9 :0.1 +touched:0.25 reached:0.2 had touched:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 friends and:0.2 our:0.16666666666666666 her:0.14285714285714285 :0.2404761904761905 +’:0.25 ’s:0.2 a:0.16666666666666666 will:0.14285714285714285 shall:0.125 :0.11547619047619051 +the:0.9 :0.1 +east:0.25 other:0.2 north:0.16666666666666666 left:0.14285714285714285 :0.2404761904761905 +arc:0.25 is:0.2 were:0.16666666666666666 are::0.14285714285714285 are:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 day:0.2 the day:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +this:0.25 were this:0.2 :0.55 +the:0.9 :0.1 +the disease:0.25 it all:0.2 it:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +shown:0.25 o shown:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +is:0.25 may be:0.2 :0.55 +identity:0.25 Identity:0.2 :0.55 +will:0.25 do:0.2 now will:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +verdict:0.25 jury:0.2 :0.55 +never:0.25 not:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +his:0.25 his present:0.2 :0.55 +the:0.9 :0.1 +we:0.25 I:0.2 they:0.16666666666666666 he:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 or:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +to:0.25 for:0.2 :0.55 +the:0.9 :0.1 +new:0.25 Pacific:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 a:0.2 Democratic:0.16666666666666666 Republican:0.14285714285714285 :0.2404761904761905 +putting:0.25 educating:0.2 preparing:0.16666666666666666 understanding:0.14285714285714285 showing:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +in the:0.25 ,:0.2 in:0.16666666666666666 of the:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +, in:0.25 from:0.2 , by:0.16666666666666666 by:0.14285714285714285 in:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +great:0.25 much:0.2 little:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.25 their:0.2 free:0.16666666666666666 :0.3833333333333333 +J:0.25 .:0.2 . J:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +A:0.25 Tbe:0.2 :0.55 +the:0.25 them:0.2 which was:0.16666666666666666 which:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +with:0.25 and:0.2 for all:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +employs:0.25 follows:0.2 uses:0.16666666666666666 has:0.14285714285714285 :0.2404761904761905 +deal with:0.25 handle:0.2 respond to:0.16666666666666666 cope with:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.25 a:0.2 his:0.16666666666666666 :0.3833333333333333 +,:0.25 a:0.2 s:0.16666666666666666 at:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +been:0.25 :0.75 +prevent:0.25 remedy:0.2 avoid:0.16666666666666666 :0.3833333333333333 +hospital,:0.25 hospital:0.2 hospital today:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +to:0.25 To:0.2 :0.55 +the:0.9 :0.1 +in the:0.25 by the:0.2 on the:0.16666666666666666 of the:0.14285714285714285 of:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +upon:0.25 on:0.2 :0.55 +by:0.25 in:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +of:0.25 :0.75 +very long:0.25 long,:0.2 long:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +s were:0.25 was:0.2 y was:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +defendants:0.25 persons:0.2 men:0.16666666666666666 :0.3833333333333333 +books:0.25 works:0.2 volumes:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +The:0.25 Tho:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 those:0.2 n:0.16666666666666666 :0.3833333333333333 +brought:0.25 put:0.2 sent:0.16666666666666666 thrown:0.14285714285714285 burned:0.125 :0.11547619047619051 +at S:0.25 at:0.2 at (:0.16666666666666666 :0.3833333333333333 +of:0.25 :0.75 +Has:0.25 Have:0.2 has:0.16666666666666666 :0.3833333333333333 +s of:0.25 s:0.2 .:0.16666666666666666 s.:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +few:0.25 :0.75 +this:0.25 the:0.2 that:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +night:0.25 day:0.2 evening:0.16666666666666666 :0.3833333333333333 +eth:0.25 the south:0.2 south:0.16666666666666666 the north:0.14285714285714285 :0.2404761904761905 +buy:0.25 purchase:0.2 :0.55 +the:0.9 :0.1 +, and:0.25 , so:0.2 and:0.16666666666666666 :0.3833333333333333 +great:0.25 new:0.2 very high:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +The:0.25 :0.75 +which:0.25 but:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +and:0.25 :0.75 +hand:0.25 gaze:0.2 gaze,:0.16666666666666666 :0.3833333333333333 +Baltimore:0.25 Harford:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 May:0.2 July:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +victims:0.25 objects:0.2 object:0.16666666666666666 :0.3833333333333333 +hands:0.25 trust,:0.2 trust:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +by:0.25 in:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +rights.:0.25 right.:0.2 privilege.:0.16666666666666666 authority.:0.14285714285714285 power.:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 each:0.2 a:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +when:0.25 as:0.2 and:0.16666666666666666 until:0.14285714285714285 while:0.125 :0.11547619047619051 +the:0.9 :0.1 +New:0.25 new:0.2 recent New:0.16666666666666666 :0.3833333333333333 +old:0.25 new:0.2 .:0.16666666666666666 John:0.14285714285714285 :0.2404761904761905 +but:0.25 and:0.2 :0.55 +color:0.25 hues:0.2 :0.55 +come here:0.25 come:0.2 :0.55 +the:0.9 :0.1 +bank:0.25 bank,:0.2 :0.55 +afford:0.25 manage:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +on:0.25 north on:0.2 south on:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +woman:0.25 woman,:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +these:0.25 the:0.2 :0.55 +the:0.9 :0.1 +the:0.25 their:0.2 :0.55 +the men:0.25 they:0.2 he:0.16666666666666666 :0.3833333333333333 +will be:0.25 is:0.2 s is:0.16666666666666666 :0.3833333333333333 +A Southern:0.25 Ohio River:0.2 Cleveland:0.16666666666666666 :0.3833333333333333 +to:0.25 t to:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 in the:0.2 on the:0.16666666666666666 from the:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +is:0.25 was:0.2 it was:0.16666666666666666 :0.3833333333333333 +;:0.25 ,:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +pause:0.25 smile:0.2 ing:0.16666666666666666 silence:0.14285714285714285 :0.2404761904761905 +have:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 the Jewish:0.2 his:0.16666666666666666 :0.3833333333333333 +or below:0.25 below:0.2 at:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +ly:0.25 ,:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +organize:0.25 shape:0.2 design:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.25 this:0.2 an:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 :0.75 +is:0.25 will find:0.2 considers:0.16666666666666666 will consider:0.14285714285714285 will make:0.125 :0.11547619047619051 +to:0.25 away from:0.2 at:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +mouth:0.25 foot:0.2 end:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +hands:0.25 hand:0.2 :0.55 +the:0.9 :0.1 +become:0.25 be like:0.2 be:0.16666666666666666 :0.3833333333333333 +the:0.25 a:0.2 this:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +be immediately:0.25 not be:0.2 be:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +less than:0.25 over:0.2 under:0.16666666666666666 more than:0.14285714285714285 :0.2404761904761905 +is:0.25 here is:0.2 :0.55 +that:0.25 :0.75 +to:0.25 :0.75 +four runs:0.25 two runs:0.2 three runs:0.16666666666666666 runs:0.14285714285714285 :0.2404761904761905 +Steel:0.25 The steel:0.2 The:0.16666666666666666 :0.3833333333333333 +with:0.25 in:0.2 :0.55 +as:0.25 in:0.2 into:0.16666666666666666 :0.3833333333333333 +residents:0.25 residents of:0.2 s:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +will:0.25 shall:0.2 is to:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +in:0.25 now in:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +ing lack:0.25 ing:0.2 ness:0.16666666666666666 :0.3833333333333333 +case:0.25 testimony:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +good:0.25 good?:0.2 great?:0.16666666666666666 better?:0.14285714285714285 :0.2404761904761905 +,:0.25 s,:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +shall:0.25 to:0.2 should:0.16666666666666666 :0.3833333333333333 +s in:0.25 s of:0.2 s from:0.16666666666666666 s to:0.14285714285714285 s along:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +a:0.25 by:0.2 .:0.16666666666666666 :0.3833333333333333 +the:0.25 my:0.2 our:0.16666666666666666 :0.3833333333333333 +A:0.25 :0.75 +union:0.25 chance:0.2 life:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +' of:0.25 for:0.2 of:0.16666666666666666 :0.3833333333333333 +anything:0.25 :0.75 +the:0.9 :0.1 +in:0.25 at:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 in:0.2 :0.55 +the:0.9 :0.1 +or:0.25 :0.75 +by state:0.25 by:0.2 by the:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +President.:0.25 Ho.:0.2 Ho::0.16666666666666666 Speaker.:0.14285714285714285 Ho,:0.125 :0.11547619047619051 +addition:0.25 :0.75 +the:0.25 a:0.2 his:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +loving:0.25 caring:0.2 tolerant:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +money,:0.25 money:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +dying,:0.25 sick:0.2 ill:0.16666666666666666 dead:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +railroad,:0.25 automobile,:0.2 wagon,:0.16666666666666666 steam:0.14285714285714285 :0.2404761904761905 +;:0.25 ,:0.2 :0.55 +actors,:0.25 actor,:0.2 actors:0.16666666666666666 writers,:0.14285714285714285 people,:0.125 :0.11547619047619051 +the:0.9 :0.1 +highly:0.25 most:0.2 very:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +, and:0.25 of:0.2 :0.55 +to:0.25 :0.75 +could:0.25 could not:0.2 can:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +date:0.25 time:0.2 :0.55 +E.:0.25 A.:0.2 W.:0.16666666666666666 M.:0.14285714285714285 J.:0.125 :0.11547619047619051 +the:0.9 :0.1 +Many:0.25 Most:0.2 Some:0.16666666666666666 :0.3833333333333333 +thoughts:0.25 remarks:0.2 words:0.16666666666666666 :0.3833333333333333 +inclined:0.25 able:0.2 ing:0.16666666666666666 ed:0.14285714285714285 :0.2404761904761905 +poor:0.25 loss of:0.2 good:0.16666666666666666 :0.3833333333333333 +or:0.25 and:0.2 :0.55 +when:0.25 in:0.2 :0.55 +' was:0.25 is:0.2 was:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +large:0.25 small:0.2 huge:0.16666666666666666 :0.3833333333333333 +should be:0.25 is:0.2 are:0.16666666666666666 be:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 an:0.2 the same:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +from another:0.25 by:0.2 from:0.16666666666666666 :0.3833333333333333 +made:0.25 :0.75 +the:0.9 :0.1 +to:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +is said:0.25 seems:0.2 seemed:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +e in:0.25 them in:0.2 in:0.16666666666666666 e:0.14285714285714285 :0.2404761904761905 +an:0.25 An:0.2 and an:0.16666666666666666 :0.3833333333333333 +ing to:0.25 to:0.2 :0.55 +never:0.25 not:0.2 :0.55 +the:0.9 :0.1 +Since:0.25 :0.75 +wheat:0.25 it:0.2 corn:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +or:0.25 and:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +although:0.25 but:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +are:0.25 s are:0.2 :0.55 +proceeds:0.25 sum:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 this:0.2 :0.55 +the:0.9 :0.1 +will:0.25 shall:0.2 do:0.16666666666666666 :0.3833333333333333 +in:0.25 on:0.2 :0.55 +the:0.9 :0.1 +and,:0.25 but:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +problems,:0.25 remedies,:0.2 medical:0.16666666666666666 disease,:0.14285714285714285 symptoms,:0.125 :0.11547619047619051 +the:0.9 :0.1 +first:0.25 old:0.2 same:0.16666666666666666 :0.3833333333333333 +the:0.25 :0.75 +following letter:0.25 request:0.2 letter:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 a:0.2 an:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +make:0.25 makes the:0.2 makes:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +, on:0.25 in:0.2 , in:0.16666666666666666 on:0.14285714285714285 :0.2404761904761905 +ter:0.25 level of:0.2 e:0.16666666666666666 est:0.14285714285714285 -:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 she would:0.2 she could:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +and:0.25 :0.75 +or five:0.25 hundred:0.2 -:0.16666666666666666 :0.3833333333333333 +little:0.25 small:0.2 tiny:0.16666666666666666 :0.3833333333333333 +was:0.25 :0.75 +30:0.25 p:0.2 :0.55 +the:0.9 :0.1 +the:0.25 a:0.2 th:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 and of:0.2 and:0.16666666666666666 :0.3833333333333333 +, and:0.25 &:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +only one:0.25 one:0.2 just one:0.16666666666666666 :0.3833333333333333 +ing here:0.25 ing:0.2 :0.55 +the:0.9 :0.1 +will:0.25 would:0.2 is to:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +their:0.25 any:0.2 :0.55 +the:0.25 a:0.2 that:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +this morning:0.25 ,:0.2 he:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +find any:0.25 find:0.2 get any:0.16666666666666666 find much:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +been:0.25 :0.75 +the:0.25 the basic:0.2 the moral:0.16666666666666666 the democratic:0.14285714285714285 :0.2404761904761905 +in:0.25 :0.75 +the:0.9 :0.1 +back:0.25 side:0.2 middle:0.16666666666666666 :0.3833333333333333 +edge:0.25 end:0.2 :0.55 +the:0.9 :0.1 +parents,:0.25 mothers,:0.2 parents:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +Juno:0.25 May:0.2 June:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the face:0.25 fear:0.2 the fear:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.25 th:0.2 May:0.16666666666666666 :0.3833333333333333 +continuing:0.25 making:0.2 renewing:0.16666666666666666 :0.3833333333333333 +working force:0.25 capacity:0.2 sense:0.16666666666666666 work:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +ting:0.25 ing:0.2 tion of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +victim:0.25 corpse:0.2 body:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.25 print:0.2 printing:0.16666666666666666 leading:0.14285714285714285 most:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +dim shade:0.25 hint:0.2 :0.55 +the:0.9 :0.1 +which:0.25 that:0.2 that have:0.16666666666666666 :0.3833333333333333 +year:0.25 -year:0.2 - year:0.16666666666666666 -month:0.14285714285714285 :0.2404761904761905 +the only:0.25 the most:0.2 the:0.16666666666666666 any:0.14285714285714285 a:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.25 on his:0.2 on the:0.16666666666666666 :0.3833333333333333 +scarce:0.25 rare:0.2 common:0.16666666666666666 mere:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 their:0.2 the holiday:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +great:0.25 enough:0.2 sufficient:0.16666666666666666 :0.3833333333333333 +turned:0.25 started:0.2 began:0.16666666666666666 :0.3833333333333333 +the:0.25 your:0.2 these:0.16666666666666666 :0.3833333333333333 +at:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +people:0.25 persons,:0.2 persons:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +for:0.25 within:0.2 in:0.16666666666666666 after:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +put under:0.25 placed under:0.2 under:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +opened:0.25 left:0.2 was out:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +asking:0.25 to tell:0.2 to show:0.16666666666666666 telling:0.14285714285714285 :0.2404761904761905 +and:0.25 And:0.2 :0.55 +down.:0.25 away.:0.2 .:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +.:0.25 i.:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 in:0.2 o:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +this:0.25 that:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 that:0.2 this:0.16666666666666666 their:0.14285714285714285 a:0.125 :0.11547619047619051 +, and:0.25 ,:0.2 and:0.16666666666666666 s and:0.14285714285714285 :0.2404761904761905 +I:0.25 you:0.2 i:0.16666666666666666 :0.3833333333333333 +business:0.25 credit:0.2 :0.55 +the:0.9 :0.1 +have been:0.25 be:0.2 :0.55 +is:0.25 is also:0.2 has been:0.16666666666666666 's:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +to have:0.25 to:0.2 to be:0.16666666666666666 and:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +were:0.25 went on:0.2 went:0.16666666666666666 :0.3833333333333333 +to:0.25 :0.75 +to:0.25 of all:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +is:0.25 has:0.2 :0.55 +too good:0.25 enough of:0.2 such:0.16666666666666666 :0.3833333333333333 +the:0.25 an:0.2 :0.55 +had:0.25 fully:0.2 :0.55 +support:0.25 vote:0.2 votes:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +The:0.25 An:0.2 :0.55 +Did:0.25 Do:0.2 :0.55 +obsessed:0.25 concerned:0.2 :0.55 +have:0.25 , have:0.2 :0.55 +case to:0.25 to:0.2 thing to:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +lovely:0.25 very happy:0.2 very good:0.16666666666666666 happy:0.14285714285714285 :0.2404761904761905 +now:0.25 being:0.2 changing and:0.16666666666666666 gaining:0.14285714285714285 growing and:0.125 :0.11547619047619051 +consider:0.25 deem:0.2 will declare:0.16666666666666666 declare:0.14285714285714285 :0.2404761904761905 +with:0.25 to:0.2 in:0.16666666666666666 on:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +s in:0.25 in:0.2 d in:0.16666666666666666 :0.3833333333333333 +to:0.25 wife to:0.2 of:0.16666666666666666 :0.3833333333333333 +our:0.25 the American:0.2 American:0.16666666666666666 :0.3833333333333333 +to be:0.25 to sit:0.2 to stand:0.16666666666666666 be:0.14285714285714285 :0.2404761904761905 +The:0.25 :0.75 +s Island:0.25 Islands:0.2 ing:0.16666666666666666 Island:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +to:0.25 or:0.2 :0.55 +noon:0.25 ,:0.2 noon,:0.16666666666666666 :0.3833333333333333 +new:0.25 Kansas:0.2 :0.55 +North:0.25 Arctic:0.2 Alaskan:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +,:0.25 of:0.2 .:0.16666666666666666 :0.3833333333333333 +4:0.25 4,:0.2 4.:0.16666666666666666 ]:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +except for:0.25 except:0.2 including:0.16666666666666666 :0.3833333333333333 +heat:0.25 early hours:0.2 middle:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.25 his:0.2 :0.55 +90:0.25 80:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +E.:0.25 A.:0.2 M.:0.16666666666666666 J.:0.14285714285714285 R.:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +.:0.25 :0.75 +the:0.9 :0.1 +the:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +first month:0.25 middle:0.2 first half:0.16666666666666666 first week:0.14285714285714285 second half:0.125 :0.11547619047619051 +thousand:0.25 hundred:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +Mount:0.25 the:0.2 both:0.16666666666666666 St.:0.14285714285714285 Prince:0.125 :0.11547619047619051 +the:0.9 :0.1 +house,:0.25 house:0.2 property,:0.16666666666666666 property:0.14285714285714285 hotel,:0.125 :0.11547619047619051 +north:0.25 south:0.2 west:0.16666666666666666 :0.3833333333333333 +frequent:0.25 :0.75 +Hose:0.25 Hose tree:0.2 little:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +any:0.25 a:0.2 no:0.16666666666666666 :0.3833333333333333 +will be:0.25 is:0.2 may be:0.16666666666666666 is also:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +could:0.25 would:0.2 started to:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +which:0.25 had:0.2 :0.55 +the:0.9 :0.1 +his:0.25 her:0.2 :0.55 +the:0.9 :0.1 +States District:0.25 States district:0.2 States Supreme:0.16666666666666666 States:0.14285714285714285 :0.2404761904761905 +ty:0.25 y:0.2 a:0.16666666666666666 e:0.14285714285714285 :0.2404761904761905 +no more:0.25 far more:0.2 more:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +one:0.25 an:0.2 half an:0.16666666666666666 :0.3833333333333333 +or:0.25 and:0.2 :0.55 +the:0.9 :0.1 +about:0.25 of:0.2 :0.55 +to gradually:0.25 to slowly:0.2 to:0.16666666666666666 to rapidly:0.14285714285714285 :0.2404761904761905 +a:0.25 e:0.2 a the:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 the exact:0.2 :0.55 +the:0.9 :0.1 +,:0.25 s,:0.2 :0.55 +we:0.25 , we:0.2 :0.55 +per:0.25 a:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 their:0.2 of their:0.16666666666666666 of the:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +will be:0.25 are not:0.2 are:0.16666666666666666 would be:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +in:0.25 of:0.2 :0.55 +1.000.:0.25 1.000:0.2 :0.55 +Most:0.25 The rest:0.2 Some:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +s:0.25 on:0.2 :0.55 +the:0.9 :0.1 +do not:0.25 can not:0.2 may not:0.16666666666666666 cannot:0.14285714285714285 :0.2404761904761905 +been:0.25 :0.75 +the:0.9 :0.1 +t:0.25 a:0.2 are:0.16666666666666666 .:0.14285714285714285 :0.2404761904761905 +state.:0.25 condition.:0.2 .:0.16666666666666666 place.:0.14285714285714285 one.:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +of cruel:0.25 of terrible:0.2 of:0.16666666666666666 e of:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 their:0.2 all:0.16666666666666666 :0.3833333333333333 +cars:0.25 signs:0.2 motorists:0.16666666666666666 :0.3833333333333333 +upon:0.25 over:0.2 on:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +had:0.25 tried:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 a:0.2 :0.55 +take any:0.25 take:0.2 call for:0.16666666666666666 take immediate:0.14285714285714285 :0.2404761904761905 +(that:0.25 , that:0.2 that:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +A:0.25 A large:0.2 :0.55 +On:0.25 And in:0.2 In:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +writings:0.25 works:0.2 work,:0.16666666666666666 work:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +L.:0.25 A.:0.2 M.:0.16666666666666666 J.:0.14285714285714285 R.:0.125 :0.11547619047619051 +attempt:0.25 effort:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 this:0.2 :0.55 +testimony:0.25 report:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +2:0.25 6:0.2 . 4:0.16666666666666666 3:0.14285714285714285 :0.2404761904761905 +remove:0.25 see:0.2 read:0.16666666666666666 remember:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +and it:0.25 which:0.2 and:0.16666666666666666 :0.3833333333333333 +It never:0.25 It:0.2 it:0.16666666666666666 :0.3833333333333333 +will:0.25 shall:0.2 may:0.16666666666666666 :0.3833333333333333 +gave:0.25 :0.75 +the:0.9 :0.1 +rough:0.25 preliminary:0.2 detailed:0.16666666666666666 very rough:0.14285714285714285 :0.2404761904761905 +in his:0.25 on his:0.2 in the:0.16666666666666666 in:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +marble:0.25 stone:0.2 o:0.16666666666666666 of:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.25 the peace:0.2 the Bristol:0.16666666666666666 Bristol:0.14285714285714285 :0.2404761904761905 +prove:0.25 be:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +.:0.25 -:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +t.:0.25 .:0.2 :0.55 +further:0.25 :0.75 +continue:0.25 go:0.2 carry:0.16666666666666666 :0.3833333333333333 +find out:0.25 see:0.2 know:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +other political:0.25 other:0.2 other democratic:0.16666666666666666 political:0.14285714285714285 :0.2404761904761905 +which:0.25 and:0.2 and this:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +is:0.25 seems:0.2 is not:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +suffering,:0.25 sufferings:0.2 suffering:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 that:0.2 that the:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +Investment:0.25 Trade:0.2 Exchange:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +Europe:0.25 the world:0.2 Germany:0.16666666666666666 the country:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +could:0.25 did:0.2 :0.55 +e:0.25 s:0.2 .:0.16666666666666666 :0.3833333333333333 +would have:0.25 had:0.2 could have:0.16666666666666666 has:0.14285714285714285 :0.2404761904761905 +,:0.25 .:0.2 !:0.16666666666666666 :0.3833333333333333 +able:0.25 entitled:0.2 free:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +Slower:0.25 More:0.2 Sooner:0.16666666666666666 Faster:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +Nations:0.25 States Constitution:0.2 States:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +thing just:0.25 thing:0.2 stuff:0.16666666666666666 :0.3833333333333333 +safety,:0.25 safety:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 not to:0.2 :0.55 +by:0.25 in:0.2 by our:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +About:0.25 Almost:0.2 More than:0.16666666666666666 Some:0.14285714285714285 :0.2404761904761905 +break:0.25 return:0.2 rush back:0.16666666666666666 rush:0.14285714285714285 :0.2404761904761905 +members,:0.25 Members:0.2 Members,:0.16666666666666666 members:0.14285714285714285 :0.2404761904761905 +upon:0.25 on:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +seat:0.25 office:0.2 position:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.25 these:0.2 :0.55 +property:0.25 area:0.2 place:0.16666666666666666 :0.3833333333333333 +moon,:0.25 day,:0.2 day:0.16666666666666666 sky,:0.14285714285714285 night,:0.125 :0.11547619047619051 +,:0.25 , and:0.2 and:0.16666666666666666 :0.3833333333333333 +without:0.25 without any:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +from:0.25 :0.75 +stand:0.25 pray:0.2 and stand:0.16666666666666666 :0.3833333333333333 +to:0.25 :0.75 +from:0.25 for:0.2 :0.55 +e:0.25 Town,:0.2 York,:0.16666666666666666 Town:0.14285714285714285 -:0.125 :0.11547619047619051 +,:0.25 J.:0.2 .:0.16666666666666666 :0.3833333333333333 +and,:0.25 and:0.2 :0.55 +it is:0.25 is:0.2 would be:0.16666666666666666 :0.3833333333333333 +to:0.25 , to:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +what:0.25 no:0.2 :0.55 +the:0.9 :0.1 +be:0.25 :0.75 +,:0.25 that:0.2 of the:0.16666666666666666 of:0.14285714285714285 :0.2404761904761905 +will:0.25 shall:0.2 must:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +, telling:0.25 told:0.2 telling:0.16666666666666666 :0.3833333333333333 +On:0.25 at:0.2 on:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +four:0.25 four possible:0.2 more:0.16666666666666666 :0.3833333333333333 +burning:0.25 rot:0.2 incident:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +king:0.25 marriage:0.2 :0.55 +the:0.9 :0.1 +,:0.25 conditions,:0.2 , and:0.16666666666666666 , who:0.14285714285714285 he:0.125 :0.11547619047619051 +the:0.9 :0.1 +might:0.25 would:0.2 'd:0.16666666666666666 :0.3833333333333333 +is:0.25 shall be:0.2 be:0.16666666666666666 :0.3833333333333333 +in any:0.25 for no:0.2 in no:0.16666666666666666 in some:0.14285714285714285 in:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +;:0.25 o;:0.2 :0.55 +appearance;:0.25 shape;:0.2 shape,:0.16666666666666666 appearance,:0.14285714285714285 appearance::0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 his:0.2 this:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +high:0.25 o:0.2 increased:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +relation:0.25 respect:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +quite:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +say,:0.25 ,:0.2 believe,:0.16666666666666666 think,:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +little or:0.25 be:0.2 :0.55 +out:0.25 it:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +full:0.25 whole:0.2 :0.55 +light:0.25 the wake:0.2 honor:0.16666666666666666 memory:0.14285714285714285 :0.2404761904761905 +the:0.25 his:0.2 every:0.16666666666666666 :0.3833333333333333 +all:0.25 not:0.2 utter:0.16666666666666666 :0.3833333333333333 +black,:0.25 black:0.2 white:0.16666666666666666 white,:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +only:0.25 o:0.2 from them:0.16666666666666666 :0.3833333333333333 +training,:0.25 education:0.2 experience:0.16666666666666666 training:0.14285714285714285 :0.2404761904761905 +procedure:0.25 law:0.2 :0.55 +from:0.25 into:0.2 :0.55 +s of:0.25 in:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +of:0.25 now:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +further:0.25 the:0.2 his:0.16666666666666666 this:0.14285714285714285 :0.2404761904761905 +his consent:0.25 his permission:0.2 permission:0.16666666666666666 :0.3833333333333333 +are found:0.25 exist:0.2 are:0.16666666666666666 lie:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.25 this:0.2 :0.55 +the:0.9 :0.1 +way:0.25 path:0.2 tracks:0.16666666666666666 :0.3833333333333333 +the:0.25 the harsh:0.2 this:0.16666666666666666 the simple:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +in:0.25 for:0.2 of:0.16666666666666666 :0.3833333333333333 +at:0.25 on:0.2 :0.55 +this:0.25 that:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +in:0.25 :0.75 +the:0.9 :0.1 +but:0.25 and:0.2 :0.55 +the:0.9 :0.1 +worse:0.25 best:0.2 better:0.16666666666666666 hang:0.14285714285714285 :0.2404761904761905 +the:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 of:0.2 no:0.16666666666666666 :0.3833333333333333 +A:0.25 A large:0.2 :0.55 +who:0.25 , who:0.2 that:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +to:0.25 :0.75 +the:0.25 :0.75 +the:0.9 :0.1 +were:0.25 came:0.2 went:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +of:0.25 :0.75 +the:0.9 :0.1 +motor:0.25 power:0.2 :0.55 +, and:0.25 to:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +2 and:0.25 2,3,:0.2 2,:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +north:0.25 south:0.2 :0.55 +New England:0.25 New York:0.2 Maine:0.16666666666666666 :0.3833333333333333 +decided:0.25 agreed:0.2 been ordered:0.16666666666666666 :0.3833333333333333 +neither:0.25 :0.75 +the:0.9 :0.1 +that:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 some:0.2 a:0.16666666666666666 his:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +is:0.25 has been:0.2 can be:0.16666666666666666 has:0.14285714285714285 :0.2404761904761905 +point:0.25 suggestion:0.2 :0.55 +to:0.25 for:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +The:0.25 :0.75 +fulness of:0.25 of:0.2 :0.55 +the:0.9 :0.1 +answer:0.25 opinion:0.2 reply:0.16666666666666666 :0.3833333333333333 +the:0.25 all the:0.2 the holy:0.16666666666666666 :0.3833333333333333 +low:0.25 reasonable:0.2 cheap:0.16666666666666666 :0.3833333333333333 +tree:0.25 tree there:0.2 :0.55 +she:0.25 Pat:0.2 he:0.16666666666666666 :0.3833333333333333 +of:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 by:0.2 or:0.16666666666666666 feet by:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +wearing:0.25 , dressed:0.2 , wearing:0.16666666666666666 in:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +boys:0.25 men:0.2 :0.55 +the:0.9 :0.1 +sometimes even:0.25 even:0.2 :0.55 +the:0.9 :0.1 +use:0.25 :0.75 +, and:0.25 ,:0.2 and:0.16666666666666666 :0.3833333333333333 +public service:0.25 personal:0.2 public:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +t:0.25 .:0.2 :0.55 +numerous:0.25 serious:0.2 many:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +gained:0.25 possessed:0.2 acquired:0.16666666666666666 :0.3833333333333333 +reservation:0.25 district:0.2 :0.55 +the:0.9 :0.1 +, and:0.25 and:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +subject:0.25 issue:0.2 question:0.16666666666666666 matter:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +, On:0.25 on:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +including:0.25 and:0.2 :0.55 +the:0.25 ,:0.2 , the:0.16666666666666666 the market:0.14285714285714285 :0.2404761904761905 +the:0.25 and that:0.2 that:0.16666666666666666 th,:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +later,:0.25 later:0.2 after:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +is:0.25 been:0.2 has been:0.16666666666666666 :0.3833333333333333 +the:0.25 our:0.2 these:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +or:0.25 and:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +have:0.25 let:0.2 :0.55 +the:0.9 :0.1 +aud:0.25 and:0.2 :0.55 +the:0.9 :0.1 +could:0.25 had to:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +.,:0.25 .:0.2 :0.55 +have:0.25 be:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 :0.75 +by:0.25 in:0.2 :0.55 +held:0.25 conducted:0.2 carried out:0.16666666666666666 of:0.14285714285714285 :0.2404761904761905 +employs:0.25 chooses:0.2 use:0.16666666666666666 employ:0.14285714285714285 :0.2404761904761905 +years:0.25 part:0.2 days:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +s in:0.25 in:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 only:0.2 the most:0.16666666666666666 all:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +lor:0.25 was:0.2 :0.55 +the:0.9 :0.1 +words,:0.25 word:0.2 words:0.16666666666666666 word,:0.14285714285714285 :0.2404761904761905 +that in:0.25 in:0.2 , in:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +strongly:0.25 a:0.2 greatly:0.16666666666666666 well:0.14285714285714285 :0.2404761904761905 +impressed:0.25 satisfied:0.2 pleased:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +presence:0.25 absence:0.2 opinion:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +among:0.25 in:0.2 between:0.16666666666666666 s among:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +time:0.25 end:0.2 :0.55 +,:0.25 , and:0.2 from:0.16666666666666666 , with:0.14285714285714285 :0.2404761904761905 +train:0.25 :0.75 +, should:0.25 should:0.2 must:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +evening,:0.25 program:0.2 program,:0.16666666666666666 evening:0.14285714285714285 :0.2404761904761905 +to:0.25 :0.75 +fruit:0.25 flesh:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +with:0.25 in:0.2 :0.55 +by:0.25 in:0.2 :0.55 +not depend:0.25 depend:0.2 rely:0.16666666666666666 :0.3833333333333333 +have:0.25 are:0.2 will have:0.16666666666666666 are of:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +length:0.25 distance,:0.2 distance:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +is:0.25 be:0.2 :0.55 +,:0.25 opinion,:0.2 fact:0.16666666666666666 fact,:0.14285714285714285 :0.2404761904761905 +Lou:0.25 Ann:0.2 Mary:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +stopped:0.25 visited:0.2 arrived:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +says:0.25 declares:0.2 states:0.16666666666666666 mentions:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +was:0.25 was so:0.2 :0.55 +the:0.9 :0.1 +1:0.25 2:0.2 :0.55 +have been:0.25 to be:0.2 are:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +county:0.25 said:0.2 :0.55 +silver:0.25 flowers,:0.2 flowers:0.16666666666666666 ornament:0.14285714285714285 :0.2404761904761905 +him not:0.25 George:0.2 him:0.16666666666666666 :0.3833333333333333 +which:0.25 that:0.2 :0.55 +be:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +of:0.25 of any:0.2 :0.55 +only:0.25 best:0.2 :0.55 +the most:0.25 very:0.2 most:0.16666666666666666 :0.3833333333333333 +to:0.25 and to:0.2 and:0.16666666666666666 :0.3833333333333333 +E.:0.25 C.:0.2 I).:0.16666666666666666 H.:0.14285714285714285 J.:0.125 :0.11547619047619051 +found:0.25 discovered:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +With the:0.25 After:0.2 At:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 the brick:0.2 the stone:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +it is:0.25 is:0.2 and is:0.16666666666666666 a:0.14285714285714285 It is:0.125 :0.11547619047619051 +two:0.25 two main:0.2 two important:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +gave:0.25 :0.75 +the:0.9 :0.1 +found:0.25 stored:0.2 cut:0.16666666666666666 planted:0.14285714285714285 :0.2404761904761905 +they:0.25 :0.75 +Senate:0.25 message:0.2 President:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +which:0.25 that:0.2 :0.55 +fort:0.25 foot:0.2 feet:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +fourteen:0.25 fifteen:0.2 eighty:0.16666666666666666 twenty:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 as:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +and,:0.25 or:0.2 or,:0.16666666666666666 and:0.14285714285714285 :0.2404761904761905 +the:0.25 not the:0.2 la the:0.16666666666666666 :0.3833333333333333 +e:0.25 s:0.2 e been:0.16666666666666666 :0.3833333333333333 +in:0.25 about:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +or:0.25 and:0.2 :0.55 +the:0.25 to:0.2 to take:0.16666666666666666 to the:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +Park:0.25 Second:0.2 :0.55 +any:0.25 no:0.2 :0.55 +the:0.9 :0.1 +culture,:0.25 religion,:0.2 opinion:0.16666666666666666 opinion,:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +which:0.25 , which:0.2 that:0.16666666666666666 :0.3833333333333333 +or:0.25 and:0.2 :0.55 +y.:0.25 t.:0.2 .:0.16666666666666666 :0.3833333333333333 +raise:0.25 raised:0.2 :0.55 +The:0.25 But the:0.2 :0.55 +the General:0.25 Mr.:0.2 him and:0.16666666666666666 him by:0.14285714285714285 General:0.125 :0.11547619047619051 +produced:0.25 produced in:0.2 produced by:0.16666666666666666 planted in:0.14285714285714285 produced during:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +&:0.25 and:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +, and:0.25 ,:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +kinds:0.25 areas:0.2 fields:0.16666666666666666 forms:0.14285714285714285 levels:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +of:0.25 :0.75 +said,:0.25 said:0.2 said::0.16666666666666666 :0.3833333333333333 +began to:0.25 could:0.2 started to:0.16666666666666666 :0.3833333333333333 +at:0.25 of:0.2 :0.55 +the:0.9 :0.1 +first:0.25 second:0.2 :0.55 +of:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +attention:0.25 admiration:0.2 respect:0.16666666666666666 ire:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +within:0.25 in:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +through:0.25 in:0.2 :0.55 +the:0.9 :0.1 +few:0.25 thousand:0.2 hundred:0.16666666666666666 :0.3833333333333333 +direction:0.25 the tide:0.2 mind:0.16666666666666666 his mind:0.14285714285714285 :0.2404761904761905 +there:0.25 :0.75 +in very:0.25 in:0.2 not in:0.16666666666666666 :0.3833333333333333 +charter:0.25 :0.75 +she:0.25 sho:0.2 he:0.16666666666666666 :0.3833333333333333 +to:0.25 against:0.2 :0.55 +the:0.9 :0.1 +needed to:0.25 to:0.2 required to:0.16666666666666666 :0.3833333333333333 +used:0.25 would use:0.2 :0.55 +the:0.9 :0.1 +t:0.25 of:0.2 -:0.16666666666666666 :0.3833333333333333 +Steel:0.25 Rubber:0.2 Steel,:0.16666666666666666 ':0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +gave:0.25 sold:0.2 provided:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +,:0.25 .,:0.2 .:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +any:0.25 :0.75 +in:0.25 for:0.2 during:0.16666666666666666 s for:0.14285714285714285 of:0.125 :0.11547619047619051 +universe:0.25 country:0.2 world:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +paragraph::0.25 ::0.2 paragraph.:0.16666666666666666 .:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +residence.:0.25 residence:0.2 residence at:0.16666666666666666 home,:0.14285714285714285 residence,:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +get in:0.25 get into:0.2 enter:0.16666666666666666 :0.3833333333333333 +Nations:0.25 States:0.2 Kingdom:0.16666666666666666 :0.3833333333333333 +were:0.25 are:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 paper:0.2 sheets:0.16666666666666666 s:0.14285714285714285 sheet:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +is:0.25 may make:0.2 makes:0.16666666666666666 will make:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +for:0.25 at:0.2 :0.55 +there:0.25 probably:0.2 always:0.16666666666666666 still:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +county,:0.25 ,:0.2 County:0.16666666666666666 County,:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +* that:0.25 that:0.2 :0.55 +night:0.25 night,:0.2 evening:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +which:0.25 that:0.2 that had:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +to:0.25 to either:0.2 :0.55 +bug:0.25 ,:0.2 :0.55 +value:0.25 price:0.2 :0.55 +the:0.9 :0.1 +But we:0.25 We must:0.2 We should:0.16666666666666666 We:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +and:0.25 on the:0.2 of the:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 my:0.2 his:0.16666666666666666 :0.3833333333333333 +sentence:0.25 term:0.2 :0.55 +that they:0.25 , and:0.2 they:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +)):0.25 ):0.2 ish:0.16666666666666666 )e:0.14285714285714285 )t:0.125 :0.11547619047619051 +the:0.9 :0.1 +to:0.25 er:0.2 er to:0.16666666666666666 :0.3833333333333333 +?:0.25 .:0.2 ?":0.16666666666666666 :0.3833333333333333 +war:0.25 evil:0.2 the enemy:0.16666666666666666 war,:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 the great:0.2 the general:0.16666666666666666 the larger:0.14285714285714285 the grand:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +campaign:0.25 supporters:0.2 :0.55 +concentrated:0.25 focusing:0.2 which depends:0.16666666666666666 based:0.14285714285714285 concentrating:0.125 :0.11547619047619051 +the:0.9 :0.1 +cloth:0.25 oil:0.2 :0.55 +is:0.25 had been:0.2 was not:0.16666666666666666 was:0.14285714285714285 mouth was:0.125 :0.11547619047619051 +the:0.9 :0.1 +payment:0.25 :0.75 +the:0.9 :0.1 +to:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +leaves:0.25 , rosemary:0.2 s:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +first:0.25 second:0.2 third:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +to settle:0.25 for:0.2 in:0.16666666666666666 :0.3833333333333333 +little:0.25 body and:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +favor:0.25 favour:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +and:0.25 :0.75 +court:0.25 County Court:0.2 Court:0.16666666666666666 :0.3833333333333333 +if:0.25 but:0.2 and:0.16666666666666666 :0.3833333333333333 +be:0.25 :0.75 +,:0.25 was:0.2 :0.55 +will be:0.25 vote:0.2 be:0.16666666666666666 :0.3833333333333333 +they:0.25 it:0.2 he:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the scheme:0.25 that it:0.2 it:0.16666666666666666 it has:0.14285714285714285 :0.2404761904761905 +I,:0.25 and,:0.2 and:0.16666666666666666 so,:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +become:0.25 grown:0.2 been:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +?:0.25 »:0.2 ":0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +to having:0.25 to:0.2 with:0.16666666666666666 :0.3833333333333333 +death.:0.25 sudden death:0.2 death:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +C.:0.25 A.:0.2 W.:0.16666666666666666 J.:0.14285714285714285 R.:0.125 :0.11547619047619051 +city.:0.25 neighborhood.:0.2 village.:0.16666666666666666 suburb.:0.14285714285714285 town.:0.125 :0.11547619047619051 +his:0.25 :0.75 +school:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +fire:0.25 local fire:0.2 :0.55 +the:0.9 :0.1 +about what:0.25 what:0.2 that:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +or:0.25 and:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +a:0.25 of:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +from head:0.25 going:0.2 from the:0.16666666666666666 fro:0.14285714285714285 from:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +may:0.25 would:0.2 might:0.16666666666666666 :0.3833333333333333 +e,:0.25 t,:0.2 -:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +demand:0.25 demand,:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +of:0.25 :0.75 +the:0.9 :0.1 +account:0.25 explanation:0.2 description:0.16666666666666666 :0.3833333333333333 +benefit:0.25 good:0.2 interests:0.16666666666666666 :0.3833333333333333 +have:0.25 be,:0.2 have,:0.16666666666666666 hold,:0.14285714285714285 be:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +shall have:0.25 has:0.2 :0.55 +the:0.9 :0.1 +recon-:0.25 recon:0.2 con-:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +On:0.25 In:0.2 :0.55 +the:0.9 :0.1 +for:0.25 of both:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +to use:0.25 of:0.2 of using:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +;:0.25 , and:0.2 ; and:0.16666666666666666 :0.3833333333333333 +ting:0.25 ging:0.2 holding:0.16666666666666666 ing:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +part:0.25 member:0.2 :0.55 +the:0.25 a:0.2 no:0.16666666666666666 :0.3833333333333333 +as:0.25 in:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +its widespread:0.25 the:0.2 this:0.16666666666666666 , its:0.14285714285714285 its:0.125 :0.11547619047619051 +from:0.25 , from:0.2 :0.55 +the:0.25 the new:0.2 her:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +and in:0.25 in:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +;:0.25 ,:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +may:0.25 can:0.2 ami:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +with:0.25 to:0.2 :0.55 +t:0.25 i:0.2 f:0.16666666666666666 a:0.14285714285714285 be:0.125 :0.11547619047619051 +it.:0.25 them:0.2 them.:0.16666666666666666 it:0.14285714285714285 :0.2404761904761905 +the:0.25 serve as:0.2 be the:0.16666666666666666 be:0.14285714285714285 :0.2404761904761905 +had:0.25 would take:0.2 would show:0.16666666666666666 would have:0.14285714285714285 has:0.125 :0.11547619047619051 +,:0.25 voice:0.2 voice,:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +with:0.25 in:0.2 on:0.16666666666666666 :0.3833333333333333 +was:0.25 was Joe:0.2 :0.55 +The:0.25 the:0.2 The very:0.16666666666666666 :0.3833333333333333 +were composed:0.25 consisted:0.2 are composed:0.16666666666666666 consist:0.14285714285714285 :0.2404761904761905 +will:0.25 is:0.2 will be:0.16666666666666666 :0.3833333333333333 +By:0.25 During:0.2 In:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +water:0.25 :0.75 +at:0.25 of:0.2 :0.55 +the:0.9 :0.1 +inches:0.25 feet:0.2 :0.55 +,:0.25 or:0.2 :0.55 +young lawyer:0.25 lawyer:0.2 girl:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 .:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +would have:0.25 had:0.2 has:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +over:0.25 in:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +made:0.25 are making:0.2 have made:0.16666666666666666 made very:0.14285714285714285 :0.2404761904761905 +to:0.25 :0.75 +3:0.25 :0.75 +friends:0.25 enemies:0.2 possible enemies:0.16666666666666666 :0.3833333333333333 +The:0.25 These:0.2 But the:0.16666666666666666 :0.3833333333333333 +the:0.25 a:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +t:0.25 sed:0.2 e:0.16666666666666666 ing:0.14285714285714285 :0.2404761904761905 +Sally:0.25 she:0.2 he:0.16666666666666666 :0.3833333333333333 +to be:0.25 is:0.2 , and:0.16666666666666666 to the:0.14285714285714285 :0.2404761904761905 +personal:0.25 public:0.2 private:0.16666666666666666 :0.3833333333333333 +l:0.25 big:0.2 large:0.16666666666666666 small:0.14285714285714285 bright:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +possibility:0.25 means:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +program:0.25 schedule:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +than:0.25 :0.75 +the:0.9 :0.1 +ent:0.25 t:0.2 i:0.16666666666666666 -:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +been:0.25 now been:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +Both:0.25 However,:0.2 :0.55 +r men:0.25 omen:0.2 r:0.16666666666666666 o men:0.14285714285714285 o:0.125 :0.11547619047619051 +the boys:0.25 they certainly:0.2 they:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +tests:0.25 examinations:0.2 :0.55 +the:0.9 :0.1 +felt:0.25 was convinced:0.2 knew:0.16666666666666666 :0.3833333333333333 +as:0.25 and:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +4,:0.25 1,:0.2 21,:0.16666666666666666 5,:0.14285714285714285 2,:0.125 :0.11547619047619051 +s on:0.25 of:0.2 on:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +draw:0.25 take:0.2 :0.55 +the:0.9 :0.1 +figures,:0.25 ,:0.2 costs:0.16666666666666666 figures:0.14285714285714285 :0.2404761904761905 +forth:0.25 :0.75 +the:0.25 The:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +was seen:0.25 was:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 their:0.2 its:0.16666666666666666 :0.3833333333333333 +people:0.25 party:0.2 streets:0.16666666666666666 Democrats:0.14285714285714285 same road:0.125 :0.11547619047619051 +matter:0.25 :0.75 +the:0.9 :0.1 +the:0.25 a:0.2 its:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.25 the Federal:0.2 our:0.16666666666666666 :0.3833333333333333 +of our:0.25 of the:0.2 of:0.16666666666666666 :0.3833333333333333 +name:0.25 office:0.2 :0.55 +care:0.25 consideration:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +entrance:0.25 way:0.2 door:0.16666666666666666 :0.3833333333333333 +boys:0.25 group:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +will:0.25 army will:0.2 people will:0.16666666666666666 men will:0.14285714285714285 :0.2404761904761905 +with:0.25 to:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +fires:0.25 fire:0.2 fire,:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 filed:0.2 dated:0.16666666666666666 is filed:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +water:0.25 :0.75 +the:0.9 :0.1 +convicted:0.25 victims:0.2 the victims:0.16666666666666666 guilty:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.25 this:0.2 :0.55 +the:0.9 :0.1 +returned:0.25 moved:0.2 went:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 :0.75 +Harry:0.25 John:0.2 Mr.:0.16666666666666666 Dr.:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +t:0.25 mission:0.2 f:0.16666666666666666 mission school:0.14285714285714285 ut:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +Grove:0.25 Grovo:0.2 :0.55 +the:0.25 the Baltimore:0.2 the Oakland:0.16666666666666666 the Philadelphia:0.14285714285714285 the Milwaukee:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +will:0.25 shall:0.2 to:0.16666666666666666 :0.3833333333333333 +C.:0.25 A.:0.2 W.:0.16666666666666666 I.:0.14285714285714285 B.:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +whose:0.25 the:0.2 a:0.16666666666666666 where the:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +few:0.25 hundred:0.2 couple of:0.16666666666666666 :0.3833333333333333 +the:0.25 a:0.2 :0.55 +the:0.9 :0.1 +asked:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +from:0.25 :0.75 +the:0.25 :0.75 +face.:0.25 neck.:0.2 head.:0.16666666666666666 arm.:0.14285714285714285 back.:0.125 :0.11547619047619051 +laughed:0.25 looked:0.2 :0.55 +at:0.25 for:0.2 of the:0.16666666666666666 of:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +one:0.25 some:0.2 a:0.16666666666666666 :0.3833333333333333 +an:0.25 but:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +ing,:0.25 ,:0.2 s,:0.16666666666666666 :0.3833333333333333 +the:0.25 his:0.2 a:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 as:0.2 that:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +said:0.25 :0.75 +the:0.9 :0.1 +the:0.25 to:0.2 to federal:0.16666666666666666 to the:0.14285714285714285 to Washington:0.125 :0.11547619047619051 +the:0.9 :0.1 +known,:0.25 understood,:0.2 known:0.16666666666666666 -known:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the usual:0.25 such:0.2 :0.55 +this:0.25 the said:0.2 said:0.16666666666666666 :0.3833333333333333 +given:0.25 provided:0.2 :0.55 +nking:0.25 pping:0.2 oking:0.16666666666666666 oing:0.14285714285714285 ning:0.125 :0.11547619047619051 +when:0.25 if:0.2 or:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +hundred:0.25 hundred and:0.2 :0.55 +n:0.25 l:0.2 t:0.16666666666666666 tt:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +they not:0.25 they:0.2 :0.55 +necklace:0.25 hat:0.2 flower:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +which was:0.25 now:0.2 :0.55 +the:0.9 :0.1 +office,:0.25 office:0.2 city:0.16666666666666666 :0.3833333333333333 +properly:0.25 well:0.2 adequately:0.16666666666666666 :0.3833333333333333 +James:0.25 John:0.2 :0.55 +of:0.25 :0.75 +with:0.25 in:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +American citizen:0.25 man:0.2 citizen:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +stock:0.25 water:0.2 trade:0.16666666666666666 commerce:0.14285714285714285 merchandise:0.125 :0.11547619047619051 +original:0.25 own:0.2 true:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 :0.75 +the:0.9 :0.1 +were:0.25 have:0.2 are:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +of:0.25 :0.75 +the:0.9 :0.1 +;:0.25 J.:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +hidden:0.25 secret:0.2 away:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +should not:0.25 should:0.2 would:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +by:0.25 from:0.2 :0.55 +the:0.9 :0.1 +in:0.25 closely in:0.2 :0.55 +the:0.9 :0.1 +strong:0.25 healthy:0.2 :0.55 +over:0.25 up:0.2 at:0.16666666666666666 into:0.14285714285714285 :0.2404761904761905 +any:0.25 the lives:0.2 the bodies:0.16666666666666666 the body:0.14285714285714285 :0.2404761904761905 +the:0.25 Light:0.2 Natural:0.16666666666666666 :0.3833333333333333 +told:0.25 :0.75 +the:0.9 :0.1 +th:0.25 East Main:0.2 South:0.16666666666666666 Main:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +is:0.25 was:0.2 has been:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +and:0.25 :0.75 +the:0.9 :0.1 +residences:0.25 houses:0.2 homes:0.16666666666666666 :0.3833333333333333 +theory:0.25 new engine:0.2 findings:0.16666666666666666 work:0.14285714285714285 explanation:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +182:0.25 2:0.2 82:0.16666666666666666 181:0.14285714285714285 11:0.125 :0.11547619047619051 +the:0.9 :0.1 +section.:0.25 state.:0.2 State.:0.16666666666666666 .:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +cruel:0.25 terrible:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +area:0.25 station:0.2 station,:0.16666666666666666 :0.3833333333333333 +may:0.25 can:0.2 cannot:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +with:0.25 to:0.2 with all:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +remain:0.25 exist:0.2 be:0.16666666666666666 :0.3833333333333333 +the:0.25 .:0.2 a:0.16666666666666666 :0.14285714285714285 is in:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +i:0.25 r:0.2 :0.55 +to:0.25 and:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +mind,:0.25 mind:0.2 head:0.16666666666666666 :0.3833333333333333 +,:0.25 a,:0.2 t,:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +who:0.25 that:0.2 workers who:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +and it:0.25 which:0.2 as it:0.16666666666666666 :0.3833333333333333 +steel:0.25 concrete:0.2 :0.55 +the:0.9 :0.1 +like:0.25 provoking:0.2 ful:0.16666666666666666 :0.3833333333333333 +Harry:0.25 George:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +have:0.25 :0.75 +the:0.9 :0.1 +gave:0.25 has given:0.2 had given:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +States:0.25 :0.75 +part:0.25 ity:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +at:0.25 near:0.2 :0.55 +the:0.9 :0.1 +now of:0.25 of:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +et:0.25 es:0.2 e:0.16666666666666666 er:0.14285714285714285 ers:0.125 :0.11547619047619051 +the:0.9 :0.1 +cle:0.25 list:0.2 ctor:0.16666666666666666 :0.3833333333333333 +ground:0.25 stairs:0.2 house,:0.16666666666666666 stairs,:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +decisive:0.25 major:0.2 big:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.25 :0.75 +know:0.25 understand:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +Of:0.25 of all:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +had just:0.25 had:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 from the:0.2 by the:0.16666666666666666 to the:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +only:0.25 made:0.2 not:0.16666666666666666 well:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +I asked:0.25 asked:0.2 :0.55 +or apple:0.25 or:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +China:0.25 It:0.2 it:0.16666666666666666 :0.3833333333333333 +, as:0.25 ,:0.2 this,:0.16666666666666666 that,:0.14285714285714285 :0.2404761904761905 +. of:0.25 1 of:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +raw silk:0.25 silk:0.2 and European:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.25 a:0.2 n:0.16666666666666666 A:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +greater:0.25 more:0.2 :0.55 +their:0.25 their excellent:0.2 their good:0.16666666666666666 good:0.14285714285714285 :0.2404761904761905 +have:0.25 be:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +of:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +It:0.25 :0.75 +the:0.9 :0.1 +in all:0.25 with:0.2 in:0.16666666666666666 with all:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +:0.25 ?:0.2 .:0.16666666666666666 man?":0.14285714285714285 man?:0.125 :0.11547619047619051 +the:0.25 his:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +had:0.25 has:0.2 :0.55 +in:0.25 :0.75 +the:0.9 :0.1 +wife:0.25 wife,:0.2 :0.55 +and:0.25 but:0.2 but,:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the guests:0.25 people:0.2 guests:0.16666666666666666 :0.3833333333333333 +plan.:0.25 purpose.:0.2 desire.:0.16666666666666666 will.:0.14285714285714285 intent.:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +bring:0.25 send:0.2 :0.55 +the:0.9 :0.1 +ter:0.25 a:0.2 George:0.16666666666666666 Charles:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +, due:0.25 ,:0.2 , payable:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +called on:0.25 ready:0.2 going:0.16666666666666666 here:0.14285714285714285 called:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 a:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +shirts:0.25 suits:0.2 s:0.16666666666666666 gowns:0.14285714285714285 :0.2404761904761905 +with:0.25 in:0.2 :0.55 +the:0.9 :0.1 +to:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +obvious:0.25 utter:0.2 extreme:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +sister,:0.25 sisters,:0.2 brother,:0.16666666666666666 parents,:0.14285714285714285 friends,:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +40,000:0.25 45,000:0.2 50,000:0.16666666666666666 30,000:0.14285714285714285 60,000:0.125 :0.11547619047619051 +with:0.25 for:0.2 :0.55 +the:0.9 :0.1 +the application:0.25 use:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 protecting us:0.2 far,:0.16666666666666666 far:0.14285714285714285 saving us:0.125 :0.11547619047619051 +the:0.25 were the:0.2 :0.55 +Torah:0.25 law:0.2 :0.55 +. He:0.25 who:0.2 , who:0.16666666666666666 . They:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +;:0.25 ; the:0.2 s;:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +, but:0.25 and:0.2 :0.55 +cause:0.25 result:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +n:0.25 nn:0.2 o:0.16666666666666666 e:0.14285714285714285 :0.2404761904761905 +build:0.25 have:0.2 establish:0.16666666666666666 set up:0.14285714285714285 :0.2404761904761905 +his:0.25 :0.75 +the:0.9 :0.1 +towns:0.25 villages,:0.2 villages:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +The:0.25 All:0.2 :0.16666666666666666 :0.3833333333333333 +cause:0.25 presence:0.2 existence:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 :0.75 +the:0.9 :0.1 +to:0.25 :0.75 +to:0.25 into:0.2 :0.55 +have:0.25 has:0.2 :0.55 +the:0.25 other:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 a:0.2 this:0.16666666666666666 :0.3833333333333333 +th Section:0.25 th Article:0.2 th Amendment:0.16666666666666666 th section:0.14285714285714285 th:0.125 :0.11547619047619051 +the:0.9 :0.1 +came:0.25 :0.75 +the:0.25 any:0.2 every:0.16666666666666666 :0.3833333333333333 +to be:0.25 , be:0.2 be:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +population:0.25 wild life:0.2 wildlife:0.16666666666666666 habitat:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +which:0.25 that:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 the:0.2 i:0.16666666666666666 .:0.14285714285714285 a:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +The:0.25 A:0.2 :0.55 +said:0.25 same:0.2 :0.55 +the President:0.25 him:0.2 :0.55 +the:0.9 :0.1 +before:0.25 after:0.2 of:0.16666666666666666 :0.3833333333333333 +to:0.25 for:0.2 you and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +Senate:0.25 House:0.2 :0.55 +the:0.9 :0.1 +did:0.25 would:0.2 does:0.16666666666666666 :0.3833333333333333 +the:0.25 the General:0.2 the State:0.16666666666666666 :0.3833333333333333 +restored:0.25 preserved:0.2 :0.55 +Golden:0.25 Silver:0.2 Nome:0.16666666666666666 :0.3833333333333333 +I:0.25 he:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +will:0.25 will He:0.2 to:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 or:0.2 a:0.16666666666666666 of the:0.14285714285714285 of:0.125 :0.11547619047619051 +the:0.9 :0.1 +garden,:0.25 garden:0.2 spring:0.16666666666666666 :0.3833333333333333 +in:0.25 of:0.2 :0.55 +the:0.9 :0.1 +these:0.25 other:0.2 those:0.16666666666666666 the other:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +But in:0.25 And in:0.2 In:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +On:0.25 Along:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +in an:0.25 an:0.2 in one:0.16666666666666666 in another:0.14285714285714285 :0.2404761904761905 +method:0.25 method,:0.2 system:0.16666666666666666 :0.3833333333333333 +visit:0.25 see:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +it:0.25 tion:0.2 notice:0.16666666666666666 indication:0.14285714285714285 one:0.125 :0.11547619047619051 +prepared:0.25 equipped:0.2 suited:0.16666666666666666 able:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +a:0.25 at great:0.2 at:0.16666666666666666 :0.3833333333333333 +always wanted:0.25 come:0.2 been taught:0.16666666666666666 grown:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +is:0.25 :0.75 +as:0.25 :0.75 +the:0.9 :0.1 +Committee:0.25 Committee not:0.2 public not:0.16666666666666666 public:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +was:0.25 c:0.2 was so:0.16666666666666666 still:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +in both:0.25 in:0.2 both in:0.16666666666666666 all in:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 our:0.2 on the:0.16666666666666666 on this:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +subject:0.25 maker:0.2 owner:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +At about:0.25 At:0.2 :0.55 +all:0.25 for the:0.2 that:0.16666666666666666 :0.3833333333333333 +came:0.25 was brought:0.2 could come:0.16666666666666666 could go:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +been:0.25 recently been:0.2 now been:0.16666666666666666 :0.3833333333333333 +the:0.25 the full:0.2 :0.55 +do:0.25 does:0.2 :0.55 +cheese:0.25 bread:0.2 milk:0.16666666666666666 :0.3833333333333333 +these:0.25 their:0.2 my:0.16666666666666666 :0.3833333333333333 +how much:0.25 how:0.2 that:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +::0.25 r:0.2 :0.55 +past:0.25 last:0.2 next:0.16666666666666666 :0.3833333333333333 +t:0.25 n:0.2 kind of:0.16666666666666666 dark:0.14285714285714285 of the:0.125 :0.11547619047619051 +by:0.25 in:0.2 on:0.16666666666666666 :0.3833333333333333 +the:0.25 the very:0.2 :0.55 +weak:0.25 worst:0.2 harsh:0.16666666666666666 weakest:0.14285714285714285 :0.2404761904761905 +first:0.25 last:0.2 second:0.16666666666666666 :0.3833333333333333 +bring:0.25 :0.75 +the:0.9 :0.1 +of:0.25 of economic:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +and family:0.25 and:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +between:0.25 of:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +settle:0.25 recover:0.2 enforce:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +newest:0.25 best:0.2 most experienced:0.16666666666666666 star:0.14285714285714285 :0.2404761904761905 +party:0.25 class:0.2 position:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +and was:0.25 that was:0.2 was:0.16666666666666666 building was:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.25 the purchase:0.2 an:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +ered by:0.25 to:0.2 able by:0.16666666666666666 by:0.14285714285714285 ing:0.125 :0.11547619047619051 +The:0.25 This:0.2 :0.55 +the:0.9 :0.1 +ever be:0.25 even be:0.2 be:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +for:0.25 of:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +but:0.25 all of:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +roads:0.25 railroads:0.2 conditions:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +was to:0.25 had:0.2 would:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.25 from:0.2 from the:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +and of:0.25 and:0.2 :0.55 +the:0.9 :0.1 +stand in:0.25 stand with:0.2 place:0.16666666666666666 wear:0.14285714285714285 put:0.125 :0.11547619047619051 +the:0.9 :0.1 +by only:0.25 by:0.2 only by:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +finest:0.25 greatest:0.2 best:0.16666666666666666 most impressive:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +past:0.25 last:0.2 next:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +together:0.25 about:0.2 up:0.16666666666666666 forth:0.14285714285714285 in:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +in and:0.25 and:0.2 :0.55 +the:0.9 :0.1 +which:0.25 that:0.2 you and:0.16666666666666666 :0.3833333333333333 +country,:0.25 country:0.2 Philippines:0.16666666666666666 island:0.14285714285714285 Philippines,:0.125 :0.11547619047619051 +the:0.9 :0.1 +and so:0.25 that He:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +,:0.25 e,:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +North:0.25 South:0.2 :0.55 +in:0.25 along:0.2 on:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +(1):0.25 :0.75 +the:0.25 his:0.2 its:0.16666666666666666 :0.3833333333333333 +charge:0.25 price:0.2 :0.55 +on:0.25 in:0.2 for:0.16666666666666666 to do:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.25 a:0.2 its:0.16666666666666666 :0.3833333333333333 +take:0.25 out of:0.2 use:0.16666666666666666 :0.3833333333333333 +great:0.25 considerable:0.2 :0.55 +the:0.9 :0.1 +she:0.25 America:0.2 Japan:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +-standing:0.25 period of:0.2 -term:0.16666666666666666 range of:0.14285714285714285 area of:0.125 :0.11547619047619051 +costs:0.25 :0.75 +the:0.9 :0.1 +to:0.25 :0.75 +the:0.9 :0.1 +less:0.25 more:0.2 :0.55 +to:0.25 :0.75 +the:0.9 :0.1 +leave:0.25 keep:0.2 :0.55 +the:0.9 :0.1 +for:0.25 that:0.2 because:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +C:0.25 B:0.2 R:0.16666666666666666 A:0.14285714285714285 M:0.125 :0.11547619047619051 +e:0.25 y:0.2 s:0.16666666666666666 i:0.14285714285714285 ii:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +according to:0.25 greatly with:0.2 with:0.16666666666666666 depending on:0.14285714285714285 :0.2404761904761905 +furnished:0.25 built:0.2 :0.55 +as:0.25 :0.75 +we:0.25 one:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +all:0.25 also:0.2 had:0.16666666666666666 soon:0.14285714285714285 :0.2404761904761905 +the:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +in:0.25 into:0.2 on:0.16666666666666666 :0.3833333333333333 +the:0.25 their:0.2 a:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +The:0.25 These:0.2 The great:0.16666666666666666 :0.3833333333333333 +the:0.25 through the:0.2 :0.55 +the:0.9 :0.1 +the:0.25 a:0.2 the national:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 in:0.2 into:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +not:0.25 more:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 our:0.2 :0.55 +of:0.25 :0.75 +United:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +in:0.25 of:0.2 on:0.16666666666666666 :0.3833333333333333 +be:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +The:0.25 - The:0.2 :0.55 +, only:0.25 ,:0.2 :0.55 +the:0.9 :0.1 +&:0.25 and:0.2 And:0.16666666666666666 :0.3833333333333333 +my:0.25 his:0.2 my humble:0.16666666666666666 :0.3833333333333333 +their:0.25 his:0.2 its:0.16666666666666666 :0.3833333333333333 +the:0.25 a:0.2 the proposed:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +had:0.25 has:0.2 :0.55 +China:0.25 it:0.2 Japan:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +.:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +as:0.25 :0.75 +warning:0.25 surprise:0.2 blow:0.16666666666666666 :0.3833333333333333 +or:0.25 and:0.2 :0.55 +the:0.9 :0.1 +no:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +suffering,:0.25 suffering:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +action:0.25 agreement:0.2 such agreement:0.16666666666666666 :0.3833333333333333 +that:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +rights:0.25 right:0.2 :0.55 +complicated:0.25 complex:0.2 difficult:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +a:0.25 t:0.2 i:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +have been:0.25 be far:0.2 be much:0.16666666666666666 be:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +about:0.25 into:0.2 on:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +to:0.25 for:0.2 :0.55 +the:0.9 :0.1 +with:0.25 in:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +kitchen:0.25 dirty:0.2 same:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +in:0.25 at:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +other:0.25 some:0.2 our:0.16666666666666666 those:0.14285714285714285 :0.2404761904761905 +have:0.25 had:0.2 has:0.16666666666666666 :0.3833333333333333 +will be:0.25 is:0.2 is just:0.16666666666666666 s are:0.14285714285714285 :0.2404761904761905 +increase:0.25 difference:0.2 :0.55 +the:0.25 e their:0.2 e:0.16666666666666666 e the:0.14285714285714285 :0.2404761904761905 +to:0.25 :0.75 +the:0.9 :0.1 +stone:0.25 point:0.2 :0.55 +to:0.25 :0.75 +by Miss:0.25 by:0.2 :0.55 +public:0.25 :0.75 +the:0.9 :0.1 +have been:0.25 be:0.2 :0.55 +exports:0.25 iron:0.2 goods:0.16666666666666666 imports:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.25 this:0.2 :0.55 +the:0.9 :0.1 +issue:0.25 issuance:0.2 payment:0.16666666666666666 :0.3833333333333333 +this:0.25 the:0.2 this great:0.16666666666666666 :0.3833333333333333 +the:0.25 an:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 The Holy:0.2 His Holy:0.16666666666666666 His:0.14285714285714285 the Holy:0.125 :0.11547619047619051 +up with:0.25 with:0.2 it with:0.16666666666666666 in with:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +,:0.25 or:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +s of:0.25 of:0.2 :0.55 +the:0.9 :0.1 +the:0.25 their:0.2 our:0.16666666666666666 :0.3833333333333333 +three:0.25 ten:0.2 eight:0.16666666666666666 eleven:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +d:0.25 ed:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 , and:0.2 :0.55 +the:0.9 :0.1 +look:0.25 be:0.2 :0.55 +ad:0.25 ee:0.2 e:0.16666666666666666 e it:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.25 a:0.2 the public:0.16666666666666666 with the:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +of:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +::0.25 o:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +I:0.25 we:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +Ruth:0.25 the girl:0.2 her:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +that you:0.25 as you:0.2 you:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +street,:0.25 Street:0.2 streets,:0.16666666666666666 street:0.14285714285714285 Street,:0.125 :0.11547619047619051 +the:0.9 :0.1 +to:0.25 to the:0.2 :0.55 +time:0.25 limits:0.2 time period:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the same:0.25 one:0.2 a:0.16666666666666666 :0.3833333333333333 +the:0.25 their:0.2 a:0.16666666666666666 :0.3833333333333333 +,:0.25 ua:0.2 i:0.16666666666666666 uin:0.14285714285714285 o:0.125 :0.11547619047619051 +the:0.9 :0.1 +not as:0.25 as:0.2 almost as:0.16666666666666666 just as:0.14285714285714285 :0.2404761904761905 +say,:0.25 say that:0.2 say:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +education:0.25 teaching:0.2 educational:0.16666666666666666 :0.3833333333333333 +to:0.25 and to:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +will:0.25 desire:0.2 other will:0.16666666666666666 power:0.14285714285714285 :0.2404761904761905 +the:0.25 :0.75 +which:0.25 as:0.2 that:0.16666666666666666 :0.3833333333333333 +ied:0.25 led:0.2 ed:0.16666666666666666 :0.3833333333333333 +I:0.25 :0.75 +in full:0.25 in:0.2 into:0.16666666666666666 :0.3833333333333333 +made from:0.25 made:0.2 made of:0.16666666666666666 used:0.14285714285714285 :0.2404761904761905 +could:0.25 did:0.2 would:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.25 :0.75 +that all:0.25 that:0.2 clearly that:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +even:0.25 ever:0.2 :0.55 +the same:0.25 the:0.2 a:0.16666666666666666 such:0.14285714285714285 :0.2404761904761905 +the:0.25 Trinity:0.2 :0.55 +that you:0.25 you:0.2 i:0.16666666666666666 :0.3833333333333333 +and it:0.25 which:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +set:0.25 paired:0.2 lined:0.16666666666666666 :0.3833333333333333 +east:0.25 north:0.2 south:0.16666666666666666 :0.3833333333333333 +,:0.25 's:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 his:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +of:0.25 :0.75 +2004,:0.25 2010,:0.2 :0.55 +A:0.25 W:0.2 M:0.16666666666666666 E:0.14285714285714285 :0.2404761904761905 +if:0.25 because:0.2 unless:0.16666666666666666 since:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the same:0.25 its:0.2 it:0.16666666666666666 :0.3833333333333333 +, and:0.25 ,:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +demanded:0.25 asked:0.2 demand:0.16666666666666666 were demanding:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +remedy,:0.25 remedy:0.2 cure:0.16666666666666666 :0.3833333333333333 +type:0.25 method:0.2 form:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +this:0.25 it not:0.2 it:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.25 their:0.2 to:0.16666666666666666 his:0.14285714285714285 :0.2404761904761905 +a:0.25 an:0.2 no:0.16666666666666666 :0.3833333333333333 +y shall:0.25 shall:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +frequently:0.25 regularly:0.2 :0.55 +As:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +in:0.25 after:0.2 :0.55 +the:0.9 :0.1 +but:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +results:0.25 impressions:0.2 :0.55 +the:0.9 :0.1 +to:0.25 To:0.2 :0.55 +James:0.25 J.:0.2 John:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +County:0.25 county:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +she has:0.25 has:0.2 having:0.16666666666666666 is getting:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.25 :0.75 +to:0.25 for:0.2 :0.55 +the:0.9 :0.1 +The:0.25 All the:0.2 All:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +will:0.25 shall:0.2 could:0.16666666666666666 should:0.14285714285714285 :0.2404761904761905 +hidden:0.25 sheltered:0.2 separated:0.16666666666666666 shaded:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 these:0.2 :0.55 +price:0.25 charge:0.2 cost:0.16666666666666666 fee:0.14285714285714285 rate:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +John:0.25 :0.75 +and:0.25 they:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +evening,:0.25 night,:0.2 night:0.16666666666666666 day,:0.14285714285714285 :0.2404761904761905 +said:0.25 suggested:0.2 reported:0.16666666666666666 :0.3833333333333333 +t:0.25 e:0.2 .:0.16666666666666666 s:0.14285714285714285 :0.2404761904761905 +or:0.25 and:0.2 :0.55 +the:0.9 :0.1 +halls:0.25 rooms:0.2 :0.55 +England:0.25 Wales:0.2 :0.55 +she:0.25 :0.75 +may:0.25 could:0.2 would:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +with:0.25 without:0.2 :0.55 +J:0.25 :0.2 I say:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +their:0.25 :0.75 +this:0.25 , it:0.2 it:0.16666666666666666 :0.3833333333333333 +the:0.25 him:0.2 :0.55 +the:0.9 :0.1 +in the:0.25 to:0.2 in:0.16666666666666666 :0.3833333333333333 +of:0.25 on:0.2 :0.55 +The:0.25 This:0.2 :0.55 +the:0.9 :0.1 +;:0.25 body;:0.2 ,:0.16666666666666666 body,:0.14285714285714285 :0.2404761904761905 +go:0.25 set:0.2 :0.55 +the:0.25 New:0.2 :0.55 +also:0.25 then:0.2 :0.55 +idea:0.25 impression:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +under:0.25 :0.75 +the:0.25 with the:0.2 :0.55 +Une:0.25 :0.75 +who:0.25 , who:0.2 :0.55 +s can:0.25 can:0.2 :0.55 +in:0.25 of:0.2 on:0.16666666666666666 :0.3833333333333333 +shall:0.25 :0.75 +the:0.9 :0.1 +could:0.25 would:0.2 :0.55 +of:0.25 :0.75 +the:0.9 :0.1 +have been:0.25 have:0.2 had been:0.16666666666666666 were:0.14285714285714285 had:0.125 :0.11547619047619051 +the:0.9 :0.1 +case:0.25 matter:0.2 the case:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +who:0.25 what:0.2 if:0.16666666666666666 where:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +without:0.25 without any:0.2 :0.55 +the:0.25 just the:0.2 :0.55 +the:0.9 :0.1 +terms:0.25 matters:0.2 :0.55 +the:0.9 :0.1 +ways:0.25 sources:0.2 avenues:0.16666666666666666 :0.3833333333333333 +E.:0.25 A.:0.2 D.:0.16666666666666666 J.:0.14285714285714285 R.:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +stood:0.25 fell:0.2 s fell:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +of festival:0.25 of:0.2 of enthusiastic:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +did:0.25 do:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +fun:0.25 harmless:0.2 :0.55 +s as:0.25 as:0.2 :0.55 +to:0.25 to fully:0.2 :0.55 +moral:0.25 certain:0.2 very:0.16666666666666666 .:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +to:0.25 in:0.2 :0.55 +out by:0.25 by:0.2 for:0.16666666666666666 out of:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +a:0.25 i:0.2 :0.55 +great:0.25 a:0.2 Great:0.16666666666666666 civil:0.14285714285714285 :0.2404761904761905 +warm in:0.25 warm:0.2 cold:0.16666666666666666 warm In:0.14285714285714285 :0.2404761904761905 +courage:0.25 engage:0.2 corporate:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +were:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +order:0.25 or:0.2 order in:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +She:0.25 Nor:0.2 But she:0.16666666666666666 But it:0.14285714285714285 It:0.125 :0.11547619047619051 +done:0.25 achieved:0.2 done,:0.16666666666666666 achieved,:0.14285714285714285 :0.2404761904761905 +the:0.25 :0.75 +the:0.25 that:0.2 this:0.16666666666666666 :0.3833333333333333 +stay:0.25 remain:0.2 be:0.16666666666666666 :0.3833333333333333 +the:0.25 a:0.2 no other:0.16666666666666666 no:0.14285714285714285 :0.2404761904761905 +":0.25 him":0.2 .":0.16666666666666666 him!":0.14285714285714285 him.":0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +an attempt:0.25 order:0.2 :0.55 +,:0.25 d:0.2 i:0.16666666666666666 .:0.14285714285714285 :0.2404761904761905 +and:0.25 and most:0.2 American:0.16666666666666666 of the:0.14285714285714285 of:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +possible:0.25 time:0.2 :0.55 +Fifth:0.25 Fourth:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 such:0.2 no:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +nt:0.25 t:0.2 :0.16666666666666666 :0.3833333333333333 +the investigation:0.25 it:0.2 they:0.16666666666666666 :0.3833333333333333 +have:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +also:0.25 not:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +.:0.25 :0.75 +the:0.9 :0.1 +trial:0.25 hearing:0.2 :0.55 +have:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +is:0.25 .,:0.2 .:0.16666666666666666 :0.3833333333333333 +or:0.25 but:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +reasonable:0.25 given:0.2 particular:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +and:0.25 of:0.2 :0.55 +the:0.9 :0.1 +shall:0.25 * shall:0.2 :0.55 +of:0.25 into:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +but:0.25 and:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 a:0.2 :0.55 +the:0.9 :0.1 +the:0.25 all the:0.2 all:0.16666666666666666 :0.3833333333333333 +,:0.25 d:0.2 of:0.16666666666666666 :0.3833333333333333 +The:0.25 The successful:0.2 But the:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +later:0.25 then:0.2 i:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +of our:0.25 s of:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +large:0.25 small:0.2 sufficient:0.16666666666666666 :0.3833333333333333 +established:0.25 accepted:0.2 recognized:0.16666666666666666 accepted,:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +required:0.25 allowed:0.2 prescribed:0.16666666666666666 :0.3833333333333333 +tree:0.25 tree,:0.2 :0.55 +the:0.9 :0.1 +and:0.25 and at:0.2 at:0.16666666666666666 or at:0.14285714285714285 :0.2404761904761905 +with:0.25 to:0.2 :0.55 +from:0.25 :0.75 +the:0.25 called the:0.2 a:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +to:0.25 * to:0.2 :0.55 +June:0.25 July:0.2 :0.55 +the:0.25 the very:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +, and:0.25 , but:0.2 and:0.16666666666666666 :0.3833333333333333 +at about:0.25 about:0.2 at:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +I:0.25 I then:0.2 :0.55 +had:0.25 has:0.2 :0.55 +I:0.25 then I:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 on of:0.2 of:0.16666666666666666 :0.3833333333333333 +subject:0.25 subjects:0.2 places:0.16666666666666666 :0.3833333333333333 +rushed:0.25 carried:0.2 taken:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +burg:0.25 town,:0.2 town:0.16666666666666666 sburg:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +on May:0.25 May:0.2 June:0.16666666666666666 on June:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +1918:0.25 1917,:0.2 1918,:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +school:0.25 School work:0.2 School:0.16666666666666666 School.:0.14285714285714285 :0.2404761904761905 +::0.25 an:0.2 :0.55 +and:0.25 :0.75 +in:0.25 of:0.2 on:0.16666666666666666 :0.3833333333333333 +were:0.25 came:0.2 walked:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +30:0.25 :0.75 +the:0.9 :0.1 +them:0.25 them,:0.2 it:0.16666666666666666 :0.3833333333333333 +two:0.25 three:0.2 :0.55 +,000,000:0.25 of:0.2 :0.55 +inform:0.25 tell:0.2 :0.55 +the:0.9 :0.1 +tie:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +The:0.25 The long:0.2 Its:0.16666666666666666 The short:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +who:0.25 and:0.2 and the:0.16666666666666666 which:0.14285714285714285 and they:0.125 :0.11547619047619051 +St:0.25 St.:0.2 Street:0.16666666666666666 :0.3833333333333333 +to be:0.25 being:0.2 :0.55 +are fast:0.25 are:0.2 :0.55 +the:0.25 a:0.2 this:0.16666666666666666 his:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +;:0.25 ,:0.2 n;:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +north:0.25 twenty-:0.2 south:0.16666666666666666 twenty:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +The:0.25 :0.75 +He:0.25 Rosene:0.2 :0.55 +have:0.25 have not:0.2 :0.55 +of:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 one:0.2 a:0.16666666666666666 the first:0.14285714285714285 :0.2404761904761905 +,:0.25 , along:0.2 along:0.16666666666666666 ami:0.14285714285714285 :0.2404761904761905 +determine:0.25 regulate:0.2 :0.55 +she suddenly:0.25 she:0.2 sho:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +supported:0.25 favored:0.2 chosen:0.16666666666666666 selected:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 To:0.2 :0.55 +ir:0.25 e:0.2 i:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +his:0.25 with his:0.2 a:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +from:0.25 by:0.2 in:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +state:0.25 State:0.2 State,:0.16666666666666666 state,:0.14285714285714285 :0.2404761904761905 +the:0.25 this:0.2 that the:0.16666666666666666 :0.3833333333333333 +the:0.25 n the:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +them:0.25 it:0.2 it,:0.16666666666666666 :0.3833333333333333 +for:0.25 at:0.2 :0.55 +suffering,:0.25 suffering:0.2 :0.55 +the:0.9 :0.1 +demanded:0.25 suggested:0.2 requested:0.16666666666666666 :0.3833333333333333 +put:0.25 set:0.2 :0.55 +the:0.9 :0.1 +This:0.25 It:0.2 :0.55 +the:0.9 :0.1 +since,:0.25 , on:0.2 on,:0.16666666666666666 on:0.14285714285714285 :0.2404761904761905 +to:0.25 in:0.2 :0.55 +very:0.25 :0.75 +of:0.25 :0.75 +ous:0.25 ful:0.2 able:0.16666666666666666 ent:0.14285714285714285 ing:0.125 :0.11547619047619051 +,:0.25 that:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 a:0.2 o:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +play:0.25 kiss:0.2 play?:0.16666666666666666 kiss?:0.14285714285714285 :0.2404761904761905 +to:0.25 e:0.2 west:0.16666666666666666 :0.3833333333333333 +the:0.25 in the:0.2 :0.55 +the:0.9 :0.1 +turn:0.25 turned:0.2 to turn:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +when:0.25 as:0.2 while:0.16666666666666666 :0.3833333333333333 +up:0.25 down:0.2 forward:0.16666666666666666 :0.3833333333333333 +violent:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +here and:0.25 and:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +but:0.25 and:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +his illness:0.25 illness:0.2 the disease:0.16666666666666666 sickness:0.14285714285714285 :0.2404761904761905 +about:0.25 expected:0.2 beginning:0.16666666666666666 :0.3833333333333333 +the:0.25 a:0.2 e:0.16666666666666666 i:0.14285714285714285 :0.2404761904761905 +,:0.25 in:0.2 , in:0.16666666666666666 .:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +, and:0.25 ,:0.2 and:0.16666666666666666 , with:0.14285714285714285 :0.2404761904761905 +empty:0.25 gone:0.2 abandoned:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +. 1,:0.25 ,:0.2 .,:0.16666666666666666 .:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +in:0.25 and:0.2 :0.55 +in:0.25 at:0.2 :0.55 +Elaine:0.25 Elizabeth:0.2 Mary:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +can:0.25 things should:0.2 things could:0.16666666666666666 will:0.14285714285714285 things can:0.125 :0.11547619047619051 +the:0.9 :0.1 +of:0.25 :0.75 +the:0.9 :0.1 +money:0.25 money in:0.2 :0.55 +the:0.9 :0.1 +until:0.25 in:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +times:0.25 years:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +nothing:0.25 it:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +in:0.25 of:0.2 :0.55 +it on:0.25 it upon:0.2 down:0.16666666666666666 on:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +and who:0.25 but:0.2 and:0.16666666666666666 :0.3833333333333333 +both:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +may:0.25 air may:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 a:0.2 his:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +a:0.25 it:0.2 her way:0.16666666666666666 :0.3833333333333333 +leaders:0.25 figures:0.2 :0.55 +Therefore,:0.25 Thus:0.2 :0.55 +the:0.9 :0.1 +hesitate:0.25 fail:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +once:0.25 so:0.2 a:0.16666666666666666 first:0.14285714285714285 most:0.125 :0.11547619047619051 +one:0.25 ten:0.2 twenty:0.16666666666666666 thirty:0.14285714285714285 :0.2404761904761905 +in:0.25 for:0.2 , for:0.16666666666666666 :0.3833333333333333 +Since:0.25 Knowing that:0.2 As:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +where:0.25 but:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +over:0.25 in:0.2 for:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +tract:0.25 piece:0.2 parcel:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +for:0.25 and at:0.2 at:0.16666666666666666 :0.3833333333333333 +demand:0.25 stock of:0.2 trade in:0.16666666666666666 number of:0.14285714285714285 :0.2404761904761905 +terms:0.25 provisions:0.2 :0.55 +the:0.9 :0.1 +lot:0.25 :0.75 +goes to:0.25 does not:0.2 can:0.16666666666666666 is to:0.14285714285714285 :0.2404761904761905 +the:0.25 The:0.2 his:0.16666666666666666 :0.3833333333333333 +I:0.25 i:0.2 , I:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +this:0.25 the:0.2 :0.55 +be:0.25 :0.75 +the:0.9 :0.1 +amount:0.25 sum of:0.2 sum:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +cause:0.25 causes:0.2 purposes:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +him as:0.25 him:0.2 :0.55 +This:0.25 It:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +by not:0.25 by:0.2 without:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 and:0.2 :0.55 +the:0.25 these:0.2 the accredited:0.16666666666666666 :0.3833333333333333 +the:0.25 young:0.2 the native:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +out of:0.25 in:0.2 on:0.16666666666666666 :0.3833333333333333 +own:0.25 fair-:0.2 fair:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +l:0.25 high:0.2 good:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +l:0.25 :0.2 :0.55 +not:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 of great:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +led:0.25 oriented:0.2 focused:0.16666666666666666 based:0.14285714285714285 friendly:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 :0.75 +to:0.25 for:0.2 :0.55 +the:0.9 :0.1 +o.:0.25 a.:0.2 .:0.16666666666666666 :0.3833333333333333 +people:0.25 people now:0.2 s:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the land:0.25 that:0.2 the territory:0.16666666666666666 :0.3833333333333333 +to:0.25 and:0.2 :0.55 +the:0.9 :0.1 +the:0.25 the house:0.2 a:0.16666666666666666 elected:0.14285714285714285 :0.2404761904761905 +boxes:0.25 yards:0.2 feet:0.16666666666666666 :0.3833333333333333 +In:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 in:0.2 :0.55 +the:0.9 :0.1 +general:0.25 rate of:0.2 ordinary:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +so:0.25 that:0.2 it:0.16666666666666666 :0.3833333333333333 +how much:0.25 that:0.2 :0.55 +and so:0.25 so:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +between:0.25 :0.75 +in their:0.25 our:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 , Utah:0.2 !:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.25 :0.75 +the:0.25 an:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +those:0.25 that:0.2 the one:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +The:0.25 These:0.2 Their:0.16666666666666666 :0.3833333333333333 +remain:0.25 be:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +young:0.25 suitable:0.2 beautiful:0.16666666666666666 good:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +but:0.25 and:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +I:0.25 she:0.2 he:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +2:0.25 1:0.2 5:0.16666666666666666 :0.3833333333333333 +which:0.25 that:0.2 :0.55 +occasion:0.25 moment:0.2 time:0.16666666666666666 time,:0.14285714285714285 :0.2404761904761905 +was being:0.25 was:0.2 house was:0.16666666666666666 was already:0.14285714285714285 :0.2404761904761905 +,:0.25 ary:0.2 s:0.16666666666666666 lines,:0.14285714285714285 Line:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +not:0.25 that:0.2 that not:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 + :0.25 i :0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +e line:0.25 e:0.2 line:0.16666666666666666 re line:0.14285714285714285 :0.2404761904761905 +case:0.25 caso:0.2 the case:0.16666666666666666 the event:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +back:0.25 front:0.2 left:0.16666666666666666 right:0.14285714285714285 :0.2404761904761905 +had:0.25 has:0.2 :0.55 +the:0.9 :0.1 +is:0.25 was:0.2 's:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +this:0.25 our:0.2 our own:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +so:0.25 very:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 :0.75 +work.:0.25 houses.:0.2 housing.:0.16666666666666666 them.:0.14285714285714285 workers.:0.125 :0.11547619047619051 +ent:0.25 ence:0.2 ument:0.16666666666666666 ics:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +may:0.25 can:0.2 is to:0.16666666666666666 must:0.14285714285714285 will:0.125 :0.11547619047619051 +1:0.25 I:0.2 :0.55 +night.:0.25 month.:0.2 week.:0.16666666666666666 weekend.:0.14285714285714285 year.:0.125 :0.11547619047619051 +A:0.25 «A:0.2 « A:0.16666666666666666 «a:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +Justice:0.25 Mr.:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +they:0.25 :0.75 +the:0.9 :0.1 +’d:0.25 had:0.2 'd:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +r only:0.25 rs:0.2 r:0.16666666666666666 :0.3833333333333333 +even:0.25 especially:0.2 :0.55 +the:0.9 :0.1 +bags,:0.25 bags:0.2 bag:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +have been:0.25 not be:0.2 be:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 , and:0.2 :0.55 +the:0.9 :0.1 +at:0.25 train at:0.2 train from:0.16666666666666666 train to:0.14285714285714285 in:0.125 :0.11547619047619051 +the:0.9 :0.1 +course well:0.25 course:0.2 :0.55 +the:0.9 :0.1 +having been:0.25 being:0.2 :0.55 +the:0.9 :0.1 +other:0.25 less:0.2 more:0.16666666666666666 :0.3833333333333333 +close of:0.25 start of:0.2 end of:0.16666666666666666 beginning of:0.14285714285714285 end:0.125 :0.11547619047619051 +shall:0.25 may:0.2 :0.55 +the:0.25 a:0.2 her:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +dear-:0.25 dear:0.2 warm-:0.16666666666666666 warm:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +of their:0.25 of the:0.2 of:0.16666666666666666 of this:0.14285714285714285 :0.2404761904761905 + :0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +obliged:0.25 ordered:0.2 forced:0.16666666666666666 :0.3833333333333333 +,:0.25 cloth,:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +Three:0.25 Five:0.2 Two:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +C.:0.25 E.:0.2 A.:0.16666666666666666 J.:0.14285714285714285 R.:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +Baltimore City:0.25 City:0.2 :0.55 +the:0.9 :0.1 +returned:0.25 come:0.2 :0.55 +the:0.9 :0.1 +with:0.25 in:0.2 :0.55 +flowing:0.25 river:0.2 same:0.16666666666666666 :0.3833333333333333 +mineral:0.25 oil:0.2 coal oil:0.16666666666666666 :0.3833333333333333 +water:0.25 coal being:0.2 land:0.16666666666666666 coal:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +P.:0.25 ::0.2 A.:0.16666666666666666 .:0.14285714285714285 :0.2404761904761905 +came:0.25 ,:0.2 :0.55 +the:0.9 :0.1 +best:0.25 knowledge:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +audience:0.25 audiences:0.2 :0.55 +took:0.25 had:0.2 carried:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +,:0.25 village,:0.2 town,:0.16666666666666666 family,:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +at:0.25 of:0.2 :0.55 +the:0.9 :0.1 +the:0.25 her:0.2 :0.55 +minor:0.25 large:0.2 small:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +impede:0.25 interfere with:0.2 hinder:0.16666666666666666 derail:0.14285714285714285 :0.2404761904761905 +the:0.25 a:0.2 the old:0.16666666666666666 :0.3833333333333333 +is:0.25 was:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +Board:0.25 board:0.2 the Board:0.16666666666666666 :0.3833333333333333 +in:0.25 , in:0.2 and:0.16666666666666666 on:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +Gen.:0.25 Col.:0.2 the late:0.16666666666666666 Colonel:0.14285714285714285 General:0.125 :0.11547619047619051 +I have:0.25 of:0.2 :0.55 +the:0.9 :0.1 +assigned:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +in:0.25 on:0.2 :0.55 +nor:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +Secretary:0.25 :0.75 +;:0.25 .:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +l:0.25 t:0.2 :0.55 +the:0.9 :0.1 +be to:0.25 afford to:0.2 be:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +weakness:0.25 greatness:0.2 strength:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 d,:0.2 s,:0.16666666666666666 :0.3833333333333333 +A:0.25 —A:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +,:0.25 1, from:0.2 from:0.16666666666666666 , from:0.14285714285714285 :0.2404761904761905 +east:0.25 west:0.2 :0.55 +the:0.9 :0.1 +in:0.25 s in:0.2 s of:0.16666666666666666 of:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +and the:0.25 when the:0.2 that the:0.16666666666666666 and:0.14285714285714285 :0.2404761904761905 +not have:0.25 have:0.2 have either:0.16666666666666666 never have:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.25 their:0.2 a:0.16666666666666666 her:0.14285714285714285 :0.2404761904761905 +The:0.25 This:0.2 :0.55 +think:0.25 realize:0.2 :0.55 +gambling:0.25 business:0.2 liquor:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +in:0.25 of:0.2 :0.55 +the:0.9 :0.1 +or:0.25 and:0.2 :0.55 +the:0.9 :0.1 +day we:0.25 Day:0.2 day:0.16666666666666666 day,:0.14285714285714285 :0.2404761904761905 +yet:0.25 :0.75 +well.:0.25 .:0.2 one.:0.16666666666666666 :0.3833333333333333 +with:0.25 by:0.2 under:0.16666666666666666 :0.3833333333333333 +,:0.25 ?:0.2 .:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +clearly:0.25 well:0.2 :0.55 +orchestra:0.25 r:0.2 choir:0.16666666666666666 :0.3833333333333333 +deem:0.25 find:0.2 not find:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +Appeals:0.25 Executive:0.2 :0.55 +and:0.25 :0.75 +ii:0.25 o:0.2 i:0.16666666666666666 io:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +no:0.25 :0.75 +which:0.25 that:0.2 :0.55 +the:0.9 :0.1 +their:0.25 its:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +shall:0.25 shall also:0.2 shall each:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 any:0.2 this:0.16666666666666666 :0.3833333333333333 +of:0.25 :0.75 +back:0.25 too late:0.2 too early:0.16666666666666666 :0.3833333333333333 +,:0.25 , and:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +route:0.25 bridge:0.2 road,:0.16666666666666666 road:0.14285714285714285 :0.2404761904761905 +to:0.25 home to:0.2 house in:0.16666666666666666 home in:0.14285714285714285 house to:0.125 :0.11547619047619051 +to:0.25 by:0.2 :0.55 +old:0.25 new:0.2 :0.55 +the:0.25 a:0.2 wholesale:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +pace:0.25 speed:0.2 lead:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +and:0.25 :0.75 +Engineer:0.25 Executive Officer:0.2 Executive:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.25 , the:0.2 :0.55 +and not:0.25 but:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +this:0.25 your:0.2 that:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +fully be:0.25 fully:0.2 thoroughly:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +of:0.25 :0.75 +the:0.25 any:0.2 the outstanding:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +elected:0.25 Radical:0.2 business:0.16666666666666666 political:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +labor:0.25 wage:0.2 :0.55 +fenders:0.25 men:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +A.:0.25 W.:0.2 M.:0.16666666666666666 B.:0.14285714285714285 J.:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +in:0.25 :0.75 +the:0.9 :0.1 +which:0.25 , which:0.2 that:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +other:0.25 British:0.2 others:0.16666666666666666 :0.3833333333333333 +,:0.25 , even:0.2 :0.55 +the:0.9 :0.1 +was being:0.25 was:0.2 :0.55 +the:0.9 :0.1 +rights:0.25 right,:0.2 rights,:0.16666666666666666 history,:0.14285714285714285 nature,:0.125 :0.11547619047619051 +a:0.25 no:0.2 :0.55 +ol:0.25 a:0.2 o:0.16666666666666666 ot:0.14285714285714285 :0.2404761904761905 +upon:0.25 in:0.2 on:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +are both:0.25 are:0.2 are fully:0.16666666666666666 are the:0.14285714285714285 :0.2404761904761905 +the:0.25 a:0.2 good,:0.16666666666666666 brave,:0.14285714285714285 :0.2404761904761905 +new resolution:0.25 resolution:0.2 report:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +e:0.25 p:0.2 ar:0.16666666666666666 a:0.14285714285714285 o:0.125 :0.11547619047619051 +clouds,:0.25 clouds:0.2 trees:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +A.:0.25 W.:0.2 M.:0.16666666666666666 H.:0.14285714285714285 J.:0.125 :0.11547619047619051 +the:0.9 :0.1 +take:0.25 Take:0.2 :0.55 +,:0.25 , that:0.2 that:0.16666666666666666 :0.3833333333333333 +is almost:0.25 is:0.2 is most:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +four:0.25 t:0.2 ten:0.16666666666666666 eight:0.14285714285714285 :0.2404761904761905 +t:0.25 *:0.2 s:0.16666666666666666 f:0.14285714285714285 ­:0.125 :0.11547619047619051 +the:0.9 :0.1 +appointed:0.25 approved:0.2 elected:0.16666666666666666 expressed:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 an:0.2 :0.55 +for:0.25 in:0.2 of:0.16666666666666666 :0.3833333333333333 +how:0.25 that so:0.2 that:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +James:0.25 J.:0.2 John:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +The:0.25 But the:0.2 :0.55 +,:0.25 , serious:0.2 considerable:0.16666666666666666 serious:0.14285714285714285 , considerable:0.125 :0.11547619047619051 +but:0.25 and:0.2 :0.55 +island and:0.25 islands.:0.2 Island.:0.16666666666666666 rock.:0.14285714285714285 island.:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +back:0.25 up:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +in:0.25 after:0.2 :0.55 +the:0.25 any:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +own:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +Since:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 large:0.2 several:0.16666666666666666 two:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +in:0.25 on:0.2 :0.55 +the:0.25 all the:0.2 all:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +morning:0.25 meantime:0.2 meantime,:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +I:0.25 he:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +and:0.25 where:0.2 :0.55 +to:0.25 :0.75 +the:0.9 :0.1 +could:0.25 must:0.2 would:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +in his:0.25 of his:0.2 of:0.16666666666666666 about his:0.14285714285714285 :0.2404761904761905 +least:0.25 most:0.2 more:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +and:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +and:0.25 :0.75 +them:0.25 sho:0.2 him:0.16666666666666666 :0.3833333333333333 +t of:0.25 of the:0.2 of:0.16666666666666666 e of:0.14285714285714285 :0.2404761904761905 +their-:0.25 their:0.2 them-:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.25 the many:0.2 many:0.16666666666666666 of:0.14285714285714285 :0.2404761904761905 +to:0.25 of:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +beauty:0.25 peace:0.2 glory and:0.16666666666666666 beauty and:0.14285714285714285 glory:0.125 :0.11547619047619051 +the:0.9 :0.1 +and:0.25 and there:0.2 they:0.16666666666666666 but there:0.14285714285714285 there:0.125 :0.11547619047619051 +, and:0.25 and:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +sailors:0.25 marines:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +corresponding:0.25 equivalent:0.2 same:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +became:0.25 was:0.2 was appointed:0.16666666666666666 :0.3833333333333333 +fairness:0.25 Fairness:0.2 integrity:0.16666666666666666 Integrity:0.14285714285714285 :0.2404761904761905 +of the:0.25 of:0.2 :0.55 +the:0.9 :0.1 +to:0.25 by:0.2 of:0.16666666666666666 :0.3833333333333333 +one of:0.25 , for:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +together:0.25 together.:0.2 together and:0.16666666666666666 :0.3833333333333333 +says:0.25 said:0.2 explained that:0.16666666666666666 said that:0.14285714285714285 says that:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +first:0.25 most memorable:0.2 last:0.16666666666666666 many:0.14285714285714285 :0.2404761904761905 +per:0.25 a:0.2 :0.55 +for his:0.25 to:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +75:0.25 70:0.2 72:0.16666666666666666 76:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +of:0.25 :0.75 +, about:0.25 about:0.2 about half:0.16666666666666666 :0.3833333333333333 +a:0.25 i:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +Dack:0.25 the Duck:0.2 Duck:0.16666666666666666 :0.3833333333333333 +appointed:0.25 blessed:0.2 provided:0.16666666666666666 served:0.14285714285714285 rewarded:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +or:0.25 and:0.2 :0.55 +at about:0.25 at just:0.2 at:0.16666666666666666 at approximately:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +beautiful:0.25 :0.75 +out into:0.25 all over:0.2 across:0.16666666666666666 out of:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +out:0.25 :0.75 +The:0.25 Tomorrow the:0.2 Today the:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +and:0.25 of the:0.2 s and:0.16666666666666666 :0.3833333333333333 +millions:0.25 million:0.2 :0.55 +together:0.25 ,:0.2 up:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +uncertainty:0.25 question:0.2 :0.55 +732:0.25 733:0.2 737:0.16666666666666666 720:0.14285714285714285 702:0.125 :0.11547619047619051 +the:0.9 :0.1 +l:0.25 n:0.2 s:0.16666666666666666 lng:0.14285714285714285 o:0.125 :0.11547619047619051 +the:0.9 :0.1 +or:0.25 :0.75 +to:0.25 , to:0.2 :0.55 +like:0.25 such as:0.2 or:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +becomes:0.25 is:0.2 is also:0.16666666666666666 is not:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +activities,:0.25 work.:0.2 activity.:0.16666666666666666 work,:0.14285714285714285 activities.:0.125 :0.11547619047619051 +the:0.9 :0.1 +his kindness:0.25 and:0.2 his love:0.16666666666666666 his devotion:0.14285714285714285 :0.2404761904761905 +side:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +or:0.25 :0.75 +the:0.9 :0.1 +bring:0.25 send:0.2 :0.55 +the:0.9 :0.1 +the:0.25 his:0.2 :0.55 +give:0.25 act in:0.2 make:0.16666666666666666 :0.3833333333333333 +life.:0.25 history.:0.2 History.:0.16666666666666666 .:0.14285714285714285 :0.2404761904761905 +this:0.25 it:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +will be:0.25 is:0.2 :0.55 +has not:0.25 had:0.2 had not:0.16666666666666666 has:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +is:0.25 :0.75 +and:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +not have:0.25 have:0.2 :0.55 +beautiful and:0.25 delightful and:0.2 a:0.16666666666666666 sweet and:0.14285714285714285 lovely and:0.125 :0.11547619047619051 +very short:0.25 matter of:0.2 short:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +should be:0.25 are:0.2 will be:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +rom of:0.25 bis:0.2 rom:0.16666666666666666 :0.3833333333333333 +make:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +officers:0.25 police:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +or:0.25 and:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +as:0.25 As:0.2 :0.55 +n:0.25 great:0.2 own:0.16666666666666666 :0.3833333333333333 +officials;:0.25 bodies,:0.2 authorities;:0.16666666666666666 officials,:0.14285714285714285 authorities,:0.125 :0.11547619047619051 +to:0.25 of:0.2 :0.55 +the:0.9 :0.1 +two:0.25 two thousand:0.2 two hundred:0.16666666666666666 more:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +accurate:0.25 fair:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +t:0.25 to save:0.2 to protect:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +or:0.25 and:0.2 :0.55 +the:0.9 :0.1 +,:0.25 ly,:0.2 ward,:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +is:0.25 succeeds:0.2 's:0.16666666666666666 s:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +to:0.25 d to:0.2 :0.55 +the:0.9 :0.1 +is:0.25 has:0.2 :0.55 +to:0.25 not:0.2 not to:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +weakened:0.25 damaged:0.2 ruined:0.16666666666666666 dampened:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +man with:0.25 with:0.2 * with:0.16666666666666666 , with:0.14285714285714285 :0.2404761904761905 +I:0.25 suddenly:0.2 suddenly I:0.16666666666666666 :0.3833333333333333 +shirts:0.25 in:0.2 for:0.16666666666666666 s:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +and all:0.25 but:0.2 and:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +man:0.25 man,:0.2 :0.55 +the:0.9 :0.1 +t:0.25 e him:0.2 e:0.16666666666666666 -:0.14285714285714285 :0.2404761904761905 +, at:0.25 at:0.2 :0.55 +the:0.9 :0.1 +believe:0.25 see you:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +is:0.25 Is:0.2 has:0.16666666666666666 :0.3833333333333333 +d and:0.25 and:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +that may:0.25 which shall:0.2 men to:0.16666666666666666 to:0.14285714285714285 that shall:0.125 :0.11547619047619051 +facilities:0.25 advantages:0.2 ports:0.16666666666666666 docks:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +regular:0.25 frequent:0.2 periodic:0.16666666666666666 irregular:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +only:0.25 no longer:0.2 not:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +in:0.25 for:0.2 of:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +an:0.25 no:0.2 :0.55 +the:0.25 a:0.2 , the:0.16666666666666666 :0.3833333333333333 +, and:0.25 .:0.2 :0.55 +the:0.9 :0.1 +women:0.25 men:0.2 :0.55 +the:0.9 :0.1 +speaking with:0.25 speaking to:0.2 with:0.16666666666666666 talking with:0.14285714285714285 talking to:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +There:0.25 there:0.2 :0.55 +the:0.9 :0.1 +tied:0.25 due:0.2 attributed:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +out of:0.25 out:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +should be:0.25 and is:0.2 is:0.16666666666666666 and:0.14285714285714285 :0.2404761904761905 +product of:0.25 form of:0.2 kind of:0.16666666666666666 business of:0.14285714285714285 business:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +took:0.25 brought:0.2 moved:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +Maple:0.25 York:0.2 Jay:0.16666666666666666 North Fifth:0.14285714285714285 :0.2404761904761905 +ly:0.25 ly,:0.2 woman,:0.16666666666666666 :0.3833333333333333 +of:0.25 :0.75 +hear cases:0.25 make decisions:0.2 hear:0.16666666666666666 judge:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +book:0.25 my book:0.2 the book:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +federal census:0.25 census:0.2 :0.55 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +only:0.25 also:0.2 a:0.16666666666666666 now:0.14285714285714285 :0.2404761904761905 +which:0.25 :0.75 +the:0.9 :0.1 +the:0.9 :0.1 +them:0.25 it:0.2 :0.55 +hold by:0.25 to:0.2 on:0.16666666666666666 :0.3833333333333333 +said:0.25 on said:0.2 :0.55 +and,:0.25 or,:0.2 and:0.16666666666666666 :0.3833333333333333 +new:0.25 t:0.2 party:0.16666666666666666 and:0.14285714285714285 .:0.125 :0.11547619047619051 +the:0.9 :0.1 +ii:0.25 i:0.2 .:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +is:0.25 has been:0.2 would be:0.16666666666666666 's:0.14285714285714285 :0.2404761904761905 +the:0.9 :0.1 +mere:0.25 ,:0.2 mere,:0.16666666666666666 :0.3833333333333333 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +collision:0.25 accident:0.2 crash:0.16666666666666666 :0.3833333333333333 +they:0.25 he:0.2 :0.55 +t:0.25 *:0.2 the:0.16666666666666666 .:0.14285714285714285 a:0.125 :0.11547619047619051 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1 +the:0.9 :0.1